1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[root@zcj ~]
# fdisk -l
disk
/dev/sda
: 10.7 gb, 10737418240 bytes
255 heads, 63 sectors
/track
, 1305 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: 0x00044938
device boot start end blocks id system
/dev/sda1
* 1 638 5120000 83 linux
partition 1 does not end on cylinder boundary.
/dev/sda2
638 893 2048000 83 linux
partition 2 does not end on cylinder boundary.
/dev/sda3
893 1020 1024000 82 linux swap / solaris
partition 3 does not end on cylinder boundary.
/dev/sda4
1020 1306 2292736 5 extended
/dev/sda5
1021 1306 2291712 83 linux
解析:disk
/dev/sda
: 10.7 gb, 10737418240 bytes
塊裝置名稱為/dev/sda,此裝置的大小為10.7gb,這個數字不是特別精確,我系統是10gb;10737418240 bytes這是轉換成位元組後的大小,即:
10737418240/1024/1024/1024=10gb
(注:bytes=b,表示「位元組」,bit=b,表示「位」)
255 heads, 63 sectors
/track
, 1305 cylinders
units = cylinders of 16065 * 512 = 8225280 bytes255 heads:表示磁頭數為255
63 sectors/track:表示每磁軌上有63個扇區
1305 cylinders:表示共有1305個柱面,柱面是分割槽的最小單位
16065=255*63 因為每乙個磁頭都是在同乙個柱面的,63表示每個磁軌上的扇區數量,這兩個數的乘積表示乙個柱面上的扇區數量;所以16065*512表示乙個柱面的大小是8225280位元組
sector size (logical
/physical
): 512 bytes / 512 bytes
表示乙個扇區的大小是512位元組
blocks : 大小一般為1kb,即2個sector。與檔案block不一樣,檔案block一般為8個sector(4kb)。
總結:所以乙個磁碟的大小
=乙個柱面大小*柱面的總數=磁頭數量*每個磁軌上的扇區數*乙個扇區大小*柱面總數
即:磁碟大小=8225280*1305=10733990400bytes=9.99gb=
255*63*512*1305
上例中顯示出我們的磁碟只有1305個柱面,但下邊的分割槽資訊中出現了1306個柱面數,不必太在意,linux顯示的這些資料不會十分精確。
本文出自 「snail」 部落格,請務必保留此出處
fdisk l不顯示磁碟資訊的問題
新建了個ubuntu虛擬機器,進去後使用fdisk檢視磁碟資訊居然沒反應,嗯?這是怎麼回事 別急,這是因為fdisk命令在 sbin目錄下,使用root許可權才可以執行。由於是新建的虛擬機器,按以下方法設定root密碼。1 輸入sudo passwd root回車 此時會要求輸入當前使用者密碼,輸入...
linux top顯示資訊詳解
top 實時監測程序,檢視系統資源使用情況 輸入的第一部分顯示的是系統的概況 1 第一行顯示了當前時間 系統的執行時間 登入的使用者數 系統的平均負載 平均負載有3個值,最近1分鐘的,最近5分鐘的,最近15分鐘的,值越大,說明系統的負載越高 2 第二行顯示了程序的概要資訊,top命令的輸出中將程序叫...
顯示系統資訊 System Info
在windows環境中的應用程式,一般要有乙個 關於 對話方塊,可以用來顯示關於應用程式軟體 開發者以及 作業系統 的資訊。下面向工程中新增system info元件,實現 對話方塊中顯示一些系統資訊 在components and controls gallery對話方塊裡選中 system in...