That you have to run from sudo level ( I mean from root level).
First do like this
For ubuntu : sudo -s
For other linux distributions like centos,suse : su
Then it will ask for password.
Then run your make file/go build. It looks like your make file is trying to
use some config files that's why i
Thank you!
On Fri, 8 Mar 2019 at 19:45, Nick wrote:
> Great. I don't know much about docker, but it looks like you
> probably ran something as sudo that you shouldn't have, again.
>
> Try running this:
> $ sudo chown -R nada:nada /home/nada/.docker
>
> Hopefully then your docker stuff should be
Great. I don't know much about docker, but it looks like you
probably ran something as sudo that you shouldn't have, again.
Try running this:
$ sudo chown -R nada:nada /home/nada/.docker
Hopefully then your docker stuff should be sorted out.
Probably worth you reading a bit more about Linux bas
Quoth Nada Saif:
> The go command works, but when I try to build any golang code, it gives me :
> [image: go-err.png]
>
> I downloaded go1.12 linux/amd64 and extracted it to /usr/local/
> I also added these to .bashrc
> export GOPATH = $HOME/go
> export PATH=$PATH:$GOPATH/bin
> export also PATH=$P
The go command works, but when I try to build any golang code, it gives me :
[image: go-err.png]
I downloaded go1.12 linux/amd64 and extracted it to /usr/local/
I also added these to .bashrc
export GOPATH = $HOME/go
export PATH=$PATH:$GOPATH/bin
export also PATH=$PATH:/usr/local/go/bin
Thanks
O
On Fri, Mar 8, 2019 at 5:09 AM Nada Saif wrote:
>
> Hi, I am installing a dev environment on ubuntu vm.
> The installation went well but at the end I got a messsage "/bin/sh :go not
> found"
>
> Go is installed, I also added the path to .bashrc file
>
> go version
> go version go1.12 linux/amd64
Hi, I am installing a dev environment on ubuntu vm.
The installation went well but at the end I got a messsage "/bin/sh :go not
found"
Go is installed, I also added the path to .bashrc file
go version
go version go1.12 linux/amd64
which go
/usr/local/go/bin/go
Can you please suggest ways to re