How To Uninstall and Install VLC Ubuntu 22.04
VLC is an open-source multimedia player that is widely used. It can play almost any multimedia file, including MP4, MP3, Avi, and others. It also supports RTSP streaming,… Officially, it supports several Linux distributions, including Ubuntu 22.04. I’ll show you how to do the following in this step-by-step tutorial:
- Ways to install VLC Ubuntu 22.04
- How to start it
- How to update the player
- Make VLC the Default Media Player
- Ways to uninstall VLC Ubuntu
Prerequisites to install VLC Ubuntu
- Operating system: Ubuntu 22.04 or newer Ubuntu versions.
- Account: User with
sudo
permissions.
Install VLC Ubuntu 22.04
The simplest method is to utilize the Ubuntu Software Center to install this media player; however, command line users can alternatively install it using the terminal. We’ll go over each option, and you’ll pick the one that you think is the most convenient for you.
Install VLC using Ubuntu Software Center
The simplest method is to utilize the Ubuntu Software Center to install VLC; however, command line users can alternatively install it using the terminal because it’s faster. We’ll go over each option, and you’ll pick the one that you think is the most convenient for you
Step 1: Access the application by going to the top left Activities menu
Step 2: Open Ubuntu Software by searching its name in the search bar
Step 3: Click the Install button to install VLC Ubuntu 22.04 and entering your password (if required)
After clicking that button, the downloading and installation process will start, you can now relax while waiting for it.
Using Snap to install VLC Ubuntu
Snaps are self-contained packages that include all of the application’s dependencies and are easy to install. They are safe to use and auto-update. The majority of Snap’s packages are updated regularly with the most recent security and significant bug fixes and VLC is an example.
We can also install VLC Ubuntu as a snap package. However, you must first activate snapd
on your system before installing. Following these commands to do it:
Step 1: Update the system repository index
Before installing any applications, we need to open your terminal you’re using to update the system repository so that we can fetch the newest updates from Ubuntu.
sudo apt update
Step 2: Install snapd
tool
Snapd is a daemon that is required to run snaps, so if you wish to install VLC Ubuntu 22.04 or any Snap apps, you must first install snapd
.
sudo apt install snapd
Step 3: Install VLC snap package
After snapd installation finishes, you can now install VLC snap package on Ubuntu by executing this command:
sudo snap install vlc
If the output result includes the VLC’s version number, the VLC player has been installed successfully on Ubuntu 22.04.
Please take care not to install VLC using Snap because it takes a long time to start and does not interface well with the rest of the system. This is why I advocate using the apt
command to install VLC from Ubuntu command.
Install VLC Ubuntu 22.04 with APT
VLC is one of the most widely used media players worldwide so there is no doubt why it’s in the official Ubuntu repositories. Type these commands into the terminal:
Step 1: Update the system repository index
sudo apt update
Step 2: Install VLC media player
After updating the system repository index, you can now get the latest version, please run this command:
sudo apt install vlc
Step 3: Install some extra plugins for additional support of multimedia formats
By default, this media player will not support some files, install some extra plugins should be done to enhance your experience while using the application.
sudo apt install -y libdvdcss2 libbluray-bdj vlc-plugin-access-extra
That is all there is to it. This application has been installed successfully on your Ubuntu 22.04. The three methods for downloading and installing VLC Media Player for Ubuntu Linux are as follows. We can now launch the player.
Launch VLC media player
After the installation is complete, we can launch the VLC media player by looking for its name in the Activities
search bar.
The following notice occurs when the VLC player is launched for the first time. Click Continue after checking the box that says Allow metadata network access. The player is now available for usage.
For command line users
You can also start the this player by running this Ubuntu command on your terminal: vlc
Update VLC Ubuntu
You don’t need to bother about updating. Its package management is very helpful because it bundles together numerous system and program updates. This implies that if an update is available from the Ubuntu repository, it will appear in the system updates. You can use these instructions to compel Ubuntu to upgrade its system and look for new versions:
sudo apt update
sudo apt upgrade
Set VLC as the Default Media Player
Rhythmbox is Ubuntu’s default media player for playing audio and video files. However, if you wish to use this powerful media player to play all of your media files and make it your default media player, you can do so. To make it as your default media player, follow these steps:
Step 1: Open Default Applications by searching its name in the Activities screen and clicking on it. You may also do it by right-clicking on your desktop and choosing Settings from the drop-down menu. Then select the Default Applications tab from the left panel.
Step 2: Selecting VLC Media Player when the “Default Applications” window opens, from the Music and Videos dropdowns, and select it.
Uninstall VLC Ubuntu
If you wish to uninstall VLC media player and replace it with another video player. We’ll show you how to remove VLC using the command line and the GUI, respectively.
Uninstall VLC Ubuntu by GUI
Most common computer operating systems and software packages nowadays employ a graphical user interface (or GUI). GUI is more user-friendly than a command line, especially for new or inexperienced users. To uninstall VLC Ubuntu 22.04 using the GUI, follow these steps:
Step 1: Open the Ubuntu Software Center from the Activities menu
Step 2: Look for and open the player by using the search bar.
Step 3: Click the Uninstall button when the following window appears
Uninstall VLC Ubuntu Command
Contrary to the GUI, the command line allows us to manipulate the Linux system quickly and it is not as difficult as we think. Like uninstalling PyCharm on Ubuntu 22.04, uninstalling VLC Ubuntu by command line, you’ll need to:
Step 1: Open your Linux terminal
Because all commands need to be run in the terminal. So that we need to open any terminal before executing any command.
Step 2: Executing the command
Now, we can start to uninstall VLC media player on Ubuntu. Just pasting this command into the terminal opening.
sudo apt remove vlc
Now, this application is uninstalled successfully in your Ubuntu. If you need to reinstall it, you can follow the steps I mentioned above
Conclusion
In this tutorial, I’ve shown you how to install VLC Ubuntu 22.04, I hope you were able to install VLC on Ubuntu easily and also learned how to make VLC as a default media player, update and uninstall VLC too. Don’t hesitate to contact me if you need help by commenting below.