Archlinux basic installation configuration scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
463 B

3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
  1. #!/bin/bash
  2. sudo timedatectl set-ntp true
  3. sudo hwclock --systohc
  4. sudo reflector -c 'United States' -a 6 --sort rate --save /etc/pacman.d/mirrorlist
  5. sudo firewall-cmd --add-port=1025-65535/tcp --permanent
  6. sudo firewall-cmd --add-port=1025-65535/udp --permanent
  7. sudo firewall-cmd --reload
  8. sudo pacman -S --noconfirm xorg sddm plasma kde-applications firefox
  9. sudo systemctl enable sddm
  10. /bin/echo -e "\e[1;32mREBOOTING IN 5..4..3..2..1..\e[0m"
  11. sleep 5
  12. reboot