After installing, error when running
See original GitHub issueJust as the title says, when I run the program just pop an error, I have already installed all the dependencies, restarted my machine and just to say, I install the program from AUR using yay so, don’t know why the issue.
The error is:
PANIC Failed to create V4L2 device with id 50
Issue Analytics
- State:
- Created 3 years ago
- Comments:14 (2 by maintainers)
Top Results From Across the Web
How to troubleshoot Windows Installer errors - Microsoft Support
Click Start, click Run, type cmd, and then click Command Prompt. · At the command prompt, type the following, and then press Enter...
Read more >Fix Another Installation is in Progress Error on Windows
1. Restart the Windows Installer service · Press the Windows key + R to start Run, type services.msc, and press Enter or click...
Read more >If an error occurred while updating or installing macOS
If an error occurred while updating or installing macOS · Check your internet connection · Install in safe mode · Install after repairing...
Read more >9 Ways to Fix an Error Occurred While Preparing the Installation
This makes it important for us to be ready to tackle any error. An installation error that reads 'an error occurred while preparing...
Read more >Troubleshooting — Anaconda documentation
Cannot get conda to run after installing; Recovering your Anaconda installation ... The 403 error you are receiving may look like the following:....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
You have to install the kernel headers for your kernel to get dkms modules to work on archlinux
You also don’t compile from source on archlinux, you use a pkgbuild always, otherwise the package manager doesn’t track the files and keep them up to date.
For those of you running into this on Arch, not knowing how to do this:
Find the linux kernel you’re using:
uname -r
Then, using yay (or
pacman -S
with the specific package name), install the package that matches your kernel version:yay linux-headers
should give you something like:Since I’m using 5.10, I chose
linux510-headers
. Installed the package and mon2cam worked perfectly afterwards.Thanks @ShayBox !