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防火墙使用指南
官方论坛百科地址:
ufw配置文件位置/etc/ufw
指南目录
Ubuntu中iptables使用指南
论坛百科地址:
http://wiki.ubuntu.org.cn/IptablesHowTo
指南目录