HowTo: Formatting Linux Filesystem

www.la‮c.iruttu‬om
HowTo: Formatting Linux Filesystem

To format a Linux filesystem, you can use the mkfs command with the appropriate filesystem type.

For example, to format a partition with the ext4 filesystem, you can use the following command:

mkfs.ext4 /dev/sdX

This will format the partition /dev/sdX with the ext4 filesystem.

Note: Make sure to replace /dev/sdX with the actual device name of the partition you want to format. Also, be careful when using the mkfs command, as it will erase all data on the partition.

You can find more information about the mkfs command and its options in the mkfs documentation or by running the mkfs --help command.

You can also use the mkfs command with the -t option to specify the filesystem type. For example, to format a partition with the xfs filesystem, you can use the following command:

mkfs -t xfs /dev/sdX

This will format the partition /dev/sdX with the xfs filesystem.

You can find a list of supported filesystem types by running the mkfs --help command.

Alternatively, you can use the mkfs.xfs, mkfs.ext3, or mkfs.ext2 commands to format a partition with the xfs, ext3, or ext2 filesystem, respectively.

For example, to format a partition with the ext3 filesystem, you can use the following command:

mkfs.ext3 /dev/sdX

This will format the partition /dev/sdX with the ext3 filesystem.

Created Time:2017-10-29 22:08:43  Author:lautturi