= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
6 results
= 1024) { $event.preventDefault(); $wire.openPreview('create-systemd-service') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('create-systemd-service') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
Create systemd service unit
sudo tee /etc/systemd/system/{{service_name}}.service > /dev/null <<'EOF'
#systemd
#service
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('systemd-view-logs') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('systemd-view-logs') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
View systemd service logs
sudo journalctl -u {{service_name}} -n 100 -f
#systemd
#logs
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('systemd-restart-service') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('systemd-restart-service') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
Restart systemd service
sudo systemctl restart {{service_name}} && sudo systemctl status {{service_name}...
#systemd
#restart
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('systemd-list-failed') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('systemd-list-failed') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
List Failed systemd Units
systemctl --failed
#systemd
#failed
3 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('systemd-timer-create') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('systemd-timer-create') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
Create a systemd Timer Unit
[Unit]
#systemd
#timer
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('systemd-override-unit') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('systemd-override-unit') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
systemd Services
Override a systemd Unit (Drop-in)
systemctl edit {{unit}}
#systemd
#override
3 views
0 copies