先檢視df -h 的分割槽大小
fdisk /dev/sda
(選擇新擴的硬碟)
command (m for help): p
(檢視硬碟的分割槽情況)
disk /dev/sda: 171.8 gb, 171798691840 bytes
255 heads, 63 sectors/track, 20886 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: 0x000d8f65
device boot start end blocks id system
/dev/sda1 * 1 26 204800 83 linux
partition 1 does not end on cylinder boundary.
/dev/sda2 26 10444 83680256 8e linux lvm
command (m for help): n
(新建乙個分割槽)
e extended
p primary partition (1-4)
p
(選擇主分割槽)
partition number (1-4): 3
(選擇分割槽號)
first cylinder (10444-20886, default 10444):
last cylinder or +size or +sizem or +sizek (10444-20886, default 20886):
command (m for help): p
(檢視分割槽情況)
device boot start end blocks id system
/dev/sda1 * 1 26 204800 83 linux
partition 1 does not end on cylinder boundary.
/dev/sda2 26 10444 83680256 8e linux lvm
/dev/sda3 10444 20886 83880715 83 linux
(新建的分割槽)
command (m for help):w
(儲存退出)
[root@b2e-imdb ~]# reboot (重啟生效)
#pvdisplay 檢視物理卷名稱 rootvg 檢視新增的硬碟是70/80g
[root@b2e-imdb ~]# pvcreate /dev/sda3 建立物理卷
將物理卷加進捲組
加入 80g 可以不寫或者lvextend -l +100%free
[root@b2e-imdb ~]# resize2fs /dev/rootvg/lv_opt 生效
linux檔案系統 ext2檔案系統
如何快速高效的尋到在硬碟儲存的資料,於是檔案系統就誕生了。檔案系統是邏輯層面的,那麼檔案系統是如何管理 件層提供的磁碟空間的?現在,大部分檔案系統採用索引分配方案 優點 1.能夠保持好大部分檔案的區域性性 2.滿足檔案插入,刪除的高效 3.隨機讀寫不需要沿著指標前行 缺點1.會有較多的磁碟尋道次數 ...
Linux 0 11 檔案系統
每乙個程序都有乙個flip存放著乙個索引,該索引就是核心檔案表的索引,而檔案表中的項又指向記憶體i結點表中的一項,這樣程序就要以操作乙個檔案了。null for i 0 is zmap null block 2 for i 0 is imap blocks i if s s imap bread d...
Linux學習(2) 檔案系統
檔案結構 1.倒轉的單根樹狀結構 2.區分大小寫 3.使用 分割 windows使用 4.根目錄為 當前工作目錄 使用 pwd 檢視 檔名稱 1.大小寫敏感 2.長度最大255字元 3.除了正斜線,都是有效字元 4.使用touch命令可以建立空白檔案或者更新檔案的時間 5.隱藏檔案以 開頭 列出目錄...