本节所讲内容:
认识SAS-SATA-SSD-SCSI-IDE硬盘
使用fdisk对磁盘进行操作,分区,格式化
开机自动挂载分区
使用parted操作大于等于4T硬盘
扩展服务器swap内存空间
硬盘管理:
MBR: Master boot record : 主引导记录
硬盘的0柱面、0磁头、1扇区称为主引导扇区(也叫主引导记录MBR)。它由三个部分组成,主引导程序、硬盘分区表DPT(Disk Partition table)和分区有效标志(55AA)。
在总共512字节的主引导扇区里主引导程序(boot loader)占446个字节,第二部分是Partition table区(分区表),即DPT,占64个字节,16*4=64,硬盘中分区有多少以及每一分区的大小都记在其中。第三部分是magic number,占2个字节,固定为55AA。
magic number:·结束标志字,偏移地址01FE--01FF的2个字节值为结束标志55AA,称为“魔数”(magic number)。如果该标志错误系统就不能启动。
磁盘管理步骤:
添加设备 分区 格式化(创建文件系统) 创建挂载点 挂载 修改配置文件
[[email protected] ~]#fdisk -l #查看设备使用状况
[[email protected] ~]#fdisk /dev/sda
Command (m for help): m
Command action
a toggle a bootable flag #设置启动分区
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition #删除分区
g create a new empty GPT partition table
G create an IRIX (SGI) partition table
l list known partition types
m print this menu #打印帮助页面
n adda new partition #创建一个新的分区
o create a new empty DOS partition table
p print the partition table #打印分区表
q quit without saving changes #退出不保存
s create a new empty Sun disklabel
t change a partition‘s system id
u change display/entry units
v verify the partition table
w write table to disk and exit #保存
x extra functionality (experts only)
Command (m for help): n #创建一个新的分区
Partition type:
p primary (2 primary, 0 extended, 2 free) #创建一个主分区
e extended #创建一个扩展分区
Select (default p): e
Partition number (3,4,default 3): #指定分区号
First sector(26208256-41943039, default 26208256): #指定开始柱面,默认回车就可以
Using default value26208256
Last sector, +sectorsor +size{K,M,G} (26208256-41943039, default 41943039): +5G #指定结束柱面,默认不指定的话是把剩下的所有空间分配给分区,等于说指定分区大小
Partition 3 of typeExtended and of size 5 GiB is set
Command (m for help): p #打印分区表
Disk /dev/sda: 21.5 GB,21474836480 bytes, 41943040 sectors
Units = sectors of 1 *512 = 512 bytes
Sector size(logical/physical): 512 bytes / 512 bytes
I/O size(minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier:0x000a705c
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 26208255 12591104 8e Linux LVM
/dev/sda3 26208256 36694015 5242880 5 Extended #表明是扩展 分区
Command (m for help): n
Partition type:
p primary (2 primary, 1 extended, 1 free)
l logical (numbered from 5) #创建一个逻辑分区
Select (default p): l
Adding logicalpartition 5
First sector(26210304-36694015, default 26210304):
Using default value26210304
Last sector, +sectorsor +size{K,M,G} (26210304-36694015, default 36694015): +1G
Partition 5 of typeLinux and of size 1 GiB is set
Command (m for help): p
Disk /dev/sda: 21.5 GB,21474836480 bytes, 41943040 sectors
Units = sectors of 1 *512 = 512 bytes
Sector size(logical/physical): 512 bytes / 512 bytes
I/O size(minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier:0x000a705c
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 26208255 12591104 8e Linux LVM
/dev/sda3 26208256 36694015 5242880 5 Extended
/dev/sda5 26210304 28307455 1048576 83 Linux
#逻辑分区的分区号从5开始,不管之前有没有第四或者第三个分区
Command (m for help): w #保存
The partition table hasbeen altered!
Calling ioctl() tore-read partition table.
WARNING: Re-reading thepartition table failed with error 16: Device or resource busy.
The kernelstill uses the old table. The new table will be used at
the nextreboot or after you run partprobe(8) or kpartx(8)
Syncingdisks.
[[email protected] ~]# ls/dev/sda*
/dev/sda /dev/sda1 /dev/sda2
重新获取分区表
[[email protected] ~]#partprobe /dev/sda
[[email protected] ~]# ls/dev/sda*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda3 /dev/sda5
注:如果是RHEL6操作系统的话,使用partx -a /dev/sda 重新获取分区表
格式化:
#mkfs.ext3 /dev/sdb1 或mkfs -t ext3 /dev/sdb1 #RHEL5 格式化
#mkfs.ext4 /dev/sdb1 或mkfs -t ext4 /dev/sdb1 #RHEL6 格式化
mkfs.xfs /dev/sda5 或mkfs -t xfs /dev/sda5 #RHEL7 格式化
创建挂载点
[[email protected] ~]#mkdir /sda5
挂载
[[email protected] ~]#mount /dev/sda5 /sda5/
查看挂载状况
[[email protected] ~]# df-h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/rhel-root 10G 3.3G 6.8G 33% /
devtmpfs 2.0G 0 2.0G 0% /dev
tmpfs 2.0G 84K 2.0G 1% /dev/shm
tmpfs 2.0G 8.9M 2.0G 1% /run
tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
/dev/sr0 3.7G 3.7G 0 100% /mnt
/dev/sda1 497M 107M 391M 22% /boot
/dev/sda5 1014M 33M 982M 4% /sda5
或:
[[email protected] ~]#mount | grep sda5
/dev/sda5 on /sda5 typexfs (rw,relatime,attr2,inode64,noquota)
分区开机自动挂载
[[email protected] ~]# vim/etc/fstab
/dev/sda5 /sda5 xfs defaults 0 0
要挂载的分区 挂载点 文件系统类型 挂载选项 是否备份 是否检测
最后两个0
fs_dump 是否要使用dump命令进行备份. 0为不备份,1为要备份。
fs_pass - 该字段被fsck命令用来决定在启动时是否需要被扫描的文件系统的顺序,根文件系统/对应该字段的值应该为1,其他文件系统应该为2。若该文件系统无需在启动 时扫描则设置该字段为0
使用UUID实现开机自动挂载
UUID作用
UUID是一个标识你系统中的存储设备的字符串,其目的是帮助使用者唯一的确定系统中的所有存储设备,不管它们是什么类型的。它可以标识DVD驱动器,USB存储设备以及你系统中的硬盘设备等。
特点:
它是真正的唯一标志符
Linux中的许多关键功能现在开始依赖于UUID
获取设备的UUID
[[email protected] ~]#blkid | grep sda5
/dev/sda5:UUID="221afef3-4692-4321-99d8-c43a69356380" TYPE="xfs"
[[email protected] ~]# vim/etc/fstab
UUID=221afef3-4692-4321-99d8-c43a69356380 /sda5 xfs defaults 0 0
如何实现光盘开机自动挂载
[[email protected] ~]# vim/etc/fstab
/dev/sr0 /mnt iso9660 defaults 0 0
或者:
/dev/cdrom
[[email protected] ~]# ll/dev/cdrom
lrwxrwxrwx 1 root root3 Dec 10 2015 /dev/cdrom -> sr0
特殊挂载方法:
[[email protected] ~]#mount -t xfs /dev/sda5 /sda5/
[[email protected] ~]#mount -o loop rhel-server-7.1-x86_64-dvd /media/
[[email protected] ~]#mount -o remount,ro /sda5/
卸载分区
[[email protected] ~]#umount /dev/sda5
[[email protected] ~]#umount /sda5/
无法卸载:
[[email protected] ~]#umount /dev/sda5
umount: /sda5: targetis busy.
(In some cases useful info aboutprocesses that use
the device is found by lsof(8) or fuser(1))
[[email protected] ~]#lsof /sda5/
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODENAME
bash 3967 root cwd DIR 8,5 6 128 /sda5
[[email protected] ~]#kill -9 3967
[[email protected] ~]#fuser -m -u -v /sda5/
USER PID ACCESS COMMAND
/sda5: root kernel mount (root)/sda5
root 36749 ..c.. (root)bash
[[email protected] ~]#kill -9 36749
[[email protected] ~]#umount /dev/sda5
学习过程中如果问题,请留言。更多内容请加:
学神IT-linux讲师-RM老师QQ:2805537762
学神IT-戚老师QQ:3341251313
学神IT-旭斌QQ:372469347
学神IT教育RHEL7交流群:468845589