Ubuntu下好用的小工具
Posted wen_hust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu下好用的小工具相关的知识,希望对你有一定的参考价值。
个人能力有限,若有错误请批评指正!
转载请标明出处:http://www.cnblogs.com/wenhust/
工具一:输入法
谷歌拼音输入法
- 在Ubuntu Software Center中搜索googlepinyin安装
或者sudo apt-get install fcitx-googlepinyin -y
- 安装完成后进入右上角->System Settings->Language Support进行更新,更新完成后将keyboard input method system设置为fcitx。
- 注销后重新登录。
- 右上角->System Settings -> Keyboard,左下角Text Entry,点“+”,搜索google,添加google输入法。
- 使用鼠标控制右上角的键盘或者Ctrl + Space触发google输入法。
搜狗拼音输入法
官网下载地址:http://pinyin.sogou.com/linux/
官网安装指南:http://pinyin.sogou.com/linux/help.php
工具二:有道词典
官网下载地址:http://cidian.youdao.com/index-linux.html
有道词典多平台下载地址:http://cidian.youdao.com/multi.html
工具三:Kazam(录屏、截屏)
在Ubuntu Software Center中搜索Kazam安装即可。
工具四:KDevelop(IDE)
sudo apt-get install kdevelop
工具五:XMind
官网下载地址:http://www.xmind.net/download/linux/
如果是压缩包则下载完毕后解压,进行安装sudo sh setup.sh
如果是deb安装包,直接双击安装即可。
工具六:google chrome(浏览器)
官网下载地址:https://www.google.com/intl/en/chrome/browser/desktop/
或者使用终端:wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
可下载得到deb安装包,点击安装即可。
工具七:VS Code
官网下载地址:https://code.visualstudio.com/download
智能提示及补全
控制台(按F1)搜索C/C++:Edit Configurations,进入IntelliSense Configurations对Include path进行配置,从而实现对std、OpenCV等的智能提示及补全。
${workspaceFolder}/**
/usr/include/**
/usr/local/include/**
工具八:Terminator
sudo apt-get install terminator
工具九:Zsh
sudo apt-get install zsh
修改zsh为默认: chsh -s /bin/zsh
工具十:Oh my zsh
- 自动安装:
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | sh
- 手动安装:
git clone git://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh
cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc
工具十一:zsh-syntax-highlighting
克隆项目
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
配置
plugins=(其他的插件 zsh-syntax-highlighting)
生效
source ~/.zshrc
工具十二:zsh-autosuggestions
克隆项目
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
配置
plugins=(其他的插件 zsh-autosuggestions)
生效
source ~/.zshrc
以上是关于Ubuntu下好用的小工具的主要内容,如果未能解决你的问题,请参考以下文章