🌖

ubuntu18 安装设置

date
slug
status
tags
ubuntu
备忘
Linux
summary
type
Property
Oct 5, 2020 09:31 AM

安装

安装过程(略)…
 

基础

谷歌输入法
sudo apt install fcitx fcitx-googlepinyin im-config im-config
 
修改源
软件更新 -> 其他服务器 -> 选择最佳服务器 或 直接修改 /etc/apt/sources.list
##中科大源 deb https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-security main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse deb-src https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse
 
swappiness
减少系统对于 swap 频繁的写入,将加快应用程序之间的切换,有助于提升系统性能。
系统默认为 60,你可以修改为 10:sudo sysctl vm.swappiness=10
如果要让它开机自动设定,编辑 sudo gedit /etc/sysctl.conf 文件,加入:vm.swappiness=10,使其生效:sudo sysctl -p
 
减少过热
现在过热是电脑普遍的问题。一台过热的电脑运行相当缓慢。当你的 CPU 风扇转得像 尤塞恩·博尔特 一样快,打开一个程序将花费很长的时间。有两个工具你可以用来减少过热,使 Ubuntu 获得更好的系统表现,即 TLP 和 CPUFREQ。
sudo add-apt-repository ppa:linrunner/tlp sudo apt-get update sudo apt-get install tlp tlp-rdw -y sudo tlp start
安装完 TLP 后你不需要做任何事。它在后台工作。
使用如下命令来安装 CPUFREQ 指示器:
sudo apt-get install indicator-cpufreq -y
 
启用“Minimize on Click”
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
 
安装 vim、git、curl、wget
sudo apt-get install vim git wget curl -y
 
蓝灯
 
Chrome(可选)
sudo wget http://www.linuxidc.com/files/repo/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo apt update sudo apt install google-chrome-stable
 
磁盘占用分析器:ncdu
sudo apt install ncdu -y #默认搜索当前用户目录 ncdu #搜索整个硬盘 ncdu /
 
通过文件夹打开终端
在/usr/bin下新增一个脚本,并添加可执行权限 sudo chmod +x /usr/bin/opendir
### sudo vi /usr/bin/opendir if [ -n "$1" ]; then nautilus "$1" > /dev/null 2>&1 else nautilus "$(pwd)" > /dev/null 2>&1 fi
 

终端

oh-my-zsh
sudo apt-get install zsh -y chsh -s $(which zsh) # 如果无效,可以直接 sudo vi /etc/passwd 修改 sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
修改配置文件.zshrc
vim ~/.zshrc # plugins里加上插件 ,如plugins=(git zsh-syntax-highlighting zsh-autosuggestions) # 启动错误命令自动更正 ENABLE_CORRECTION="true" # 在命令执行的过程中,使用小红点进行提示 COMPLETION_WAITING_DOTS="true"
 
Terminator
sudo add-apt-repository ppa:gnome-terminator sudo apt-get update sudo apt-get install terminator -y
 

美化

GNOME Tweaks
sudo apt install gnome-tweak-tool gnome-shell-extensions chrome-gnome-shell -y
 
打开 gnome官方插件中心,安装 user-themes,Gnome Global Application Menu,Dash to Dock
主题可以去gnome-look找你喜欢的,
sudo add-apt-repository ppa:daniruiz/flat-remix sudo apt-get update sudo apt-get install flat-remix-gnome flat-remix-gtk flat-remix