本文是《Linux 入门指南》的第九篇文章,以 Ubuntu 21.10 为例,介绍了 Linux 常用软件。
Chrome(网页浏览器)
介绍:跨平台的网页浏览器,可以使用各种插件。
官网:https://www.google.com/chrome/index.html
安装:
# 下载 google-chrome-stable_current_amd64.deb
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
# 安装 google-chrome-stable_current_amd64.deb
sudo dpkg -i https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Koodo Reader(电子书阅读器)
介绍:跨平台的电子书阅读器,支持 txt、pdf、epub、azw3、mobi 等格式
官网:https://koodo.960960.xyz/zh
GitHub:https://github.com/troyeguo/koodo-reader
安装:
# 下载 Koodo.Reader-1.3.4.deb
wget https://github.com/troyeguo/koodo-reader/releases/download/v1.3.4/Koodo.Reader-1.3.4.deb
# 安装 Koodo.Reader-1.3.4.deb
sudo dpkg -i Koodo.Reader-1.3.4.deb
Visual Studio Code (文本编辑器)
介绍:跨平台的文本编辑器,支持各种插件。
官网:https://code.visualstudio.com/
GitHub:https://github.com/microsoft/vscode
安装:
# 下载 code_1.62.3-1637137107_amd64.deb
wget https://az764295.vo.msecnd.net/stable/ccbaa2d27e38e5afa3e5c21c1c7bef4657064247/code_1.62.3-1637137107_amd64.deb
# 安装 code_1.62.3-1637137107_amd64.deb
sudo dpkg -i code_1.62.3-1637137107_amd64.deb
Shutter (截图软件)
介绍:Linux 平台的截图软件,还支持图片编辑等功能。
官网:https://shutter-project.org/
GitHub:https://github.com/shutter-project/shutter
安装:
# 添加 PPA 软件源
sudo add-apt-repository ppa:linuxuprising/shutter
# 更新可用软件包列表
sudo apt update
# 安装 shutter
sudo apt install shutter -y
注意事项:
如果提示 "shutter can't take screenshots without x11 server",则
① 打开文件 "/etc/gdm3/custom.conf",取消 "WaylandEnable=false" 这一行的注释,保存并退出。
② 重新启动 gdm3 。
sudo systemctl restart gdm3
VLC(视频播放器)
介绍:跨平台的视频播放器,支持绝大多数的视频编码,还支持外挂字幕。
官网:https://www.videolan.org/vlc/
GitHub:https://github.com/videolan/vlc
安装:
# 下载并安装 vlc
sudo apt install vlc -y
Steam (游戏平台)
介绍:跨平台的游戏平台客户端,对用户友好,经常推出促销活动。
官网:https://store.steampowered.com/
GitHub:https://github.com/ValveSoftware/steam-for-linux
# 下载并安装 steam
sudo apt install steam -y
Motrix (下载软件)
介绍:跨平台的下载软件,支持 HTTP、FTP、BT、磁力链接。
GitHub:https://github.com/agalwood/Motrix
安装:
# 安装 Motrix
sudo snap install motrix
qBittorrent (BT 下载软件)
介绍:跨平台的 BT 下载软件,被绝大多数的 BT/PT 站点认可。
官网:https://www.qbittorrent.org/
GitHub:https://github.com/qbittorrent/qBittorrent
安装:
# 下载并安装 qbittorrent
sudo apt install qbittorrent -y
KeepassXC (密码管理器)
介绍:跨平台的密码管理器,可以离线使用。
GitHub:https://github.com/keepassxreboot/keepassxc
安装:
# 下载并安装 KeepassXC
sudo apt install keepassxc -y
electerm(Terminal/SSH/SFTP 软件)
介绍:跨平台的 Terminal/SSH/SFTP 软件,支持 SSH、SFTP、Zmodem 等协议。
官网:https://electerm.github.io/electerm/
GitHub:https://github.com/electerm/electerm
安装:
# 下载 electerm-1.17.16-linux-amd64.deb
wget https://github.com/electerm/electerm/releases/download/v1.17.16/electerm-1.17.16-linux-amd64.deb
# 安装 electerm-1.17.16-linux-amd64.deb
sudo dpkg -i electerm-1.17.16-linux-amd64.deb
Remmina(远程桌面客户端)
介绍:Linux 平台的远程桌面客户端,支持 RDP、VNC、SSH、SFTP 协议。
GitHub:https://github.com/FreeRDP/Remmina
安装:
# 安装 Remmina
sudo apt install remmina -y
VirtulBox(虚拟机软件)
介绍:跨平台的虚拟机,可以安装 Windows、Linux、MacOS。
官网:https://www.virtualbox.org/
安装:
# 安装 VirtulBox
sudo apt install virtualbox -y