Tysonpower / starlinkstatus

starlinkstatus.space - Starlink Statuspage with Speedtest
96 stars 14 forks source link

grpcurl no longer located in /bin #30

Closed cdoublejj closed 2 years ago

cdoublejj commented 2 years ago

grpcurl is now located in /home/user/go/pkg/mod/github.com/fullstorydev/grpcurl@v1.8.6/cmd/grpcurl

cdoublejj commented 2 years ago

i searched the drive, found grpcurl folder, copied it to usr/bin and still get grpcurl: command not found

could be possible it's not compiling or something.

anyhow this is harder to use than the actual SL inet

cdoublejj commented 2 years ago

https://princepereira.medium.com/install-grpccurl-in-ubuntu-6ad71fd3ed31

that fixed it

Tysonpower commented 2 years ago

So just the cp command needs to change in the Documentation?

zodoczi commented 2 years ago

So just the cp command needs to change in the Documentation?

Hi :) Yes looks like:

pi@raspberrypi:~ $ sudo cp /go/bin/grpcurl /usr/bin
cp: cannot stat '/go/bin/grpcurl': No such file or directory
zodoczi commented 2 years ago

update: just a dot missing from the command before "/go" folder:

sudo cp ./go/bin/grpcurl /usr/bin

Tysonpower commented 2 years ago

thx, updated