Skip to content

Instantly share code, notes, and snippets.

@crnisamuraj
Forked from mokiding/ubuntu-install.log
Last active September 14, 2017 12:32
Show Gist options
  • Save crnisamuraj/e7ebd2040f6dbf0f79f86bc4b00b0cc6 to your computer and use it in GitHub Desktop.
Save crnisamuraj/e7ebd2040f6dbf0f79f86bc4b00b0cc6 to your computer and use it in GitHub Desktop.
What i do after installing of ubuntu-mate
#Go to sudo and update repo
sudo su
#Replace .rs in sources.list
sed -i 's/rs.//g' /etc/apt/sources.list
apt update
#Remove unused things
apt purge firefox* libreoffice* gnome-orca* deja-dup* atril* rhythmbox* pidgin* thunderbird* plank* pluma* shotwell* synapse*
#For this core packages better use remove than purge ...
apt remove ubuntu-mate-welcome mate-utils simple-scan popularity-contest
#Now update system
apt dist-upgrade
#Install Google Chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
gdebi google-chrome-stable_current_amd64.deb
#Install Atom
wget https://atom.io/download/deb
mv deb atom.deb
gdebi atom.deb
#Basic utilities
apt install synaptic filezilla vlc git curl unrar leafpad
#Install Adapta-Nokto-Eta and icons PPA
apt-add-repository ppa:tista/adapta -y
apt-add-repository ppa:noobslab/icons -y
apt update
apt install adapta-gtk-theme arc-icons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment