The toolchain
Now we have necessary hardware, but still the only thing we can do is to login into the RasPi in a slightly different way. Now we need some software tools to convert our program sources into binaries for RasPi. I'm aware that there are some instructions floating around on how to acquire a toolchain more quickly, but I think the most correct way is to build one ourselves. Since I'm using Debian as my primary desktop operating system for years, I'll provide instructions for it, but the same principle should be valid for any Linux-based OS. Tip for Windows users: you can run Linux inside VirtualBox. First thing we have to ensure that our host system has all the necessary tools. Open your terminal and run: sudo apt-get install build-essential wget Note that, instead of using sudo , you could also log in as root and execute the commands without it. In this tutorial I'll however prepend sudo to every command that requires elevated privileges. It should either ...