Linux 磁盘管理
2021/11/23 7:14:19
本文主要是介绍Linux 磁盘管理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Linux 磁盘管理
# 为什么服务器中有10块硬盘,在 linux 系统中显示少于10块的情况 答:因为系统盘做了 raid 将几块数据盘做成了一块,用与防止某一块数据盘损坏导致数据丢失。 sda sdb sdc sde 指的就是 # 系统分区是在作什么? 答:系统分区是指在一块硬盘中化一个到四个分区,类似 windows 中的 C 盘、D盘、 E盘 # 分区完成之后 /dev 文件夹下就会多了一个 /sde1 /sde2 /sde3
# 给磁盘进行分区 $ fdisk /dev/sde 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): m #输入 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): n # 创建主分区 Partition type: p primary (2 primary, 0 extended, 2 free) # 主分区最多有四个 e extended Select (default p): p # 选择 p 模式 Partition number (3,4, default 3): First sector (734005248-2343174143, default 734005248): 734005248 # 从指定扇区开始 Last sector, +sectors or +size{K,M,G} (734005248-2343174143, default 2343174143): +300G # 主分区大小 Partition 3 of type Linux and of size 300 GiB is set Command (m for help): w # 保存并退出 The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks.
$ lsblk # 查看磁盘分区 [root@controller1 ~]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 558.4G 0 disk ├─sda1 8:1 0 200M 0 part /boot/efi ├─sda2 8:2 0 1G 0 part /boot └─sda3 8:3 0 557.2G 0 part ├─centos00-root 253:0 0 553.2G 0 lvm / └─centos00-swap 253:1 0 4G 0 lvm [SWAP] sdb 8:64 0 1.1T 0 disk sdc 8:64 0 1.1T 0 disk sdd 8:64 0 1.1T 0 disk sde 8:64 0 1.1T 0 disk ├─sde1 8:65 0 50G 0 part └─sde2 8:66 0 300G 0 part ├─sde3 8:65 0 50G 0 part └─sde4 8:66 0 300G 0 part nvme0n1 259:0 0 745.2G 0 disk └─nvme0n1p1 259:1 0 745.2G 0 part
这篇关于Linux 磁盘管理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法