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 characters
==> /etc/modules-load.d/v4l2loopback.conf <== | |
v4l2loopback | |
==> /etc/modprobe.d/98-v4l2loopback.conf <== | |
options v4l2loopback exclusive_caps=1 card_label="OBS Virtual Camera" |
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 characters
[root@52548d9204e4 /]# dnf install freeipa-server | |
Last metadata expiration check: 0:00:37 ago on Thu Feb 1 14:08:00 2018. | |
Error: | |
Problem: package pki-kra-10.5.3-1.fc28.noarch requires pki-server = 10.5.3-1.fc28, but none of the providers can be installed | |
- package freeipa-server-4.6.1-4.fc28.x86_64 requires pki-kra >= 10.4.0-1, but none of the providers can be installed | |
- package pki-server-10.5.3-1.fc28.noarch requires policycoreutils-python, but none of the providers can be installed | |
- conflicting requests | |
- nothing provides audit-libs-python >= 2.1.3-4 needed by python2-policycoreutils-2.7-8.fc28.x86_64 |
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 characters
# Add extensions to be disabled. This may be needed as some | |
# extra modules may add extensions which cause the maximum | |
# number of extensions possible to be exceeded. | |
# | |
# SUSE Default: disable DGA. | |
Section "Extensions" | |
Option "XFree86-DGA" "Disable" | |
Option "XFree86-VidModeExtension" "Disable" | |
EndSection |
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 characters
-- little helper function | |
function file_exists(path) | |
local attr = lighty.stat(path) | |
if (attr) then | |
return true | |
else | |
return false | |
end | |
end |