Advanced Search
Search Results
23 total results found
Setting static IP
Step 1 - Edit interfaces file sudo nano /etc/network/interfaces Step 2 - add following lines iface eth0 inet static address <ip address you want> netmask 255.255.255.0 gateway <gateway address> dns-nameservers 8.8.8.8 Step 3 - Restart network sudo sys...
How to prevent VM from seeing other devices on LAN with the firewall
This can be useful for setting up a separated sacrificial VM for testing known bad software, links etc. Step 1: Create New Security Group Datacenter - Firewall - Security Group Create Group Step 2: Add rules Select the new security group and click 'Add'...
Setting up the arr stack on a fresh debian 12 install
1) Install docker & docker compose # Add Docker's official GPG key: sudo apt-get update sudo apt-get install ca-certificates curl sudo install -m 0755 -d /etc/apt/keyrings sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/d...