All frameworks are not created equal...but what really is the difference? And when should I use which one?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# First, install arch-install-scripts: | |
sudo pacman -S --needed arch-install-scripts | |
# Secondly, mount your partitions in all the internal hard drives | |
# Thirdly, generate and validate your config by piping it out to stdout: | |
genfstab -U -p / | less | |
# If all looks green, proceed to overwrite your current fstab with the new entries: | |
su -c "genfstab -U -p / >> /etc/fstab" |