Hey Al,
Don't just use the sudo command when something doesn't work without it. We need to understand why we are using sudo. As you learn more about Linux, you will come to understand when it is needed. BAP is not designed to be run as root which is what you are attempting to do when you use the sudo command.
Now let's see if we can resolve the issue. With your pi up and running, open the terminal window and run the following command:
git clone https://github.com/km4ack/pi-build.git $HOME/pi-build && bash $HOME/pi-build/build-a-pi
A quick explanation of what we are doing:
git clone https://github.com/km4ack/pi-build.git - downloads the code
$HOME/pi-build - tells the pi where to put the code (in the pi-build directory)
&& - is used to run multiple commands. In this case, download then execute the code.
bash $HOME/pi-build/build-a-pi - tells the pi to use bash to run the build a pi script
Make sure your username is still "pi". BAP doesn't work if you change the user name. Changing the hostname is OK.
?pi@raspberry
^^@^^^^^^^
user hostname
One last thing, Linux is case sensitive & picky. See .
Hope that helps clear things up!
--
73, de KM4ACK
|
|