12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #!/bin/bash
- dracut --force --no-hostonly --kver $(ls /lib/modules/)
- echo "root:87658765XeniaLinux" | chpasswd
- chown root:root /etc/sudoers
- cp /etc/passwd /.recovery/etc/passwd
- cp /etc/shadow /.recovery/etc/shadow
- echo "recovery:x:1000:1000::/home/recovery:/bin/bash" >> /.recovery/etc/passwd
- echo "recovery:$6$ovJXS/P4rKaURNaD$IUmaP2JW5uiJgrFVr31bEMb6kEF.ARL.x23m.qvyJ3.oRRbJ1qQ/pU5R2VocEzunYqSGF/YvLFGqF5gn0BQY90:19574::::::" >> /.recovery/etc/shadow
- sed s/wheel:x:10:root/wheel:x:10:root,recovery/ /etc/group > /.recovery/etc/group
- echo "recovery:x:1000:" >> /.recovery/etc/group
- chown 1000:1000 -R /.recovery/home/recovery
- chown portage:portage /var/cache/distfiles
- cp /usr/share/i18n/SUPPORTED /etc/locale.gen
- locale-gen
- systemctl enable bluetooth
- systemctl enable NetworkManager
- systemctl enable cups
- systemctl enable systemd-timesyncd
- systemctl enable gdm
- systemctl enable lvm2-monitor
- systemctl enable qemu-guest-agent
- systemctl enable spice-vdagentd
- systemctl enable zfs.target
- systemctl enable zfs-import-cache
- systemctl enable zfs-mount
- systemctl enable zfs-import.target
- systemctl --global enable pipewire.socket pipewire-pulse.socket wireplumber.service
- rm /boot/*.old
- cp /boot/vmlinuz* /boot/vmlinuz
- cp /boot/initramfs* /boot/initramfs.img
- cp /boot/System* /boot/System.map
- cp /boot/config* /boot/config
- flatpak remote-add flathub https://flathub.org/repo/flathub.flatpakrepo
- #eselect repository add xenia-overlay git https://gitlab.com/xenia-group/xenia-overlay.git
- #emaint sync --repo xenia-overlay
- chown --from=1001:1001 root:root /etc -R
- chown --from=1001:1001 root:root /
- chown --from=1001:1001 root:root /boot -R
- chown --from=1001:1001 root:root /overlay -R
- chown --from=1001:1001 root:root /roots -R
- chown --from=1001:1001 root:root /usr -R
- chown --from=1001:1001 root:root /var -R
- chown --from=1000:1000 root:root /etc -R
- chown --from=1000:1000 root:root /
- chown --from=1000:1000 root:root /boot -R
- chown --from=1000:1000 root:root /overlay -R
- chown --from=1000:1000 root:root /roots -R
- chown --from=1000:1000 root:root /usr -R
- chown --from=1000:1000 root:root /var -R
- systemctl enable nvidia-suspend.service
- systemctl enable nvidia-hibernate.service
- systemctl enable nvidia-resume.service
|