给VMware虚拟机中的Ubuntu扩大磁盘分区(2)

4.建立新的Ubuntu硬盘分区
 
$sudo fdisk /dev/sda
 
1)将进入fdisk模式:
 
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):
 
2)使用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)
 
Command (m for help):
 
3) 输入n(add new),创建分区
 
Command action
 
l logical (5 or over)
 
p primary partition (1-4)
 
此时可以有两种选择,输入e表示创建扩展分区,输入p表示创建主分区,后面的1-4表示总共可以创建4块主分区,其中有的应该已经存在了。
 
在此我们输入p来创建主分区。
 
4) 输入p,选择primary(可以使用1-4)
 
Partion number(1-4):
 
在此输入一个数字(1-4),表示你想创建的分区号。注意
 
要输入尚未存在的分区号。例如3。
 
接下来提示输入起始和结束扇区,采用默认值
 
5)保存创建的分区
 
Command (m for help): w
 
The partition table has been altered!
 
Calling ioctl() to re-read partition table.
 
Syncing disks.
 
输入w,保存创建的分区
 
重新启动后,检查/dev/sda3是否存在(或不重启,执行:partprobe)
 
我们就成功创建完一个分区。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/20024.html