In Debian, I want to remove a directory from my home directory. It is displaying a mesage directory not empty, i could not see any file inside the directory.(tried ls -l) How to remove the directory ?.
i tried the command with Sudo option.
|
| |||
|
feedback
|
migrated from stackoverflow.com Nov 12 '09 at 10:09
This question came from our site for professional and enthusiast programmers.
|
try You can remove recursively using | |||
|
feedback
|
|
rm -rf /home/user/directory | |||
feedback
|
|
Try
To show hidden files, then remove them. Or, to force the directory and everything inside it to be deleted, try:
| |||
|
feedback
|
|
Load up your terminal and type the following:
This should work assuming you have the correct permissions | |||||
feedback
|