Filesystems: Difference between revisions
Guest09248 (talk | contribs) (→Format) |
Guest09248 (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
Documentation how to use the Alpine distro to format HD/Floppy/Other. | Documentation how to use the Alpine distro to format HD/Floppy/Other. | ||
= Install = | |||
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. | ||
* {{Pkg|btrfs-progs}} - For BTRFS | * {{Pkg|btrfs-progs}} - For BTRFS | ||
Line 16: | Line 15: | ||
{{Cmd|apk add dosfstools}} | {{Cmd|apk add dosfstools}} | ||
= Format = | |||
Here are some examples on how to use the formatting tools: | Here are some examples on how to use the formatting tools: | ||
{{Note|'''/dev/sda''' is a example device name}} | |||
=== dosfstools === | === dosfstools === | ||
Line 30: | Line 31: | ||
{{Cmd|mkfs.btrfs /dev/sda}} | {{Cmd|mkfs.btrfs /dev/sda}} | ||
= Partitions = | |||
If you need to change or make a partition table on a Hard Drive you want to format, you can use: | If you need to change or make a partition table on a Hard Drive you want to format, you can use: | ||
=== fdisk === | === fdisk === | ||
{{Cmd|fdisk /dev/ | {{Cmd|fdisk /dev/sda}} | ||
[[Category:Storage]] |
Revision as of 18:56, 28 December 2021
Documentation how to use the Alpine distro to format HD/Floppy/Other.
Install
Alpine has multiple storage media formatting packages available. Different packages/programs are used to format different types of filesystems.
- btrfs-progs - For BTRFS
- dosfstools - For FAT12/FAT16/FAT32
- e2fsprogs - For ext3/ext4
- f2fs-tools - For F2FS
- jfsutils - For JFS
- ntfs-3g - For NTFS (Note: ntfs-3g is a FUSE driver)
- xfsprogs - For XFS
In our example we want to format the floppy as vfat.
apk add dosfstools
Format
Here are some examples on how to use the formatting tools:
Note: /dev/sda is a example device name
dosfstools
mkfs.vfat /dev/sda
e2fsprogs
mkfs.ext2 /dev/sda mkfs.ext3 /dev/sda mkfs.ext4 /dev/sda
btrfs-progs
mkfs.btrfs /dev/sda
Partitions
If you need to change or make a partition table on a Hard Drive you want to format, you can use:
fdisk
fdisk /dev/sda