Ubuntu 16.04 has been released, bringing a lot of new features, as well as still with a lot of unaccustomed things, so after the installation of the system will be a series of optimizations.
1. Delete LibreOffice
LibreOffice is open-source, but the Java-written office execution efficiency is not very flattering, after the system has been determined to delete
[HTML]View PlainCopy
- sudo apt-get remove Libreoffice-common
2. Delete Amazon's links
[HTML]View PlainCopy
- sudo apt-get remove Unity-webapps-common
3. Delete the basic unused software (it is too late to install)
[HTML]View PlainCopy
- sudo apt-get remove Thunderbird totem Rhythmbox empathy Brasero simple-scan gnome-mahjongg aisleriot gnome-mines Cheese TR Ansmission-common Gnome-orca Webbrowser-app Gnome-sudoku landscape-client-ui-install
[HTML]View PlainCopy
- sudo apt-get remove onboard deja-dup
So the system is basically clean.
4. Install Vim
The default is not integrated with the VIM artifact, only manually installed.
[HTML]View PlainCopy
- sudo apt-get install vim
5. Set time using UTC
[HTML]View PlainCopy
- sudo vim/etc/default/rcs
Change Utc=no to Utc=yes
6. Install Chrome
Download the latest installation file to Https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb.
And then
[HTML]View PlainCopy
- sudo apt-get install Libappindicator1 libindicator7
- sudo dpkg-i google-chrome-stable_current_amd64.deb
- sudo apt-get-f Install
This will allow apt to install and update the Chrome browser later.
7. Install Sogou Input Method
Vim/etc/apt/sources.list.d/ubuntukylin.list file, add an apt source to Ubuntu Kylin
[HTML]View PlainCopy
- Deb Http://archive.ubuntukylin.com:10006/ubuntukylin Trusty Main
And then
[HTML]View PlainCopy
- sudo apt-get update
- sudo apt-get install Sogoupinyin
This allows apt to install and update Sogou IME.
8. Install WPS Office
Currently MS has not been out of the Linux version of Office, only to make use of WPS
[HTML]View PlainCopy
- sudo apt-get install Wps-office
9. Installing Oracle Java
[HTML]View PlainCopy
- sudo add-apt-repository Ppa:webupd8team/java
- sudo apt-get update
- sudo apt-get install Oracle-java8-installer
Since the system comes with a openjdk, the unload openjdk will be left with residue, resulting in a running
[Python]View PlainCopy
- Java-version
When the first line is not the JAVA version number, it will be picked up java_tool_options:-javaagent:/usr/share/java/ Jayatanaag.jar This hint causes many scripts to detect the Java version number to run in error, so you need to manually clear the residue.
[Python]View PlainCopy
- sudo rm/usr/share/upstart/sessions/jayatana.conf
Delete the/usr/share/upstart/sessions/jayatana.conf file, restart and then run java-version there will be no more picked up java_tool_options:-javaagent:/ The Usr/share/java/jayatanaag.jar hints.
10. Installing Sublime Text 3
[HTML]View PlainCopy
- sudo add-apt-repository ppa:webupd8team/sublime-text-3
- sudo apt-get update
- sudo apt-get install Sublime-text
11. Install the Classic menu indicator
[HTML]View PlainCopy
- sudo add-apt-repository ppa:diesch/testing
- sudo apt-get update
- sudo apt-get install Classicmenu-indicator
12. Installing the system indicator Syspeek
[HTML]View PlainCopy
- sudo add-apt-repository ppa:nilarimogard/webupd8
- sudo apt-get update
- sudo apt-get install Syspeek
13. Customizing the DNS Server IP address of the DHCP network
sudo vim/etc/dhcp/dhclient.conf file, on line 21st #prepend domain-name-servers 127.0.0.1, next line add the following 2 lines using Aliyun and 114 DNS
[HTML]View PlainCopy
- Prepend domain-name-servers 114.114.114.114;
- Prepend domain-name-servers 223.5.5.5;
This gives priority to using Aliyun DNS, which uses 114 of the DNS as a secondary.
14. Install Git and VPNC
Git and VPN all know, Programmer's good tool.
[HTML]View PlainCopy
- sudo apt-get install vpnc git
15. Installing Axelaxel is a multi-threaded download tool for the Linux command-line interface, and the advantage over wget is that multiple threads can be specified to download files simultaneously in the command-line terminal.
[Python]View PlainCopy
- sudo apt-get install Axel
After installation, you can use multi-threaded download instead of wget.
16. Installing Openssh-server
[Python]View PlainCopy
- sudo apt-get install Openssh-server
After installation, you can use the SSH tool in the remote landing, of course, there is a security risk, if you do not want to remotely log on the machine, you can not install Openssh-server.
17. Installing CMake and QT Creator
CMake and Qt Creator are the artifacts of developing C + + programs under Linux, and Ubuntu 15.04 has integrated the latest version of Qt Creator (3.1.1).
[HTML]View PlainCopy
- sudo apt-get install CMake qtcreator
18. Installing the exFAT file system driver
Ubuntu default does not support exFAT file system mount, need to manually install EXFAT support
[Python]View PlainCopy
- sudo apt-get install Exfat-fuse
After loading the exfat-fuse, you can mount the exFAT partition disk.
19. Installing Lnav
Lnav tool is the artifact that looks at the log on the terminal interface
[Python]View PlainCopy
- sudo apt-get install Lnav
After loading, the log can be displayed in the terminal with Lnav color.
20. Installing Unrar
The system does not have the function of extracting RAR file by default, install Unrar program manually
[Python]View PlainCopy
- sudo apt-get install Unrar
After loading, you can use the command to unzip the RAR file.
Unzip the file to the current directory using the following command.
[Python]View PlainCopy
- Unrar x Test.rar
Things to do after installing Ubuntu 16.04