VitrualBox是不容許更改重置硬盤大小的,因此當硬盤不足時,只能添加新硬盤。ide
步驟以下:
ui
1. 關閉Ubuntu系統,打開VistualBox,"設置"->"存儲"->「添加虛擬硬盤」this
2. 啓動Ubuntu系統,操做命令以下:
#1 sudo fdisk -l // 查看現有系統磁盤空間
----------------------------------------------------------------------------
Disk /dev/sda: 10.7 GB, 10737418240 bytes
255 heads, 63 sectors/track, 1305 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x000af383
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1244 9992398+ 83 Linux
/dev/sda2 1245 1305 489982+ 5 Extended
/dev/sda5 1245 1305 489951 82 Linux swap / Solaris
Disk /dev/sdb: 5368 MB, 5368709120 bytes
255 heads, 63 sectors/track, 652 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000
Disk /dev/sdb doesn't contain a valid partition table
----------------------------------------------------------------------------
以上信息能夠看到新增長的磁盤空間 /dev/sdb ,這裏咱們須要給新的磁盤空間分區。
#2 fdisk /dev/sdb
#3 Command (m for help): m // 鍵入m,可看到幫助信息
打印結果以下:
----------------------------------------------------------------------------
Command action
a toggle a bootable flag
b edit bsd disklabel
c toggle the dos compatibility flag
d delete a partition
l list known partition types
m print this menu
n add a new partition
o create a new empty DOS partition table
p print the partition table
q quit without saving changes
s create a new empty Sun disklabel
t change a partition's system id
u change display/entry units
v verify the partition table
w write table to disk and exit
x extra functionality (experts only)
----------------------------------------------------------------------------
#4 Command (m for help): n
打印結果以下:
----------------------------------------------------------------------------
Command action
e extended
p primary partition (1-4)
----------------------------------------------------------------------------
鍵入:p,選擇添加主分區;
鍵入:1,選擇主分區編號爲1, 這樣建立後的主分區爲sdb1;
#5 First Cylinder(1-1014,default 1): 1 // 第一個主分區起始的磁盤塊數
#6 Last cylindet or +siza or +sizeM or +sizeK: +1024MB // 能夠是以MB爲單位的數字或者以磁盤塊數,這裏咱們輸入+1024MB表示分區大小爲1G。
這樣咱們就建立完一個分區,若是要建立更多分區能夠照上面的步驟繼續建立。
最後,鍵入:w,保存全部並退出,完成新磁盤的分區。
4. 格式化磁盤分區
#7 sudo mkfs -t ext3 /dev/sdb1 // 用ext3格式對 /dev/sdb1 進行格式化
5. 掛載分區
#8 sudo mkdir /data // 建立新的掛載點
#9 sudo mount /dev/sdb1 /data // 將新磁盤分區掛載到 /data 目錄下
#10 sudo df // 查看掛載結果
6. 開機自動掛載
#11 vi /etc/fstab // 修改 /etc/fstab 文件
在 /etc/fatab 文件中,添加以下內容:
/dev/sdb1 /data ext3 defaults 1 2htm