Skip to content

Instantly share code, notes, and snippets.

==> /etc/modules-load.d/v4l2loopback.conf <==
v4l2loopback
==> /etc/modprobe.d/98-v4l2loopback.conf <==
options v4l2loopback exclusive_caps=1 card_label="OBS Virtual Camera"
[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
@darix
darix / 50-extensions.conf
Created April 7, 2016 14:43
/etc/X11/xorg.conf.d/50-extensions.conf
# 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
-- little helper function
function file_exists(path)
local attr = lighty.stat(path)
if (attr) then
return true
else
return false
end
end