首页

文章

Linux中如何创建新分区啊?

发布网友 发布时间:2022-02-26 19:48

我来回答

4个回答

热心网友 时间:2022-02-26 21:18

Linux中创建新分区步骤如下。

1、查看当前系统磁盘容量,以及已经分好的分区。

2、然后从还有生于空间的分区上创建新的分区,使用m选项可以先查看创建分区选项。

3、然后使用n选项创建分区,这里因为是同一步磁盘已经存在主分区,所以现在只能创建扩展分区,这里选择e,如果是新磁盘可以直接创建主分区。

4、创建完成后,还需要把扩展分区转换为逻辑分区才可以进行使用,创建完成后需要重启计算机。

5、重启完成后,就可以对分区进行格式化操作了。

6、格式化完成后需要把格式化后的分区进行挂载才可以进行使用,挂载前需要选建立挂载目录。

这就可以从其中一个分区上拿一点空间出来创建一个新的分区。

热心网友 时间:2022-02-26 22:36

Linux下可以用fdisk命令新建分区,方法如下:

1、首先查看硬盘信息,用fdisk -l命令,如果有硬盘有剩余空间就可以对其进行分区。

[root@bogon 桌面]# fdisk -l
Disk /dev/sda: 85.9 GB, 85899345920 bytes
 255 heads, 63 sectors/track, 10443 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000471ad
Device Boot      Start        End      Blocks  Id  System
 /dev/sda1  *          1          26      204800  83  Linux
 Partition 1 does not end on cylinder boundary.
 /dev/sda2              26        3851    30720000  83  Linux
 /dev/sda3            3851        4106    2048000  82  Linux swap / Solaris
 /dev/sda4            4106      10444    50912256    5  Extended
 /dev/sda5            4106      10444    50911232  83  Linux

Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 255 heads, 63 sectors/track, 2610 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disk identifier: 0x00000000
 #从上面看出/dev/sda空间已经用完了,/dev/sdb没有使用。

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

[root@bogon 桌面]# 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 0xfaa2aa49.
 Changes will remain in memory only, until you decide to write them.
 After that, of course, the previous content won't be recoverable.
 
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
 
WARNING: DOS-compatible mode is deprecated. It's strongly recommended to
          switch off the mode (command 'c') and change display units to
          sectors (command 'u').
 
Command (m for help): m //输入m查看帮助文档
 Command action
    a  toggle a bootable flag
    b  edit bsd disklabel
    c  toggle the dos compatibility flag
    d  delete a partition
    l  list known partition types
    m  print this menu
    n  add a new partition //添加一个新的分区
    o  create a new empty DOS partition table
    p  print the partition table
    q  quit without saving changes
    s  create a new empty Sun disklabel
    t  change a partition's system id
    u  change display/entry units
    v  verify the partition table
    w  write table to disk and exit
    x  extra functionality (experts only)
 #fdisk选中/dev/sdb 输入m所有基本选项都出现,输入n新建分区
Command (m for help): n
 Command action
    e  extended
    p  primary partition (1-4)

3、有扩展分区和主分区,逻辑分区在扩展分区中建立。注意到括号中的1-4,最多只能建四个主分区(包括扩展分区)。先建一个主分区:

Command (m for help): n
 Command action
    e   extended
    p   primary partition (1-4)
 p #建主分区
 Partition number (1-4): 1 #分区号为1
 First cylinder (1-2610, default 1): #直接回车默认从第一个柱面开始划分
 Using default value 1
 Last
 cylinder, +cylinders or +size{K,M,G} (1-2610, default 2610): +2G 
#加空间大小,这里有很多种选择:+后面单位可以接M,G,K(记得要大写)表示划分你所加的空间,也可以是柱面数。不管怎样都不能超过该磁盘剩余的空间否则无效。

Command (m for help): p #分好后查看分区信息,刚所做的所有一目了然。
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 255 heads, 63 sectors/track, 2610 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disk identifier: 0xfaa2aa49
 
   Device Boot      Start         End      Blocks   Id  System
 /dev/sdb1               1         262     2104483+  83  Linux

4、同上所述建立扩展分区:

Command (m for help): n
 Command action
    e   extended
    p   primary partition (1-4)
 e #建立扩展分区
 Partition number (1-4): 4
 First cylinder (263-2610, default 263): 
Using default value 263
 Last cylinder, +cylinders or +size{K,M,G} (263-2610, default 2610): +4G
 
Command (m for help): p
 
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 255 heads, 63 sectors/track, 2610 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disk identifier: 0xfaa2aa49
 
   Device Boot      Start         End      Blocks   Id  System
 /dev/sdb1               1         262     2104483+  83  Linux
 /dev/sdb4             263         785     4200997+   5  Extended

5、扩展分区建好就可以在扩展分区建立逻辑分区了

Command (m for help): n
 Command action
    l   logical (5 or over)
    p   primary partition (1-4)
 l #建逻辑分区
 First cylinder (263-785, default 263): 
Using default value 263
 Last cylinder, +cylinders or +size{K,M,G} (263-785, default 785): +2G
 
Command (m for help): p
 
Disk /dev/sdb: 21.5 GB, 21474836480 bytes
 255 heads, 63 sectors/track, 2610 cylinders
 Units = cylinders of 16065 * 512 = 8225280 bytes
 Sector size (logical/physical): 512 bytes / 512 bytes
 I/O size (minimum/optimal): 512 bytes / 512 bytes
 Disk identifier: 0xfaa2aa49
 
   Device Boot      Start         End      Blocks   Id  System
 /dev/sdb1               1         262     2104483+  83  Linux
 /dev/sdb4             263         785     4200997+   5  Extended
 /dev/sdb5             263         524     2104483+  83  Linux

6、上面显示已经建好一个主分区,一个逻辑分区,但是这些现在还没有生效,需要保存退出。

Command (m for help): w #保存退出
 The partition table has been altered!

Calling ioctl() to re-read partition table.
 Syncing disks.

热心网友 时间:2022-02-27 00:10

没余柱面供配置所新建primary区尝试建扩展区逻辑区或者primary区删除重新配primary区

热心网友 时间:2022-02-27 02:02

linux下不行的,你可以把硬盘挂载到某个分区下
手机导航地图语音怎么下载 如何分别真金和仿金首饰 怎样区分真金和仿金首饰呢 小学生新年晚会主持人的串词!!(不要太多)急 大大后天就需要了!!!_百度... 周年晚会策划公司 奥格瑞玛传送门大厅在哪 奥格瑞玛传送门大厅怎么走 锻炼颈椎的几个动作 水多久能结冰 冰能在多长时间内形成 请问水低于0度会结冰吗? 如何防止脱发严重 嘴唇上有黑印用蜜蜡和棉线去除了胡须 软柿子的热量 孕妇可以吃软柿子吗不是西红柿 脆柿子和软柿子的区别 脆柿子好还是软柿子好 软柿子可以多吃吗 “鱼悬洁白振清风”的出处是哪里 用大自然的声音评课好吗? 妇产科博士找超声科工作容易吗 怎能把微信6.2.0版本换回6.1.2版 微信群6.2.4怎么增加人数上限 微信6.2.2如何备份手机通讯录 电脑桌面图标不能放大? 有什么好用的识图软件 识图认人哪个软件最好 手机识图软件什么软件能识别图片位置 小米手机自动锁屏时间怎么修改 小米手机屏幕锁定时间设置教程 能举起100斤算大力吗 中医美容专业是什么 中医美容证有什么用 单声道音频什么意思(开启单声道音频有什么好处) 单声道音频是什么,有什么用处? 户口还未迁移到婆家 娘家户口怎么就没了呢 我结婚没有迁户口,现在娘家也没有怎么办 没领证生的孩子一般会判给谁 没领证生的孩子会判给谁 信用卡卡种有哪些 找一首古风歌曲 男声 低配电脑装w10还是w7流畅 电脑配置低装win7还是win10好 低配电脑适合装WIN7系统还是WIN10系统? ...500s-15isk这个联想笔记本的内存条尺寸是什么型号的有没有知道的... 越快越好.怎样减肥.而且胸部不缩水 请问徐闻县海安长途汽车客运站客服是多少? 过了平台期还会瘦吗 悦耳的意思悦耳的解释 重庆师范大学应用心理学专业的权威性如何? 打印机laserjetm1136mfp怎样设置无线打印 经典电影赏析之1:《精武英雄》 爆米花用的什么玉米 糯玉米哪个好 有机糯玉米的营养价值如何? 四大直辖市换帅原因 京东的订单搜索在哪里看 安装linux系统时怎么手动分区 京东金条的还款流水在哪里查看? linux怎么分区最好? 京东纠纷单在哪里看 进入linux系统怎么linux分区方案 京东白条怎么看我的账单日是哪天 linux采用什么分区方式?什么格式的?一个分区最大支持多大? linux下硬盘分区表示方式 LINUX怎么分区 linux 怎么分区 Linux下如何分区 Linux分区 linux分区方案 Linux安装分区方法 iphone怎样共享位置 iphone12怎么分享位置 iphone怎么共享位置 如何设置iphone共享位置 iphone怎么共享定位位置 linux 如何查看分区 linux硬盘分区 海外购物网站有哪些比较好的? 关于安装linux时要怎么分区的考虑的参考方式 海外购物网站那些最好??? linux系统分区 请推荐个最靠谱的海外购物网站? Linux下硬盘如何分区? 国外购物网站排名是怎样的? linux系统怎么添加磁盘分区 国外有哪些比较好用方便的购物网站? linux磁盘分区 linux系统的磁盘分区有哪几种? linux磁盘分区怎么划分 安装linux时磁盘如何分区? linux磁盘分区问题 linux系统的磁盘分区有哪几种 linux磁盘分区命令是什么 安装linux系统,硬盘如何分区 Linux磁盘组成与分区?
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com