Announcement
Collapse
No announcement yet.
Cannot enter some folders
Collapse
X
-
OK then it appears you have links that link back to themselves - thus the error messages. I assume there are no files in those linked folders because they are invalid. If you have color enabled in your prompt, the invalid links should appear in red when doing ls
This one-liner should delete all the links and replace them with folders:
Code:cd /home/billbailey; for f in Desktop Downloads Music Pictures Public Templates Videos; do rm $f; mkdir $f; done
- Top
- Bottom
Comment
Comment