Paths of sudoless brew on Linux #119
-
I am not a
Where does it download binaries and where it symlinks them when installed without |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
From the page you pointed to, in the section after the one you quoted:
|
Beta Was this translation helpful? Give feedback.
-
@gromgit where it installs executables for other packages, and how do they appear in my path without |
Beta Was this translation helpful? Give feedback.
-
Answering my own question. After installing, ➜ ~ ls -la .linuxbrew/bin
total 8
drwxrwxr-x. 2 anatoli anatoli 4096 Nov 8 14:27 .
drwxr-xr-x. 14 anatoli anatoli 4096 Nov 8 14:26 ..
lrwxrwxrwx. 1 anatoli anatoli 42 Nov 8 14:27 brew -> /home/anatoli/.linuxbrew/Homebrew/bin/brew After installing ➜ ~ ls -la .linuxbrew/bin
total 8
drwxrwxr-x. 2 anatoli anatoli 4096 Nov 9 07:01 .
drwxr-xr-x. 14 anatoli anatoli 4096 Nov 8 14:26 ..
lrwxrwxrwx. 1 anatoli anatoli 42 Nov 8 14:27 brew -> /home/anatoli/.linuxbrew/Homebrew/bin/brew
lrwxrwxrwx. 1 anatoli anatoli 28 Nov 9 07:01 k9s -> ../Cellar/k9s/0.23.9/bin/k9s
-rw-r--r--. 1 anatoli anatoli 0 Nov 9 07:00 .keepme
lrwxrwxrwx. 1 anatoli anatoli 36 Nov 9 07:01 patchelf -> ../Cellar/patchelf/0.11/bin/patchelf All paths related to ➜ ~ fd k9s -H
.cache/Homebrew/downloads/5f932f171a96027953b2736e24c3bb1b5d33164683da27bcb74f0984bedbc1ce--k9s-0.23.9.x86_64_linux.bottle.tar.gz
.cache/Homebrew/k9s--0.23.9.x86_64_linux.bottle.tar.gz
.linuxbrew/var/homebrew/linked/k9s
.linuxbrew/Cellar/k9s
.linuxbrew/opt/k9s
.linuxbrew/Cellar/k9s/0.23.9/.brew/k9s.rb
.linuxbrew/Cellar/k9s/0.23.9/bin/k9s
.linuxbrew/bin/k9s |
Beta Was this translation helpful? Give feedback.
Answering my own question. After installing,
brew
appears in$HOME/.linuxbrew/bin
and not added to$PATH
.After installing
k9s
with.linuxbrew/bin/brew install k9s
, the.linuxbrew/bin
gets more symlinks.