Linux version of VLC
时间: 2024-02-12 18:32:10 浏览: 153
VLC media player has a Linux version available for download. You can download it from the VLC website or through your Linux distribution's package manager. To install VLC using the package manager, open the terminal and enter the following command:
For Debian/Ubuntu based distributions:
```
sudo apt-get update
sudo apt-get install vlc
```
For Fedora:
```
sudo dnf install vlc
```
For Arch Linux:
```
sudo pacman -S vlc
```
Once installed, you can launch VLC from your application menu or by entering `vlc` in the terminal.
阅读全文