第一步:添加一块新的硬盘,假设他名字为/dev/sdb
第二步:使用fdisk命令对sdb硬盘进行分区:
[root@linuxprobe ~]# 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 0x47d24a34.
敲击字符p查看分区表信息(当前为空):
Command (m for help): p
Disk /dev/sdb: 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: 0x47d24a34
Device Boot Start End Blocks Id System
敲击字符n创建新的分区信息:
Command (m for help): n
敲击字符p,这个p代表是主分区,e为扩展分区:
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p): p
敲击数字1代表分区编号为1:
Partition number (1-4, default 1): 1
磁盘的起始扇区,直接回车即可:
First sector (2048-41943039, default 2048):
键入+2G,代表该分区的大小为2G:
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-41943039, default 41943039): +2G
Partition 1 of type Linux and of size 2 GiB is set
再看下分区表信息(增加了sdb1分区信息):
Command (m for help): p
Disk /dev/sdb: 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: 0x47d24a34
Device Boot Start End Blocks Id System
/dev/sdb1 2048 4196351 2097152 83 Linux
敲击字符w,将上述分区信息保存:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
让内核同步分区信息(此步骤仅在没有找到分区设备的情况下才需要执行,非必要动作。):
[root@linuxprobe ~]# partprobe
第3步:格式化为xfs文件系统。
在Linux系统中用于格式化的命令是mkfs,它支持的文件类型有:
cramfs,ext2,ext3,ext4,fat,msdos,xfs,btrfs,minix,vfat
使用方法非常的简单:"mkfs.文件类型名称",例如要格式分区为ext4,则命令为"mkfs.ext4 硬盘分区名称"。
使用mkfs.xfs来对/dev/sdb1进行格式化:
[root@linuxprobe ~]# mkfs.xfs /dev/sdb1
meta-data=/dev/sdb1 isize=256 agcount=4, agsize=131072 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0
data = bsize=4096 blocks=524288, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
log =internal log bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
第4步:将硬盘设备挂载到/newFS目录。
[root@linuxprobe ~]# mkdir /newFS
[root@linuxprobe ~]# mount /dev/sdb1 /newFS/
第5步:设置系统启动后自动挂载该硬盘设备。
[root@linuxprobe ~]# vim /etc/fstab
/dev/sdb1 /newFS xfs defaults 0 0
建议你看下http://www.linuxprobe.com/chapter-06.html系统学习
XFS是高性能文件系统,由于它的高性能,XFS作为许多企业级系统的首选,特别是有大量数据,需要结构化伸缩性和稳定性的,下面是Linux系统(Ubuntu为例)创建和挂载XFS文件系统方法:
1、安装 XFS系统工具集
sudo apt-get install xfsprogs2、创建 XFS格式分区
#先准备一个分区来创建XFS,假设分区在/dev/sdbsudo fdisk /dev/sdb
上图所示:此创建的分区叫/dev/sdb1
3、格式化分区为XFS
#使用mkfs.xfs命令sudo mkfs.xfs -f /dev/sdb1
4、用/storage作为XFS本地挂载点,进行挂载
sudo mount -t xfs /dev/sdb1 /storage5、验证XFS挂载是否成功
df -Th /storage6、如果想启动时自动挂载XFS分区在/storage上,加入下列行到/etc/fstab:
vim /etc/fstab/dev/sdb1 /storage xfs defaults 0 0
XFS是扩展性高、高性能的文件系统,也是rhel7/CentOS7的默认文件系统。
# cat /etc/redhat-release
# which xfs_quota
# rpm -qf /sbin/xfs_quota
# xfs_quota --help
# yum info xfsprogs
# man xfs_quota
如果用户需要使用大容量的磁盘空间,需要使用volume.
Quota主要来限制容器的rootfs, 这个rootfs一般是在host的磁盘会和别的容器共享,所以需要对它做限制。
容器实战高手课/在实战中深入理解容器技术的本质
https://time.geekbang.org/column/intro/365
磁盘配额(Quota)与进阶文件系统管理
https://wizardforcel.gitbooks.io/vbird-linux-basic-4e/content/124.html
XFS文件系统中quota的使用
https://kim1024.github.io/2018/11/27/quota-with-xfs
Linux 磁盘配额(XFS &EXT4)
https://www.cnblogs.com/llife/p/11406819.html
在XFS文件系统上实现针对目录的配额限制
https://www.ichenfu.com/2017/02/20/xfs-per-directory-quota
CentOS7.x xfs 文件系统配置quota 用户磁盘配额
https://www.cnblogs.com/ruiy/p/7446770.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)