What to do after installing Ubuntu 16.04 (summary)

  • 2020-05-14 05:55:43
  • OfStack

Ubuntu 16.04 was released with a lot of new features and still a lot of unaccustomed stuff, so there will be a series 1 optimization after you install the system.

1. Delete libreoffice

Although libreoffice is open source, Java wrote office implementation efficiency is really not flattering, after the system installed decisively deleted


sudo apt-get remove libreoffice-common 

2. Delete the Amazon link


sudo apt-get remove unity-webapps-common

3. Delete the built-in software that you don't use (it's still not too late to install it when you use it)


sudo apt-get remove thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku landscape-client-ui-install 

sudo apt-get remove onboard deja-dup 

So the system is basically clean.

4. Install Vim

There is no integrated Vim artifact by default, so you can only install it manually.


sudo apt-get install vim 

5. Set the time using UTC


sudo vim /etc/default/rcS  

Change UTC=no to UTC=yes

6. Install Chrome

To https: / / dl. google. com/Linux/direct/google - chrome - stable_current_amd64. deb download the latest installation file.

then


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.

7. Install sogou input method
vim/etc/apt/sources. list. d/ubuntukylin list file, add ubuntu kylin apt source


deb http://archive.ubuntukylin.com:10006/ubuntukylin trusty main 

then


sudo apt-get update 
sudo apt-get install sogoupinyin 

This allows apt to install and update the sogou input method.

8. Install WPS Office

At present, MS1 cannot produce Linux version of Office, so it has to make do with WPS


sudo apt-get install wps-office  

9. Install Oracle Java


sudo add-apt-repository ppa:webupd8team/java  
sudo apt-get update  
sudo apt-get install oracle-java8-installer  

Since the system is equipped with OpenJDK, after uninstalling OpenJDK, there will be a residue, resulting in operation


sudo apt-get remove unity-webapps-common
0

Line 1 is not java version number, when will be Picked up JAVA_TOOL_OPTIONS: - javaagent: / usr/share/java/jayatanaag jar this hint, lead to a lot of error detection java version of the script will run, so you need to manually remove residues.


sudo apt-get remove unity-webapps-common
1

Delete/usr/share/upstart/sessions/jayatana conf file, run again after restart java - version Picked doesn't happen again
up JAVA_TOOL_OPTIONS: - javaagent: / usr/share/java/jayatanaag jar tip.

10. Install Sublime Text 3


sudo apt-get remove unity-webapps-common
2

Install the classic menu indicator


sudo add-apt-repository ppa:diesch/testing 
sudo apt-get update 
sudo apt-get install classicmenu-indicator 

12. Install system indicator SysPeek


sudo apt-get remove unity-webapps-common
4

13. Customize the DNS Server IP address of the DHCP network

sudo vim etc/dhcp/dhclient conf file, at line 21 # prepend domain name - servers 127.0.0.1; The next line adds the following 2 lines using aliyun and the DNS of 114


sudo apt-get remove unity-webapps-common
5

This gives priority to dns of aliyun and DNS of 114.

14. Install git and vpnc

git and vpn, as you all know, are great tools for programmers.


sudo apt-get remove unity-webapps-common
6

15. Install axel

axel is a multithreaded download tool for the Linux command-line interface. The advantage over wget is that you can specify multiple threads to download files from the command line at the same time.


sudo apt-get remove unity-webapps-common
7

Once installed, you can download using multiple threads instead of wget.

16. openssh - server installation


sudo apt-get install openssh-server 

After installation, you can use the ssh tool under Win to log in remotely. Of course, there is also a security hazard. If you don't want to log in the machine remotely, you can not install openssh-server.

17. Install CMake and Qt Creator

CMake and Qt Creator are part of the C++ program developed under Linux, and Ubuntu 15.04 has been integrated with the latest version of Qt Creator (3.1.1).


sudo apt-get remove unity-webapps-common
9

18. Install the ExFat file system driver

Ubuntu does not support mounting exFat file systems by default, so you need to manually install exfat support


sudo apt-get install exfat-fuse 

After installing the exfat-fuse, you can mount the disk of the exfat partition.

19. Install lnav

The lnav tool is an artifact for viewing logs on the terminal interface


sudo apt-get install lnav 

Once installed, the log can be displayed in the terminal in lnav color.

20. Install unrar

By default, the system does not have the function of decompressing rar files, and the unrar program is installed manually


sudo apt-get install unrar 

Once installed, you can use the command to extract the rar file.

Extract the file to the current directory using the following command.


sudo apt-get remove thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku landscape-client-ui-install 

sudo apt-get remove onboard deja-dup 
3

Related articles: