vmware中新增Linux虛擬機器檔案系統空間
1、在vmware中調整硬碟的大小
2、
3、掛載到檔案系統
mkdir /software
mount -t ext3 /dev/sda5
2、
啟動Linux,鍵入df -h檢視磁碟資訊:
[plain]
- [root@localhost ~]# df -h
- Filesystem Size Used Avail Use% Mounted on
- /dev/mapper/VolGroup00-LogVol00
- 29G 26G 2.3G 92% /
- /dev/sda1 190M 13M 168M 7% /boot
- tmpfs 506M 48K 506M 1% /dev/shm
- gvfs-fuse-daemon 29G 26G 2.3G 92% /root/.gvfs
可以看到新增加的硬碟容量並沒有體現在Linux中。使用fdisk -l檢視分割槽表資訊。我的資訊是:
[plain]
- [root@localhost ~]# fdisk -l
- Disk /dev/sda: 42.9 GB, 42949672960 bytes
- 255 heads, 63 sectors/track, 5221 cylinders
- Units = cylinders of 16065 * 512 = 8225280 bytes
- Disk identifier: 0x000f1526
- Device Boot Start End Blocks Id System
- /dev/sda1 * 1 25 200781 83 Linux
- /dev/sda2 26 3916 31254457+ 8e Linux LVM
注意Disk /Dev/sda有40多G空間(剛剛透過VMWare擴充套件的),但兩個Device /dev/sda1和/dev/sda2加起來只有30多G,有10G空間沒有被使用。
從調整分割槽表入手,調整分割槽表用fdisk。這個過程需要人機互動,我在需要輸入的地方加註釋來說明
[plain]
- [root@localhost ~]# fdisk /dev/sda
- The number of cylinders for this disk is set to 5221.
- There is nothing wrong with that, but this is larger than 1024,
- and could in certain setups cause problems with:
- 1) software that 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): n //選擇n表示新建分割槽
- Command action
- e extended
- p primary partition (1-4)
- e //選擇e表示建立擴充套件分割槽
- Partition number (1-4): 3 //選擇3是因為1和2都被佔了(/dev/dsa1和/dev/dsa2)
- First cylinder (3917-5221, default 3917): //此分割槽起始柱面,直接按回車,使用預設值
- Using default value 3917
- Last cylinder or +size or +sizeM or +sizeK (3917-5221, default 5221): //此分割槽大小,直接按回車,使用預設值(表明包含所有剩餘空間)
- Using default value 5221
- Command (m for help): n //在擴充套件分割槽基礎上新建邏輯分割槽
- Command action
- l logical (5 or over)
- p primary partition (1-4)
- l //選擇l表示新建邏輯分割槽
- First cylinder (3917-5221, default 3917): //直接按回車
- Using default value 3917
- Last cylinder or +size or +sizeM or +sizeK (3917-5221, default 5221): //直接按回車
- Using default value 5221
- Command (m for help): p //選擇p檢視新的分割槽表,發現已經新建成功
- Disk /dev/sda: 42.9 GB, 42949672960 bytes
- 255 heads, 63 sectors/track, 5221 cylinders
- Units = cylinders of 16065 * 512 = 8225280 bytes
- Disk identifier: 0x000f1526
- Device Boot Start End Blocks Id System
- /dev/sda1 * 1 25 200781 83 Linux
- /dev/sda2 26 3916 31254457+ 8e Linux LVM
- /dev/sda3 3917 5221 10482412+ 5 Extended
- /dev/sda5 3917 5221 10482381 83 Linux
- Command (m for help): w //選擇w儲存
- The partition table has been altered!
- Calling ioctl() to re-read partition table.
- WARNING: Re-reading the partition table failed with error 16: Device or resource busy.
- The kernel still uses the old table.
- The new table will be used at the next reboot.
- Syncing disks.
可以看到新增了/dev/sda3擴充套件分割槽和/dev/sda5邏輯分割槽。如果是新增了一塊硬碟,也可以直接新建一個主分割槽,步驟更簡單些。
鍵入partprobe命令,這個命令用於在硬碟分割槽發生改變時,更新Linux核心中讀取的硬碟分割槽表資料。
[plain]
- [root@localhost ~]# partprobe
我們使用ext3格式化/dev/sda5這個新的分割槽
[plain]
- [root@localhost ~]# mkfs -t ext3 /dev/sda5
- mke2fs 1.40.8 (13-Mar-2008)
- Warning: 256-byte inodes not usable on older systems
- Filesystem label=
- OS type: Linux
- Block size=4096 (log=2)
- Fragment size=4096 (log=2)
- 655360 inodes, 2620595 blocks
- 131029 blocks (5.00%) reserved for the super user
- First data block=0
- Maximum filesystem blocks=2684354560
- 80 block groups
- 32768 blocks per group, 32768 fragments per group
- 8192 inodes per group
- Superblock backups stored on blocks:
- 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632
- Writing inode tables: done
- Creating journal (32768 blocks): done
- Writing superblocks and filesystem accounting information: done
- This filesystem will be automatically checked every 32 mounts or
- 180 days, whichever comes first. Use tune2fs -c or -i to override.
3、掛載到檔案系統
mkdir /software
mount -t ext3 /dev/sda5
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29820633/viewspace-1986036/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- C. VMware下LINUX的虛擬機器增加磁碟空間Linux虛擬機
- VM虛擬機器 linux系統新增磁碟虛擬機Linux
- vmware虛擬機器與主機檔案共享虛擬機
- VMware虛擬機器linux系統開機一直黑屏虛擬機Linux
- 在Window系統中安裝VMware虛擬機器搭建Linux伺服器虛擬機Linux伺服器
- Linux系統篇-檔案系統&虛擬檔案系統Linux
- VMware Workstation Pro虛擬機器配置Linux系統系統分割槽配置虛擬機Linux
- 詳解 Linux 中的虛擬檔案系統Linux
- VMware - 虛擬機器系統中無法使用鍵盤虛擬機
- Virtualbox 《虛擬機器空間整理》虛擬機
- vmware虛擬機器linux重置密碼虛擬機Linux密碼
- VMware虛擬機器如何安裝win10系統 VMware虛擬機器裝win10系統教程圖解虛擬機Win10圖解
- VMware虛擬機器虛擬機
- VMWare安裝與拖動檔案到虛擬機器虛擬機
- 從rm到linux虛擬檔案系統Linux
- 應用虛擬機器VMware安裝archlabs系統虛擬機
- 虛擬機器之linux系統命令虛擬機Linux
- 給虛擬機器的增加空間虛擬機
- vmware中ubuntu虛擬機器擴容Ubuntu虛擬機
- 如何將物理機Windows系統遷移到VMware虛擬機器?Windows虛擬機
- windows如何傳檔案到linux虛擬機器WindowsLinux虛擬機
- VM 虛擬機器linux從主機複製檔案到虛擬機器錯誤虛擬機Linux
- Linux 核心101:虛擬檔案系統的使命Linux
- VMwareWorkstation虛擬機器安裝Linux系統虛擬機Linux
- 虛擬機器VMware 安裝centos、常規配置、共享檔案等虛擬機CentOS
- VMware虛擬機器Ubuntu根目錄磁碟空間(/dev/sda1)擴容虛擬機Ubuntudev
- 虛擬機器 VM virtualBox && VMware虛擬機
- 虛擬機器巢狀 VMWare虛擬機巢狀
- VMware虛擬機器安裝Ubuntu 16.04.5系統圖文教程虛擬機Ubuntu
- 【虛擬機器資料恢復】誤刪除VMware虛擬機器vmdk檔案的資料恢復案例虛擬機資料恢復
- Linux系統中5款好用的虛擬機器軟體!Linux虛擬機
- 『學了就忘』Linux基礎 — 6、VMware虛擬機器安裝Linux系統(超詳細)Linux虛擬機
- 【虛擬機器】VMware-VMware Tool安裝虛擬機
- 虛擬機器裝win10系統的教程 虛擬機器VMware怎樣安裝win10虛擬機Win10
- 【伺服器資料恢復】VMware虛擬機器磁碟檔案恢復案例伺服器資料恢復虛擬機
- Linux系統中虛擬裝置檔案的各種實用用法Linux
- CentOS 7.9虛擬機器無法主機之間copy檔案CentOS虛擬機
- VMware 虛擬機器一鍵去虛擬化工具虛擬機
- VMware虛擬機器遷移到PVE虛擬機