Ubuntu 16.04安裝完成后要做的事


借鑒了好多其他網站,兄弟們裝系統,我就把自己的貼出來了。

 

Ubuntu 16.04安裝完成后,還需要做一些配置才能愉快的使用,所以裝完系統后還要進行一系列的優化。

1.刪除libreoffice

libreoffice雖然是開源的,但是Java寫出來的office執行效率實在不敢恭維,裝完系統后果斷刪掉

sudo apt-get remove libreoffice-common  

2.刪除Amazon的鏈接

sudo apt-get remove unity-webapps-common  

3.刪掉基本不用的自帶軟件(用的時候再裝也來得及)

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  

這樣系統就基本上干凈了。

4.安裝Vim

居然默認沒有集成Vim神器,只能手動安裝了。

sudo apt-get install vim  

5.設置時間使用UTC

sudo vim /etc/default/rcS   

將UTC=no改為UTC=yes

6.安裝Chrome

在終端中,輸入以下命令:

sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/

將下載源加入到系統的源列表。命令的反饋結果如圖。如果返回“地址解析錯誤”等信息,可以百度搜索其他提供 Chrome 下載的源,用其地址替換掉命令中的地址。

在終端中,輸入以下命令:

wget -q -O - https://dl.google.com/linux/linux_signing_key.pub  | sudo apt-key add -

導入谷歌軟件的公鑰,用於下面步驟中對下載軟件進行驗證。

如果順利的話,命令將返回“OK”,如圖。

在終端中,輸入以下命令:

sudo apt-get update

用於對當前系統的可用更新列表進行更新。這也是許多 Linux 發行版經常需要執行的操作,目的是隨時獲得最新的軟件版本信息。

命令將會返回類似圖中所示的信息。

在終端中,輸入以下命令:

sudo apt-get install google-chrome-stable

執行對谷歌 Chrome 瀏覽器(穩定版)的安裝。

如果一切順利的話,命令將返回如圖信息。 

最后,如果一切順利,在終端中執行以下命令

/usr/bin/google-chrome-stable

將會啟動谷歌 Chrome 瀏覽器,它的圖標將會出現在屏幕左側的 Launcher 上,在圖標上右鍵——“鎖定到啟動器”,以后就可以簡單地單擊啟動了。

14.安裝git和vpnc

git和vpn大家都懂的,程序員的好工具。

sudo apt-get install vpnc git 

17.安裝CMake和Qt Creator

CMake和Qt Creator是Linux下開發C++程序的神器,Ubuntu 17.10已經集成了最新版的Qt Creator (4.4.1)。

sudo apt-get install cmake qtcreator 

18.安裝ExFat文件系統驅動

Ubuntu默認不支持exFat文件系統的掛載,需要手動安裝exfat的支持

sudo apt-get install exfat-fuse  

裝上exfat-fuse之后就可以掛載exfat分區的磁盤了。

20.安裝unrar

系統默認不帶解壓縮rar文件的功能,手動安裝unrar程序

sudo apt-get install unrar 

21.卸載火狐瀏覽器

查看卸載要卸載的內容:

dpkg --get-selections |grep firefox:

將上述內容添加卸載:

sudo apt-get purge firefox   firefox-globalmenu  firefox-gnome-support   firefox-locale-en   firefox-locale-zh-hans

22.安裝搜狗輸入法

進入system setting 中的 language setting 會提示你更新,全部更新就好,會等一會。

更新完成后將keyboard input method system選為:fcitx
reboot或logout
下載搜狗輸入法linux
安裝gdebi:
sudo apt-get install gdebi
安裝搜狗輸入法:
sudo gdebi so......(搜狗的安裝文件)
在屏幕右上角的輸入法選擇 configure
然后添加搜狗輸入法
23. 更換清華源

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 

sudo gedit /etc/apt/sources.list

拷貝下面的源:

# 默認注釋了源碼鏡像以提高 apt update 速度,如有需要可自行取消注釋
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
 # 預發布軟件源,不建議啟用 # deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse

sudo apt-get update


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM