Linux系统 wget 权限被人下掉了 如何添加 是root账户
Linux系统 wget 权限被人下掉了 怎么添加 是root账户
1 看看weget的安装位置 [root@abc /tmp/shell]#type wget wget is hashed (/usr/bin/wget) #2 查看权限,这里我自己的wget的权限是正常的,如果你的权限跟我不一样,就继续执行第三步 [root@abc /tmp/shell]#ll /usr/bin/wget -rwxr-xr-x. 1 root root 357400 10月 31 2014 /usr/bin/wget #3 更改权限 [root@abc /tmp/shell]#chmod 744 /usr/bin/wget