Ubuntu系统常见问题汇总(持续更新)

1、切换到root

当第一次全新安装ubuntu后,系统默认没有开启root用户,如果我们执行某些程序需要使用root权限,这个时候就需要先设定root用户的密码,让后来切换。

sudo passwd root /来设定root密码

su root  /来切换到root界面

如下操作:

XXOO@ubuntu-5:~$ sudo passwd root

输入新的 UNIX 密码:

重新输入新的 UNIX 密码:

passwd: password updated successfully

XXOO@ubuntu-5:~$ su root

密码:

Added user root.

2、删除一个目录

#rm -rf XXX  /XXX是要删除的目录

3、查看磁盘即磁盘格式

#fdisk -l /查看磁盘及容量

#df -T /查看磁盘格式,比如是ext3还是ext2

[root@XX ss]# fdisk -l


Disk /dev/sda: 107.4 GB, 107374182400 bytes

255 heads, 63 sectors/track, 13054 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x000dc0ad


  Device Boot      Start         End      Blocks   Id  System

/dev/sda1   *           1          64      512000   83  Linux

Partition 1 does not end on cylinder boundary.

/dev/sda2              64        2089    16264192   8e  Linux LVM

/dev/sda3            2090       13054    88076362+  83  Linux


Disk /dev/mapper/VolGroup-lv_root: 8325 MB, 8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000



Disk /dev/mapper/VolGroup-lv_swap: 8325 MB, 8325693440 bytes

255 heads, 63 sectors/track, 1012 cylinders

Units = cylinders of 16065 * 512 = 8225280 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk identifier: 0x00000000


[root@XX ss]# df -T

文件系统    类型         1K-块      已用      可用 已用% 挂载点

/dev/mapper/VolGroup-lv_root

             ext4     8002724   7562416     33780 100% /

tmpfs        tmpfs     4029512       148   4029364   1% /dev/shm

/dev/sda1     ext4      495844     65421    404823  14% /boot

/dev/sda3     ext4    86694336    343512  81947008   1% /media/Lucene


4、Ubuntu中的ufw防火墙使用指南


官方论坛百科地址:

http://wiki.ubuntu.org.cn/Ufw使用指南#.E5.BA.94.E7.94.A8.E7.A8.8B.E5.BA.8F.E9.9B.86.E6.88.90.E7.AE.A1.E7.90.86


ufw配置文件位置/etc/ufw

指南目录

  • 1 描述

  • 2 用法(复述中文含意)

  • 3 可直接跟在ufw后的参数

  • 4 规则示例

  • 5 远程管理

  • 6 应用程序集成管理

  • 7 报告

  • 8 常用操作(新手操作)


Ubuntu中iptables使用指南

论坛百科地址:

http://wiki.ubuntu.org.cn/IptablesHowTo

指南目录

  • 1 Basic Commands 基本命令

  • 2 Allowing Established Sessions 允许已建立的连接接收数据

  • 3 Allowing Incoming Traffic on Specific Ports 开放指定的端口

  • 4 Blocking Traffic 阻断通信

  • 5 Editing iptables 编辑iptables

  • 6 Logging 记录

  • 7 Saving iptables 保存设置

  • 8 Configuration on startup 开机自动加载配置

  • 9 Tips 技巧

    • 9.1 If you manually edit iptables on a regular basis 如果你经常手动编辑iptables

    • 9.2 Using iptables-save/restore to test rules 使用iptables-save/restore测试规则

    • 9.3 More detailed Logging 关于日志记录的更多细节

    • 9.4 Disabling the firewall 禁用防火墙

  • 10 Easy configuration via GUI 通过GUI快速配置

  • 11 Further Information 更多技术细节

  • 12 Credits 贡献者






你可能感兴趣的:(ubuntu,常用命令)