标签:pat 设备驱动 .com 分区 shadow sda display 地址 empty
I/O ports(I/O设备地址):这些其实都是文件(Linux的思想就是一切皆文件),因此可以用open(),write(),read(),close()来进行操作
块设备:block,存取单位是‘块’,如:磁盘
字符设备:char,存取单位是‘字符’,如:键盘
设备文件:关联至一个设备驱动程序,进而能够跟与之对应的硬件设备进行通信
设备号码:
主设备号(major number),标识设备类型
次设备号(minor number),标识同一个类型下的不同设备
/dev/DEV_FILE:磁盘设备文件命名
CentOS5之前:
IDE:/dev/hd
SCSI,SATA,SAS,USB: /dev/sd
CentOS6,7 统一命名为:/dev/sd
不同设备:a-z 如:/dev/sda, /dev/sdb
同一设备上不同分区:1,2,3... 如:/dev/sda1, /dev/sda2
磁盘分区表格式
MBR(Master Boot Record)与GPT(GUID partition Table)
MBR:在0磁道0扇区:有512bytes
boot loader:446bytes
分区表:64bytes
结束标志:2bytes
用MBR的话,最多有4个分区:3个主分区+1逻辑分区(逻辑分区可以有N个)
内建子命令:
命令操作
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 add a 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)
标签:pat 设备驱动 .com 分区 shadow sda display 地址 empty
原文地址:https://blog.51cto.com/12928116/2375604