Tag Archives: Raspberry Pi
How to Fix “No memory limit support” for Docker in Raspberry Pi
Most of us have been in the position where you want to run docker in Raspberry Pi and create a docker swarm cluster or Kubernetes cluster. When it comes to docker installation, docker info command gives you warning messages, hence the cluster installation gets stuck. docker info Throws 0ne of the following warnings or all…
How to Install Jekyll in Raspberry Pi
Installing ruby Official documentation asks that the system has ruby installed and should be version 2.2.5 or higher. Install ruby with the command- sudo apt-get install ruby-full ruby-dev Installing other dependencies Jekyll requires gcc, g++ and make. These are build dependencies – sudo apt-get install gcc g++ make Installing Jekyll After all the dependencies are…