[Linux] Supporting Utilities - symlinks does not work
See original GitHub issueAfter install RD 0.6.0
on openSUSE Leap, the supporting utilities symlink does not work properly. Executing commands from konsole
like: kubectl
, nerdctl
and/or helm
, the symlink does not resolve the path.
Even though the tools are correctly installed into the system, you need to pass the entire tool path to get it working:
e.g: /home/test/.local/bin/kubectl version
- instead just kubectl version
To Reproduce –> Fresh openSUSE Leap install (VMBox nested virtualization ON)
- Download latest development RD rpm package from GitActions
- Install using sudo zypper install [RD-Dev-Package].rpm
- Open rancher-desktop
- Wait until the app being loaded
- Open the terminal and type:
kubectl version
orhelm version
- Should see the following error: see results
Result
localhost:/home/test # kubectl version
If 'kubectl' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf kubectl
localhost:/home/test # helm version
If 'helm' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf helm
localhost:/home/test # nerdctl ps
If 'nerdctl' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf nerdctl
localhost:/home/test # kim version
If 'kim' is not a typo you can use command-not-found to lookup the package that contains it, like this:
cnf kim
localhost:/home/test #
Expected behaviour Running supporting tools from terminal without passing the entire file path.
Screenshots
Without full path:
With full path:
Setup (please complete the following information):
- OS:
openSUSE Leap 15.3
- KDE Plasma:
5.18.6
- Rancher Desktop version:
0.6.0
- Kubernetes version:
1.21.5
Additional context N/A
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to Find and Fix Broken Symlinks in Linux - MakeUseOf
The symlink will break and is not removed from your system. You can confirm this by typing the ll | grep txt command...
Read more >The trouble with symbolic links - LWN.net
If you open a file in multiple tabs via multiple paths, edits in one of them should reflect in the other, immediately. If...
Read more >RD unable to overwrite binaries symlinks #1300 - GitHub
RD does not overwrite binaries symlinks during Factory Reset. ... Open RD app; Navigate to Supporting Utilities; Should see one or multiple binaries...
Read more >How to resolve symbolic links in a shell script - Stack Overflow
A broken symlink causes an error that reports the non-existent target. # LIMITATIONS # - Won't work with filenames with embedded newlines or...
Read more >symlink(7) - Linux manual page - man7.org
Symbolic links are files that act as pointers to other files. To understand their behavior, you must first understand how hard links work....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hello,
The Maintenance Update for
aaa_base
took longer than expected, as it had to be merged with another fix that required some validation.But I am happy to announce that
aaa_base
version84.87+git20180409.04c9dae-3.52.1
for openSUSE Leap 15.3 is released and contains:So the problem should be fixed now. If @evertonlperes can validate, I guess this issue can be closed (warning: you will need to close and start your session again, after you update the package)
PS: Tumbleweed was fixed almost one month ago.
On Debian and Ubuntu
$HOME/bin
is only added toPATH
if the directory exists.However, at least on Debian10 and Debian11, I do not have
$HOME/.local/bin
atPATH
(servers, no GUI). I checked Ubuntu 20.04 and 21.04 using Docker containers and the same happens.Something tells me that
$HOME/.local/bin
get added toPATH
by a package that installs files at/etc/profile.d
.Did you check with a machine that as GUI?
Since this is a desktop application, I think this should be fixed somewhere at openSUSE.
FMPOV the best approach is fixing the package
aaa_base
to add~/.local/bin
toPATH
if the directory exists, as in the end the package already checks a lot of other directories (/etc/profile
):@davidcassany @evertonlperes I will try to prepare submit requests for openSUSE Factory (tumbleweed), Leap 15.3, and maybe 15.2
Then users will just need to close their session and open it again to get
~/.local/bin
as part ofPATH
Rancher Desktop can still merge the PR, of course, but FMPOV this looks like a problem to be fixed on the affected distributions 😃