Filesystems: Difference between revisions
Prabuanand (talk | contribs) (Moved swap from Setting_up_disks_manually page) |
Prabuanand (talk | contribs) (created a wiki table) |
||
Line 4: | Line 4: | ||
Alpine has multiple storage media formatting packages available. Different packages/programs are used to format different types of filesystems. | Alpine has multiple storage media formatting packages available. Different packages/programs are used to format different types of filesystems. | ||
{| cellpadding="5" border="2" class="wikitable" | |||
|- | |||
! Tool | |||
! Filesystem | |||
! Brief Notes | |||
|- | |||
| {{Pkg|btrfs-progs}} | |||
|[[Btrfs]] | |||
| | |||
|- | |||
|{{Pkg|dosfstools}} | |||
|FAT12/FAT16/FAT32 | |||
| | |||
|- | |||
|{{Pkg|e2fsprogs}} | |||
|ext2/ext3/ext4 | |||
|ext4 is current default | |||
|- | |||
|{{Pkg|f2fs-tools}} | |||
|[[F2FS]] | |||
| | |||
|- | |||
|{{Pkg|hfsprogs}} | |||
|XFS HFS/HFS+ | |||
|Apple/Mac products | |||
|- | |||
|{{Pkg|jfsutils}} | |||
|JFS | |||
|- | |||
|{{Pkg|ntfs-3g}} | |||
|NTFS | |||
|Microsoft/Windows FUSE driver | |||
|- | |||
|{{Pkg|xfsprogs}} | |||
|XFS | |||
| | |||
|} | |||
== Formatting Partitions == | == Formatting Partitions == |
Revision as of 15:35, 4 October 2024
Alpine Linux supports a number of filesystems.
Filesystem Tools
Alpine has multiple storage media formatting packages available. Different packages/programs are used to format different types of filesystems.
Tool | Filesystem | Brief Notes |
---|---|---|
btrfs-progs | Btrfs | |
dosfstools | FAT12/FAT16/FAT32 | |
e2fsprogs | ext2/ext3/ext4 | ext4 is current default |
f2fs-tools | F2FS | |
hfsprogs | XFS HFS/HFS+ | Apple/Mac products |
jfsutils | JFS | |
ntfs-3g | NTFS | Microsoft/Windows FUSE driver |
xfsprogs | XFS |
Formatting Partitions
Whenever a partition is created, the partition must be formatted first before using it. Depending on the filesystem to be used, the necessary formatting tool for the filesystem must be installed first. The various formatting tools like mkfs.ext4
, mkfs.vfat
, mkfs.btrfs
are part of file system tools dosfstools, e2fsprogs, btrfs-progs. Install the filesystem tools first, if not done already.
The following examples show how to use the formatting tools for different filesystems:
e2fsprogs
ext4 is the default filesystem in Alpine Linux.
# mkfs.ext4 /dev/sdaXY
btrfs-progs
# mkfs.btrfs /dev/sdaXY
dosfstools
# mkfs.vfat /dev/sdaXY
f2fs-tools
# mkfs.f2fs /dev/sdaXY
swap Partition
mkswap /dev/sda2
echo -e "/dev/sda2 none swap sw 0 0" >> /mnt/etc/fstab
swapon /dev/sda2
(orrc-service swap start
)
free -m
will show how much swap space is available (in MB).
If you prefer maximum speed, you don't need configure any raid devices for swap. Just add 2 swap partitions on different disks and linux will stripe them automatically. The downside is that the moment one disk fails, the system will go down. For better reliability, put swap on RAID1.
For creating partitions refer Manual partitioning