ubuntu20.04常用命令(自用)

1、安装和卸载软件

注意:不要乱更新!!!!!!

# 更新安装列表
sudo apt-get update
# 升级软件
sudo apt-get install 软件名
# 卸载软件及其配置
sudo apt-get --purge remove 软件名
# 卸载软件及其依赖的安装包
sudo apt-get autoremove 软件名

2、B站无法播放的问题:

在本地环境中输入以下命令即可解决。
sudo apt-get install -y ffmpeg

3、博客插入公式

左右两边各有两个$,如下方式:
$ 公式 $

在线公式编辑器

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