Opened 17 years ago
Closed 17 years ago
#1411 closed bug (invalid)
/bin as a symlink
Reported by: | rdaneel | Owned by: | axeld |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | File Systems/BFS | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
I made a symlink to /bin, now i cant execute anything from Terminal.
/> ls sh: /bin/ls No such file or directory
To make the binaries work, go to /bin. Revision: 22013
Note:
See TracTickets
for help on using tickets.
/bin already is a symlink, and you obviously overwrote it. If you wanted to add an alternate symlink to /bin, you would need to do it like this: $ ln -s /bin my-alternate-bin
HTH.