View previous topic :: View next topic |
Author |
Message |
don_cever n00b
Joined: 26 Apr 2024 Posts: 2
|
|
Back to top |
|
|
kgdrenefort Guru
Joined: 19 Sep 2023 Posts: 312 Location: Somewhere in the 77
|
Posted: Fri Apr 26, 2024 5:33 pm Post subject: |
|
|
Hello,
The differences are explained in the wiki, mostly you'll chroot from another system to the futur location of Gentoo. Very few difference, you won't have the command "arch-chroot" and you'll have to setup the chroot with the bunch on command into the handbook.
Read it, several times if needed, and ask if you are blocked :).
Regards,
GASPARD DE RENEFORT Kévin _________________ Traduction wiki, pour praticiper.
Custom logos/biz card/website. |
|
Back to top |
|
|
don_cever n00b
Joined: 26 Apr 2024 Posts: 2
|
Posted: Fri Apr 26, 2024 5:45 pm Post subject: |
|
|
ok, I won't do these special commands for mounting proc, and tar, but I will do the ones in the main handbook |
|
Back to top |
|
|
NeddySeagoon Administrator
Joined: 05 Jul 2003 Posts: 54578 Location: 56N 3W
|
Posted: Fri Apr 26, 2024 6:47 pm Post subject: |
|
|
don_cever,
Welcome to Gentoo.
Before you start on the handbook, you need one extra command.
As root, run Code: | mkdir -p /mnt/gentoo |
Other live systems do not provide that mount point, which is where your Gentoo install will be attached until it can boot.
The handbook assumes that exists. _________________ Regards,
NeddySeagoon
Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail. |
|
Back to top |
|
|
Adrien Advocate
Joined: 13 Jul 2004 Posts: 2311 Location: Bretagne
|
Posted: Sat Apr 27, 2024 8:44 pm Post subject: |
|
|
And just don't forget this:
Code: | Warning
When using non-Gentoo installation media, this might not be sufficient. Some distributions make /dev/shm a symbolic link to /run/shm/ which, after the chroot, becomes invalid. Making /dev/shm/ a proper tmpfs mount up front can fix this:
root #test -L /dev/shm && rm /dev/shm && mkdir /dev/shm
root #mount --types tmpfs --options nosuid,nodev,noexec shm /dev/shm
Also ensure that mode 1777 is set:
root #chmod 1777 /dev/shm /run/shm |
Which is anyway in the gentoo handbook. ^^ |
|
Back to top |
|
|
|