recherche

Maison  >  Questions et réponses  >  le corps du texte

shell - Centos使用root用户也无法删除文件

问题现象:
Centos系统下使用root用户也无法删除文件。文件是因为网站程序有漏洞,被hack利用在机器上产生的。

    root@localhost#rm -f list-128-1.html 
    rm: cannot remove `list-128-1.html': Permission denied

已经使用lsattr命令检查过文件的隐藏属性

    root@localhost#lsattr list-128-1.html 
    --------------- list-128-1.html
    root@localhost#chattr -i list-128-1.html
    root@localhost#rm -f list-128-1.html
    rm: cannot remove `list-128-1.html': Permission denied    

已经使用chattr -i list-128-1.html去除该文件的i熟悉,但是依然提示无权限删除文件。
请教大神,还有什么可能会让root无法删除文件吗?或者请推荐给我一种能强制删除这种文件的方法,谢谢。

高洛峰高洛峰2829 Il y a quelques jours869

répondre à tous(1)je répondrai

  • 仅有的幸福

    仅有的幸福2017-04-24 16:02:34

    Les attributs

    i sont spécialement utilisés pour protéger les fichiers importants contre la suppression

     ;
    chattr -i list-128-1.html
    rm -f list-128-1.html
    

    répondre
    0
  • Annulerrépondre