Displaying 2 results from an estimated 2 matches for "cflinux".
Did you mean:
celinux
2005 Jul 12
0
INTERACTIVE logon works, NETWORK logon does not with Samba 3.0.14a
Greetings -
I have Fedora Core 2 Linux box with Samba 3.0.14a compiled
and installed there.
Here's output of testparm:
<TESTPARM OUTPUT>
[root@cflinux ~/Downloads/samba-3.0.14a]# /usr/bin/testparm
Load smb config files from /usr/local/samba/lib/smb.conf
Processing section "[homes]"
Processing section "[printers]"
Processing section "[tmp]"
Processing section "[cf]"
Loaded services file OK.
Server role: ROLE...
2012 Oct 30
2
libvirt python api error
I use the code below:
import libvirt
auth =
[[libvirt.VIR_CRED_AUTHNAME,libvirt.VIR_CRED_NOECHOPROMPT],'root',None]
conn = libvirt.openAuth("qemu:///system",auth,0)
with open("/root/cflinux.xml") as f:
xml=f.read()
domain = conn.defineXML(xml)
domain.createWithFlags(0)
and report the error:
libvir: Security Labeling error : internal error cannot load AppArmor
profile 'libvirt-f0655289-318d-4aa7-b87a-6ce7cdead4ee'
Traceback (most recent call last):
File "a.p...