Table of Contents

Server Specifications

Hostname: cafe
Local IP: 192.168.1.65
Domain: https://folk.zone

Spec Value
OS Ubuntu 26.04 (Resolute Raccoon) x86_64
Kernel Linux 7.0.0-14-generic
Motherboard Gigabyte GA-78LMT-USB3
CPU AMD FX-4130 @ 4.00 GHz (4 cores)
GPU AMD Radeon 3000
RAM 7.24 GiB
Storage 228.17 GiB SSD (ext4)

Connect

ssh brennan@192.168.1.65

Keep Server Running Indefinitely

The server runs a desktop OS (Lubuntu). Disable all sleep/suspend:

sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
xset s off && xset -dpms && xset s noblank

For lid-close (if laptop): set HandleLidSwitch=ignore in /etc/systemd/logind.conf, then sudo systemctl restart systemd-logind.

To keep display from blanking:

# /etc/X11/xorg.conf.d/10-noblank.conf
Section "ServerFlags"
    Option "BlankTime" "0"
    Option "StandbyTime" "0"
    Option "SuspendTime" "0"
    Option "OffTime" "0"
EndSection

See Also