Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
✅ Treat Lightspeed as built‑in documentation, not a replacement for core Linux skills.
command-line-assistantdnf install command-line-assistantc commandc chat "question in plain English"Example:
c chat "How do I list running services?"Used for multi‑step troubleshooting.
c chat --interactiveExit:
Ctrl + C.exitsystemctl list-units --type=service --state=running
Check Service Status
systemctl status sshd.service
systemctl status gdm.serviceLightspeed Example:
c chat "How do I check the status of the sshd service?"journalctl -u httpd.service --since "1 hour ago"journalctl -u httpd.service --since "1 hour ago" | c chat "What could be causing errors?"ps aux --sort=-%memps aux --sort=-%mem | head -n 20ps aux --sort=-%mem | head -n 20 | c chat "Is there a memory leak?"cat /var/log/messagescat /var/log/messages | c chat "Look for critical errors"c chat -a /var/log/boot.log "Why did the last boot take so long?"Options:
-a → attach filecommand | command | commandExamples you must know:
ps aux | head
journalctl -u sshd | less
cat /var/log/messages | grep errorLightspeed just reads piped output — it does not access files on its own.
❌ Lightspeed cannot:
✅ It suggests commands instead
You must know these commands without AI help:
dnf
systemctl
journalctl
ps
cat
head
piping (|)
log locations (/var/log/*)You are not tested on:
c chatdnf install command-line-assistant
c chat "question"
c chat --interactive
systemctl list-units --type=service --state=running
systemctl status sshd.service
journalctl -u httpd.service --since "1 hour ago"
ps aux --sort=-%mem
head -n 20
cat /var/log/messages
c chat -a /var/log/boot.logTest your Knowledge