当前位置:   article > 正文

linux分区ID改为8e,Linux新建分区。 创建1个80m的分区。修改其分区ID号为LVM(8e),将分区信息写入内核,让其生效,在线等。...

parted改为8e

假如磁盘为/dev/sda,那么创建过程如下# fdisk /dev/sda n #创建新分区 t #修改分区类型 8e w #保存分区# partprobe 更新分区表同样的方法创建fd,(1)进入磁盘分区命令[root@station7 ~]# fdisk /dev/sdaThe number of cylinders for this disk is set to 9726.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) 注:下面的命令也是在fdisk命令环境之下输入的(2)查看分区信息p Command (m for help): p Disk /dev/sda: 80.0 GB, 80000000000 bytes255 heads, 63 sectors/track, 9726 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 13 104391 83 Linux/dev/sda2 14 3837 30716280 8e Linux LVM/dev/sda3 3838 4098 2096482+ 82 Linux swap / Solaris/dev/sda4 4099 9726 45206910 5 Extended/dev/sda5 4099 4160 497983+ 83 Linux/dev/sda6 4161 4285 1004031 8e Linux LVM/dev/sda7 4286 4287 16033+ 83 Linux/dev/sda8 4288 4350 506016 fd Linux raid autodetect/dev/sda9 4351 4413 506016 fd Linux raid autodetect(3)创建分区n Command (m for help): n First cylinder (4414-9726, default 4414):Using default value 4414 //注意:默认是从4414开始分配的(4)制定分区的大小,在这里是80M,输入“+80M”即可Last cylinder or +size or +sizeM or +sizeK (4414-9726, default 9726): +80M (5)修改分区类型t Command (m for help): t Partition number (1-10): 10 #选择分区Hex code (type L to list codes): 8e #分区类型名称,8e是LVM的id号Changed system type of partition 10 to 8e (Linux LVM)(6)保存退出,修改完毕w Command (m for help): w #保存退出The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: Re-reading the partition table failed with error 16: Device or resource busy.The kernel still uses the old table.The new table will be used at the next reboot.Syncing disks.[root@station7 ~]# partprobe #同步分区表www.mh456.com防采集。

[root@station7 ~]# fdisk /dev/sdaThe number of cylinders for this disk is set to 9726.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): p #查看分区Disk /dev/sda: 80.0 GB, 80000000000 bytes255 heads, 63 sectors/track, 9726 cylindersUnits = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System/dev/sda1 * 1 13 104391 83 Linux/dev/sda2 14 3837 30716280 8e Linux LVM/dev/sda3 3838 4098 2096482+ 82 Linux swap / Solaris/dev/sda4 4099 9726 45206910 5 Extended/dev/sda5 4099 4160 497983+ 83 Linux/dev/sda6 4161 4285 1004031 8e Linux LVM/dev/sda7 4286 4287 16033+ 83 Linux/dev/sda8 4288 4350 506016 fd Linux raid autodetect/dev/sda9 4351 4413 506016 fd Linux raid autodetectCommand (m for help): n #创建分区First cylinder (4414-9726, default 4414): Using default value 4414Last cylinder or +size or +sizeM or +sizeK (4414-9726, default 9726): +80M #指定大小Command (m for help): t #修改分区类型Partition number (1-10): 10 #选择分区Hex code (type L to list codes): 8e #分区类型名称Changed system type of partition 10 to 8e (Linux LVM)Command (m for help): w #保存退出The partition table has been altered!Calling ioctl() to re-read partition table.WARNING: Re-reading the partition table failed with error 16: Device or resource busy.The kernel still uses the old table.The new table will be used at the next reboot.Syncing disks.[root@station7 ~]# partprobe #同步分区表

在学习 Linux 的过程中,安装 linux 是每一个初学者的第一个门槛。在这个过程中间,最大的困惑莫过于给硬盘进行分区。虽然,现在各种发行版本的 Linux 已经提供了友好的图形交互界面,但是很多的人还是感觉无从下手。这其中的原因主要是不清楚 L

linux分区步骤:fdisk /dev/sda #以/dev/sda为例,请参考自己实际机器情况进入fdisk分区界面,然后按n键新建分区。选择是主分区还是逻辑分区,选l表示逻辑分区。接下来是分区大小,起始柱面,选择默认就可以了,按enter键。结束柱面,可以写+80M。这样一个分区就创建好了。然后按t键修改分区信息。选择你刚才新建的分区,如果不清楚,可以按p键查看分区。把分区ID号改为8e。然后按w键保存分区表,这样就写入内核了。

不同发行版的安装程序采用的分区工具不尽相同,不知道你安装的哪个发行版? 而且看你的问题好像与LVM不是一回事。如果只是需要建立一个普通的逻辑分区,在新建分区时默认是主分区,你可以在主分区这个选项旁边下拉菜单,改变为逻辑分区就OK了,

首先你要写清楚你是什么 版本的 linux其次 你这么做用 来干什么,什么目的?虽然我会的 不多。

因为boot文件系统必须在主分区才能启动,所以要做一个boot分区。 下面我对不知道怎么分区的用户而言说说高级用户应该明白自己需要什么,例如确定自己使用的BIOS可能无法读取100GB后的位置或是要使用LVM等。 linux社区的一个问题是,很多老旧的资

内容来自www.mh456.com请勿采集。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/451368
推荐阅读
相关标签
  

闽ICP备14008679号