From cloos at jhcloos.com Sat Jun 4 02:02:12 2022 From: cloos at jhcloos.com (James Cloos) Date: Fri, 03 Jun 2022 20:02:12 -0400 Subject: [artix-general] Headless, non-interactive install Message-ID: i'm considering givig artix a try on a x86_64 sbc i have. but i need to do the install as a simple tar/cpio/or similar extract onto the root filesystem. w/o having to boot the board to do the install. it is headless and so far i've only used it for a syslog dump and mosquitto. (the dist cuurently on it is being annoying.) it supports an external sata; i use that for the boot and root filesystems. i'll need to mount the drive elsewhere to do an install. the install will have to work like the typical install on an sdcard sbc. such as on a pi. even though this one is amd64. are the any sources out there of an archive of a freshly installed artix? -JimC -- James Cloos OpenPGP: 0x997A9F17ED7DAEA6 From je-vv at e.email Sat Jun 4 04:13:13 2022 From: je-vv at e.email (Javier) Date: Fri, 3 Jun 2022 20:13:13 -0600 Subject: [artix-general] subversion (world repo) requires rebuild, so that its perl component is moved to 5.36 instead of 5.34 In-Reply-To: <67295caa-7f1a-6f18-215f-38e0a70213ac@e.email> References: <67295caa-7f1a-6f18-215f-38e0a70213ac@e.email> Message-ID: FYI, this was fixed earlier this week. Thanks ! -- Javier -------------- next part -------------- A non-text attachment was scrubbed... Name: OpenPGP_signature Type: application/pgp-signature Size: 228 bytes Desc: OpenPGP digital signature URL: From torr at artixlinux.org Tue Jun 7 04:05:29 2022 From: torr at artixlinux.org (Carlos Torres) Date: Mon, 6 Jun 2022 23:05:29 -0300 Subject: [artix-general] Headless, non-interactive install In-Reply-To: References: Message-ID: On 2022-06-03, James Cloos wrote: > i'm considering givig artix a try on a x86_64 sbc i have. > are the any sources out there of an archive of a freshly > installed artix? I don't know of a full archive, but you could use the rootfs from the Docker images, adding a kernel and a bootloader. Syslinux suits this nicely. This is the repo for the images: https://gitea.artixlinux.org/artix/artixlinux-docker It's a bit outdated though, so apply the patch I'm attaching. The rootfs can be generated through a make target with the same name, whereby a tarball will be saved at . -------------- next part -------------- diff --git a/Makefile b/Makefile index 778d9e2..9022663 100644 --- a/Makefile +++ b/Makefile @@ -10,8 +10,8 @@ rootfs: env -i basestrap -C rootfs/etc/pacman.conf -c -G -M $(TMPDIR) $(shell cat packages) cp --recursive --preserve=timestamps --backup --suffix=.pacnew rootfs/* $(TMPDIR)/ - artools-chroot $(TMPDIR) locale-gen - artools-chroot $(TMPDIR) pacman-key --init - artools-chroot $(TMPDIR) pacman-key --populate artix - artools-chroot $(TMPDIR) pacman-key --populate archlinux + artix-chroot $(TMPDIR) locale-gen + artix-chroot $(TMPDIR) pacman-key --init + artix-chroot $(TMPDIR) pacman-key --populate artix + if test -n "${ARCH_KEYRING}"; then artix-chroot $(TMPDIR) pacman-key --populate archlinux; fi tar --numeric-owner --xattrs --acls --exclude-from=exclude -C $(TMPDIR) -c . -f dockerfile/base/artixlinux.tar rm -rf $(TMPDIR) diff --git a/packages b/packages index 269ec7c..22291e9 100644 --- a/packages +++ b/packages @@ -4,4 +4,4 @@ grep gzip pacman -opensysusers +esysusers util-linux From cromer at artixlinux.org Fri Jun 10 03:08:36 2022 From: cromer at artixlinux.org (Chris Cromer) Date: Thu, 09 Jun 2022 21:08:36 -0400 Subject: [artix-general] Headless, non-interactive install In-Reply-To: References: Message-ID: <8b134cf8-776f-4c6a-a4f0-666ac0e22110@artixlinux.org> Or you could use: https://gitea.artixlinux.org/artix/artix-bootstrap It has 2 functionalities. It can install artix from any distro. It also includes a script that creates rootfs tarballs for the various inits. ?-- Chris Cromer Artix Linux Developer? On Jun 6, 2022, 10:05 PM, at 10:05 PM, Carlos Torres wrote: >On 2022-06-03, James Cloos wrote: >> i'm considering givig artix a try on a x86_64 sbc i have. >> are the any sources out there of an archive of a freshly >> installed artix? > >I don't know of a full archive, but you could use the rootfs from the >Docker images, adding a kernel and a bootloader. Syslinux suits this >nicely. > >This is the repo for the images: > https://gitea.artixlinux.org/artix/artixlinux-docker > >It's a bit outdated though, so apply the patch I'm attaching. > >The rootfs can be generated through a make target with the same name, >whereby a tarball will be saved at . > > >------------------------------------------------------------------------ > >-- >artix-general mailing list >artix-general at artixlinux.org >https://lists.artixlinux.org/listinfo/artix-general -------------- next part -------------- An HTML attachment was scrubbed... URL: