ubuntu 上值得安装的软件及安装方法
重装了一下ubuntu系统,整理了一下正在使用的好用的软件以及安装方法,备忘
文章目录
shutter
比较好用的截图软件
安装方法:
sudo add-apt-repository ppa:shutter/ppa
sudo apt-get update
sudo apt-get install shutter
设置快捷键
Typora
最好用的markdown编辑器,功能齐全并有多款主题可以选择:
安装方法:
wget -qO - https://typora.io/linux/public-key.asc | sudo apt-key add -
# add Typora's repository
sudo add-apt-repository 'deb https://typora.io/linux ./'
sudo apt-get update
# install typora
sudo apt-get install typora
Chrome
方法1:
直接下载安装:
# 下载
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# 安装
sudo dpkg -i google-chrome-stable_current_amd64.deb
方法2:
添加 Google Chrome 的PPA
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-get update
sudo apt-get install google-chrome-stable
xmind
国内最好用的思维导图软件
官网下载之后安装即可
vscode
最好用的免费ide,插件库超级丰富,对前端支持比较好,java的话还是idea,python的话还是pycharm和jupyter notebook
官网下载deb安装包,直接安装即可
Terminator 终端终结者
顾名思义,功能超级全的终端工具
安装
sudo apt-get install terminator
修改配置:
gedit ~/.config/terminator/config
[global_config]
[keybindings]
switch_to_tab_1 = <Alt>1
switch_to_tab_10 = <Alt>0
switch_to_tab_2 = <Alt>2
switch_to_tab_3 = <Alt>3
switch_to_tab_4 = <Alt>4
switch_to_tab_5 = <Alt>5
switch_to_tab_6 = <Alt>6
[layouts]
[[default]]
[[[child1]]]
parent = window0
type = Terminal
[[[window0]]]
parent = ""
type = Window
[plugins]
[profiles]
[[default]]
background_color = "#282828"
cursor_color = "#aaaaaa"
font = Courier 10 Pitch Bold 16
foreground_color = "#ebdbb2"
show_titlebar = False
use_system_font = False
peek
私以为linux系统上最好用的gif文件生成工具
sudo add-apt-repository ppa:peek-developers/stable
sudo apt-get update
sudo apt-get install peek
搜狗输入法
比系统自带的ibus好用多了
需要fictx并卸载掉ibus
百度输入法
安装包里还带了安装方法,也是很贴心了
没用过可以试试,除了百度,讯飞也出linux版本了,看来linux系统现在用得人越来越多了
网易云音乐
下载deb,直接安装即可
docker
miniconda
下载地址,根据需求下载不通版本:
gnome-screenshot
系统自带的截图软件,设置快捷建
- -a, --area:截取屏幕区域
- -c, --clipboard:截图发到剪切板,可以直接粘贴
NVIDIA显卡驱动
如果电脑是NVIDIA显卡的话需要安装对应驱动
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo ubuntu-drivers autoinstall
Postman
好用的接口测试工具,支持保存导入测试情况,支持接口模拟,相信前后端开发都会用到
解压之后直接运行即可
来源:oschina
链接:https://my.oschina.net/u/4400107/blog/4403108