Linux (Ubuntu): vlc root permission

2022-12-02 15:25:19 浏览数 (1)

Snap packages are in containers which prevent them from "seeing" outside of those containers unless you give them permission.

For VLC, I'd recommend uninstalling the Snap package, and using the vanilla APT version:

代码语言:javascript复制
sudo snap remove vlc
sudo apt update && sudo apt install vlc

You will be able to run VLC as root by modifying the VLC binary, located in /usr/bin

First, you'll need a hex-editor, like Bless :

代码语言:javascript复制
sudo apt-get install bless

Then, you'll open the VLC binary with the hex-editor :

代码语言:javascript复制
sudo bless /usr/bin/vlc

Search and change the geteuid string by getppid, save and exit.

You can now launch VLC as root.

0 人点赞