From 472fb803a694307eb80286c3f47381b89d1fcbb6 Mon Sep 17 00:00:00 2001 From: joborun linux Date: Mon, 28 Aug 2023 06:34:52 +0000 Subject: [PATCH] split the initial pacman installation step into two To verify that pacman and pacman mirrors work as they should pacman should be installed first and the rest should be installed by the functional pacman setup in the chroot, without relying on the outside pac-inst.conf file. --- install1.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install1.md b/install1.md index 5c2fd03..933cbf6 100644 --- a/install1.md +++ b/install1.md @@ -39,7 +39,8 @@ This is necessary for installing pacman to the target in order to use the curren
-# pacman -Sy pacman base opensysusers** linux(***) --config /tmp/pac-inst.conf -r /mnt
+# pacman -Sy pacman --config /tmp/pac-inst.conf -r /mnt
+# pacman -Sy base opensysusers** linux(***) -r /mnt
 
** Sysusers should be used in lack of systemd to set systemd IDs for special users like systemd does. With the use of s6 and 66 obsysusers is a dependency and replaces opensysusers. Basically it is the same script and runs through a pacman hook reading a sysusers.d directory for users settings by any software that require to execute something as a special system user (neither a regular user or root).