在虚拟机里面添加新硬盘的方法
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
在虚拟机里面添加新硬盘的方法1.虚拟机软件操作
添加过程中非关键步骤忽略,这里添加的硬盘的大小是1G。上述步骤顺序完成后,就完成了向现有的VMWare虚拟机添加了一块“新硬盘”。这个过程等价于在一台真正安装有Linux系统的PC机上添加硬盘的过程。
2.虚拟Linux系统操作
察看刚添加的硬盘是否被系统识别
[root@QQ root]# fdisk -l
Disk /dev/sda: 4294 MB, 4294967296 bytes
255 heads, 63 sectors/track, 522 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 457 3566430 83 Linux
/dev/sda3 458 522 522112+ 82 Linux swap
Disk /dev/sdb: 1073 MB, 1073741824 bytes
128 heads, 32 sectors/track, 512 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Disk /dev/sdb doesn't contain a valid partition table
红色部分表示系统识别了刚添加的硬盘,大小为1G。并警告添加的硬盘没有进行分区操作。
创建扩展分区
[root@QQ root]# fdisk /dev/sdb
Command (m for help): n
Command action
e extended
p primary partition (1-4)
e
Partition number (1-4): 1
First cylinder (1-512, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-512, default 512):
Using default value 512
红色部分是用户输入的,其他都按下回车使用默认设置。
创建逻辑分区
Command (m for help): n
Command action
l logical (5 or over)
p primary partition (1-4)
l
First cylinder (1-512, default 1):
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-512, default 512):
Using default value 512
红色部分是用户输入的,其他都按下回车使用默认设置。
显示上面操作的结果
Command (m for help): p
Disk /dev/sdb: 1073 MB, 1073741824 bytes
128 heads, 32 sectors/track, 512 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Device Boot Start End Blocks Id System /dev/sdb1 1 512 1048560 5 Extended
/dev/sdb5 1 512 1048544 83 Linux
如红色部分所示,新硬盘的扩展分区是sdb1,逻辑分区是sdb5。逻辑分区占用了扩展分区全部的空间。
保存分区操作
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
查看分区后的结果
[root@QQ root]# fdisk -l
Disk /dev/sda: 4294 MB, 4294967296 bytes
255 heads, 63 sectors/track, 522 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 457 3566430 83 Linux
/dev/sda3 458 522 522112+ 82 Linux swap
Disk /dev/sdb: 1073 MB, 1073741824 bytes
128 heads, 32 sectors/track, 512 cylinders
Units = cylinders of 4096 * 512 = 2097152 bytes
Device Boot Start End Blocks Id System /dev/sdb1 1 512 1048560 5 Extended
/dev/sdb5 1 512 1048544 83 Linux
红色部分为分区结果