Created
April 1, 2014 15:28
-
-
Save tuanle/9916512 to your computer and use it in GitHub Desktop.
Setup for the first time after install ubuntu.
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
| #============================================== | |
| # Install core for developer, I swear | |
| #============================================== | |
| sudo apt-get install curl git-core vim | |
| #============================================== | |
| # Install extras | |
| #============================================== | |
| sudo apt-get install ubuntu-restricted-extras | |
| #============================================== | |
| # Disable crash report | |
| #============================================== | |
| sudo vim /etc/default/apport | |
| #============================================== | |
| # Install rar, vlc | |
| #============================================== | |
| sudo apt-get install rar vlc | |
| #============================================== | |
| # Install 32bit architecture (for 64bit) | |
| #============================================== | |
| sudo dpkg --add-architecture i386 && sudo apt-get update | |
| sudo apt-get install ia32-libs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment