logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create Linux Filesystem - Format Partitions | Online Free DevTools by Hexmos

Create Linux filesystem with mke2fs. Quickly format partitions on your Linux system. Free online tool, no registration required.

mke2fs

Create a Linux filesystem inside a partition. More information: https://manned.org/mke2fs.

  • Create an ext2 filesystem in partition 1 of device b (sdb1):

mke2fs -t ext2 {{/dev/sdb1}}

  • Create an ext3 filesystem in partition 1 of device b (sdb1):

mke2fs -t ext3 {{/dev/sdb1}}

  • Create an ext4 filesystem in partition 1 of device b (sdb1):

mke2fs -t ext4 {{/dev/sdb1}}

See Also