Ubuntu 16.04 系统安装完成后的一些工作

1. 安装更新

~$ sudo apt update
~$ sudo apt upgrade –fix-missing

即可更新得到最新的软件

2. 卸载不常用的软件

卸载LibreOffice

~$ sudo apt-get remove libreoffice-common

卸载Amazon链接

~$ sudo apt-get remove unity-webapps-common

删掉基本不用的自带软件

~$ sudo apt 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. 系统美化

安装unity-tweak-tool

~$ sudo apt install unity-tweak-tool

安装Numix主题和图标

~$ sudo add-apt-repository ppa:numix/ppa
~$ sudo apt-get update
~$ sudo apt-get install numix-gtk-theme numix-icon-theme-circle

安装monaco字体

monaco字体是mac os x系统下一款优秀的字体,非常的好看!
由于字体安装包在Github上,因此需要安装git工具

~$ sudo apt install git

之后从Git上克隆改该字体

~$ git clone https://github.com/cstrap/monaco-font

然后安装:

~$ cd monaco-font
~/monaco-font$ ls -l

发现有以下文件:

install-font-archlinux.sh
install-font-centos.sh
install-font-gentoo.sh
install-font-ubuntu.sh
README.md

README.md中有一行这样的命令./install-font-ubuntu.sh http://usystem.googlecode.com/files/MONACO.TTF,但是googlecode已经关闭了,所以我们要在README.md中另外找个下载链接。我用的是https://github.com/todylu/monaco.ttf/blob/master/monaco.ttf?raw=true这个链接。

因此:

~/monaco-font$ sudo ./install-font-ubuntu.sh https://github.com/todylu/monaco.ttf/blob/master/monaco.ttf?raw=true

安装字体完成!

选用一个好看的壁纸

https://pan.baidu.com/s/1S_OCNCqTU-AxXjxpq8uJDQ 下载这款壁纸,貌似是Mac OS X上面的
将其放到系统壁纸目录下

~$ mv Yosemite.jpg /usr/share/backgrounds

在桌面右击选择更改桌面背景,点击+,选择/usr/share/backgrounds目录下的Yosemite.jpg文件即可!

在unity-tweak-tool更改全局主题和字体

在启动器里面输入unity-tweak-tool打开软件,在主题里选择Raziance,在图标里选择Numix-circle-light,在字体里选择monaco字体并设置喜欢的大小

4.安装常用工具

安装搜狗输入法

到官网https://pinyin.sogou.com/linux/?r=pinyin下载相应位数的DEB包,使用以下命令安装

~/下载$ sudo dpkg -i sogoupinyin_2.2.0.0102_amd64.deb

安装过程中会报错

存在未满足的依赖关系

只需使用apt工具安装依赖即可

~/下载$ sudo apt install -f

注销登录之后就可使用搜狗输入法

安装实用小工具

经典菜单指示器

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

System Load Indicator ( 系统状态指示器)

~$ sudo add-apt-repository ppa:indicator-multiload/stable-daily
~$ sudo apt-get update
~$ sudo apt-get install indicator-multiload

Keylock Application Indicator(显示大写锁定键状态)

~$ sudo add-apt-repository ppa:tsbarnes/indicator-keylock
~$ sudo apt-get update
~$ sudo apt-get install indicator-keylock

    原文作者:我还在这里
    原文地址: https://www.jianshu.com/p/49b952bea946
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞