作者:个信2502907653 | 来源:互联网 | 2023-09-24 12:37
安装 Ubuntu 17.04后的一些简单配置
- 安装 Ubuntu 1704后的一些简单配置
- 1安装vim 并配置 default editor 为vim
- 2安装搜狗输入法 for linux
- 3安装 Terminator
1)安装vim 并配置 default editor 为vim
ubuntu 命令行编辑器 是nano,这个编辑器其实还不错,只不过用惯了vi,不太习惯。
而它自带的vim是tiny版本,我个人也用不惯。
所以需要做一下配置。
sudo apt install vim
sudo update-alternatives --config editor
There are 4 choices for the alternative editor (providing /usr/bin/editor).
0 /bin/nano 40 auto mode
1 /bin/ed -100 manual mode
2 /bin/nano 40 manual mode
* 3 /usr/bin/vim.basic 30 manual mode
4 /usr/bin/vim.tiny 15 manual mode
Press to keep the current choice[*], or type selection number: 3
2)安装搜狗输入法 for linux
- 从主页下载最新版 http://pinyin.sogou.com/linux/
- 直接点击安装会没反应,所以手动安装。
sudo dpkg -i sogoupinyin_2.1.0.0086_amd64.deb
- 但是遇到报错。估计是缺少必要的软件包。需要下载依赖包。
sudo apt --fix-broken install
reboot
- 重启后,需要配置 fcitx configuration,加上sogou pinyin
3)安装 Terminator
Terminator 是我目前用过很好用的一个terminal,建议使用。
sudo apt install terminator