From 7d8eff4871608ef36dce8ff3c62d147ab4eeb486 Mon Sep 17 00:00:00 2001 From: eichehome Date: Sun, 16 Jan 2022 22:14:12 +0100 Subject: [PATCH] First Version of KDE-Installation --- install.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..e7235c8 --- /dev/null +++ b/install.sh @@ -0,0 +1,34 @@ +ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime +hwclock --systohc + +# vim /etc/locale.gen +sed -i 's/#\(de_DE.UTF-8\)/\1/' /etc/locale.gen +locale-gen + +echo "LANG=de_DE.UTF-8" >> /etc/locale.conf +echo "KEYMAP=de-latin1" >> /etc/vconsole.conf #only for console not for DE or terminal +echo "FONT=Tamsyn10x20r" >> /etc/vconsole.conf +echo "arch" >> /etc/hostname +# vim /etc/hosts +echo "127.0.0.1 localhost" >> /etc/hosts +echo "::1 localhost" >> /etc/hosts +echo "127.0.1.1 arch.localedomain arch" >> /etc/hosts +echo root:test | chpasswd + +#AUR +pacman -S base-devel linux-headers linux-lts-headers + +# bind = dnsutils (dig, etc.) +pacman -S dialog reflector xdg-user-dirs xdg-utils inetutils bind bash-completion openssh rsync iptables-nft ipset firewalld lynx + +pacman -S efibootmgr mtools dosfstools sof-firmware os-prober +#pacman -S grub os-prober efibootmgr mtools dosfstools + +pacman -S iwd plasma kde-applications sddm bluez bluez-utils cups hplip alsa-utils pipewire pipewire-docs pipewire-alsa pipewire-pulse pipewire-jack helvum pavucontrol + +#Power +pacman -S acpi acpi_call tlp + +systemctl enable systemd-networkd +systemctl enable systemd-resolved +systemctl enable sddm \ No newline at end of file