How to create and mount an XFS file system on Linux

Last updated on November 25, 2020 by Dan Nanni

Question: I heard good things about XFS, and would like to create an XFS file system on my disk partition. What are the Linux commands to format and mount an XFS file system?

XFS is a high-performance file system which was designed by SGI for their IRIX platform. Since XFS was ported to the Linux kernel in 2001, XFS has remained a preferred choice for many enterprise systems especially with massive amount of data, due to its high performance, architectural scalability and robustness. For example, RHEL/CentOS 7 and Oracle Linux have adopted XFS as their default file system, and SUSE/openSUSE have long been an avid supporter of XFS.

XFS has a number of unique features that make it stand out among the file system crowd, such as scalable/parallel I/O, journaling for metadata operations, online defragmentation, suspend/resume I/O, delayed allocation for performance, etc.

If you want to create and mount an XFS file system on your Linux platform, here is how to do it.

Install XFS System Utilities

First, you need to install XFS system utilities, which allow you to perform various XFS related administration tasks (e.g., format, expand, repair, setting up quota, change parameters, etc).

Debian, Ubuntu or Linux Mint:

$ sudo apt-get install xfsprogs

Fedora, CentOS or RHEL:

$ sudo yum install xfsprogs

Arch Linux:

$ sudo pacman -S xfsprogs

Create an XFS-Formatted Disk Partition

Now let's first prepare a disk partition to create XFS on. Assuming that your disk is located at /dev/sdb, create a partition by:

$ sudo fdisk /dev/sdb

Let's say the created partition is assigned /dev/sdb1 device name.

Next, format the partition as XFS using mkfs.xfs command. The -f option is needed if the partition has any other file system created on it, and you want to overwrite it.

$ sudo mkfs.xfs -f /dev/sdb1

Now you are ready to mount the formatted partition. Let's assume that /storage is a local mount point for XFS. Go ahead and mount the partition by running:

$ sudo mount -t xfs /dev/sdb1 /storage

Verify that XFS mount is succesful by running:

$ df -Th /storage

If you want the XFS partition to be mounted at /storage automatically upon boot, add the following line to /etc/fstab.

/dev/sdb1  /storage xfs  defaults  0  0

Support Xmodulo

This website is made possible by minimal ads and your gracious donation via PayPal or credit card

Please note that this article is published by Xmodulo.com under a Creative Commons Attribution-ShareAlike 3.0 Unported License. If you would like to use the whole or any part of this article, you need to cite this web page at Xmodulo.com as the original source.

Xmodulo © 2021 ‒ AboutWrite for UsFeed ‒ Powered by DigitalOcean