cleanup
parent
d43627e766
commit
b4d1d4fca2
@ -1,8 +1,3 @@
|
|||||||
*.iso
|
*.iso
|
||||||
*.tar.gz
|
|
||||||
sysroot/
|
|
||||||
sysroot.*
|
|
||||||
crystal/pacman.conf
|
|
||||||
crystal/airootfs/etc/pacman.conf
|
crystal/airootfs/etc/pacman.conf
|
||||||
repo/
|
crystal/airootfs/etc/buildstamp
|
||||||
chrooted.sh
|
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
echo "Chrooted in the new system, running as $(whoami)"
|
||||||
|
|
||||||
|
# User setup
|
||||||
|
useradd -mG wheel crystal
|
||||||
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) crystal
|
||||||
|
usermod -p $(echo "crystal" | openssl passwd -6 -stdin) root
|
||||||
|
chsh -s /usr/bin/zsh crystal
|
||||||
|
|
||||||
|
# Desktop icon for Jade's GUI
|
||||||
|
mkdir -p /home/crystal/Desktop
|
||||||
|
cp /usr/share/applications/Jade.desktop /home/crystal/Desktop/Install.desktop
|
||||||
|
chown -R crystal:crystal /home/crystal/
|
||||||
|
|
||||||
|
# Services
|
||||||
|
systemctl enable NetworkManager
|
||||||
|
systemctl enable reflector
|
||||||
|
systemctl enable gdm
|
||||||
|
systemctl enable jade-gui
|
||||||
|
|
||||||
|
# Hostname and Locale
|
||||||
|
echo "crystal-live" > /etc/hostname
|
||||||
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
|
||||||
|
locale-gen
|
||||||
|
echo "LANG=en_US.UTF-8" > /etc/locale.conf
|
||||||
|
echo "Configured the system. Exiting chroot."
|
@ -1 +1 @@
|
|||||||
Built on 07/29/22 @ 23:50:24 EST
|
Built on 07/30/22 @ 00:03:09 EST
|
||||||
|
@ -1 +0,0 @@
|
|||||||
21/06/2022 - from now on commit to this file to trigger a build lol, think of it like a weird message board - michal
|
|
Loading…
Reference in New Issue