Linux里面xfs和ext4哪个性能高?

Linux里面xfs和ext4哪个性能高?,第1张

XFS的性能更高。

XFS的优势:

1、xfs是一种非常百优秀的日志文件度系统版,它是SGI公司设计的。xfs被称为业界最先进的、最具可升级性的文件系统技术。

2、xfs是一个64位文件系统,最大支持8EB减1字节的单个文件系统,实际部署时取决于宿主 *** 作系统的最大块限制。对于一个32位Linux系统,文件和专文件系统的大小会被限制在16TB。

3、xfs在很多方面确实做的比ext4好,ext4受限制于磁盘结构和兼容权问题,可扩展性和scalability确实不如xfs,另外xfs经过很多年发展,各种锁的细化做的也比较好。

EXT4是第四代扩展文件系统(英语:Fourth EXtended filesystem,缩写为ext4)是Linux系统下的日志文zhidao件系统,是ext3文件系统的后继版本。

Ext4的文件系统容量达到1EB,而文件容量则达到16TB,这是一个非常大的数字了。对一般的台式机和服务器而言,这可能并不重要,但对于大型磁盘阵列的用户而言,这就非常重要了。EXT4和XFS的表现类似,不过从EXT2升级到EXT4比升级到XFS容易。

你说的是xfs文件系统吧

第一步:添加一块新的硬盘,假设他名字为/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系统学习


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7261212.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存