Ubuntu下添加新分區(qū)并設(shè)置掛載點(diǎn)
最近在做Android項(xiàng)目,可是解壓根文件系統(tǒng)以后,就報(bào)警說硬盤不夠。當(dāng)初設(shè)置使用的大小為15G。不過擴(kuò)展分區(qū)還是很方便的。當(dāng)然首先你得設(shè)置添加使用的硬盤大小,這次我一下提高到了30G,看它還報(bào)警否。
一、創(chuàng)建新分區(qū)
首先查看已經(jīng)有的分區(qū):
root@ubuntu:/# fdisk -l
www.
Disk /dev/sda: 32.2 GB, 32212254720 bytes
255 heads, 63 sectors/track, 3916 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000e11ac
Device Boot Start End Blocks Id System
/dev/sda1 * 1 1871 15021056 83 Linux
/dev/sda2 1871 1958 704513 5 Extended
/dev/sda5 1871 1958 704512 82 Linux swap / Solaris
root@ubuntu:/#
從上面的信息看出/dev/sda1、/dev/sda2兩個(gè)主分區(qū),那么我們可以創(chuàng)建一個(gè)/dev/sda3
root@ubuntu:/# fdisk /dev/sda
WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
switch off the mode (command 'c') and change display units to
sectors (command 'u').
Command (m for help):
m for help就看的出,輸入 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 www.
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)
Command (m for help):
從上面信息知道,n 為添加分區(qū),即新建分區(qū);w 為保存。
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
創(chuàng)建邏輯分區(qū)還是主分區(qū),這里輸入 p 創(chuàng)建主分區(qū)。
如果出現(xiàn):
Selected partition 4
No free sectors available
表示沒有空閑硬盤,這時(shí)你得手動(dòng)在虛擬機(jī)上添加。
接著按默認(rèn)數(shù)據(jù)輸入,最后記得輸入 w 保存。q為退出。
二、格式化新建分區(qū)并設(shè)置掛載點(diǎn)
格式化:
root@ubuntu:/# mkfs.ext4 /dev/sda3
創(chuàng)建掛載點(diǎn):
root@ubuntu:/# mount -t ext4 /dev/sda3 /home/work
把新建的分區(qū)掛載到/home/work目錄,/home/work目錄大小就為自己先添加的硬盤大小。
這時(shí)你就可以查看到home/work里面有個(gè)lost+found目錄。
三、讓系統(tǒng)開機(jī)自動(dòng)掛載
只要在/etc/fstab中添加一行,做過根文件系統(tǒng)的應(yīng)該知道:
/dev/sda3 /home/work ext4 defaults 1 0
www.
重啟下就可以見效了。
查看使用情況:
root@ubuntu:/# df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda1 14784996 5147264 8886680 37% /
none 248640 208 248432 1% /dev
none 254244 248 253996 1% /dev/shm
none 254244 384 253860 1% /var/run
none 254244 0 254244 0% /var/lock
/dev/sda3 15480852 8684096 6010376 60% /home/work
root@ubuntu:/#
當(dāng)然在/home/work目錄,我已經(jīng)添加了很多東西。
|
|