Last active
May 1, 2017 14:34
-
-
Save kuhnroyal/36255e1cd206fd683549 to your computer and use it in GitHub Desktop.
Ubuntu Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # docker | |
| # edit /etc/default/grub see https://github.com/moby/moby/issues/4250 | |
| GRUB_CMDLINE_LINUX_DEFAULT="cgroup_enable=memory swapaccount=1" | |
| # and | |
| sudo update-grub | |
| # webupd8 java & sublime | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo add-apt-repository ppa:webupd8team/sublime-text-3 | |
| sudo apt update | |
| sudo apt install \ | |
| sublime-text-installer \ | |
| oracle-java7-installer | |
| oracle-java8-installer | |
| # Install https://github.com/mchelem/terminator-editor-plugin | |
| # Install https://github.com/KELiON/cerebro/releases | |
| sudo add-apt-repository ppa:thebernmeister | |
| sudo add-apt-repository ppa:nilarimogard/webupd8 | |
| sudo add-apt-repository ppa:tsbarnes/indicator-keylock | |
| sudo add-apt-repository ppa:webupd8team/indicator-kdeconnect | |
| sudo apt update | |
| sudo apt install indicator-virtual-box indicator-keylock indicator-keyboard syspeek ppa-purge indicator-kdeconnect | |
| # latest git | |
| sudo add-apt-repository ppa:git-core/ppa | |
| sudo apt install git | |
| # latest nodejs & npm | |
| curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
| sudo apt install nodejs | |
| # yarn | |
| curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
| echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
| sudo yarn global add yarn-completions | |
| sudo apt update && sudo apt install yarn | |
| # commone ubuntu stuff | |
| sudo add-apt-repository ppa:gnome-terminator/nightly-gtk3 | |
| sudo apt update | |
| sudo apt install \ | |
| terminator \ | |
| curl \ | |
| gimp \ | |
| feh \ | |
| gcp | |
| # nemo & styles | |
| # http://www.webupd8.org/2013/10/install-nemo-with-unity-patches-and.html | |
| sudo add-apt-repository ppa:webupd8team/nemo | |
| sudo add-apt-repository ppa:ravefinity-project/ppa | |
| sudo add-apt-repository ppa:costales/folder-color | |
| sudo apt-get update | |
| sudo apt get install \ | |
| ambiance-colors radiance-colors humanity-colors humanity-colors \ | |
| nemo nemo-fileroller \ | |
| nemo-compare nemo-media-columns nemo-share nemo-emblems nemo-image-converter nemo-filename-repairer \ | |
| python-nemo libgtk2.0-bin folder-color-nemo \ | |
| dconf-tools | |
| gsettings set org.gnome.desktop.background show-desktop-icons false | |
| xdg-mime default nemo.desktop inode/directory application/x-gnome-saved-search | |
| nemo -q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment