【2-6】Linux之系统管理及网络服务教程
【2-6】Linux之系统管理及网络服务
设备查看 fdisk -l
查看磁盘分区情况
blkid
设备管理方式及设备id
df
查看正在被系统挂载的设备
cat /proc/partitions
查看系统识别设备
二、设备挂载
在系统中有设备id的设备是可以被系统使用的
挂载命令:
mount -o 挂载参数 挂载点
rw 读写 remount重新挂载 ro 只读
mount 设备 挂载点
mount
查看挂载信息
mount -o rw /dev/vda1 /westos
mount -o remount,ro /westos
##转换挂载参数由读写变为只读
在卸载时当出现设备正忙:
fuser -kvm 设备|挂载点
-k 结束进程 -v 现实详细信息 -m 显示进程
四、分区
分区方式: 位数 分区表大小 支持分区个数 支持单个分区大小
legacy (MBR)32 64byte 主分区4个 2.2TB
-----------------------------------------------------------------
UEFI (GPT)64 128byte 理论上无限制 8ZiB
MBR分区方式:
主分区
主分区表记录分区的信息并可以直接使用的分区
扩展分区
主分区表记录的分区,不可直接使用,只是逻辑分区容器
逻辑分区
扩展分区之上划分的分区叫做逻辑分区
分区方法
fdisk /dev/sdb
m
[root@node226 ~]# fdisk /dev/vdb
Welcome to fdisk (util-linux 2.32.1).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0x06f53088.
Command (m for help): m ##显示帮助
Help:
DOS (MBR)
a toggle a bootable flag
b edit nested BSD disklabel
c toggle the dos compatibility flag
Generic
d delete a partition ##更改
F list free unpartitioned space
l list known partition types ##列出所有分区类型
n add a new partition ##新建
p print the partition table ##显示分区表
t change a partition type ##更改分区类型
v verify the partition table
i print information about a partition ##
Misc
m print this menu
u change display/entry units
x extra functionality (experts only)
Script
I load disk layout from sfdisk script file
O dump disk layout to sfdisk script file
Save & Exit
w write table to disk and exit ##保存更改
q quit without saving changes ##退出
Create a new label
g create a new empty GPT partition table ##设定分区方式为GPT
G create a new empty SGI (IRIX) partition table
o create a new empty DOS partition table ##设定分区方式为mbr
s create a new empty Sun partition table
Command (m for help):