Filesystems: Difference between revisions
Prabuanand (talk | contribs) (fixed mountpoint as none in fstab, removed other mistakes, changed table columns, fixed wikitags) |
(→Overview: Add mention of ZFS) |
||
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
Alpine Linux | This page documents the Alpine Linux supported filesystems needed for various storage media. | ||
== | == Overview == | ||
The following table lists the packages related to various filesystems available | The following table lists the packages and tools related to various filesystems available along with the '''command''' to format. | ||
<onlyinclude> | <onlyinclude> | ||
{| class="wikitable" align="center" style="width:100%; border:1px #0771a6 solid; background:#f9f9f9; text-align:left; border-collapse:collapse;" | {| class="wikitable" align="center" style="width:100%; border:1px #0771a6 solid; background:#f9f9f9; text-align:left; border-collapse:collapse;" | ||
|-style="background:#333333; color:#ffffff; font-size: 1.2em; text-align:center;" | |-style="background:#333333; color:#ffffff; font-size: 1.2em; text-align:center;" | ||
|width=" | |width="18%" | Tool | ||
|width=" | |width="18%"| Filesystem | ||
|width="15%"|Formatting command | |||
|width=" | |Brief Notes | ||
|- | |- | ||
|{{Pkg|btrfs-progs}}||[[Btrfs]]||mkfs.btrfs|| | |{{Pkg|btrfs-progs}}||[[Btrfs]]||mkfs.btrfs||Combines copy-on-write and volume management, similar to ZFS. | ||
|- | |- | ||
|{{Pkg|dosfstools}} ||FAT12/FAT16/FAT32||mkfs.vfat|| | |{{Pkg|dosfstools}} ||FAT12/FAT16/FAT32||mkfs.vfat||Widely-used DOS filesystems. Also used for [[UEFI|EFI]] partitions. | ||
|- | |- | ||
|{{Pkg|e2fsprogs}} ||ext2/ext3/ext4||mkfs.ext4||ext4 is current default | |{{Pkg|e2fsprogs}} ||ext2/ext3/ext4||mkfs.ext4||Journaling filesystems. ext4 is the current default on Linux. | ||
|- | |- | ||
|{{Pkg|exfatprogs}} ||exfat||mkfs.exfat||Commonly used on USB flash drives and SD cards | |{{Pkg|exfatprogs}} ||exfat||mkfs.exfat||Commonly used on USB flash drives and SD cards. | ||
|- | |- | ||
|{{Pkg|f2fs-tools}} ||[[F2FS]]||mkfs.f2fs|| | |{{Pkg|f2fs-tools}} ||[[F2FS]]||mkfs.f2fs|| | ||
|- | |- | ||
|{{Pkg|hfsprogs}} ||HFS/HFS+||mkfs.hfsplus||Apple/Mac products | |{{Pkg|hfsprogs}} ||HFS/HFS+||mkfs.hfsplus||Used in older Apple/Mac products before APFS. | ||
|- | |- | ||
|{{Pkg|jfsutils}} ||JFS||mkfs.jfs|| | |{{Pkg|jfsutils}} ||JFS||mkfs.jfs|| | ||
|- | |- | ||
|{{Pkg|ntfs-3g}} ||NTFS ||mkfs.ntfs||Full-featured, Microsoft/Windows FUSE driver | |{{Pkg|ntfs-3g-progs}} ||NTFS ||mkfs.ntfs||Full-featured, Microsoft/Windows FUSE driver. | ||
|- | |||
|{{Pkg|squashfs-tools}} ||[[SquashFS]]||mksquashfs||Compressed read-only file system. | |||
|- | |- | ||
|{{Pkg|xfsprogs}} ||XFS||mkfs.xfs|| | |{{Pkg|xfsprogs}} ||XFS||mkfs.xfs|| | ||
|}</onlyinclude> | |}</onlyinclude> | ||
Additionally, Alpine has [[ZFS|excellent support]] for [https://en.wikipedia.org/wiki/ZFS ZFS], a highly robust copy-on-write filesystem / volume manager. | |||
== Filesystem labels == | |||
Most of the commonly used filesystems store the '''volume label''' or '''filesystem label''' in their metadata/superblock. | |||
The | Labels can be set during filesystem creation or at a later time. The below table lists the commands for both. The commands are non-destructive as long as the filesystem is '''Unmounted''', except for [[btrfs]]. | ||
{| class="wikitable" align="center" style="width:100%; border:1px #0771a6 solid; background:#f9f9f9; text-align:left; border-collapse:collapse;" | |||
|-style="background:#333333; color:#ffffff; font-size: 1.2em; text-align:center;" | |||
|width="8%" | Filesystem | |||
|width="18%"| Tool | |||
|width="25%"| Filesystem creation | |||
|width="35%"| Existing filesystem | |||
|Mounted/Unmounted | |||
|- | |||
|[[btrfs]]||{{Pkg|btrfs-progs}}||mkfs.btrfs -L "label" /dev/sdXY||btrfs filesystem label /mount/point "newlabel"||Mounted | |||
|- | |||
|FAT32||{{Pkg|dosfstools}} ||mkfs.fat -n "LABEL" /dev/sdXY ||fatlabel /dev/sdXY "NEWLABEL"||Unmounted | |||
|- | |||
|ext4||{{Pkg|e2fsprogs-extra}} ||mkfs.ext4 -L "label" /dev/sdXY||tune2fs -L "newlabel" /dev/sdXY||Unmounted | |||
|- | |||
|NTFS ||{{Pkg|ntfs-3g-progs}} ||mkfs.ntfs -L "label" /dev/sdXY||ntfslabel /dev/sdXY "newlabel"||Unmounted | |||
|- | |||
|XFS||{{Pkg|xfsprogs}} ||mkfs.xfs -L "label" /dev/sdXY||xfs_admin -L "newlabel" /dev/sdXY||Unmounted | |||
|} | |||
== See also == | |||
* [[Setting_up_disks_manually#Manual_partitioning|Manual partitioning]] | * [[Setting_up_disks_manually#Manual_partitioning|Manual partitioning]] | ||
* [https://www.nico.schottelius.org/blog/2024-10-10-how-to-enable-encrypted-swap-in-alpine-linux/ How to enable encrypted swap in Alpine Linux] | * [https://www.nico.schottelius.org/blog/2024-10-10-how-to-enable-encrypted-swap-in-alpine-linux/ How to enable encrypted swap in Alpine Linux] | ||
Latest revision as of 03:17, 12 April 2026
This page documents the Alpine Linux supported filesystems needed for various storage media.
Overview
The following table lists the packages and tools related to various filesystems available along with the command to format.
| Tool | Filesystem | Formatting command | Brief Notes |
| btrfs-progs | Btrfs | mkfs.btrfs | Combines copy-on-write and volume management, similar to ZFS. |
| dosfstools | FAT12/FAT16/FAT32 | mkfs.vfat | Widely-used DOS filesystems. Also used for EFI partitions. |
| e2fsprogs | ext2/ext3/ext4 | mkfs.ext4 | Journaling filesystems. ext4 is the current default on Linux. |
| exfatprogs | exfat | mkfs.exfat | Commonly used on USB flash drives and SD cards. |
| f2fs-tools | F2FS | mkfs.f2fs | |
| hfsprogs | HFS/HFS+ | mkfs.hfsplus | Used in older Apple/Mac products before APFS. |
| jfsutils | JFS | mkfs.jfs | |
| ntfs-3g-progs | NTFS | mkfs.ntfs | Full-featured, Microsoft/Windows FUSE driver. |
| squashfs-tools | SquashFS | mksquashfs | Compressed read-only file system. |
| xfsprogs | XFS | mkfs.xfs |
Additionally, Alpine has excellent support for ZFS, a highly robust copy-on-write filesystem / volume manager.
Filesystem labels
Most of the commonly used filesystems store the volume label or filesystem label in their metadata/superblock.
Labels can be set during filesystem creation or at a later time. The below table lists the commands for both. The commands are non-destructive as long as the filesystem is Unmounted, except for btrfs.
| Filesystem | Tool | Filesystem creation | Existing filesystem | Mounted/Unmounted |
| btrfs | btrfs-progs | mkfs.btrfs -L "label" /dev/sdXY | btrfs filesystem label /mount/point "newlabel" | Mounted |
| FAT32 | dosfstools | mkfs.fat -n "LABEL" /dev/sdXY | fatlabel /dev/sdXY "NEWLABEL" | Unmounted |
| ext4 | e2fsprogs-extra | mkfs.ext4 -L "label" /dev/sdXY | tune2fs -L "newlabel" /dev/sdXY | Unmounted |
| NTFS | ntfs-3g-progs | mkfs.ntfs -L "label" /dev/sdXY | ntfslabel /dev/sdXY "newlabel" | Unmounted |
| XFS | xfsprogs | mkfs.xfs -L "label" /dev/sdXY | xfs_admin -L "newlabel" /dev/sdXY | Unmounted |