centos7磁盘逻辑分区命令_CentOS7 磁盘分区(主分区、扩展分区和逻辑分区)的创建、挂载与删除...

创建磁盘分区

查看磁盘分区情况:fdisk -l

[root@model ~]# fdisk -l //查看系统中所有磁盘的分区列表

Disk/dev/sda: 107.4 GB, 107374182400 bytes, 209715200sectors

Units= sectors of 1 * 512 = 512bytes

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

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

Disk label type: dos

Disk identifier:0x000da34bDevice Boot Start End Blocks Id System/dev/sda1 * 2048 591871 294912 83Linux/dev/sda2 591872 189335551 94371840 83Linux/dev/sda3 189335552 209715199 101898248e Linux LVM

Disk/dev/sdb: 1099.5 GB, 1099511627776 bytes, 2147483648sectors //sdb磁盘未分区,1099.5GB

Units= sectors of 1 * 512 = 512bytes

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

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

Disk label type: dos

Disk identifier:0x3238f946Device Boot Start End Blocks Id System

Disk/dev/mapper/centos-swap: 8334 MB, 8334082048 bytes, 16277504sectors

Units= sectors of 1 * 512 = 512bytes

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

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

创建主分区

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

Welcome to fdisk (util-linux 2.23.2).

Changes will remaininmemory only, until you decide to write them.

Be careful beforeusingthe write command.

Command (mforhelp): m //查看菜单信息

Command action

a toggle a bootable flag

b edit bsd disklabel

c toggle the dos compatibility flag

d delete a partition

g create anewempty GPT partition table

G create an IRIX (SGI) partition table

l list known partition types

m printthismenu

n add anewpartition

o create anewempty DOS partition table

p print the partition table

q quit without saving changes

s create anewempty 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 (mforhelp): n //新增分区

Partition type:

p primary (0 primary, 0 extended, 4free) //主分区

e extended //扩展分区

Select (defaultp): p

Partition number (1-4, default 1): 1 //选择分区号,范围为1~4(主分区和扩展分区加起来最多只能建立 4 个,而扩展分区最多只能建立 1 个),这里选择1

First sector (2048-2147483647, default 2048): 2048 //分区的起始扇面,默认从2048开始Last sector,+sectors or +size{K,M,G} (2048-2147483647, default 2147483647): +10G //指定该磁盘分区的大小,默认占用整个磁盘;这里用 +size{K,M,G} 命令指定 10G

Partition1 of type Linux and of size 10 GiB is setCommand (mforhelp): p //打印当前磁盘的分区列表

Disk/dev/sdb: 1099.5 GB, 1099511627776 bytes, 2147483648sectors

Units= sectors of 1 * 512 = 512bytes

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

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

Disk label type: dos

Disk identifier:0x3238f946Device Boot Start End Blocks Id System/dev/sdb1 2048 20973567 10485760 83Linux

Command (mforhelp): w //将本次配置写入硬盘

The partition table has been altered!Calling ioctl() to re-read partition table.

Syncing disks.

[root@model ~]# lsblk                                            //lsblk 列表查看block分区

NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT

fd0 2:0 1 4K 0 disk

sda 8:0 0 100G 0 disk

├─sda1 8:1 0 288M 0 part /boot

├─sda2 8:2 0 90G 0 part /

└─sda3 8:3 0 9.7G 0 part

├─centos-pool00_tmeta 253:0 0 8M 0 lvm

│ └─centos-pool00-tpool 253:2 0 7.8G 0 lvm

│ ├─centos-swap 253:3 0 7.8G 0 lvm [SWAP]

│ └─centos-pool00 253:4 0 7.8G 1 lvm

└─centos-pool00_tdata 253:1 0 7.8G 0 lvm

└─centos-pool00-tpool 253:2 0 7.8G 0 lvm

├─centos-swap 253:3 0 7.8G 0 lvm [SWAP]

└─centos-pool00 253:4 0 7.8G 1 lvm

sdb 8:16 0 1T 0 disk

└─sdb1 8:17 0 10G 0 part                                         //找到新建的分区/dev/sdb1

sr0 11:0 1 1024M 0 rom

新建的分区还没有格式化和挂载,所以还不能使用。用上述方法依次创建2、3号主分区,并预留4号分区作为扩展分区。

创建扩展分区

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

Welcome to fdisk (util-linux 2.23.2).

Changes will remain in memory only, until you decide to write them.

Be careful before using the write command.

Command (m for help): n                                          //新建分区

Partition type:

p primary (3 primary, 0 extended, 1 free)

e extended

Select (default e): e                                            //选择扩展分区

Selected partition 4

First sector (62916608-2147483647, default 62916608):            //默认起始扇面

Using default value 62916608

Last sector, +sectors or +size{K,M,G} (62916608-2147483647, default 2147483647):       //默认将剩余全部空间分配给该扩展分区

Using default value 2147483647

Partition 4 of type Extended and of size 994 GiB is set

Command (m for help): w                                          //将本次设置写入磁盘

The partition table has been altered!

Calling ioctl() to re-read partition table.

Syncing disks.

这里把 /dev/sdb 硬盘的所有剩余空间都建立为扩展分区,也就是建立 3 个主分区,剩余空间都建立成扩展分区,再于扩展分区中建立逻辑分区。扩展分区是不能被格式化和直接使用的,所以还要在扩展分区内部再建立逻辑分区。

创建逻辑分区

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

Welcome to fdisk (util-linux 2.23.2).

Changes will remaininmemory only, until you decide to write them.

Be careful beforeusingthe write command.

Command (mforhelp): n //新建分区

All primary partitions areinuse

Adding logical partition5 //所有主分区已分配完,默认新建逻辑分区,从分区号从 5 开始First sector (62918656-2147483647, default 62918656): //起始扇面

Usingdefault value 62918656Last sector,+sectors or +size{K,M,G} (62918656-2147483647, default 2147483647): +5G //指定逻辑分区的大小为 5G

Partition5 of type Linux and of size 5 GiB is setCommand (mforhelp): w //保存设置

The partition table has been altered!Calling ioctl() to re-read partition table.

Syncing disks.

所有分区过程中如果不保存并退出是不会生效的,所以建立错了也没有关系,使用 q 命令不保存退出即可。如果使用了 w 命令,就会保存退出。有时因为系统的分区表正忙,所以需要重新启动系统才能使新的分区表生效。

格式化分区

[root@model ~]# mkfs.xfs /dev/sdb1 //将分区/dev/sdb1的文件类型格式化为xfs

mke2fs1.42.9 (28-Dec-2013)

Filesystem label=OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0blocks655360 inodes, 2621440blocks131072 blocks (5.00%) reserved forthe super user

First data block=0Maximum filesystem blocks=2151677952

80block groups32768 blocks per group, 32768fragments per group8192inodes per group

Superblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632Allocating group tables: done

Writing inode tables: done

Creating journal (32768blocks): done

Writing superblocks and filesystem accounting information: done------------- 修改磁盘分区的文件类型 -----------------[root@model~]# blkid /dev/sdb6 //查看 /dev/sdb6 的 UUID 和 文件类型/dev/sdb6: UUID="89f4f8e4-0592-4e91-9064-7388152fec32" TYPE="xfs"[root@model~]# mkfs.ext4 /dev/sdb6 //将逻辑分区的文件类型从 xfs 修改为 ext4, 如果是从 ext4 修改为 xfs 需要在 命令后加 ‘-f’ 强制修改

mke2fs1.42.9 (28-Dec-2013)

Filesystem label=OS type: Linux

Block size=4096 (log=2)

Fragment size=4096 (log=2)

Stride=0 blocks, Stripe width=0blocks327680 inodes, 1310720blocks65536 blocks (5.00%) reserved forthe super user

First data block=0Maximum filesystem blocks=1342177280

40block groups32768 blocks per group, 32768fragments per group8192inodes per group

Superblock backups stored on blocks:32768, 98304, 163840, 229376, 294912, 819200, 884736Allocating group tables: done

Writing inode tables: done

Creating journal (32768blocks): done

Writing superblocks and filesystem accounting information: done

[root@model~]# blkid /dev/sdb6/dev/sdb6: UUID="846373a4-35b0-4988-9574-a508da3906f2" TYPE="ext4"

挂载磁盘分区

[root@model ~]# mount /dev/sdb1 /usr/exdata1 //将 /dev/sdb1 磁盘分区挂载到新建的挂载点 /usr/exdata1 上

[root@model~]# df -T -h | grep /dev/sdb1 //查看 该分区是否已挂载

Filesystem Type Size Used Avail Use%Mounted on

/dev/sdb1 ext4 9.8G 37M 9.2G 1% /usr/exdata1

[root@model~]# vim /etc/fstab //修改fstab配置文件,将该磁盘分区设置为开机自动挂载

# Add command by Kay.sunin 2020/9/29 16:58 //在配置文件中添加一行命令

/dev/sdb1 /usr/exdata1 xfs defaults 1 2 ///dev/sdb1 选择一个分区;xfs 是当前分区的格式; defaults = rw, suid, dev, exec, auto, nouser, and async; 1 需要 dump;0 不需要 dump; 2 开机时检查顺序,非 boot 文件系统为 1,其它文件系统都为 2

[root@model~]# df -h | grep /dev/sdb1//重启后再次查看分区挂载情况,发现已经自动挂载~]# umount /usr/

删除磁盘分区

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

Welcome to fdisk (util-linux 2.23.2).

Changes will remaininmemory only, until you decide to write them.

Be careful beforeusingthe write command.

Command (mforhelp): d //删除分区

Partition number (1-6, default 6): 6 //选择待删除的分区号Partition6 isdeletedCommand (mforhelp): w //保存设置

The partition table has been altered!Calling ioctl() to re-read partition table.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/534737.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php使用webservivce_JWS服务开发使用指南

均支持该版本&#xff0c;主要你的web.xml文件中必须制定2.5版本xmlversion"1.0"encoding"UTF-8"?><web-appxmlns:xsi"http://www.w3.org/2001/XMLSchema-instance"xmlns"http://java.sun.com/xml/ns/javaee"xmlns:web"ht…

android sdk是灰的,Android Studio 2.3 sdk管理器标签灰显

Android Studio 2.3 - >配置 - > SDK管理器。 这些选项卡呈灰色显示&#xff1a; SDK工具&#xff0c;SDK更新站点。此外&#xff0c;“Show Package Details”复选框呈灰色。 系统正常更新。没有错误消息。Android Studio 2.3 sdk管理器标签灰显我认为这发生在Studio 2.…

android layer阴影,Android Layer-List实现自定义Shape阴影

一、给右侧和底层加阴影android:left"2dp"android:top"2dp">android:angle"270"android:endColor"#0F000000"android:startColor"#0F000000" />android:bottomLeftRadius"6dip"android:bottomRightRadius&q…

localdatetime 默认时间_java中的时间与时区:LocalDateTime和Date

LocalDateTimeLocalDateTime本身不包含时区信息&#xff0c;它存储的是年、月、日、时分秒&#xff0c;纳秒这样的数字。在不同的时区下&#xff0c;这样的数字代表不同的时间。比如一个LocalDateTime存储2020-01-01 08&#xff1a;00&#xff1a;00&#xff0c;这里省略纳秒。…

html 拖拽坐标,Html+css实现拖拽导航条

div横向拖拽排序body, div {padding: 0px;margin: 0px;}.box {position: relative;margin-left: 15px;padding: 10px;padding-right: 0px;width: 810px;border: blue solid 1px;}.box ul{list-style: none;overflow: hidden;padding: 0;margin:0;}.drag {float: left;border: #…

seata 如何开启tcc事物_微服务分布式事务4种解决方案实战

分布式事务分布式事务是指事务的参与者&#xff0c;支持事务的服务器&#xff0c;资源服务器分别位于分布式系统的不同节点之上&#xff0c;通常一个分布式事物中会涉及到对多个数据源或业务系统的操作。典型的分布式事务场景&#xff1a;跨银行转操作就涉及调用两个异地银行服…

python redis 哨兵_Redis哨兵机制

概述上篇文章主要说了Redis 复制的内容&#xff0c;但 Redis 复制有一个缺点&#xff0c;当主机 Master 宕机以后&#xff0c;我们需要人工解决切换&#xff0c;比如使用slaveof no one 。实际上主从复制并没有实现&#xff0c;高可用&#xff0c; 高可用侧重备份机器&#xff…

labview自动生成html,使用LabVIEW实现网页数据提取及交互.pptx

使用 LabVIEW 控制IE或WebBrowser实现网页数据的提取和交互By GSD&#xff1a;attraction - 张生斌2013.1.11可能会遇到的问题网页能否被程序控制&#xff0c;程序和网页如何通信&#xff1f;如何下载网页中我们所关注的数据&#xff1f;如何用程序修改网页中表单的内容&#x…

pdf python定位_如何使用PyPDF2获取PDF定位

我正在使用Python/Django。PyPDF2阅读我目前的pdf。如何使用PyPDF2获取PDF定位我想阅读我已经保存的pdf文件&#xff0c;并获得pdf内单页的方向。我期望能够确定页面是横向还是纵向。tempoutpdffilelocation settings.TEMPLATES_ROOT nameOfFinalPdfpageOrientation pageToE…

android 内容显示栏,android – 在工具栏下显示内容

您好我试图简单地将我的内容放在工具栏下面,但是当我运行我的应用程序时,当它应该低于它时,一些内容隐藏在它后面.我已经阅读了关于使用框架布局来尝试将其分开但我已经陷入困境.我目前正在使用随软件提供的基本android studio导航抽屉模板,并想知道我必须做出哪些更改.我的协调…

ios nslog 例子_iOS 典型内存泄露案例 - zhenshan2013的个人空间 - 51Testing软件测试网 51Testing软件测试网-软件测试人的精神家园...

最近进行iOS 安全黑匣子的测试,在Demo中通过不断的点击调加密接口,同时通过苹果自带instrument的leak工具监控,发现典型的内存泄漏,监控图如下:上图中红色的部分表示该操作触发的代码有内存泄漏的可能,于是拿出源代码来研究一番,源代码如下://加密接口-(IBAction)encrypt:(id)s…

HTML饼状图中心添加文字,echarts饼状图环形中间动态文字

let currName "";let myChart echarts.getInstanceByDom(document.getElementById(‘chart-panel‘));//console.log(myChart);myChart.on(‘mouseover‘, (params) >{currNameparams.name;console.log(params)let opmyChart.getOption();let _label{normal:{sho…

pos共识机制_OK区块链60讲 | 第17集:什么是PoS共识机制

什么是PoS共识机制https://www.zhihu.com/video/1196092110837805056《OK区块链60讲》是由OKEx&#xff06;新浪科技联合出品的区块链科普动画视频&#xff0c;针对区块链零基础用户&#xff0c;通过系列文章、科普动画等形式&#xff0c;从概念、技术、应用等角度&#xff0c;…

html溢出左右滚动,html-选项卡溢出时水平滚动

我在容器中有一个基本表。 该表将包含约25列。 我正在尝试在表格溢出时添加水平滚动条&#xff0c;现在过得很艰难。现在正在发生的情况是&#xff0c;表格单元格通过自动调整单元格的高度并保持固定的表格宽度来容纳单元格的内容。对于我的方法为何无法解决此问题的建议&#…

大疆无人机android登录闪退,你的DJI APP闪退了吗?附官方解决方案

原标题&#xff1a;你的DJI APP闪退了吗&#xff1f;附官方解决方案今天&#xff0c;很多飞友反应&#xff0c;在使用大疆无人机过程中出现DJI APP闪退情况。随后在大疆社区官方给出了解决方案&#xff0c;如下&#xff1a;关于DJI GO 4 APP闪退解决方案目前关于DJI GO4 APP闪退…

ps导出gif颜色不对_PS基础知识(1)

视图平移命令&#xff1a;1,使用工具箱中的抓手工具或着&#xff08;H&#xff09;2按住空格键&#xff0c;上下左右移动视图。&#xff08;常用方法&#xff09;图像格式PSD&#xff1a;原始的图像文件&#xff0c;包含所有的 Photoshop 处理信息&#xff0c;如图层&#xff0…

html如何设置鼠标选中状态,怎么用CSS 设置 当鼠标移动到菜单时,该按钮变色,鼠标点击后,页面停留在鼠标滑过时的状态!!很急!...

用javascript就可以&#xff0c;基本代码在下面&#xff0c;你自己照着改吧htmlheadmeta http-equivContent-Type contenttext/html;charset gb2312 //headbodyscript typetext/javascriptfunction changeA(){document.getElementById(menuA).style.background#f00;document.g…

python中难的算法_Python算法很难吗?python神书《算法图解》PDF电子版分享给你

许多小伙伴后台私信说&#xff0c;python算法让自己很头疼&#xff0c;有没有可以让算法像小说一样有趣的书籍资料呢&#xff1f;看这里吧&#xff01;小宋为大家找到了这本《算法图解》的PDF电子版&#xff01;让你在学习python的路上变得轻松有趣&#xff01;内 容 提 要本书…

音乐分享 html,支付宝朋友圈可以分享音乐嘛

打开手机&#xff0c;找到手机里面的支付宝应用点击进入在进入的支付宝界面里&#xff0c;选择底下的朋友点击进入在弹出的朋友界面选择生活圈选择生活圈下方的朋友动态进到朋友动态界面&#xff0c;点击右上角的照相机图标支付宝 怎么发朋友圈动态&#xff1f;进入支付宝页面中…

eplan单线原理图多线原理图_EPLAN-黑盒-2

3、黑盒的功能定义制作完成的黑盒仅仅图形化描述了一个变频器&#xff0c;它实现逻辑上的智能了吗&#xff1f;双击黑盒弹出属性标签&#xff0c;它的主标签还是现实黑盒&#xff0c;如图&#xff0c;图形和逻辑还没匹配。因此&#xff0c;必须为它重新定义功能。EPLAN的功能定…