【2023-06-12】Ubuntu常用软件安装

本文中指定的环境的均为真实测试过的环境。

(1)编译工具gcc

环境

操作系统:ubuntu20.04

ubuntu22.04适用。

安装步骤

1.更新包列表
sudo apt update
2.安装build-essential安装包
sudo apt install build-essential
3.打印gcc版本验证是否安装成功
gcc --version
(base) luz@luz-Vostro-3470:~$ gcc --version
gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

(2)截图工具Flameshot

Flameshot ,一个简单但功能丰富的针对类 Unix 系统的截图工具。它简单易用,使用上贴近QQ、微信的截图工具,尤其是copy到粘贴板极其方便。系统要求是18.04及以上。

环境

操作系统:ubuntu20.04

ubuntu22.04上wayland不适配(2023年06月12日),得注释掉wayland,登录时选择xorg就可以使用。

安装步骤

1.安装
sudo apt install flameshot
2.快捷键配置

【2023-06-12】Ubuntu常用软件安装_第1张图片

(3)网络工具包net-tools

sudo apt install net-tools

用法列表

  • arp -na
  • ifconfig
  • ifconfig -a
  • ifconfig --help
  • ifconfig -s
  • ifconfig etho up
  • ipmaddr
  • iptunnel
  • netstat
  • netstat -i
  • rout add
  • route del
  • route -n
  • vconfig

(4)版本管理工具git

环境

环境:ubuntu20.04

ubuntu22.04也适用

安装

sudo apt install git

(5)wps2019

环境

ubuntu20.04 和 ubuntu22.04 均适用。

安装

1.下载

官网地址:https://www.wps.cn/product/wpslinux#

选择64位Deb格式的ForX64

【2023-06-12】Ubuntu常用软件安装_第2张图片

2.安装

进入下载目录,打开终端:

sudo dpkg -i wps-office_11.1.0.11664_amd64.deb

(6)chrome浏览器

环境

操作系统:ubuntu20.04

chrome浏览器:Google Chrome 108.0.5359.98

安装

官网下载:https://www.google.cn/chrome/index.html

选择64位Deb:

【2023-06-12】Ubuntu常用软件安装_第3张图片

进入安装包路径,打开终端:

sudo dpkg -i google-chrome-stable_current_amd64.deb

就可以用了。

查看chrome版本:

google-chrome --version

(7)jetbrains-toolbox

环境

ubuntu20.04、ubuntu22.04

下载jetbrains-toolbox

官网:https://www.jetbrains.com/toolbox-app/

【2023-06-12】Ubuntu常用软件安装_第4张图片

安装

  1. 解压安装包
tar -zxvf jetbrains-toolbox-1.27.2.13801.tar.gz
  1. 启动解压文件夹里的AppImages文件
luz@luz-R720-15IKBN:~/.env/jetbrains-toolbox-1.27.2.13801$ ./jetbrains-toolbox 
dlopen(): error loading libfuse.so.2

AppImages require FUSE to run. 
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information

根据报错提示,缺少FUSE。

安装fuse

sudo apt-get install fuse

再次执行AppImages文件,成功。

Vscode

环境

ubuntu20.04、ubuntu22.04

安装

下载
  1. 进入vscode官网下载界面:

​ https://code.visualstudio.com/Download

  1. 点击.deb文件。

【2023-06-12】Ubuntu常用软件安装_第5张图片

  1. 弹出下载弹窗后,右键点击下载文件,点击复制下载链接:

https://az764295.vo.msecnd.net/stable/3b889b090b5ad5793f524b5d1d39fda662b96a2a/code_1.69.2-1658162013_amd64.deb

【2023-06-12】Ubuntu常用软件安装_第6张图片

  1. 修改下载链接中的az764295.vo.msecnd.net替换为替换为国内源vscode.cdn.azure.cn

  2. 再访问替换下载源后的链接即可高速下载

  3. 进入下载目录,打开终端:

sudo dpkg -i xxx.deb

你可能感兴趣的:(ubuntu,ubuntu,linux)