【运维知识基础篇】Linux磁盘管理(一)

简介: 【运维知识基础篇】Linux磁盘管理

磁盘是存放数据的地方,我们需要学会去管理,添加磁盘,磁盘分区,磁盘格式化,磁盘挂载等等,简单讲下。


磁盘结构(了解)

1.磁盘外部结构:

磁盘分类:
机械磁盘(机械硬盘)   像个砖头,在台式机里,3.5英寸大小,通过机械运动达到读写数据的作用
固态磁盘              是芯片式的
NVME磁盘             M.2磁盘 PCI-E 类似显卡 像内存条
接口类型及转速决定了读写速度
IDE接口   已经淘汰了 很多针,有插电源的地方
SCSI接口  笔记本 台式机 不常用
STAT接口  笔记本 台式机 左边数据线右边电源线 中间有豁口 7200转/10k转
SAS接口   多出来一块 服务器标配 7.2k 10k 15k
15k/分钟最大储存 900G(能达到15k转) 600G(用的居多,600*8或者600*4) 300G
做备份的服务器,只管空间大,2T 4T*8
磁盘大小:3.5英寸 2.5英寸(笔记本磁盘,可以多插几个)
PCI-E     白色插槽,可以插外接独立声卡

fdisk -l 可以查看磁盘扇区总扇区数乘以一个扇区磁盘大小就是磁盘大小,磁盘以1000为1个单位

与1024不一样

raid逻辑的将磁盘组合在一起,可以增加容量,也可以提高性能

注重安全速度就慢,注重速度安全性就低

常用raid级别及应用场景

服务器磁盘先连接到raid卡上,再连接主板
raid0    最高的存储性能 磁盘容量不浪费,读写很快
要制作raid0 至少需要一块磁盘
任何一块硬盘损坏,所有数据无法使用
raid1    可以损失一半的数据容量
raid只能两块磁盘
不能提示存储性能,但会更安全,理论上写性能和单盘相差不大
raid5    可以损失一块盘的容量 
安全性最多可以损坏一块磁盘,也可以用热备盘,这样可以最多坏两个了
写入性能不好,读取速度ok
raid10   先将两块盘组成raid1,再将raid1组成raid0 
可以损坏所有硬盘一半的容量,也看损失的是不是一样的数据
读写很快
raid01就反过来,raid01可以损失一边的
企业中用0和5最多

磁盘分区

MBR格式
一个磁盘最多分四个,扩展分区最多一个,基于扩展分区划分逻辑分区
三个主分区+一个扩展分区+逻辑分区第五个开始
主分区:直接对磁盘进行格式化的分区,可以直接存储进去,速度也是最快
逻辑分区:扩展分区无法使用,基于逻辑分区划分逻辑分区。正常放数据,但是速度会慢
GPT格式
最多支持128个主分区
MBR格式和GPT格式分区区别
MBR格式对于小于2T的磁盘进行分区 使用fdisk分区
GPT格式对于大于2T的磁盘进行分区 使用parted分区
磁盘分区的设备名称
第一块磁盘:sda
第二块磁盘:sdb
         ......
第一块磁盘的第一个主分区:sda1
第一块磁盘的第二个主分区:sda2
第一块磁盘的第二个主分区:sda3
第一块磁盘的第一个扩展分区:sda4
第一块磁盘的第一个逻辑分区:ada5

磁盘挂载模拟流程

Linux系统的硬件必须通过挂载的方式才可以访问

默认无法读取硬件,类似于没有窗户没有门的监狱 进不去也出不来

创建目录挂载,只是创建了目录,给硬件提供一个入口

示例1:挂载cdrom
第一步:把镜像文件插入到DVD(装系统已经插进去了)
第二步:查看dev下的cdrom
第三步:直接将cdrom挂载到临时的挂载点
[root@VMware-koten ~]# mount /dev/cdrom /mnt/
mount: /dev/sr0 is write-protected, mounting read-only #提示被保护,不能写
[root@VMware-koten ~]#
查看挂载信息
[root@VMware-koten Packages]# df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        980M     0  980M   0% /dev
tmpfs           991M     0  991M   0% /dev/shm
tmpfs           991M  9.5M  981M   1% /run
tmpfs           991M     0  991M   0% /sys/fs/cgroup
/dev/sda3        19G  2.0G   17G  11% /
/dev/sda1       197M  110M   88M  56% /boot
tmpfs           199M     0  199M   0% /run/user/0
/dev/sr0        4.4G  4.4G     0 100% /mnt
[root@VMware-koten Packages]# 
第四步:通过mnt进入cdrom查看里面的内容
第五步:不想用了卸载,记得先出来这个门
[root@VMware-koten Packages]# umount /mnt/
umount: /mnt: target is busy.#目标忙,因为在门里
        (In some cases useful info about processes that use
         the device is found by lsof(8) or fuser(1))
[root@VMware-koten Packages]# cd
[root@VMware-koten ~]# umount /mnt/
[root@VMware-koten ~]# ll /mnt/
total 0        #卸载成功
[root@VMware-koten ~]# 
注意:挂载的目录下面会有内容隐藏,卸载后会再显示,不影响使用,但是最好用新目录

磁盘挂载

第一步:虚拟机右键设置,添加磁盘,设置大小512MB

第二步:添加完成后重启系统

注意:

vmware添加磁盘需要重启

企业中使用硬件服务器插入磁盘不需要重启 支持热插拔

云服务器不需要重启

第三步,使用fdisk -l查看

[root@VMware-koten ~]# fdisk -l
Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000eee9b
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      411647      204800   83  Linux
/dev/sda2          411648     2508799     1048576   82  Linux swap / Solaris
/dev/sda3         2508800    41943039    19717120   83  Linux
Disk /dev/sdb: 536 MB, 536870912 bytes, 1048576 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
[root@VMware-koten ~]# 

第四步:对磁盘进行分区,不分区不让挂载

[root@VMware-koten ~]# 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.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0x21168715.
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          #改变分区格式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): n
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): p                       #选择创建分区 p默认位主分区
Partition number (1-4, default 1): 1        #主分区的编号
First sector (2048-1048575, default 2048):  #直接回车默认开始的扇区
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-1048575, default 1048575): +100M
Partition 1 of type Linux and of size 100 MiB is set
Command (m for help): p #查看分区表
Disk /dev/sdb: 536 MB, 536870912 bytes, 1048576 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos #MBR格式
Disk identifier: 0x21168715
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
Command (m for help):
省略创建三个主分区
......
删除第四个主分区
Command (m for help): d
Partition number (1-4, default 4): 
Partition 4 is deleted
Command (m for help): 
给第四个创建扩展分区
Command (m for help): n
Partition type:
   p   primary (3 primary, 0 extended, 1 free)
   e   extended
Select (default e): 
Using default response e
Selected partition 4
First sector (616448-1048575, default 616448): 
Using default value 616448
Last sector, +sectors or +size{K,M,G} (616448-1048575, default 1048575): +100M
Partition 4 of type Extended and of size 100 MiB is set
Command (m for help): p
Disk /dev/sdb: 536 MB, 536870912 bytes, 1048576 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x21168715
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848      411647      102400   83  Linux
/dev/sdb3          411648      616447      102400   83  Linux
/dev/sdb4          616448      821247      102400    5  Extended
Command (m for help): 
[root@VMware-koten ~]# fdisk -l
Disk /dev/sda: 21.5 GB, 21474836480 bytes, 41943040 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x000eee9b
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048      411647      204800   83  Linux
/dev/sda2          411648     2508799     1048576   82  Linux swap / Solaris
/dev/sda3         2508800    41943039    19717120   83  Linux
Disk /dev/sdb: 536 MB, 536870912 bytes, 1048576 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x21168715
   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1            2048      206847      102400   83  Linux
/dev/sdb2          206848      411647      102400   83  Linux
/dev/sdb3          411648      616447      102400   83  Linux
/dev/sdb4          616448      821247      102400    5  Extended
[root@VMware-koten ~]# 

第五步:格式化磁盘(相当于打扫卫生)

使用mkfs.xfs

[root@VMware-koten ~]# mkfs.xfs /dev/sdb1
meta-data=/dev/sdb1              isize=512    agcount=4, agsize=6400 blks
         =                       sectsz=512   attr=2, projid32bit=1
         =                       crc=1        finobt=0, sparse=0
data     =                       bsize=4096   blocks=25600, imaxpct=25
         =                       sunit=0      swidth=0 blks
naming   =version 2              bsize=4096   ascii-ci=0 ftype=1
log      =internal log           bsize=4096   blocks=855, version=2
         =                       sectsz=512   sunit=0 blks, lazy-count=1
realtime =none                   extsz=4096   blocks=0, rtextents=0
[root@VMware-koten ~]# 

第六步:挂载使用磁盘

mount /dev/sdb1 /mnt

[root@VMware-koten ~]# mount /dev/sdb1 /mnt
[root@VMware-koten mnt]# df -h
Filesystem      Size  Used Avail Use% Mounted on
devtmpfs        980M     0  980M   0% /dev
tmpfs           991M     0  991M   0% /dev/shm
tmpfs           991M  9.5M  981M   1% /run
tmpfs           991M     0  991M   0% /sys/fs/cgroup
/dev/sda3        19G  2.0G   17G  11% /
/dev/sda1       197M  110M   88M  56% /boot
tmpfs           199M     0  199M   0% /run/user/0
/dev/sdb1        97M  5.3M   92M   6% /mnt
[root@VMware-koten mnt]# 
相关实践学习
CentOS 7迁移Anolis OS 7
龙蜥操作系统Anolis OS的体验。Anolis OS 7生态上和依赖管理上保持跟CentOS 7.x兼容,一键式迁移脚本centos2anolis.py。本文为您介绍如何通过AOMS迁移工具实现CentOS 7.x到Anolis OS 7的迁移。
目录
相关文章
|
25天前
|
运维 监控 网络协议
|
11天前
|
缓存 运维 监控
【运维必备知识】Linux系统平均负载与top、uptime命令详解
系统平均负载是衡量Linux服务器性能的关键指标之一。通过使用 `top`和 `uptime`命令,可以实时监控系统的负载情况,帮助运维人员及时发现并解决潜在问题。理解这些工具的输出和意义是确保系统稳定运行的基础。希望本文对Linux系统平均负载及相关命令的详细解析能帮助您更好地进行系统运维和性能优化。
32 3
|
1月前
|
存储 运维 搜索推荐
|
1月前
|
运维 Java Linux
【运维基础知识】Linux服务器下手写启停Java程序脚本start.sh stop.sh及详细说明
### 启动Java程序脚本 `start.sh` 此脚本用于启动一个Java程序,设置JVM字符集为GBK,最大堆内存为3000M,并将程序的日志输出到`output.log`文件中,同时在后台运行。 ### 停止Java程序脚本 `stop.sh` 此脚本用于停止指定名称的服务(如`QuoteServer`),通过查找并终止该服务的Java进程,输出操作结果以确认是否成功。
37 1
|
1月前
|
运维 网络协议 安全
Linux安全运维--一篇文章全部搞懂iptables
Linux安全运维--一篇文章全部搞懂iptables
43 1
|
1月前
|
Unix Linux 对象存储
Linux 磁盘管理
Linux 磁盘管理
34 1
|
2月前
|
存储 Linux 5G
Linux 基于 LVM 逻辑卷的磁盘管理【简明教程】
这篇文章介绍了LVM(逻辑卷管理)如何提供灵活的磁盘管理方式,允许动态调整逻辑卷的大小而不会丢失数据。
Linux 基于 LVM 逻辑卷的磁盘管理【简明教程】
|
1月前
|
Web App开发 运维 安全
1Panel:一个现代化、开源的 Linux 服务器运维管理面板
1Panel:一个现代化、开源的 Linux 服务器运维管理面板
|
2月前
|
运维 监控 Linux
深入理解Linux系统运维:命令行工具的力量
【9月更文挑战第14天】在Linux的世界里,命令行工具是系统管理员的瑞士军刀。本文将带你领略命令行的魅力,从基础操作到高级技巧,让你的运维工作更加高效和精准。准备好了吗?让我们一起开启这段探索之旅!
|
1月前
|
监控 Linux 测试技术
Linux系统命令与网络,磁盘和日志监控总结
Linux系统命令与网络,磁盘和日志监控总结
55 0

热门文章

最新文章