本文主要是介绍Ubuntu 常用软件安装总结-持续更新,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 修改时区
- 美化界面
- 文件查找软件 fsearch
- GUI界面复制文件没权限的解决方案
- 安装 C/C++编译环境
- 简单好用的图片编辑器 kolourpaint
- Visual Studio Code编辑器
- 虚拟机 VMware workstation
- 安装搜狗输入法
- 安装谷歌浏览器
- 安装 WPS
- 安装 Flash player 插件
- KiCad 印刷电路板设计软件
- FreeCad 机械设计软件
- 数据库管理软件 DBeaver
- XDM下载软件
- PDF阅读器
- Deepin wine for Ubuntu and Debian运行Windows程序
- 非常好用的截图和标记图片工具shutter
- XMind8 思维导图工具
修改时区
#查看当前日期及时区
date -R
#设置时区
sudo tzselect
#让时区修改生效
sudo ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
美化界面
首先下载gnome插件环境
sudo apt-get install gnome-tweak-tool chrome-gnome-shell
然后使用火狐或者chrome进入网址 extensions.gnome.org,下载网页插件。
建议安装
- NetSpeed (推荐,显示网速)
- TopIcons Plus (推荐,后台程序显示在托盘)
打开tweak工具,优化界面显示,比如顶栏显示日期,显示应用程序菜单等等。
文件查找软件 fsearch
Linux下的 Everything
sudo add-apt-repository ppa:christian-boxdoerfer/fsearch-daily
sudo apt-get update
sudo apt install fsearch-trunk
GUI界面复制文件没权限的解决方案
ctrl+alt+t 打开终端
输入sudo nautilus 打开文件管理器
安装 C/C++编译环境
sudo apt-get install build-essential
简单好用的图片编辑器 kolourpaint
sudo apt-get install kolourpaint
Visual Studio Code编辑器
官网:https://code.visualstudio.com
虚拟机 VMware workstation
方法1. 从官网下载后改名为vmware.bin
方法2. wget -O ~/vmware.bin https://www.vmware.com/go/getWorkstation-linux
sudo bash ~/vmware.bin
安装搜狗输入法
先安装 fcitx
sudo apt-get install fcitx
sudo apt-get install libssh2-1
打开 https://pinyin.sogou.com/linux/?r=pinyin下载合适的输入法安装。
sudo dpkg -i sogoupinyin*.deb #安装搜狗拼音
sudo apt install -f #修复搜狗拼音安装的错误
sudo dpkg -i sogoupinyin*.deb #重新安装搜狗拼音
安装谷歌浏览器
打开该网站 http://www.ubuntuchrome.com/
找到自己合适的谷歌浏览器版本后下载安装。
安装 WPS
打开该网站 https://www.wps.cn/product/wpslinux/#
找到合适的版本安装。
添加字体方法:将windows中你想添加的的字体拷贝到 /usr/share/fonts/wps-office 中,重新打开wps即可。
安装 Flash player 插件
sudo apt-get install flashplugin-installer
KiCad 印刷电路板设计软件
sudo add-apt-repository --yes ppa:js-reynaud/kicad-5.1
sudo apt update
sudo apt install --install-recommends kicad
# 安装例子
sudo apt install kicad-demo
FreeCad 机械设计软件
#添加稳定源
sudo add-apt-repository ppa:freecad-maintainers/freecad-stable
#更新包列表:
sudo apt-get update
#安装 FreeCAD
sudo apt-get install freecad freecad-doc
#更新版本
sudo apt-get upgrade
数据库管理软件 DBeaver
https://dbeaver.io/download/
XDM下载软件
#64位系统下载
wget https://subhra74.github.io/xdm/binaries/xdm-2018-x64.tar.xz
#32位系统下载
wget https://subhra74.github.io/xdm/binaries/xdm-2018-x86.tar.xz
#解压文件
sudo tar xvJf xdm-2018-x64.tar.xz
#执行脚本文件
sudo ./install.sh
PDF阅读器
下载 https://www.foxitsoftware.com/pdf-reader/
Deepin wine for Ubuntu and Debian运行Windows程序
下载地址:https://github.com/wszqkzqk/deepin-wine-ubuntu
安装后可以,运行QQ ,迅雷下载等。
非常好用的截图和标记图片工具shutter
sudo add-apt-repository ppa:linuxuprising/shutter
sudo apt-get update
sudo apt install shutter
sudo apt install gnome-web-photo
安装有疑问请参看:https://www.linuxuprising.com/2018/10/shutter-removed-from-ubuntu-1810-and.html
XMind8 思维导图工具
https://www.xmind.cn/xmind8-pro/
这篇关于Ubuntu 常用软件安装总结-持续更新的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!