补充 Dpkg 命令说明。

Signed-off-by: rick.chan <cy@haoan119.com>
This commit is contained in:
rick.chan 2024-06-03 15:53:06 +08:00
parent d00dc7cb5c
commit 9c6560186b
2 changed files with 12 additions and 2 deletions

View File

@ -64,4 +64,4 @@ gst-play-1.0 Big_Buck_Bunny_720_10s_30MB.mp4 --videosink=waylandsink0
apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio
```
https://wayland.pages.freedesktop.org/weston/toc/running-weston.html#running-weston-on-a-different-seat-on-a-stand-alone-back-end
<https://wayland.pages.freedesktop.org/weston/toc/running-weston.html#running-weston-on-a-different-seat-on-a-stand-alone-back-end>

View File

@ -1,4 +1,6 @@
# APT 命令说明
# APT 和 Dpkg 命令说明
## 1. apt 命令
| Commands | Description |
|----------------|-------------|
@ -7,3 +9,11 @@
| apt purge | 删除已安装的软件包(不保留配置文件),删除软件包,同时删除相应依赖软件包 |
| apt autoremove | 自动删除没有被依赖的软件包(保留配置文件) |
| apt autopurge | 自动删除没有被依赖的软件包(不保留配置文件) |
## 2. dpkg 命令
| Commands | Description |
|--------------------------------|-------------|
| dpkg -i <xxx.deb> | 安装软件包 |
| dpkg -x <xxx.deb> [target dir] | 解压软件包中的文件 |
| dpkg -e <xxx.deb> [target dir] | 解压软件包中的控制信息 |