|
- $ ls -l /sbin/swapon
- -rwxr-xr-x 1 root root 18980 Jan 26 03:19 /sbin/swapon
- $ file swap_file
- swap_file: Linux/i386 swap file (new style), version 1 (4K pages), size 249 pages, no label, UUID=fbdb3476-c197-450a-acba-93399ffc0779
- $ /sbin/swapon swap_file
- swapon: swap_file: swapon failed: Operation not permitted
复制代码 本来嘛,/sbin/swapon命令是允许任何用户执行的,可最后它却返回了Operation not permitted这样的错误信息,请问系统在哪一步限制了普通用户调用/sbin/swapon这个命令呢? |
|