使用Ubuntu的那些事

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/w627947015/article/details/69567835

使用Ubuntu的那些事


更改镜像源

/etc/apt/sources.list 保存了ubuntu软件更新的源服务器的地址,所使用的是http://cn.archive.ubuntu.com/ubuntu/ 将其替换成:http://mirrors.163.com/ubuntu/。例如:

    deb http://mirrors.163.com/ubuntu/ xenial main restricted
    # deb-src http://cn.archive.ubuntu.com/ubuntu/ xenial main restricted

    ## Major bug fix updates produced after the final release of the
    ## distribution.
    deb http://mirrors.163.com/ubuntu/ xenial-updates main restricted
    # deb-src http://cn.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
    ...

再执行

     sudo apt-get update

打开软件和更新,其他软件栏目勾选上【 Canonical 合作伙伴 】如下图:
这里写图片描述

常用软件

搜狗输入法
蓝灯 Lantern

sudo apt-get install unrar git vim emacs deluge htop adobe-flashplugin curl zsh gedit-plugins gparted
  • unrar 解压缩工具
  • deluge BT下载器,下载管理
  • htop 比起top命令,好用的多
  • adobe-flashplugin flash,浏览器必用到
  • zsh zsh shell,下面会提到
  • gparted ubuntu图形分区工具

邮件客户端就用系统带的这个 thunderbird

想使用QQ就算了吧,没有找到好的方案!

提升逼格


oh-my-zsh 安装

即美观又实用的oh-my-zsh
配合oh-my-zsh使用的更美观的字体Powerline

查看系统当前的所有的shell

cat /etc/shells

设置zsh为默认shell

sudo chsh -s $(which zsh)

GNOME桌面环境安装

https://wiki.ubuntu.com/UbuntuGNOME/GetUbuntuGNOME

安装Gnome之前,升级系统,再安装GNOME:

    sudo apt-get update
    sudo apt-get upgrade
    sudo apt-get install gnome gnome-shell

定制Ubuntu桌面

  1. 安装Unity Tweak Tool

    sudo apt-get install unity-tweak-tool

    如果你正在使用Gnome桌面环境

    sudo apt-get install gnome-tweak-tool 
  2. 安装GTK主题
    对于Ubuntu有很多定制的主题,这些主题可以影响应用和窗口的外观。我正在使用的主题是Numix GTK+。你可以在http://numixproject.org/找到关于Numix主题和图标的更多信息。你可以通过打开终端并输入以下命令来安装Numix主题:

    sudo add-apt-repository ppa:numix/ppa 
    sudo apt-get update && sudo apt-get install numix-gtk-theme 

    为了使该主题生效,我们需要打开Unity Tweak Tool,选择“外观标题”下的“主题”选项,然后在“已有主题”一栏中选择该主题。只要相应的软件仓库名字一致,对于其他主题,你可以重复该过程来应用。你可以访问Gnome-Look.org获得更多的主题。另一个和Numix主题很相似的主题是Moka,你可以在http://mokaproject.com/获得更多关于Moka主题的信息。

  3. 安装图标

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

安装mac主题

    #添加macbuntu资源
    sudo add-apt-repository ppa:noobslab/macbuntu
    sudo apt-get update
    #安装mac窗口主题
    sudo apt-get install macbuntu-os-ithemes-lts-v7
    #安装mac图标主题
    sudo apt-get install  macbuntu-os-icons-lts-v7 
    #打开unity-tweak-tools选择刚才安装的主题/图标/指针...

待续…

猜你喜欢

转载自blog.csdn.net/w627947015/article/details/69567835
今日推荐