Announcement

Collapse
No announcement yet.

Cannot enter some folders

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    oshunluvr​, the output of: echo $HOME is /home/billbailey

    The output of: ls /home is billbailey

    Comment


      #17
      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
      Just open Konsole and copy and paste it into the terminal window and hit enter.


      Please Read Me

      Comment

      Working...
      X