Ubuntu 18.04 安装后要做的事

版权声明:小妖666个人笔记 https://blog.csdn.net/weixin_38883338/article/details/82596171

1.安装无线网卡驱动

https://blog.csdn.net/weixin_38883338/article/details/82153959

2.更新清华源

https://blog.csdn.net/weixin_38883338/article/details/82596538

3.为Ubuntu Dock启用“最小化点击”

在终端中执行以下命令:

gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'

4.删除预装不常用软件

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 libreoffice-common

5.美化

安装美化管理器

sudo apt install gnome-tweak-tool

安装图标,主题

sudo apt-add-repository ppa:numix/ppa

sudo apt-get update 

sudo apt-get install numix-icon-theme-circle //安装图标

sudo apt-get install numix-gtk-theme //安装主题

----------------------------------------------------------------------------------------------------------------------------------------------

图标推荐: paper-icon-theme

sudo add-apt-repository ppa:snwh/pulp
sudo apt-get update
sudo apt-get install paper-icon-theme

----------------------------------------------------------------------------------------------------------------------------------------------

字体推荐: fonts-wqy-microhei

sudo apt-get install fonts-wqy-microhei

----------------------------------------------------------------------------------------------------------------------------------------------

美化终端

sudo apt-get install zsh
sudo apt-get install git
sudo wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
chsh -s /bin/zsh

----------------------------------------------------------------------------------------------------------------------------------------------

工具: 系统负载指示器
可以实时看看cpu, 看看内存等, 会位于右上角的状态栏中

sudo apt-get install -y indicator-multiload

----------------------------------------------------------------------------------------------------------------------------------------------

工具: 经典菜单指示器
自动分类全部应用

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

----------------------------------------------------------------------------------------------------------------------------------------------

工具: cairo-dock
媲美macOS自带的dock

sudo apt-get install cairo-dock

----------------------------------------------------------------------------------------------------------------------------------------------

猜你喜欢

转载自blog.csdn.net/weixin_38883338/article/details/82596171