RustyNova@lemmy.worldtoTechnology@lemmy.world•Update: Bitwarden posted to X this evening to reaffirm that it's a "packaging bug" and that "Bitwarden remains committed to the open source licensing model."English
1·
3 months agoI wanted to check out bitwarden as a self hosted service, but looks like I better stick with good ol’ keepass+Syncthing
I think I know what happened. Did you do something like
PATH="/usr/bin/golang"
?Because doing that overwrite your path variable. You need to set it like this:
PATH="{PATH}:/usr/bin/golang"
to append to the path.And well… I hope you got a backup of your
/root/.bashrc
or whatever you use as a terminal. Restoring it should fix itEdit: you should be able to use any program by appending /usr/bin/ to your commands, as long as it’s in this directory