安装linux系统必要的分区是什么?

发布网友 发布时间:2022-02-26 21:27

我来回答

5个回答

懂视网 时间:2022-02-27 01:48

产品型号:Thinkpad E15

系统版本:centos8

案例:在sdb盘上建一个分区,大小为1G

在虚拟机上添加一块硬盘

 

例:对sdb这块盘划分一个100M的分区出来

[root@xuegod63 ~]# fdisk /dev/sdb

...

Command (m for help): m

Command action

   a   toggle a bootable flag

   b   edit bsd disklabel

   c   toggle the dos compatibility flag

   d   delete a partition   删除分区

   g   create a new empty GPT partition table

   G   create an IRIX (SGI) partition table

   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)

Command (m for help): p   -----打印分区表

Command (m for help): n   ----新建一个分区

Partition type:

   p   primary (2 primary, 0 extended, 2 free)    p:主分区

   e   extended                         e:扩展分区

Select (default p):     --#直接默认

Using default response p

Partition number (1,4, default 1):   ---#直接默认

First sector (1230848-41943039, default 1230848):   ---#直接默认 

Using default value 1230848

Last sector, +sectors or +size{K,M,G} (1230848-41943039, default 41943039): +1G 

#输入分区大小

Partition 3 of type Linux and of size 1 GiB is set

Command (m for help): w   #保存退出

格式化并创建文件系统

[root@xuegod63 ~]# mkfs.xfs  /dev/sdb1   

注:-f 参数可以对已经存在文件系统的分区,强制格式化

[root@xuegod63 ~]# mkdir /sdb1   #创建挂载点

[root@xuegod63 ~]# mount /dev/sdb1 /sdb1/ #挂载

[root@xuegod63 ~]# df -h    #查看

总结: 

1. 添加硬盘

2. fdisk /dev/sdb创建分区

3. mkfs.xfs /dev/sdb1格式化并创建文件系统

4. 创建挂载目录/sdb1

5. 挂载/dev/sdb1到/sdb1

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

除了/,其它的都不是必须的。linux也可以使用逻辑分区,但那样的话/boot分区最好在前面,不一定要求是第一个分区,如果新的Linux,一般连在前面这点也不用考虑了。

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

  1、Linux系统必须的分区是根分区(/)和swap交换分区。

  2、普通用户一般分三个区,一个根分区(/),一个家目录(home分区),一个交换分区(swap分区),以80G的硬盘为例,根目录20G,swap跟我的内存一样大,1G,剩下的全分给家目录。这样的好处是分区少,磁盘空间利用率大,以前也尝试过多分几个区,每个分区小了,同一部动画放进去放不下了,这就叫空间利用率低。

  3、复杂一些的要根据用户的硬件资源和使用Linux目的进行单独分区。

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

linux如果不知道怎么划分分区,只要有一个/分区就可以了

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

首先,你要安装win7系统,win7系统的分区在磁盘的前面,然后留一部分空间给linux,这部分空间不需要格式化,在安装linux的时候使用这部分空间再分区即可。
不管你留的是主分区还是逻辑分区,linux都是可以安装进去的。
至于分区大小,自己看着办了,没有一个标准。容量大,分多点,容量小,安装linux的时候就尽量少装安装包。
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com