Displaying 3 results from an estimated 3 matches for "getpcap".
Did you mean:
getcap
2009 Aug 19
1
CAP_FOWNER=ep for asterisk
Hello,
I need CAP_FOWNER=ep for the asterisk process, i set it with setcap on
the file /usr/sbin/asterisk, it's there when i look on it with getcap,
but after starting and loocking with getpcaps there's only
cap_net_admin+ep set.
So how exactly do I set CAP_FOWNER? Do I have to patch and recompile
or is there another solution I did not see yet?
thanks,
best
--
Raimund Sacherer
-
RunSolutions
Open Source It Consulting
-
Parc Bit - Centro Empresarial Son Espanyol
Edificio...
2013 Aug 22
2
Re: Oracle RAC in libvirt+KVM environment
Il 22/08/2013 09:46, Timon Wang ha scritto:
> Thanks Nicholas.
>
> I found that scsicmd can't pass all the scsi3_test but the result of
> sg_inq is the same as it in the host.
>
> I am absolutely confused about this situation. Am I missed some
> information about it?
I am also confused. You need to understand the limitations that the
clustering software is putting.
2013 Aug 27
2
Re: Oracle RAC in libvirt+KVM environment
...> information about it?
I guess this is caused by the lack of capability.
Please check if enough capability was added to kvm process by the following
steps.
1. Check the pid of kvm process.
# ps -C qemu-system-x86_64 -o pid=
5177
2. Check the capability for the process.
# getpcaps 5177
Capabilities for `5177': = cap_sys_rawio+i
In my fedora19 environment, as seen in above, only cap_sys_rawio+i was added
with rawio='yes'. Even though, cap_sys_rawio+ep is required to pass-through
SCSI Reservation from the guest.
Note that I succeeded to pass-through SCSI...