You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Enable service at boot
sudo ln -s /etc/sv/servicename /var/service
# Disable service
sudo rm /var/service/servicename
# Start/Stop immediately
sudo sv up servicename
sudo sv down servicename
# Check status
sudo sv status servicename
π» System Basics
# Check system info
uname -a
# Disk usage
df -h
# Memory usage
free -h
# Find a command's location
which command
π Networking
# Check IP
ip a
# Test connection
ping -c 4 voidlinux.org
# Restart network service
sudo sv restart dhcpcd