You are not logged in.
hi.
So, I made the update of glibc with the switch/transition to /usr/lib. All went all. My system is still running fine!
However I noticed that a simple ls / shows the lib symlink in red as if it was a broken symlink. And it is not.
So, I wonder why it shown like that.
In fact, I don't why, a long time ago, I have added
eval $(dircolors)
to my ~/.bashrc to get colors on output of ls.
Looking at documentation of dircolors, it shows link in red for orphan:
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
well, /lib is a symlink to an existent file and /usr/lib is stat'able. So, I really don't understand.
Anyway, I will remove eval $(dircolors) from my ~/.bashrc. Because when I unset LS_COLORS, the output has still colors, and no red link for /lib.
Last edited by solstice (2012-07-14 17:39:59)
Offline
file /lib
Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest
Offline
hi.
So, I made the update of glibc with the switch/transition to /usr/lib. All went all. My system is still running fine!
However I noticed that a simple ls / shows the lib symlink in red as if it was a broken symlink. And it is not.
So, I wonder why it shown like that.
In fact, I don't why, a long time ago, I have added
eval $(dircolors)
to my ~/.bashrc to get colors on output of ls.Looking at documentation of dircolors, it shows link in red for orphan:
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able filewell, /lib is a symlink to an existent file and /usr/lib is stat'able. So, I really don't understand.
Anyway, I will remove eval $(dircolors) from my ~/.bashrc. Because when I unset LS_COLORS, the output has still colors, and no red link for /lib.
The link is relative, not absolute:
lib -> usr/lib/if you do a:
cd /
ls -l it should show the link OK.
Mektub
Follow me on twitter: https://twitter.com/johnbina
Offline
@Mektub
ah yes you are right. It dind't know ls was that stupid and show broken link for relative symlink.
Offline