scripts

scripts i made for me
git clone https://s.sonu.ch/~rei/scripts.git
Log | Files | Refs | README

commit 41a25b082ae4e9cb39ba125efe04bb32d9cbacf8
parent 46b86773c4fdc9c8449a7008920c78d22a0c9374
Author: rei <rei@sonu.ch>
Date:   Sat, 25 Sep 2021 18:26:01 +0300

New script

Diffstat:
Aubuntu.sh | 32++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+), 0 deletions(-)

diff --git a/ubuntu.sh b/ubuntu.sh @@ -0,0 +1,32 @@ +#!/bin/sh + +# script for after minimal ubuntu install + +echo "installing packages" +sudo apt install wireguard emacs vim vlc geany hexchat thunderbird gnome-tweaks wget curl qemu qemu-kvm neofetch gcc cups printer-driver-gutenprint + +echo "replacing snap with flatpak and adding flathub repo" +sudo apt install flatpak gnome-software-plugin-flatpak +flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo +sudo apt remove snapd gnome-software-plugin-snap && sudo apt autoremove + +echo "installing multimedia codecs" +sudo add-apt-repository multiverse +sudo apt install ubuntu-restricted-extras + +echo "installing steam" +sudo cd /opt && wget https://cdn.cloudflare.steamstatic.com/client/installer/steam.deb +sudo dpkg -i steam.deb && sudo apt --fix-broken install && sudo dpkg -i steam.deb + +echo "installing wine and video drivers" +sudo dpkg --add-architecture i386 +sudo cd /opt && wget -nc https://dl.winehq.org/wine-builds/winehq.key +sudo apt-key add winehq.key +sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main' +sudo add-apt-repository ppa:oibaf/graphics-drivers +sudo apt update +sudo apt upgrade +sudo apt install mesa-opencl-icd mesa-vulkan-drivers cabextract libcurl3-gnutls libcurl3-gnutls:i386 giflib-tools gnutls-bin libgcrypt20 libgcrypt20:i386 libjpeg-turbo-progs libopenal1 libopenal1:i386 libpng-tools libva2 libva2:i386 libvkd3d1 libvkd3d1:i386 libvulkan1 mono-runtime mpg123 vulkan-tools winehq-staging dosbox zstd libxcomposite1 + +echo "enabling cups service" +sudo systemctl enable cups