Ste
Ste

Reputation: 281

How to use CAP_SYS_ADMIN

Can somebody please explain to me how to use or set CAP_SYS_ADMIN in c? I need that capability to unmount a usb drive but don't know how to use it.

Upvotes: 12

Views: 20270

Answers (1)

starfry
starfry

Reputation: 9943

Here's how to do it using the command-line:

$  sudo setcap cap_sys_admin+ep executable-name

and

$ getcap executable-name
executable-name = cap_sys_admin+ep

You, of course, need the libcap package.

A good place to learn how to do it in C would be the source for setcap which is here

Upvotes: 22

Related Questions