本文主要是介绍ubuntu20.04 常用软件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ubuntu20.04 常用软件
清华源
https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/
基本软件
sudo apt-get install build-essential wget net-tools telnet tree nmap sysstat lrzsz dos2unix vim less selinux-utils ntpdate unzip zip iftop network-manager bat trash-cli htop extract openssl openssh-server gitk git-gui xclip vsftpd -y
Personal software
sudo apt-get install -y timshift gimp synaptic
- synaptic
Package manager tool
Install Synaptic Package Manager On Ubuntu 20.04 LTS
sudo apt-get install synaptic
- vlc
media player
How to Install VLC Media Player on Ubuntu 20.04 LTS
sudo apt-get install vlc
- timeshift
How To Install Timeshift on Ubuntu 20.04 LTS
sudo apt-get install -y timshift gimp
- rambox
Install Rambox on Ubuntu
sudo snap install -y rambox
snap info rambox
- tweak
sudo apt install gnome-tweak-tool -y
sudo apt install $(apt search gnome-shell-extension | grep ^gnome | cut -d / -f1) -y
How to install Tweak Tool on Ubuntu 20.04 LTS Focal Fossa Linux
- stacer
system clear tools
sudo apt install stacer
- KDENLIVE
video editor tools
sudo apt install kdenlive
清华源
清华源官网
mv /etc/apt/sources.list /etc/apt/sources.list_bak
vim /etc/apt/sources.list
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
apt-get update
查看系统版本
lsb_release -dric
问题:
apt-get update时卡在 waiting for headers
解决方法:
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/partial/*
apt-get update
这篇关于ubuntu20.04 常用软件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!