2010.1.1
FTPソフトではなぜか消すことができず、ファイルが残ってしまうことが時々あったので、ターミナルを使いroot権限で削除する方法を自分用にメモしました。
suコマンドでrootに切り替える。パスワードを聞いてくるので入力。macでフォルダを削除する場合、以下のように-rfを付ける。
rm -rf [フォルダ名]
OpenSSH_5.1p1, OpenSSL 0.9.7l 28 Sep 2006
Last login: Thu Aug 13 00:18:50 2009 from *****.ne.jp
-bash-3.2$ su
Password: *************
[root@www hoge.com]# ls
anon_ftp bin cgi-bin conf error_docs httpdocs httpsdocs pd private statistics subdomains web_users
[root@www hoge.com]# cd httpdocs
[root@www httpdocs]# ls
wp-content
[root@www httpdocs]# rm -rf wp-content
[root@www httpdocs]# ls
[root@www httpdocs]#
[itemlink post_id=”1946″]