linux删除主分区命令 linux删除系统分区

关于删除linux分区?先进BIOS把ACHI关掉(不同主板不同方法,你百度下你的电脑怎么关ACHI,必须关掉,XP默认不支持SATA,否则安装或者启动XP的时候会蓝屏)
然后百度大白菜PE,下载大白菜PE安装包
找个空U盘(mp3,手机都不行),然后安装大白菜PE到U盘
重启电脑进入U盘系统(有些电脑开机后狂按F12进入启动选择项,有些是按enter再按F12进入)
启动PE , 找到开始程序里面的PM分区工具
然后就可以删除linux分区了(删除linux的ext和swap分区后,新建NTFS分区 , 激活想要安装XP系统的那个分区,然后修复MBR)
安装XP系统吧
Linux下清除磁盘分区及残留raid信息Linux下清除磁盘分区及残留raid信息
适用场景:
1、 查看硬盘编号
2、 删除磁盘分区
3、 删除磁盘内残留raid信息
*本文适用于430-8i等只有低速格式化或没有格式化功能的HBA卡使用,若raid卡有格式化功能,建议使用raid卡格式化解决问题 。
一、查看硬盘编号
适用lsblk命令可以查看当先系统下的磁盘相关信息及磁盘大小
sda为硬盘为系统内的第一个硬盘
sda1为该硬盘下的第一个分区以此类推
二、删除磁盘分区
三、删除磁盘内残留raid信息
如果磁盘在其他raid卡中做过raid,在430-8i这类没有格式化功能的HBA卡中使用时,使用parted等相关命令无法将raid残留信息删除导致无法分区正常安装系统 。
现象如下:
Raid卡残留信息的type为dmraid分区名称以`-ddf_开头
删除方法如下:
整体思路是通过dd命令将残留信息所在扇区置零
通常raid卡的信息会放在最后一个柱面即最后63个扇区
以sda为例:
发现有dpIBM等信息,为残留的raid信息
再打印发现已经置零,清除成功 。
重启节点重新加载linux中才会生效
linux下如何删除磁盘分区分区示例:比如分/dev/sda 硬盘
#: fdisk /dev/sda
The number of cylinders for this disk is set to 19457.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
(e.g., DOS FDISK, OS/2 FDISK)
Command (m for help): m #帮助,输入M
Command action
atoggle a bootable flag
bedit bsd disklabel
ctoggle the dos compatibility flag
ddelete a partition删除一个分区
llist known partition types
mprint this menu
nadd a new partition 创建一个新的分区
ocreate a new empty DOS partition table
pprint the partition table 打印分区表
qquit without saving changes 退出不保存
screate a new empty Sun disklabel
tchange a partition\'s system id 改变分区类型
uchange display/entry units 改变显示/输入的单位
vverify the partition table 验证这个分区表
wwrite table to disk and exit保存退出
xextra functionality (experts only)
Command (m for help): d #删除分区
Partition number (1-8): 2
Command (m for help): p # 打印分区表
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x0003ce53
Device BootStartEndBlocksIdSystem
/dev/sda1*13825307200007HPFS/NTFS
/dev/sda3765011474307200007HPFS/NTFS
/dev/sda4114751945764123447+5Extended
/dev/sda5114751444423856472+7HPFS/NTFS
/dev/sda61924719457169482682Linux swap / Solaris
/dev/sda714445156609767488+83Linux
/dev/sda8156611924628804513+83Linux
Partition table entries are not in disk order
Command (m for help): n #建立新分区

推荐阅读