换源

在 Software&Updates 中将默认的 Ubuntu 软件源切换到阿里云镜像以提升下载速度。

更新

  1. sudo apt update
  2. sudo apt upgrade
  3. sudo reboot
  4. sudo apt autoremove

搜狗输入法

驱动

在 additional driver 中安装最新的显卡和无线网卡驱动。

  1. sudo reboot

chrome

git

  1. sudo add-apt-repository ppa:git-core/ppa
  2. sudo apt update
  3. sudo apt install git

gnome theme

  1. sudo apt install arc-theme
  2. sudo add-apt-repository ppa:papirus/papirus
  3. sudo apt-get update
  4. sudo apt-get install papirus-icon-theme
  5. sudo apt install gnome-tweaks chrome-gnome-shell

使用火狐浏览器打开插件的网址,然后首先安装对应的火狐插件,然后通过网页安装 gnome 插件

打开 tweaks 工具,选择需要的 gnome shell 主题并配置已安装插件的各项参数。

grub theme

  1. git clone https://github.com/vinceliuice/grub2-themes.git
  2. sudo ./install.sh -t
  3. # 将文件中的 GRUB_GFXMODE 修改为合适的分辨率。
  4. sudo vi /etc/default/grub
  5. sudo update-grub

cursor theme

  1. # 从微云中下载相应的鼠标主题
  2. # 把下载的主题放入该目录中
  3. mkdir ~/.icons

font

从微云中下载相应的字体并安装。

常用软件

  1. sudo apt install python3-pip goldendict
  2. # 修改 pip 源
  3. touch ~/.pip/pip.conf
  4. vi ~/.pip/pip.conf
  5. [global]
  6. index-url = https://mirrors.aliyun.com/pypi/simple/
  7. [install]
  8. trusted-host=mirrors.aliyun.com

chrome 插件

下载插件

开发环境

  • vim

    1. sudo apt purge vim-common vim-tiny
    2. sudo apt install libncurses5-dev libgtk2.0-dev libatk1.0-dev libcairo2-dev libx11-dev libxpm-dev libxt-dev python-dev python3-dev
    3. ./configure --with-features=huge --enable-multibyte --enable-cscope --enable-rubyinterp=yes --enable-python3interp=yes --with-python3-config-dir=/usr/lib/python3.7/config-3.7m-x86_64-linux-gnu/ --prefix=/usr/local
    4. make VIMRUNTIMEDIR=/usr/local/share/vim/vim82
    5. sudo make install
  • vscode

    • editorconfig
    • path intellisence
    • npm intellisence
    • one dark pro
    • vim
    • vscode-icons
    • vscode-viml-syntax
  • nodejs

    1. # 下载并解压:https://github.com/nvm-sh/nvm/releases
    2. ./install.sh
    3. nvm install v13.6.0
  • ruby