怎么删除linux分区

怎么删除linux分区,第1张

删除linux分区,用到的工具:xshell,步骤如下:

登录linux服务器,执行以下命令

fdisk -l

输出以下信息:

Disk /dev/vda: 32.2 GB, 32212254720 bytes, 62914560 sectors

Units = sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk label type: dos

Disk identifier: 0x000c1d0e

   Device Boot      Start         End      Blocks   Id  System

/dev/vda1   *        2048    61442047    30720000   83  Linux

Disk /dev/vdb: 75.2 GB, 75161927680 bytes, 146800640 sectors

Units = sectors of 1 * 512 = 512 bytes

Sector size (logical/physical): 512 bytes / 512 bytes

I/O size (minimum/optimal): 512 bytes / 512 bytes

Disk label type: dos

Disk identifier: 0x000cc312

   Device Boot      Start         End      Blocks   Id  System

/dev/vdb1            2048   146800639    73399296   83  Linux

说明:测试服务器有两个分区,vda1和vdb1。

效果图:

2.删除vdb1分区,执行以下命令:

fdisk /dev/vdb1

接着输入:

d

然后选择分区号

最后输入w保存。

注意事项:删除分区前备份数据。

以RH9为例,上面有只有两个分区

/dev/sda1

和/dev/sda2

#fdisk

/dev/sda

(注意sda后不要加数字)

command(m

for

help):

m

输入m后,就会看到很多命令

command(m

for

help):

p

输出当前磁盘的状态

command(m

for

help):

q

想要不存储离开吗?按下q,请不要随便按w

新增分区:#fdisk

/dev/sda

command(m

for

help):

n

此时系统会提示新增P(主分区)还是E(扩展分区),系统一般是(4个P)+E,而且E分区号必须从5开始

p

这里自行决定是P还是E

Partition

number(1-4):3

编号可以随意

First

cylinder:

这里按下ENTER就行了

Last

cylinder

or

..............:

+100M

再输入P的时候就能看到新增的分区了

删除分区:

#fdisk

/dev/sda

command(m

for

help):

d

选择分区号

记住q---不存储离开

w---存储离开

附上容易混淆的两个命令:

df(disk

free)---显示磁盘的文件系统与使用情形

du(disk

usage)---显示指定的目录或文件所占用的磁盘空间


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7416878.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-05
下一篇 2023-04-05

发表评论

登录后才能评论

评论列表(0条)

保存