先關(guān)閉虛擬機(jī)電源,做如下設(shè)置:“ 虛擬機(jī)”--“虛擬機(jī)設(shè)置”--“磁盤(pán)”--“擴(kuò)展”
可以隨意添加你需要增到到的磁盤(pán)大小(如15Gb棒掠,表示磁盤(pán)總量,包含原來(lái)的磁盤(pán)容量); 再重啟電源進(jìn)入系統(tǒng)做如下步驟設(shè)置。
啟動(dòng)虛擬機(jī)系統(tǒng)棒口,用root登錄(后續(xù)所有步驟都應(yīng)以root用戶身份登錄操作),在 命令行用fdisk -l查看酵紫。由于這里是直接修改了原始空間大小亡鼠,因此可以看到/dev/sda空間改變?yōu)?6.1GB(原磁盤(pán)空間從10G增加到15G)。如果是從VMware菜單里增加虛擬硬盤(pán)稳强,則會(huì)多出一個(gè)/dev/sd?场仲,這里的?代表硬盤(pán)編號(hào)和悦,第一個(gè)硬盤(pán)編號(hào)為a即sda,第二個(gè)就是sdb渠缕,第三個(gè)是sdc鸽素,以此類推,一般來(lái)說(shuō)亦鳞,如果以前沒(méi)有增加過(guò)硬盤(pán)馍忽,那么原來(lái)的硬盤(pán)就是sda,通過(guò)VMware菜單增加的虛擬硬盤(pán)編號(hào)就是sdb燕差。如果添加的第二塊硬盤(pán)是IDE硬盤(pán)遭笋,就應(yīng)該看到hdb,如果是 SCSI硬盤(pán)徒探,看到的就應(yīng)該是sdb瓦呼。
2.使用fdisk /dev/sda進(jìn)入菜單項(xiàng),m是列出菜單测暗,p是列出分區(qū)表央串,n是增加分區(qū),w是保存并推出碗啄。由于這里增加的磁盤(pán)只有5G蹋辅,因此5G劃為一個(gè)區(qū)。
[root@localhost ~]# fdisk /dev/sda
The number of cylinders for this disk is set to 1958.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
software that runs at boot time (e.g., old versions of LILO)
booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): p
Disk /dev/sda: 16.1 GB, 16106127360 bytes
255 heads, 63 sectors/track, 1958 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1305 10377990 8e Linux LVM
Command (m for help): n Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 3 First cylinder (1306-1958, default 1306): +1306
Last cylinder or +size or +sizeM or +sizeK (1306-1958, default 1958): +1958
Value out of range.
Last cylinder or +size or +sizeM or +sizeK (1306-1958, default 1958):
Using default value 1958
Command (m for help): p
Disk /dev/sda: 16.1 GB, 16106127360 bytes
255 heads, 63 sectors/track, 1958 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1305 10377990 8e Linux LVM
/dev/sda3 1306 1958 5245222+ 83 Linux
Command (m for help): w The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: Re-reading the partition table failed with error 16: 設(shè)備或資源忙.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
/dev/sda3 1306 1958 5245222+ 83 Linux
[root@localhost ~]# reboot #需reboot一下機(jī)器繼續(xù)如下步驟
[root@localhost ~]#df -h #掛載前的分區(qū)情況 文件系統(tǒng) 容量 已用 可用 已用% 掛載點(diǎn)
/dev/mapper/VolGroup00-LogVol00
8.6G 2.8G 5.4G 35% /
/dev/sda1 99M 12M 82M 13% /boot
tmpfs 125M 0 125M 0% /dev/shm
使用mkfs.ext3 /dev/sda3 格式化分區(qū)
[root@localhost ~]# mkfs.ext3 /dev/sda3 mke2fs 1.39 (29-May-2006)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
656000 inodes, 1311305 blocks
65565 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=1346371584
41 block groups
32768 blocks per group, 32768 fragments per group
16000 inodes per group
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 31 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
[root@localhost ~]# cd / [root@localhost /]# mkdir /cm #增加一個(gè)/cm
[root@localhost /]# mount /dev/sda3 /cm #掛載分區(qū)到 /cm
[root@localhost /]# df -h #掛載后的分區(qū)情況 文件系統(tǒng) 容量 已用 可用 已用% 掛載點(diǎn)
/dev/mapper/VolGroup00-LogVol00
8.6G 2.8G 5.4G 35% /
/dev/sda1 99M 12M 82M 13% /boot
tmpfs 125M 0 125M 0% /dev/shm
/dev/sda3 5.0G 139M 4.6G 3% /cm
4.設(shè)置開(kāi)機(jī)自動(dòng)加載
創(chuàng)建加載點(diǎn):mkdir /cm 掛載之后挫掏, 修改vi /etc/fstab 分區(qū)表文件侦另,
在文件最后加上 /dev/sda3 /cm ext3 defaults 0 0 然后保存,重啟即可尉共。
(注意:修改分區(qū)表如果有誤褒傅,將導(dǎo)致進(jìn)不了linux桌面系統(tǒng),但這時(shí)系統(tǒng)會(huì)進(jìn)入commandline模式袄友,我們可以在commandline模式下對(duì)有誤的fstab進(jìn)行修復(fù)更改殿托,不過(guò)默認(rèn)情況下這個(gè)commandline模式會(huì)是Read-Only file system,這意味著你的任何修改操作都是不允許的剧蚣,但可以通過(guò)命令 mount / -o remount,rw 來(lái)解除這個(gè)限制)支竹。
u盤(pán)掛載方法
(二) 解決mount: unknown filesystem type ‘ntfs’ 問(wèn)題
問(wèn)題:
# mount –t ntfs /dev/sdb1 /mnt/
mount: unknown filesystem type ‘ntfs’
這是由于CentOS release 5.5(Final)上無(wú)法識(shí)別NTFS格式的分區(qū)。
解決辦法:
通過(guò)使用 ntfs-3g 來(lái)解決鸠按。
打開(kāi)ntfs-3g的下載點(diǎn)http://www.tuxera.com/community/ntfs-3g-download/ 礼搁,將最新穩(wěn)定(當(dāng)前最新版本為ntfs-3g-2011.1.15)下載到CentOS,執(zhí)行以下命令安裝:
- 編譯安裝 ntfs-3g:
# tar zxvf ntfs-3g-2011.1.15.tgz
# cd ntfs-3g-2011.1.15
# ./configure
# make
# make install
在網(wǎng)上找了目尖,方法一樣安上 還是不能掛載馒吴,最后在官方站 找到方法了,如下:
mount -t ntfs-3g /dev/sda5 /mnt/windows