Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the problems that should be paid attention to after the installation of Ubuntu 15.04 system

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "what should be paid attention to after the installation of Ubuntu 15.04system". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Next, let the editor take you to learn "what are the problems that need to be paid attention to after the installation of the Ubuntu 15.04system"?

1. Delete libreoffice

Although libreoffice is open source, the execution efficiency of office written by Java is really unflattering. After installing the system, delete it decisively.

The code is as follows:

Sudo apt-get remove libreoffice-common

two。 Delete the link to Amazon

The code is as follows:

Sudo apt-get remove unity-webapps-common

3. Delete the self-contained software that you basically don't use (it's not too late to install it when you use it)

The code is as follows:

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

The code is as follows:

Sudo apt-get remove onboard deja-dup

So the system is basically clean.

4. Install Vim

Unexpectedly, there is no integrated Vim artifact by default, so it can only be installed manually.

The code is as follows:

Sudo apt-get install vim

5. Set the time to use UTC

The code is as follows:

Sudo vim / etc/default/rcS

Change UTC=no to UTC=yes

6. Install Chrome

Go to https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb to download the latest installation files.

And then

The code is as follows:

Sudo apt-get install libappindicator1 libindicator7

Sudo dpkg-I google-chrome-stable_current_amd64.deb

Sudo apt-get-f install

This allows apt to install and update chrome browsers later.

7. Install Sogou Input

Vim / etc/apt/sources.list.d/ubuntukylin.list file, apt source for adding ubuntukylin

The code is as follows:

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

And then

The code is as follows:

Sudo apt-get update

Sudo apt-get install sogoupinyin

This way you can install and update Sogou Input on apt.

8. Install WPS Office

At present, MS does not have a Linux version of Office, so we can only make do with WPS.

The code is as follows:

Sudo apt-get install wps-office

9. Install Oracle Java

The code is as follows:

Sudo add-apt-repository ppa:webupd8team/java

Sudo apt-get update

Sudo apt-get install oracle-java8-installer

10. Install Sublime Text 3

The code is as follows:

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

The code is as follows:

Sudo add-apt-repository ppa:diesch/testing

Sudo apt-get update

Sudo apt-get install classicmenu-indicator

twelve。 Install the system indicator SysPeek

The code is as follows:

Sudo add-apt-repository ppa:nilarimogard/webupd8

Sudo apt-get update

Sudo apt-get install syspeek

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

Sudo vim / etc/dhcp/dhclient.conf file, on line 21 # prepend domain-name-servers 127.0.0.1; the next line adds the following three lines of DNS using aliyun and Google

The code is as follows:

Prepend domain-name-servers 8.8.8.8

Prepend domain-name-servers 223.5.5.5

This allows you to give priority to aliyun's dns and secondary to Google's DNS.

14. Install git and vpnc

Git and vpn everyone knows, a good tool for programmers.

The code is as follows:

Sudo apt-get install vpnc git

15. Install CMake and Qt Creator

CMake and Qt Creator are artifacts for developing C++ programs under Linux. Ubuntu 15.04 has integrated the latest version of Qt Creator (3.1.1).

The code is as follows:

Sudo apt-get install cmake qtcreator

At this point, I believe you have a deeper understanding of "what are the problems that need to be paid attention to after the installation of the Ubuntu 15.04system". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report