Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker - Bash: IP: command not found

I'm currently trying to set up a hyperledger fabric network using docker toolbox, based on the guide HERE

When it comes to "Starting up validating peers" step, I followed and entered ip add into the terminal, but it returns bash: ip: command not found. Any solution? I've tried ifconfig as well and it's the same issue, command not found.

Using Docker Toolbox on Windows 10 Home

Thanks

like image 877
ZenX0904 Avatar asked Mar 08 '17 18:03

ZenX0904


1 Answers

Install ip command package for Ubuntu.

apt update apt install iproute2 
like image 72
prosti Avatar answered Sep 19 '22 05:09

prosti