首页 > 系统 > linux > 正文

linux下wget没有权限bash: /usr/bin/wget: Permission denied
2016-03-10 10:05:49 点击:

打算使用wget下载hadoop的压缩包,结果报下面的错误:[root@linyuhe mnt] wget http: mirror cnop net nagios nagios-plugins-1 4 14

打算使用wget下载hadoop的压缩包,结果报下面的错误:

[root@linyuhe mnt]# wget http://mirror.cnop.net/nagios/nagios-plugins-1.4.14.tar.gz

-bash: /usr/bin/wget: Permission denied

root账号还报权限错误,还是头一次见。

查看wget的权限列表

[root@linyuhe bin]# ls -l wget
-rw-r--r-- 1 root root 364072 Feb 11 2014 wget

没有X,给root账号加上可执行权限:

[root@linyuhe mnt]# chmod +x /usr/bin/wget
chmod: changing permissions of `/usr/bin/wget': Operation not permitted

晕,没有chmod权限。

然后就是各种google……

原来是加上了不可修改的属性:

[root@linyuhe bin]# lsattr wget
----i--------e- wget

去掉i属性:

[root@linyuhe bin]# chattr -i wget

给root加上可执行权限:

[root@linyuhe mnt]# chmod +x /usr/bin/wget

再来执行wget命令:

 

正常了。



相关热词搜索:linux Permission denied

上一篇:another app is currently holding the yum lock;waiting for it to exit解决
下一篇:如何更改Linux yum源