This is a simple step-by-step guide to setup your system to develop a website that will be deployed on GitHub Pages locally.
First of all you need to install the proper packages using apt:
sudo apt install ruby-full build-essential zlib1g-dev -yThis is a simple step-by-step guide to setup your system to develop a website that will be deployed on GitHub Pages locally.
First of all you need to install the proper packages using apt:
sudo apt install ruby-full build-essential zlib1g-dev -y| #!/bin/bash | |
| set -e | |
| ############################## DEFAULT PARAMETERS ############################## | |
| # Indicates whether we want to install or remove one or multiple packages | |
| # TODO: Also autoremove can be used, to force additional cleanup | |
| install_remove="install" |
| #!/bin/bash | |
| # First argument is the link to the deb file to download | |
| function download_install_deb() { | |
| wget -O /tmp/installer.deb "$1" | |
| dpkg -i /tmp/installer.deb || apt install -f -y | |
| rm /tmp/installer.deb | |
| } | |
| ( |
| # ╔═══════════════════════════════════════════════════════╗ | |
| # ║ Configuration ║ | |
| # ╚═══════════════════════════════════════════════════════╝ | |
| MODULE_NAME=<put-module-name-here> | |
| obj-m += $(MODULE_NAME).o | |
| # ┌───────────────────────────────────────────────────────┐ | |
| # │ Sources │ | |
| # └───────────────────────────────────────────────────────┘ |