Linux磁盘概念及其管理工具fdisk:http://www.linuxidc.com/Linux/2016-08/134664.htm
一、
进入linux虚拟机 右键 open in terminal
su 输入密码切换为root用户
fdisk -l 查看磁盘情况
我的目前只有sda一个磁盘
添加sdb磁盘:关机,菜单栏中找到虚拟机—设置,点击硬盘—添加,按步骤走就可以了,启动虚拟机,就有sdb了

二、
虽然硬盘分区表中最多能存储四个分区,但我们实际使用时一般只分为两个分区,一个是主分区(Primary Partion)一个是扩展分区(extended partition)两种,主分区可以马上被使用但不能再分区,扩展分区必须再进行分区后才能使用,也就是说它必须还要进行二次分区。那么由扩充分区再分下去的是什么呢?它就是逻辑分区(Logical Partion),况且逻辑分区没有数量上限制。 对习惯于使用Dos或Windows的朋友来说,有几个分区就有几个驱动器,并且每个分区都会获得一个字母标识符,然后就可以选用这个字母来指定在这个分区上的文件和目录,它们的文件结构都是独立的,非常好理解。
但是初上手Red Hat Linux吗,可就有点恼人了。因为对Linux用户来说无论有几个分区,分给哪一目录使用,它归根结底就只有一个根目录,一个独立且唯一的文件结构。Red Hat Linux中每个分区都是用来组成整个文件系统的一部分,因为它采用了一种叫“挂载点”的处理方法,它的整个文件系统中包含了一整套的文件和目录,且将一个分区和一个目录联系起来。这时要载入的一个分区将使它的存储空间在一个目录下获得。

1、 fdisk -l 查看磁盘情况
这里写图片描述

2、 下面对/dev/sdb 进行分区:


<pre class="prettyprint" name="code">```
[root@localhost Desktop]# fdisk /dev/sdb
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOS disklabel with disk identifier 0x1949791c.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.
<br></br><br></br><br></br><p>Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)</p><br></br><br></br>
<br></br><br></br><br></br><p>WARNING: DOS-compatible mode is deprecated. It's strongly recommended to<br></br>
switch off the mode (command 'c') and change display units to<br></br>
sectors (command 'u').</p><br></br><br></br>
<br></br><br></br><br></br><p>Command (m for help): m                //输入m查看帮助文档<br></br>
Command action<br></br>
a   toggle a bootable flag<br></br>
b   edit bsd disklabel<br></br>
c   toggle the dos compatibility flag<br></br>
d   delete a partition<br></br>
l   list known partition types<br></br>
m   print this menu<br></br>
n   add a new partition              //添加一个新的分区<br></br>
o   create a new empty DOS partition table<br></br>
p   print the partition table<br></br>
q   quit without saving changes<br></br>
s   create a new empty Sun disklabel<br></br>
t   change a partition's system id<br></br>
u   change display/entry units<br></br>
v   verify the partition table<br></br>
w   write table to disk and exit<br></br>
x   extra functionality (experts only)</p><br></br><br></br>
<h1 id="fdisk选中devsdb-输入m所有基本选项都出现,输入n新建分区">fdisk选中/dev/sdb 输入m所有基本选项都出现,输入n新建分区<br></br><br></br><br></br><br></br>
<br></br><br></br><br></br></h1><p>Command (m for help): n<br></br>
Command action<br></br>
e   extended     //扩展分区<br data-filtered="filtered"></br></p><br></br><br></br>

标签: Linux, linux, 分区, fdisk, 磁盘, sdb, partition, table

相关文章推荐

添加新评论,含*的栏目为必填