GithubHelp home page GithubHelp logo

after-install-ubuntu's Introduction

My top things to do after Installing Ubuntu

1. Update & Upgrade

sudo apt-get update
sudo apt-get upgrade

2. Install Ubuntu Restricted Extras

sudo apt-get install ubuntu-restricted-extras

3. Install Numix GTK Theme & Circle

sudo add-apt-repository ppa:numix/ppa
sudo apt-get update
sudo apt-get install numix-gtk-theme
sudo apt-get install numix-icon-theme-circle

4. Install Chrome Browser

5. Upgrade Graphic Drivers

  • [Ubuntu 13.10 AMD/Intel Hybrid] sudo apt-get install fglrx fglrx-pxpress

  • [Ubuntu 13.10 Nvidia Hybrid] sudo apt-get install nvidia-319 nvidia-settings-319 nvidia-prime

  • Ubuntu 12.04 AMD/Intel Hybrid

6. Create Launcher Icon

sudo apt-get install --no-install-recommends gnome-panel
sudo gnome-desktop-item-edit /path/to/store/icon --create-new

7. Install Java

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer
#Check java version
java -version
javac -version

8. Install Git

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git

9. Setup Git

git config --global user.name "myname"
git config --global user.email "[email protected]"
#check git settings
git config --list

10. Setup SSH & Generating SSH Keys

sudo apt-get install ssh
cd ~/.ssh
ssh-keygen -t rsa -C "my@email"
sudo apt-get install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub

11. Install Ubuntu Tweak

sudo add-apt-repository ppa:tualatrix/ppa
sudo apt-get update
sudo apt-get install ubuntu-tweak

12. Install NodeJS

sudo apt-get install python-software-properties python g++ make
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs

13. Install Ruby & Rails

sudo apt-get install curl
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm requirements
rvm install ruby
rvm use ruby --default
gem install rails

14. Install Sublime Text2

sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text

15. Sublime Favorite Plugins

16. Install Eclipse, ADT Bundle & IDEA

17. Install VirtualBox

sudo apt-get install virtualbox

18. Install Genymotion

cd path/to/genymotion
chmod +x genymotion-2.0.3_x64.bin
./genymotion-2.0.3_x64.bin

19. Install exFat

sudo apt-add-repository ppa:relan/exfat
sudo apt-get update
sudo apt-get install fuse-exfat
# For Ubuntu 13.10 use below
sudo apt-get install exfat-utils

99. Install more programs

sudo apt-get install vlc
sudo apt-get install gimp
sudo apt-get install inkscape
sudo apt-get install filezilla

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.