Monthly Archives : July 2026

  • Parallels Ubuntu ARM SSH and Ping Crashing

    1️⃣ Create the scriptsudo nano /usr/local/bin/ping_host_keepalive.sh Paste this:#!/bin/bashHOST=”192.168.1.18″ # replace with your Mac host IPping -c 1 -W 2 $HOST > /dev/null 2️⃣ Make it executablesudo chmod +x /usr/local/bin/ping_host_keepalive.sh 3️⃣ Add to cronsudo crontab -e Add two lines (to run every 30 seconds):* * * * * /usr/local/bin/ping_host_keepalive.sh* * * * * sleep 30; /usr/local/bin/ping_host_keepalive.sh […]

    READ MORE