Ubuntu 系统优化(不定时更新)

系统美化

1. 为Ubuntu安装Numix主题和图标

sudo add-apt-repository ppa:numix/ppa

sudo apt-get update

sudo apt-get install numix-gtk-theme numix-icon-theme-circle

#如果想安装 Numix 桌面壁纸

sudo apt-get install numix-wallpaper-*

#使用Numix主题和图标
使用如下命令安装 Unity Tweak Tool工具:

sudo apt-get install gnome-tweak-tool

# 搜索应用
安装好之后就打开 Unity Tweak Tool 优化工具,在 GTK + 中选择使用 Numix 主题,并在 Icons 中选择使用 Numix-Circle 系列图标。



附录(安装flatabulous):

  sudo add-apt-repository ppa:noobslab/themes

  sudo apt-get update

  sudo apt-get install flatabulous-theme

  图标安装:

1. sudo add-apt-repository ppa:noobslab/icons  
2. sudo apt-get update  
3. sudo apt-get install ultra-flat-icons  

 2. 安装docky

sudo add-apt-repository ppa:docky-core/ppa

sudo apt-get update

sudo apt-get install docky

3. 安装爱壁纸

http://www.lovebizhi.com/windows.html

其他参考: http://blog.csdn.net/ty_393148439/article/details/76539701

4. 同步网上时间

 网上同步时间

    1.  安装ntpdate工具

    # sudo apt-get install ntpdate

    2.  设置系统时间与网络时间同步

    # ntpdate cn.pool.ntp.org

    解决方式:
1:关闭防火墙
2:检查 /etc/ntp.conf中的 server地址是否可用

必要时 可以换为以下,进行尝试。然后在开启ntpd服务。
server 210.72.145.44 perfer   # 中国国家受时中心
server 202.112.10.36             # 1.cn.pool.ntp.org
server 59.124.196.83             # 0.asia.pool.ntp.org

3.将系统时间写入硬件时间

# sudo hwclock -w

4. sudo hwclock --show
原文地址:https://www.cnblogs.com/boundless-sky/p/8359121.html