Update 'inst_from_image.md'

This commit is contained in:
joborun linux 2022-03-18 02:52:11 +00:00
parent 6490e7940d
commit 7c764adcd1

View file

@ -26,7 +26,14 @@ ls -al
</pre>
The output of ls -al should give you what appears as the root directory of a common linux system.
The /etc/locale.gen is set to UTF8 US-en, change it to the valid choice of preference, and then run locale-gen to pass the new setting to the system. We have some shortcut/scripts saved in /usr/local/bin/, it is a good time to get to know them, as well as a few shortcuts saved in .zshrc (our default shell). uuid will give you the list of partitions, their labels, and /dev/ addresses. Run it before you prepare the fstab to make sure it is correct.
You can now chroot into the system
<pre>
sudo arch-chroot /mnt zsh
</pre>
The /etc/locale.gen is set to UTF8 US-en, change it to the valid choice of preference, and then run locale-gen to pass the new setting to the system. Even if you stay with US-en, run locale-gen anyway. We have some shortcut/scripts saved in /usr/local/bin/, it is a good time to get to know them, as well as a few shortcuts saved in .zshrc (our default shell). uuid will give you the list of partitions, their labels, and /dev/ addresses. Run it before you prepare the fstab to make sure it is correct. We like minimal easy to understand [[scripts|scripts.md]] that make work a little easier.
As root