📜  从终端卸载 vlc - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:22:01.234000             🧑  作者: Mango

从终端卸载 VLC - Shell/Bash

如果你想要从终端卸载 VLC 媒体播放器,可以按照以下步骤进行操作:

  1. 打开终端

在 Ubuntu/Linux 下,按下 Ctrl + Alt + T 可以打开终端。

  1. 输入命令

在终端中输入以下命令:

sudo apt-get remove vlc

这条命令将会卸载 VLC 软件包及其所有依赖。执行命令后,系统可能会提示你输入管理员密码,输入后即可开始卸载过程。

  1. 确认卸载

在卸载过程中,终端会显示软件包的名称以及需要卸载的空间大小。在系统询问是否确认卸载时,输入 Y 并回车即可继续卸载。

下面是一个示例命令及其输出:

$ sudo apt-get remove vlc
[sudo] password for user: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libavcodec-extra libavcodec-extra58 libgles1 libgles2 libgnomekbd-common
  libgnomekbd8 libminizip1 libopencv-core4.2 libopencv-imgproc4.2 libvlc5
  libvlccore9 python3-minimal python3.8 python3.8-minimal vlc-data vlc-plugin-base
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  vlc
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
After this operation, 4,222 kB disk space will be freed.
Do you want to continue? [Y/n] Y
(Reading database ... 298684 files and directories currently installed.)
Removing vlc (3.0.12-1~deb10u1) ...
Processing triggers for mime-support (3.64) ...
Processing triggers for desktop-file-utils (0.24-1) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for gnome-menus (3.36.0-1) ...
Processing triggers for libc-bin (2.31-9) ...
  1. 卸载完成

卸载完成后,终端会显示卸载结束的相应信息。此时,你已经成功地从终端卸载了 VLC 媒体播放器。

以上就是从终端卸载 VLC 的所有步骤。如果你决定重新安装 VLC,只需要输入以下命令即可:

sudo apt-get install vlc

希望这篇介绍对你有所帮助!