CentOS7 分割槽合併

2021-10-21 21:01:01 字數 3504 閱讀 6374

[root@yunwei-machine /]# df -h

檔案系統                 容量  已用  可用   已用% 掛載點

devtmpfs 1.9g 0 1.9g 0% /dev

tmpfs 1.9g 0 1.9g 0% /dev/shm

tmpfs 1.9g 13m 1.9g 1% /run

tmpfs 1.9g 0 1.9g 0% /sys/fs/cgroup

/dev/sda1 1014m 179m 836m 18% /boot

tmpfs 378m 8.0k 378m 1% /run/user/42

tmpfs 378m 32k 378m 1% /run/user/0

/dev/sr0 4.3g 4.3g 0 100% /run/media/root/centos 7 x86_64

#解除安裝/home分割槽

[root@yunwei-machine /]# umount /home

[root@yunwei-machine /]# df -h

檔案系統                 容量  已用  可用   已用% 掛載點

devtmpfs 1.9g 0 1.9g 0% /dev

tmpfs 1.9g 0 1.9g 0% /dev/shm

tmpfs 1.9g 13m 1.9g 1% /run

tmpfs 1.9g 0 1.9g 0% /sys/fs/cgroup

/dev/sda1 1014m 179m 836m 18% /boot

tmpfs 378m 8.0k 378m 1% /run/user/42

tmpfs 378m 32k 378m 1% /run/user/0

/dev/sr0 4.3g 4.3g 0 100% /run/media/root/centos 7 x86_64

[root@yunwei-machine /]#

#刪除/home分割槽

[root@yunwei-machine /]# lvremove /dev/centos/home

do you really want to remove active logical volume centos/home? [y/n]: y

logical volume 「home」 successfully removed

[root@yunwei-machine /]#

擴充套件/root 邏輯卷

[root@yunwei-machine /]# lvextend -l +245g /dev/centos/root

size of logical volume centos/root changed from 50.00 gib (12800 extents) to 295.00 gib (75520 extents).

logical volume centos/root successfully resized.

[root@yunwei-machine /]#

[root@yunwei-machine /]#

[root@yunwei-machine /]#

[root@yunwei-machine /]#

#重新劃分/root 分割槽磁碟空間

[root@yunwei-machine /]# xfs_growfs /dev/centos/root

= sectsz=512 attr=2, projid32bit=1

= crc=1 finobt=0 spinodes=0

data = bsize=4096 blocks=13107200, imaxpct=25

= sunit=0 swidth=0 blks

naming =version 2 bsize=4096 ascii-ci=0 ftype=1

log =internal bsize=4096 blocks=6400, version=2

= sectsz=512 sunit=0 blks, lazy-count=1

realtime =none extsz=4096 blocks=0, rtextents=0

data blocks changed from 13107200 to 77332480

檢視現有分割槽

[root@yunwei-machine /]# df -h

檔案系統                 容量  已用  可用   已用% 掛載點

devtmpfs 1.9g 0 1.9g 0% /dev

tmpfs 1.9g 0 1.9g 0% /dev/shm

tmpfs 1.9g 13m 1.9g 1% /run

tmpfs 1.9g 0 1.9g 0% /sys/fs/cgroup

/dev/sda1 1014m 179m 836m 18% /boot

tmpfs 378m 8.0k 378m 1% /run/user/42

tmpfs 378m 32k 378m 1% /run/user/0

/dev/sr0 4.3g 4.3g 0 100% /run/media/root/centos 7 x86_64

[root@yunwei-machine /]#

[root@yunwei-machine /]# mkdir -p /home && cd /home

[root@yunwei-machine home]#

#大功告成

CentOS7分割槽劃分建議

boot分割槽 作用 引導分割槽,包含了系統啟動的必要核心檔案,即使根分割槽順壞也能正常引導啟動 一般這些檔案所佔空間在200m以下 分割槽建議 分割槽的時候可選100m 500m之間,如果空間足夠用,建議分300 500m。避免由於長期使用的冗餘檔案塞滿這個分割槽。分割槽格式 建議ext4,按需求...

Centos7 交換分割槽

製作交換分割槽 檢視swap free m total used free shared buff cache ailable mem 7856 592 5282 1176 1981 5828 swap 14335 0 14335 top kib swap 14680060 total,146800...

CentOS 7 磁碟分割槽

我們知道,在乙個系統中,我們必須要給物理磁碟分割槽才能使用,在centos7 linux中也是一樣,絕大多數使用者都是在該系統安裝的時候選擇了預設分割槽,我們來看一下它的預設分割槽是怎麼樣的,在命令列輸入fdisk l 如下 這裡預設乙個20g 的硬碟,中可以看到,系統已經預設地將磁碟分成了兩個區,...