1,分割槽
[root@localhost ~]# fdisk /dev/vdb
warning: fdisk gpt support is currently new, and therefore in an experimental phase. use at your own discretion.
歡迎使用 fdisk (util-linux 2.23.2)。
更改將停留在記憶體中,直到您決定將更改寫入磁碟。
使用寫入命令前請三思。
命令(輸入 m 獲取幫助):n
分割槽號 (1-128,預設 1):
第乙個扇區 (34-209715166,預設 2048):
last sector, +sectors or +size (2048-209715166,預設 209715166):
已建立分割槽 1
命令(輸入 m 獲取幫助):p
磁碟 /dev/vdb:107.4 gb, 107374182400 位元組,209715200 個扇區
units = 扇區 of 1 * 512 = 512 bytes
扇區大小(邏輯/物理):512 位元組 / 512 位元組
i/o 大小(最小/最佳):512 位元組 / 512 位元組
磁碟標籤型別:gpt
disk identifier: 84026d15-eeb3-4318-87da-2990453f7847
# start end size type name
1 2048 209715166 100g linux filesyste
命令(輸入 m 獲取幫助):w
the partition table has been altered!
calling ioctl() to re-read partition table.
正在同步磁碟。
2,把新的磁碟加入到centos vg組(擴容vg)
[root@localhost ~]# vgextend centos /dev/vdb1
volume group "centos" successfully extended
[root@localhost ~]# vgs
vg #pv #lv #sn attr vsize vfree
centos 2 2 0 wz--n- 118.99g <100.00g
3,擴容分割槽和擴容檔案系統
[root@localhost ~]# lvextend -l 116g /dev/centos/root
size of logical volume centos/root changed from <17.00 gib (4351 extents) to 116.00 gib (29696 extents).
logical volume centos/root successfully resized.
[root@localhost ~]# xfs_growfs /dev/centos/root
= sectsz=512 attr=2, projid32bit=1
= crc=1 finobt=0 spinodes=0
data = bsize=4096 blocks=4455424, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=1
log =internal bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
data blocks changed from 4455424 to 30408704
4,檢視
[root@localhost ~]# df -h
檔案系統 容量 已用 可用 已用% 掛載點
devtmpfs 1.9g 0 1.9g 0% /dev
tmpfs 1.9g 0 1.9g 0% /dev/shm
tmpfs 1.9g 8.6m 1.9g 1% /run
tmpfs 1.9g 0 1.9g 0% /sys/fs/cgroup
/dev/vda1 1014m 145m 870m 15% /boot
tmpfs 379m 0 379m 0% /run/user/0
5,命令:
建立vg
[root@localhost ~]# vgcreate systemvg /dev/vdb1
physical volume "/dev/vdb1" successfully created.
volume group "systemvg" successfully created
刪除vg
[root@localhost ~]# vgremove systemvg
volume group "systemvg" successfully removed
Linux系統新增加一塊硬碟
ps 測試伺服器的主機板太差勁了,沒有多餘的電源介面,只能把光碟機的電源拿出來,才能讓硬碟使用。把硬碟裝好後,我們用 fdisk l 檢視下 圖中可以看出 dev sdb 是500g,新加的硬碟。接下來我用命令 fdisk sdb 進行分割槽,輸入 p 檢視新硬碟分割槽,如圖 可以用m命令來看fdi...
給電腦新增一塊硬碟擴容
電腦長期的存放,放很多個虛擬機器,現在的開發環境也相當的大,乙個centec的vitesselinux版本的bsp的原始碼包就有11g那麼大,所以經過一段時間慢慢的硬碟差不多都被放滿了。公司給我買了乙個2t的硬碟用於擴充套件。開始認為2t的硬碟,因為我的系統是mbr格式的分割槽,mbr分割槽不支援2...
如何讓你的電腦多出一塊盤
linux中 root localhost vi nfs.sh 將shell指令碼貼上到nfs.sh中 root localhost chmod x nfs.sh root localhost ip a 檢視到本機ip為 192.168.255.133 ps如果是公網ip,則以公網ip為準 root...