Last active
April 15, 2024 06:53
Revisions
-
kevineduardo revised this gist
Jun 26, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,5 +11,5 @@ dkms install -m v4l2loopback -v 1.1 <br> reboot now <br> #### after reboot execute the following commands depmod -a <br> modprobe v4l2loopback card_label="Camera" <br> #### that's it, you are done! <br> -
kevineduardo revised this gist
Jun 24, 2021 . 1 changed file with 12 additions and 12 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,15 +1,15 @@ # How to install (and compile) the latest v4l2loopback kernel module on Fedora Workstation 34 ### Execute the commands below using sudo or login as root dnf install kernel-devel kernel-headers dkms v4l-utils <br> git clone https://github.com/umlaeute/v4l2loopback.git <br> cd v4l2loopback <br> make <br> cp -R . /usr/src/v4l2loopback-1.1 <br> dkms add -m v4l2loopback -v 1.1 <br> dkms build -m v4l2loopback -v 1.1 <br> dkms install -m v4l2loopback -v 1.1 <br> reboot now <br> #### after reboot execute the following commands depmod -a <br> modprobe v4l2loopback <br> #### that's it, you are done! <br> -
kevineduardo revised this gist
Jun 24, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # How to install (and compile) the latest v4l2loopback kernel module on Fedora Workstation 34 ### Execute the commands below using sudo or login as root dnf install kernel-devel kernel-headers dkms v4l-utils \n git clone https://github.com/umlaeute/v4l2loopback.git cd v4l2loopback make -
kevineduardo created this gist
Jun 24, 2021 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ # How to install (and compile) the latest v4l2loopback kernel module on Fedora Workstation 34 ### Execute the commands below using sudo or login as root dnf install kernel-devel kernel-headers dkms v4l-utils git clone https://github.com/umlaeute/v4l2loopback.git cd v4l2loopback make cp -R . /usr/src/v4l2loopback-1.1 dkms add -m v4l2loopback -v 1.1 dkms build -m v4l2loopback -v 1.1 dkms install -m v4l2loopback -v 1.1 reboot now #### after reboot execute the following commands depmod -a modprobe v4l2loopback #### that's it, you are done!