Breaking News

Install VLC Player in Linux

How to install VLC media player in kali linux 


Installing VLC is so easy, it is available in official repositories of mainstream Linux distros, just run the following command on your respective Linux distribution.
$ sudo apt install vlc   	 #Debain/Ubuntu
$ sudo yum install vlc 	         #RHEL/CentOS
$ sudo dnf install vlc   	 #Fedora 22+
If you are running your Linux system as root, for example Kali Linux, you’ll get the error below when you try to run VLC.
"VLC is not supposed to be run as root. Sorry. If you need to use real-time priorities and/or privileged TCP ports you can use vlc-wrapper (make sure it is Set-UID root and cannot be run by non-trusted users first)."

Alternative Ways to Run VLC as Root User

Run the sed command below to make changes in the VLC binary file, it will replace the geteuid variable (which determines the effective user ID of the calling process) with getppid (which will determine the parent process ID of the calling process).
In this command, ‘s/geteuid/getppid/‘ (regexp=geteuid, replacement=getppid) does the magic.
$ sudo sed -i 's/geteuid/getppid/' /usr/bin/vlc
Alternatively, edit the VLC binary file using a hex-editor such as blesshexeditor. Then search for geteuid string and replace it with getppid, save the file and exit.
Yet again, another way around this is to download and compile the VLC source code by passing the --enable-run-as-root flag to ./configure and VLC should be able to run as root.
That’s all! You should now run VLC as root user in Linux. To share any thoughts, use the feedback form below.

Thank you

No comments