1、 通過Fdisk查看系統分區詳細信息:
Fdisk –l 詳解:
[root@jetsenLin ~]# fdisk -l
Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280bytes
注釋:這個硬盤的大小是10.7GB,有255個磁面,63個扇區,1305磁柱(cylinders)
每個cylinder(磁柱)的容量是 8225280 bytes=8225.280 K(約為)=8.225280M(約為);
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1305 10377990 8e Linux LVM
id和System 表示的是一個意思,id看起來不太直觀,我們要在fdisk 一個分區時,通過指定id來確認分區類型;比如 7表示的就NTFS 分區;這個在fdisk 中要通過t功能來指定。下面的部分會提到;
Disk /dev/sdb: 21.4 GB,21474836480 bytes
255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280bytes
Disk /dev/sdb doesn't contain a validpartition table
說明:硬盤分區的表示:在Linux 是通過hd*x 或 sd*x 表示的:
其中* 表示的是a、b、c … …
另外x 表示的數字 1、2、3 … …
hd大多是IDE硬盤;sd大多是SCSI或移動存儲;引導(Boot):表示引導分區,在上面的例子中sda1 是引導分區;
Start (開始):表示的一個分區從Xcylinder(磁柱)開始;
End (結束):表示一個分區到 Ycylinder(磁柱)結束;
www.2cto.com
2、 學會使用fdisk幫助功能:
[root@jetsenLin~]# fdisk /dev/sda
Thenumber of cylinders for this disk is set to 1305.
There isnothing wrong with that, but this is larger than 1024,
and couldin certain setups cause problems with:
1) softwarethat runs at boot time (e.g., old versions of LILO)
2)booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command(m for help): m ---輸出幫助信息
Commandaction
a toggle a bootable flag ---設置啟動分區
b edit bsd disklabel ---編輯分區標簽
c toggle the dos compatibility flag
d delete a partition --刪除一個分區
l list known partition types --列出分區類型
m print this menu --幫助
n add a new partition --建立一個新的分區
o create a new empty DOS partition table --創建一個新的空白DOS分區表
p print the partition table ---打印分區表
q quit without saving changes ---退出不保存設置