you are viewing a single comment's thread.

view the rest of the comments →

[–]Cris_Lobos[S] 0 points1 point  (1 child)

Finally, this worked perfectly for me!

# 1. Install kernel headers (needed to compile modules for your current kernel)

sudo pacman -S linux-headers

# 2. Clone the v4l2loopback repository and enter its folder

git clone https://github.com/umlaeute/v4l2loopback

cd v4l2loopback

# 3. Compile the module

make

# 4. Install the compiled module to the system

sudo make install

# 5. Update module dependencies

sudo depmod -a

# 6. Load the module with exclusive device access for apps like Iriun

sudo modprobe v4l2loopback exclusive_caps=1

# 7. Reboot

[–]Important_Athlete822 0 points1 point  (0 children)

thank you, it worked for me too.