home.social

#techtipthursday — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #techtipthursday, aggregated by home.social.

  1. CW: But its always...DNS

    When the network is broken and you need answers fast:

    Trace the route to a host:
    traceroute google.com

    Check what's listening on your ports:
    ss -tuln

    Test DNS resolution:
    dig google.com

    The network is never actually down. Something specific broke. These tell you what.
    #Linux #SysAdmin #Networking #TechTipThursday

  2. CW: But its always...DNS

    When the network is broken and you need answers fast:

    Trace the route to a host:
    traceroute google.com

    Check what's listening on your ports:
    ss -tuln

    Test DNS resolution:
    dig google.com

    The network is never actually down. Something specific broke. These tell you what.
    #Linux #SysAdmin #Networking #TechTipThursday

  3. CW: But its always...DNS

    When the network is broken and you need answers fast:

    Trace the route to a host:
    traceroute google.com

    Check what's listening on your ports:
    ss -tuln

    Test DNS resolution:
    dig google.com

    The network is never actually down. Something specific broke. These tell you what.
    #Linux #SysAdmin #Networking #TechTipThursday

  4. CW: But its always...DNS

    When the network is broken and you need answers fast:

    Trace the route to a host:
    traceroute google.com

    Check what's listening on your ports:
    ss -tuln

    Test DNS resolution:
    dig google.com

    The network is never actually down. Something specific broke. These tell you what.
    #Linux #SysAdmin #Networking #TechTipThursday

  5. CW: But its always...DNS

    When the network is broken and you need answers fast:

    Trace the route to a host:
    traceroute google.com

    Check what's listening on your ports:
    ss -tuln

    Test DNS resolution:
    dig google.com

    The network is never actually down. Something specific broke. These tell you what.
    #Linux #SysAdmin #Networking #TechTipThursday

  6. Networking on Linux isn't magic. It just looks that way until you know where to look!

    Check your network interfaces: ip addr show
    Test connectivity: ping -c 4 google.com
    Check your routing table: ip route show

    #TechTipThursday #Linux #SysAdmin

  7. Networking on Linux isn't magic. It just looks that way until you know where to look!

    Check your network interfaces: ip addr show
    Test connectivity: ping -c 4 google.com
    Check your routing table: ip route show

    #TechTipThursday #Linux #SysAdmin

  8. Networking on Linux isn't magic. It just looks that way until you know where to look!

    Check your network interfaces: ip addr show
    Test connectivity: ping -c 4 google.com
    Check your routing table: ip route show

    #TechTipThursday #Linux #SysAdmin

  9. Networking on Linux isn't magic. It just looks that way until you know where to look!

    Check your network interfaces: ip addr show
    Test connectivity: ping -c 4 google.com
    Check your routing table: ip route show

    #TechTipThursday #Linux #SysAdmin

  10. Networking on Linux isn't magic. It just looks that way until you know where to look!

    Check your network interfaces: ip addr show
    Test connectivity: ping -c 4 google.com
    Check your routing table: ip route show

    #TechTipThursday #Linux #SysAdmin

  11. #TechTipThursday
    Printers. The final boss of Linux administration. Check your print service is running:
    systemctl status cups

    List available printers:
    lpstat -p

    Send a file to the printer and pray:
    lp filename.pdf

    Linux has conquered the cloud, the kernel, and the enterprise. Printers remain undefeated.

  12. #TechTipThursday
    Printers. The final boss of Linux administration. Check your print service is running:
    systemctl status cups

    List available printers:
    lpstat -p

    Send a file to the printer and pray:
    lp filename.pdf

    Linux has conquered the cloud, the kernel, and the enterprise. Printers remain undefeated.

  13. #TechTipThursday
    Printers. The final boss of Linux administration. Check your print service is running:
    systemctl status cups

    List available printers:
    lpstat -p

    Send a file to the printer and pray:
    lp filename.pdf

    Linux has conquered the cloud, the kernel, and the enterprise. Printers remain undefeated.

  14. #TechTipThursday
    Printers. The final boss of Linux administration. Check your print service is running:
    systemctl status cups

    List available printers:
    lpstat -p

    Send a file to the printer and pray:
    lp filename.pdf

    Linux has conquered the cloud, the kernel, and the enterprise. Printers remain undefeated.

  15. #TechTipThursday
    Printers. The final boss of Linux administration. Check your print service is running:
    systemctl status cups

    List available printers:
    lpstat -p

    Send a file to the printer and pray:
    lp filename.pdf

    Linux has conquered the cloud, the kernel, and the enterprise. Printers remain undefeated.

  16. #TechTipThursday
    Yes, Linux admins still configure email. No, it never gets less weird.

    Check if your mail service is running:
    systemctl status postfix

    Send a test email from the command line:
    echo "Test" | mail -s "Hello" [email protected]

    Check the mail queue:
    mailq

    Nobody gets excited about email configuration. Until something breaks and logs stop delivering. Then it's the only thing that matters.

  17. #TechTipThursday
    Yes, Linux admins still configure email. No, it never gets less weird.

    Check if your mail service is running:
    systemctl status postfix

    Send a test email from the command line:
    echo "Test" | mail -s "Hello" [email protected]

    Check the mail queue:
    mailq

    Nobody gets excited about email configuration. Until something breaks and logs stop delivering. Then it's the only thing that matters.

  18. #TechTipThursday
    Yes, Linux admins still configure email. No, it never gets less weird.

    Check if your mail service is running:
    systemctl status postfix

    Send a test email from the command line:
    echo "Test" | mail -s "Hello" [email protected]

    Check the mail queue:
    mailq

    Nobody gets excited about email configuration. Until something breaks and logs stop delivering. Then it's the only thing that matters.

  19. #TechTipThursday
    Yes, Linux admins still configure email. No, it never gets less weird.

    Check if your mail service is running:
    systemctl status postfix

    Send a test email from the command line:
    echo "Test" | mail -s "Hello" [email protected]

    Check the mail queue:
    mailq

    Nobody gets excited about email configuration. Until something breaks and logs stop delivering. Then it's the only thing that matters.

  20. #TechTipThursday
    Yes, Linux admins still configure email. No, it never gets less weird.

    Check if your mail service is running:
    systemctl status postfix

    Send a test email from the command line:
    echo "Test" | mail -s "Hello" [email protected]

    Check the mail queue:
    mailq

    Nobody gets excited about email configuration. Until something breaks and logs stop delivering. Then it's the only thing that matters.

  21. Check your system logs:
    journalctl -xe

    Follow logs in real time:
    journalctl -f

    Filter by service:
    journalctl -u nginx

    Logs tell you everything, if you know where to look.
    #SysAdmin #Linux #TechTipThursday

  22. Check your system logs:
    journalctl -xe

    Follow logs in real time:
    journalctl -f

    Filter by service:
    journalctl -u nginx

    Logs tell you everything, if you know where to look.
    #SysAdmin #Linux #TechTipThursday

  23. Check your system logs:
    journalctl -xe

    Follow logs in real time:
    journalctl -f

    Filter by service:
    journalctl -u nginx

    Logs tell you everything, if you know where to look.
    #SysAdmin #Linux #TechTipThursday

  24. Check your system logs:
    journalctl -xe

    Follow logs in real time:
    journalctl -f

    Filter by service:
    journalctl -u nginx

    Logs tell you everything, if you know where to look.
    #SysAdmin #Linux #TechTipThursday

  25. Check your system logs:
    journalctl -xe

    Follow logs in real time:
    journalctl -f

    Filter by service:
    journalctl -u nginx

    Logs tell you everything, if you know where to look.
    #SysAdmin #Linux #TechTipThursday

  26. Check your system time and timezone:
    timedatectl status

    Set your timezone:
    timedatectl set-timezone America/Chicago

    Sync with NTP:
    timedatectl set-ntp true

    Getting time right matters more than people think, especially for logs, cron jobs, and anything distributed.

    #TechTipThursday #linux #sysadmin

  27. Check your system time and timezone:
    timedatectl status

    Set your timezone:
    timedatectl set-timezone America/Chicago

    Sync with NTP:
    timedatectl set-ntp true

    Getting time right matters more than people think, especially for logs, cron jobs, and anything distributed.

    #TechTipThursday #linux #sysadmin

  28. Check your system time and timezone:
    timedatectl status

    Set your timezone:
    timedatectl set-timezone America/Chicago

    Sync with NTP:
    timedatectl set-ntp true

    Getting time right matters more than people think, especially for logs, cron jobs, and anything distributed.

    #TechTipThursday #linux #sysadmin

  29. Check your system time and timezone:
    timedatectl status

    Set your timezone:
    timedatectl set-timezone America/Chicago

    Sync with NTP:
    timedatectl set-ntp true

    Getting time right matters more than people think, especially for logs, cron jobs, and anything distributed.

    #TechTipThursday #linux #sysadmin

  30. Check your system time and timezone:
    timedatectl status

    Set your timezone:
    timedatectl set-timezone America/Chicago

    Sync with NTP:
    timedatectl set-ntp true

    Getting time right matters more than people think, especially for logs, cron jobs, and anything distributed.

    #TechTipThursday #linux #sysadmin

  31. #TechTipThursday
    Want to check or change your system locale on Linux?
    localectl status

    To list available locales:
    localectl list-locales

    To set one:
    localectl set-locale LANG=en_US.UTF-8

    Handy when you're deploying systems for users in different regions or when something's outputting dates and currencies in a format that makes no sense to you.
    #linux #sysadmin

  32. #TechTipThursday
    Want to check or change your system locale on Linux?
    localectl status

    To list available locales:
    localectl list-locales

    To set one:
    localectl set-locale LANG=en_US.UTF-8

    Handy when you're deploying systems for users in different regions or when something's outputting dates and currencies in a format that makes no sense to you.
    #linux #sysadmin

  33. #TechTipThursday
    Want to check or change your system locale on Linux?
    localectl status

    To list available locales:
    localectl list-locales

    To set one:
    localectl set-locale LANG=en_US.UTF-8

    Handy when you're deploying systems for users in different regions or when something's outputting dates and currencies in a format that makes no sense to you.
    #linux #sysadmin

  34. #TechTipThursday
    Want to check or change your system locale on Linux?
    localectl status

    To list available locales:
    localectl list-locales

    To set one:
    localectl set-locale LANG=en_US.UTF-8

    Handy when you're deploying systems for users in different regions or when something's outputting dates and currencies in a format that makes no sense to you.
    #linux #sysadmin

  35. #TechTipThursday
    Want to check or change your system locale on Linux?
    localectl status

    To list available locales:
    localectl list-locales

    To set one:
    localectl set-locale LANG=en_US.UTF-8

    Handy when you're deploying systems for users in different regions or when something's outputting dates and currencies in a format that makes no sense to you.
    #linux #sysadmin

  36. Quick cron reminder on this #TechTipThursday

    */5 * * * *
    Runs every 5 minutes.

    But remember: cron doesn’t care if the previous job finished. Long-running jobs can pile up fast. Sometimes a systemd timer is the better tool.

    #Linux #Cron #SysAdmin #DevOps

  37. Quick cron reminder on this #TechTipThursday

    */5 * * * *
    Runs every 5 minutes.

    But remember: cron doesn’t care if the previous job finished. Long-running jobs can pile up fast. Sometimes a systemd timer is the better tool.

    #Linux #Cron #SysAdmin #DevOps

  38. Quick cron reminder on this #TechTipThursday

    */5 * * * *
    Runs every 5 minutes.

    But remember: cron doesn’t care if the previous job finished. Long-running jobs can pile up fast. Sometimes a systemd timer is the better tool.

    #Linux #Cron #SysAdmin #DevOps

  39. Quick cron reminder on this #TechTipThursday

    */5 * * * *
    Runs every 5 minutes.

    But remember: cron doesn’t care if the previous job finished. Long-running jobs can pile up fast. Sometimes a systemd timer is the better tool.

    #Linux #Cron #SysAdmin #DevOps

  40. Quick cron reminder on this #TechTipThursday

    */5 * * * *
    Runs every 5 minutes.

    But remember: cron doesn’t care if the previous job finished. Long-running jobs can pile up fast. Sometimes a systemd timer is the better tool.

    #Linux #Cron #SysAdmin #DevOps

  41. Linux has solid built-in accessibility features:

    On GNOME:
    Settings → Accessibility

    You’ll find:
    - Screen reader (Orca)
    - High contrast mode
    - Zoom
    - Large text scaling

    Accessibility isn’t niche. It’s good engineering.

    #TechTipThursday #Linux #Accessibility #OpenSource

  42. Linux has solid built-in accessibility features:

    On GNOME:
    Settings → Accessibility

    You’ll find:
    - Screen reader (Orca)
    - High contrast mode
    - Zoom
    - Large text scaling

    Accessibility isn’t niche. It’s good engineering.

    #TechTipThursday #Linux #Accessibility #OpenSource

  43. Linux has solid built-in accessibility features:

    On GNOME:
    Settings → Accessibility

    You’ll find:
    - Screen reader (Orca)
    - High contrast mode
    - Zoom
    - Large text scaling

    Accessibility isn’t niche. It’s good engineering.

    #TechTipThursday #Linux #Accessibility #OpenSource

  44. Linux has solid built-in accessibility features:

    On GNOME:
    Settings → Accessibility

    You’ll find:
    - Screen reader (Orca)
    - High contrast mode
    - Zoom
    - Large text scaling

    Accessibility isn’t niche. It’s good engineering.

    #TechTipThursday #Linux #Accessibility #OpenSource

  45. Linux has solid built-in accessibility features:

    On GNOME:
    Settings → Accessibility

    You’ll find:
    - Screen reader (Orca)
    - High contrast mode
    - Zoom
    - Large text scaling

    Accessibility isn’t niche. It’s good engineering.

    #TechTipThursday #Linux #Accessibility #OpenSource

  46. #TechTipThursday

    Running Wayland and something feels off? Try checking:
    echo $XDG_SESSION_TYPE

    If it says wayland, you’re native. If it says x11, you’re still on X.

    Knowing which session you’re in saves a lot of confusion.

    #Linux #Wayland #SysAdmin

  47. #TechTipThursday

    Running Wayland and something feels off? Try checking:
    echo $XDG_SESSION_TYPE

    If it says wayland, you’re native. If it says x11, you’re still on X.

    Knowing which session you’re in saves a lot of confusion.

    #Linux #Wayland #SysAdmin

  48. #TechTipThursday

    Running Wayland and something feels off? Try checking:
    echo $XDG_SESSION_TYPE

    If it says wayland, you’re native. If it says x11, you’re still on X.

    Knowing which session you’re in saves a lot of confusion.

    #Linux #Wayland #SysAdmin

  49. #TechTipThursday

    Running Wayland and something feels off? Try checking:
    echo $XDG_SESSION_TYPE

    If it says wayland, you’re native. If it says x11, you’re still on X.

    Knowing which session you’re in saves a lot of confusion.

    #Linux #Wayland #SysAdmin

  50. #TechTipThursday

    Running Wayland and something feels off? Try checking:
    echo $XDG_SESSION_TYPE

    If it says wayland, you’re native. If it says x11, you’re still on X.

    Knowing which session you’re in saves a lot of confusion.

    #Linux #Wayland #SysAdmin