You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, please avoid hard-linking to executables and rather obtain them via PATH.
For example, on nixos invoking jconsole always prints the error/bin/sh: line 1: /sbin/ldconfig: No such file or directory. This is because there is no /sbin on nixos; expecting /sbin/ to exist is generally not a good idea because, as can be read in man 7 file-hierarchy, /sbin/ as well as /bin/ and /usr/sbin/ are legacy folders and if they even exist, usually just symbolic links to /usr/bin/
Hi, please avoid hard-linking to executables and rather obtain them via PATH.
For example, on nixos invoking jconsole always prints the error
/bin/sh: line 1: /sbin/ldconfig: No such file or directory
. This is because there is no/sbin
on nixos; expecting/sbin/
to exist is generally not a good idea because, as can be read inman 7 file-hierarchy
,/sbin/
as well as/bin/
and/usr/sbin/
are legacy folders and if they even exist, usually just symbolic links to/usr/bin/
https://github.com/search?q=repo%3Ajsoftware%2Fjsource+%2Fsbin%2Fldconfig&type=code
The text was updated successfully, but these errors were encountered: