mirror of https://github.com/01-edu/public.git
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.
117 lines
2.4 KiB
117 lines
2.4 KiB
6 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Configure ubuntu desktop systems
|
||
|
|
||
|
SCRIPT_DIR="$(cd -P "$(dirname "$BASH_SOURCE")" && pwd)"
|
||
|
cd "$SCRIPT_DIR"
|
||
|
. set.sh
|
||
|
|
||
|
# Install dependencies
|
||
|
apt-get -y install lz4
|
||
|
|
||
|
# Change ext4 default mount options
|
||
|
sed -i -e 's/ errors=remount-ro/ noatime,nodelalloc,errors=remount-ro/g' /etc/fstab
|
||
|
|
||
|
# Disable GTK hidden scroll bars
|
||
|
echo GTK_OVERLAY_SCROLLING=0 >> /etc/environment
|
||
|
|
||
|
# Reveal boot messages
|
||
|
sed -i -e 's/TTYVTDisallocate=yes/TTYVTDisallocate=no/g' /etc/systemd/system/getty.target.wants/getty@tty1.service
|
||
|
|
||
|
# Speedup boot
|
||
|
sed -i 's/MODULES=most/MODULES=dep/g' /etc/initramfs-tools/initramfs.conf
|
||
|
sed -i 's/COMPRESS=gzip/COMPRESS=lz4/g' /etc/initramfs-tools/initramfs.conf
|
||
|
|
||
|
# Reveal autostart services
|
||
|
sed -i 's/NoDisplay=true/NoDisplay=false/g' /etc/xdg/autostart/*.desktop
|
||
|
|
||
|
# Remove password complexity constraints
|
||
|
sed -i 's/ obscure / minlen=1 /g' /etc/pam.d/common-password
|
||
|
|
||
|
# Remove splash screen (plymouth) and hide kernel output
|
||
|
sed -i 's/quiet splash/quiet vt.global_cursor_default=0 console=ttyS0/g' /etc/default/grub
|
||
|
|
||
|
update-initramfs -u
|
||
|
update-grub
|
||
|
|
||
|
# Disable swapfile
|
||
|
swapoff /swapfile || true
|
||
|
rm -f /swapfile
|
||
|
sed -i '/swapfile/d' /etc/fstab
|
||
|
|
||
|
# Prevent gnome-shell segfault from happening
|
||
|
sed -i 's/#WaylandEnable=false/WaylandEnable=false/g' /etc/gdm3/custom.conf
|
||
|
|
||
|
# Purge unused Ubuntu packages
|
||
|
PKGS="
|
||
|
apport
|
||
|
bind9
|
||
|
bolt
|
||
|
cups*
|
||
|
exim*
|
||
|
friendly-recovery
|
||
|
gnome-initial-setup
|
||
|
gnome-online-accounts
|
||
|
gnome-power-manager
|
||
|
gnome-software
|
||
|
gnome-software-common
|
||
|
memtest86+
|
||
|
orca
|
||
|
popularity-contest
|
||
|
python3-update-manager
|
||
|
secureboot-db
|
||
|
spice-vdagent
|
||
|
ubuntu-report
|
||
|
ubuntu-software
|
||
|
unattended-upgrades
|
||
|
update-inetd
|
||
|
update-manager-core
|
||
|
update-notifier
|
||
|
update-notifier-common
|
||
|
whoopsie
|
||
|
xdg-desktop-portal
|
||
|
"
|
||
|
|
||
|
apt-get -y purge $PKGS
|
||
|
apt-get -y autoremove --purge
|
||
|
|
||
|
SERVICES="
|
||
|
apt-daily-upgrade.timer
|
||
|
apt-daily.timer
|
||
|
console-setup.service
|
||
|
keyboard-setup.service
|
||
|
motd-news.timer
|
||
|
remote-fs.target
|
||
|
"
|
||
|
systemctl disable $SERVICES
|
||
|
|
||
|
SERVICES="
|
||
|
grub-common.service
|
||
|
NetworkManager-wait-online.service
|
||
|
plymouth-quit-wait.service
|
||
|
"
|
||
|
systemctl mask $SERVICES
|
||
|
|
||
|
# Install packages
|
||
|
PKGS="$(cat common_packages.txt)
|
||
|
baobab
|
||
|
blender
|
||
|
chromium-browser
|
||
|
dconf-editor
|
||
|
firefox
|
||
|
gimp
|
||
|
gnome-calculator
|
||
|
gnome-system-monitor
|
||
|
gnome-tweaks
|
||
|
i3lock
|
||
|
mpv
|
||
|
zenity
|
||
|
"
|
||
|
|
||
|
# Replace debian packages with ubuntu's
|
||
|
PKGS=${PKGS/linux-image-amd64/linux-image-generic}
|
||
|
PKGS=${PKGS/linux-headers-amd64/linux-headers-generic}
|
||
|
PKGS=${PKGS/firmware-linux-nonfree}
|
||
|
|
||
|
apt-get -y install $PKGS
|