{"id":1172,"date":"2026-07-18T10:39:06","date_gmt":"2026-07-18T07:39:06","guid":{"rendered":"https:\/\/itgen.itbumper.com\/?page_id=1172"},"modified":"2026-07-18T10:39:07","modified_gmt":"2026-07-18T07:39:07","slug":"0047_mobaxterm-macros-05-debian-logs-and-journal","status":"publish","type":"page","link":"https:\/\/itgen.itbumper.com\/?page_id=1172","title":{"rendered":"0047_MobaXterm macros: 05.Debian-Logs and Journal"},"content":{"rendered":"\n<p>5.1 Journal Status \/ Disk Usage (+ Available Boots &amp; Storage Type)<br \/>5.2 Current Boot Errors (Journalctl -p err)<br \/>5.3 Current Boot Warnings (Journalctl -p warning)<br \/>5.4 Kernel Errors (dmesg &amp; Journalctl -k)<br \/>5.5 Authentication Logs (SSH, Sudo &amp; Auth Activity)<br \/>5.6 Recent Reboots \/ Shutdowns (+ Boot Time)<br \/>5.7 OOM Events (Out Of Memory Triggers)<br \/>5.8 Storage \/ Filesystem Errors (SCSI, NVMe, Ext4\/XFS faults)<br \/>5.9 Network Errors (Link Drops, NIC Resets &amp; Watchdogs)<br \/>5.10 Service Failures (Detailed Daemon Crashes)<br \/>5.11 Log Rotation (Configs, Status &amp; Timers)<br \/>5.12 Large Log Files (Top 20 Hunt)<br \/>5.13 Recently Modified Logs (Last 60 Minutes)<\/p>\n<p><strong>Copy&#8211;&gt;Past<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\necho &quot;==================== 05. LOGS &amp; JOURNAL ====================&quot;; printf &quot;\\n&quot;; echo &quot;5.1 JOURNAL STATUS \/ DISK USAGE&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then echo &quot;--- Journal Disk Usage ---&quot;; journalctl --disk-usage 2&gt;\/dev\/null || echo &quot;Journal disk usage unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Available Boots ---&quot;; journalctl --list-boots --no-pager 2&gt;\/dev\/null | tail -20 || echo &quot;Boot journal history unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Journal Storage ---&quot;; if &#x5B; -d \/var\/log\/journal ]; then echo &quot;Persistent journal storage: enabled&quot;; du -sh \/var\/log\/journal 2&gt;\/dev\/null; else echo &quot;Persistent journal storage: not detected&quot;; echo &quot;Journal may be stored only in \/run\/log\/journal&quot;; fi; else echo &quot;journalctl not available&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.2 CURRENT BOOT ERRORS&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -b 0 -p err --no-pager 2&gt;\/dev\/null | tail -50; else echo &quot;journalctl not available&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.3 CURRENT BOOT WARNINGS&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -b 0 -p warning --no-pager 2&gt;\/dev\/null | tail -50; else echo &quot;journalctl not available&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.4 KERNEL ERRORS&quot;; echo &quot;--- dmesg Critical Errors ---&quot;; if command -v dmesg &gt;\/dev\/null 2&gt;&amp;1; then dmesg -T --level=err,crit,alert,emerg 2&gt;\/dev\/null | tail -40 || echo &quot;dmesg unavailable or access restricted&quot;; else echo &quot;dmesg not available&quot;; fi; printf &quot;\\n&quot;; echo &quot;--- Kernel Journal Errors ---&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -k -b 0 -p err --no-pager 2&gt;\/dev\/null | tail -40; else echo &quot;journalctl not available&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.5 AUTHENTICATION LOGS&quot;; echo &quot;--- Recent SSH \/ Sudo Activity ---&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'sshd|ssh.service|sudo|su:|authentication failure|failed password|accepted password|accepted publickey|invalid user' | tail -60 || echo &quot;No recent SSH or sudo activity found&quot;; else tail -n 100 \/var\/log\/auth.log \/var\/log\/secure 2&gt;\/dev\/null | grep -Ei 'sshd|sudo|su:|authentication failure|failed password|accepted password|accepted publickey|invalid user' | tail -60 || echo &quot;Authentication logs unavailable&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.6 RECENT REBOOTS \/ SHUTDOWNS&quot;; echo &quot;--- Reboots ---&quot;; last reboot 2&gt;\/dev\/null | head -20 || echo &quot;Reboot history unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Shutdowns ---&quot;; last shutdown 2&gt;\/dev\/null | head -20 || echo &quot;Shutdown history unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Current Boot Time ---&quot;; who -b 2&gt;\/dev\/null || echo &quot;Current boot time unavailable&quot;; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.7 OOM EVENTS&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'oom-killer|out of memory|killed process &#x5B;0-9]+|memory cgroup out of memory|invoked oom-killer' | tail -40 || echo &quot;No OOM events found in current boot&quot;; else grep -Eih 'oom-killer|out of memory|killed process &#x5B;0-9]+|memory cgroup out of memory|invoked oom-killer' \/var\/log\/messages \/var\/log\/syslog 2&gt;\/dev\/null | tail -40 || echo &quot;No OOM events found&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.8 STORAGE \/ FILESYSTEM ERRORS&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -k -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'I\/O error|buffer I\/O|blk_update_request|critical medium error|uncorrectable|sense key|resetting link|device offline|EXT4-fs error|XFS.*error|BTRFS.*error|ZFS.*error|read-only file system|remounting filesystem read-only|bad sector|ata&#x5B;0-9].*error|nvme.*error' | tail -60 || echo &quot;No storage or filesystem errors found&quot;; else dmesg 2&gt;\/dev\/null | grep -Ei 'I\/O error|buffer I\/O|blk_update_request|critical medium error|uncorrectable|sense key|resetting link|device offline|EXT4-fs error|XFS.*error|BTRFS.*error|ZFS.*error|read-only file system|remounting filesystem read-only|bad sector|ata&#x5B;0-9].*error|nvme.*error' | tail -60 || echo &quot;No storage or filesystem errors found&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.9 NETWORK ERRORS&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -k -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'link is down|link down|link becomes ready|lost carrier|no carrier|carrier lost|NETDEV WATCHDOG|transmit queue timed out|tx timeout|NIC Link is Down|renamed from|reset adapter|firmware failed|network.*error' | tail -60 || echo &quot;No network link or adapter errors found&quot;; else dmesg 2&gt;\/dev\/null | grep -Ei 'link is down|link down|link becomes ready|lost carrier|no carrier|carrier lost|NETDEV WATCHDOG|transmit queue timed out|tx timeout|NIC Link is Down|renamed from|reset adapter|firmware failed|network.*error' | tail -60 || echo &quot;No network link or adapter errors found&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.10 SERVICE FAILURES&quot;; if command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'failed to start|failed with result|main process exited|control process exited|start request repeated too quickly|scheduled restart job|dependency failed for|entered failed state' | tail -60 || echo &quot;No service failure events found&quot;; else echo &quot;journalctl not available&quot;; fi; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.11 LOG ROTATION&quot;; echo &quot;--- Logrotate Package \/ Binary ---&quot;; if command -v logrotate &gt;\/dev\/null 2&gt;&amp;1; then logrotate --version 2&gt;\/dev\/null | head -1; else echo &quot;logrotate not installed&quot;; fi; printf &quot;\\n&quot;; echo &quot;--- Logrotate Configuration ---&quot;; ls -la \/etc\/logrotate.conf \/etc\/logrotate.d\/ 2&gt;\/dev\/null || echo &quot;Logrotate configuration unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Logrotate Status ---&quot;; ls -la \/var\/lib\/logrotate\/status \/var\/log\/logrotate \/var\/log\/logrotate.log 2&gt;\/dev\/null || echo &quot;Logrotate status file or execution log unavailable&quot;; printf &quot;\\n&quot;; echo &quot;--- Logrotate Timer \/ Service ---&quot;; systemctl status logrotate.timer logrotate.service --no-pager 2&gt;\/dev\/null | head -40 || echo &quot;Logrotate systemd units unavailable&quot;; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.12 LARGE LOG FILES&quot;; find \/var\/log -xdev -type f -printf '%s %p\\n' 2&gt;\/dev\/null | sort -nr | head -20 | awk '{ size=$1; $1=&quot;&quot;; printf &quot;%10.2f MiB %s\\n&quot;, size\/1024\/1024, substr($0,2) }' || echo &quot;Unable to inspect \/var\/log&quot;; printf &quot;\\n%.0s&quot; {1..3}; echo &quot;5.13 RECENTLY MODIFIED LOGS&quot;; find \/var\/log -xdev -type f -mmin -60 -printf '%TY-%Tm-%Td %TH:%TM:%TS %p\\n' 2&gt;\/dev\/null | sort -r | head -40 || echo &quot;No logs modified during the last hour&quot;\n<\/pre><\/div>\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\n# ==================== 05. LOGS &amp; JOURNAL ====================\necho &quot;==================== 05. LOGS &amp; JOURNAL ====================&quot;\nprintf &quot;\\n&quot;\n\n# --- 5.1 JOURNAL STATUS \/ DISK USAGE ---\necho &quot;5.1 JOURNAL STATUS \/ DISK USAGE&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    echo &quot;--- Journal Disk Usage ---&quot;\n    journalctl --disk-usage 2&gt;\/dev\/null || echo &quot;Journal disk usage unavailable&quot;\n    printf &quot;\\n&quot;\n    echo &quot;--- Available Boots ---&quot;\n    journalctl --list-boots --no-pager 2&gt;\/dev\/null | tail -20 || echo &quot;Boot journal history unavailable&quot;\n    printf &quot;\\n&quot;\n    echo &quot;--- Journal Storage ---&quot;\n    if &#x5B; -d \/var\/log\/journal ]; then\n        echo &quot;Persistent journal storage: enabled&quot;\n        du -sh \/var\/log\/journal 2&gt;\/dev\/null\n    else\n        echo &quot;Persistent journal storage: not detected&quot;\n        echo &quot;Journal may be stored only in \/run\/log\/journal&quot;\n    fi\nelse\n    echo &quot;journalctl not available&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.2 CURRENT BOOT ERRORS ---\necho &quot;5.2 CURRENT BOOT ERRORS&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -b 0 -p err --no-pager 2&gt;\/dev\/null | tail -50\nelse\n    echo &quot;journalctl not available&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.3 CURRENT BOOT WARNINGS ---\necho &quot;5.3 CURRENT BOOT WARNINGS&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -b 0 -p warning --no-pager 2&gt;\/dev\/null | tail -50\nelse\n    echo &quot;journalctl not available&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.4 KERNEL ERRORS ---\necho &quot;5.4 KERNEL ERRORS&quot;\necho &quot;--- dmesg Critical Errors ---&quot;\nif command -v dmesg &gt;\/dev\/null 2&gt;&amp;1; then\n    dmesg -T --level=err,crit,alert,emerg 2&gt;\/dev\/null | tail -40 || echo &quot;dmesg unavailable or access restricted&quot;\nelse\n    echo &quot;dmesg not available&quot;\nfi\nprintf &quot;\\n&quot;\necho &quot;--- Kernel Journal Errors ---&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -k -b 0 -p err --no-pager 2&gt;\/dev\/null | tail -40\nelse\n    echo &quot;journalctl not available&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.5 AUTHENTICATION LOGS ---\necho &quot;5.5 AUTHENTICATION LOGS&quot;\necho &quot;--- Recent SSH \/ Sudo Activity ---&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'sshd|ssh.service|sudo|su:|authentication failure|failed password|accepted password|accepted publickey|invalid user' | tail -60 || echo &quot;No recent SSH or sudo activity found&quot;\nelse\n    tail -n 100 \/var\/log\/auth.log \/var\/log\/secure 2&gt;\/dev\/null | grep -Ei 'sshd|sudo|su:|authentication failure|failed password|accepted password|accepted publickey|invalid user' | tail -60 || echo &quot;Authentication logs unavailable&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.6 RECENT REBOOTS \/ SHUTDOWNS ---\necho &quot;5.6 RECENT REBOOTS \/ SHUTDOWNS&quot;\necho &quot;--- Reboots ---&quot;\nlast reboot 2&gt;\/dev\/null | head -20 || echo &quot;Reboot history unavailable&quot;\nprintf &quot;\\n&quot;\necho &quot;--- Shutdowns ---&quot;\nlast shutdown 2&gt;\/dev\/null | head -20 || echo &quot;Shutdown history unavailable&quot;\nprintf &quot;\\n&quot;\necho &quot;--- Current Boot Time ---&quot;\nwho -b 2&gt;\/dev\/null || echo &quot;Current boot time unavailable&quot;\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.7 OOM EVENTS ---\necho &quot;5.7 OOM EVENTS&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'oom-killer|out of memory|killed process &#x5B;0-9]+|memory cgroup out of memory|invoked oom-killer' | tail -40 || echo &quot;No OOM events found in current boot&quot;\nelse\n    grep -Eih 'oom-killer|out of memory|killed process &#x5B;0-9]+|memory cgroup out of memory|invoked oom-killer' \/var\/log\/messages \/var\/log\/syslog 2&gt;\/dev\/null | tail -40 || echo &quot;No OOM events found&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.8 STORAGE \/ FILESYSTEM ERRORS ---\necho &quot;5.8 STORAGE \/ FILESYSTEM ERRORS&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -k -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'I\/O error|buffer I\/O|blk_update_request|critical medium error|uncorrectable|sense key|resetting link|device offline|EXT4-fs error|XFS.*error|BTRFS.*error|ZFS.*error|read-only file system|remounting filesystem read-only|bad sector|ata&#x5B;0-9].*error|nvme.*error' | tail -60 || echo &quot;No storage or filesystem errors found&quot;\nelse\n    dmesg 2&gt;\/dev\/null | grep -Ei 'I\/O error|buffer I\/O|blk_update_request|critical medium error|uncorrectable|sense key|resetting link|device offline|EXT4-fs error|XFS.*error|BTRFS.*error|ZFS.*error|read-only file system|remounting filesystem read-only|bad sector|ata&#x5B;0-9].*error|nvme.*error' | tail -60 || echo &quot;No storage or filesystem errors found&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.9 NETWORK ERRORS ---\necho &quot;5.9 NETWORK ERRORS&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -k -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'link is down|link down|link becomes ready|lost carrier|no carrier|carrier lost|NETDEV WATCHDOG|transmit queue timed out|tx timeout|NIC Link is Down|renamed from|reset adapter|firmware failed|network.*error' | tail -60 || echo &quot;No network link or adapter errors found&quot;\nelse\n    dmesg 2&gt;\/dev\/null | grep -Ei 'link is down|link down|link becomes ready|lost carrier|no carrier|carrier lost|NETDEV WATCHDOG|transmit queue timed out|tx timeout|NIC Link is Down|renamed from|reset adapter|firmware failed|network.*error' | tail -60 || echo &quot;No network link or adapter errors found&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.10 SERVICE FAILURES ---\necho &quot;5.10 SERVICE FAILURES&quot;\nif command -v journalctl &gt;\/dev\/null 2&gt;&amp;1; then\n    journalctl -b 0 --no-pager 2&gt;\/dev\/null | grep -Ei 'failed to start|failed with result|main process exited|control process exited|start request repeated too quickly|scheduled restart job|dependency failed for|entered failed state' | tail -60 || echo &quot;No service failure events found&quot;\nelse\n    echo &quot;journalctl not available&quot;\nfi\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.11 LOG ROTATION ---\necho &quot;5.11 LOG ROTATION&quot;\necho &quot;--- Logrotate Package \/ Binary ---&quot;\nif command -v logrotate &gt;\/dev\/null 2&gt;&amp;1; then\n    logrotate --version 2&gt;\/dev\/null | head -1\nelse\n    echo &quot;logrotate not installed&quot;\nfi\nprintf &quot;\\n&quot;\necho &quot;--- Logrotate Configuration ---&quot;\nls -la \/etc\/logrotate.conf \/etc\/logrotate.d\/ 2&gt;\/dev\/null || echo &quot;Logrotate configuration unavailable&quot;\nprintf &quot;\\n&quot;\necho &quot;--- Logrotate Status ---&quot;\nls -la \/var\/lib\/logrotate\/status \/var\/log\/logrotate \/var\/log\/logrotate.log 2&gt;\/dev\/null || echo &quot;Logrotate status file or execution log unavailable&quot;\nprintf &quot;\\n&quot;\necho &quot;--- Logrotate Timer \/ Service ---&quot;\nsystemctl status logrotate.timer logrotate.service --no-pager 2&gt;\/dev\/null | head -40 || echo &quot;Logrotate systemd units unavailable&quot;\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.12 LARGE LOG FILES ---\necho &quot;5.12 LARGE LOG FILES&quot;\nfind \/var\/log -xdev -type f -printf '%s %p\\n' 2&gt;\/dev\/null | sort -nr | head -20 | awk '{ size=$1; $1=&quot;&quot;; printf &quot;%10.2f MiB %s\\n&quot;, size\/1024\/1024, substr($0,2) }' || echo &quot;Unable to inspect \/var\/log&quot;\nprintf &quot;\\n%.0s&quot; {1..3}\n\n# --- 5.13 RECENTLY MODIFIED LOGS ---\necho &quot;5.13 RECENTLY MODIFIED LOGS&quot;\nfind \/var\/log -xdev -type f -mmin -60 -printf '%TY-%Tm-%Td %TH:%TM:%TS %p\\n' 2&gt;\/dev\/null | sort -r | head -40 || echo &quot;No logs modified during the last hour&quot;\n<\/pre><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"1024\" src=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-01-872x1024.png\" alt=\"\" class=\"wp-image-1174\" style=\"width:800px\" srcset=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-01-872x1024.png 872w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-01-255x300.png 255w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-01-768x902.png 768w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-01.png 878w\" sizes=\"(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px\" \/><\/figure><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"996\" height=\"1018\" src=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-02.png\" alt=\"\" class=\"wp-image-1175\" style=\"width:800px\" srcset=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-02.png 996w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-02-294x300.png 294w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-02-768x785.png 768w\" sizes=\"(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px\" \/><\/figure><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"845\" height=\"1024\" src=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-03-845x1024.png\" alt=\"\" class=\"wp-image-1176\" style=\"width:801px;height:auto\" srcset=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-03-845x1024.png 845w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-03-248x300.png 248w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-03-768x931.png 768w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-03.png 973w\" sizes=\"(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px\" \/><\/figure><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"728\" height=\"1024\" src=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-04-728x1024.png\" alt=\"\" class=\"wp-image-1177\" style=\"width:798px\" srcset=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-04-728x1024.png 728w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-04-213x300.png 213w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-04-768x1081.png 768w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-04.png 894w\" sizes=\"(max-width: 728px) 85vw, 728px\" \/><\/figure><\/div>\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"680\" height=\"1024\" src=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-05-680x1024.png\" alt=\"\" class=\"wp-image-1178\" style=\"width:800px\" srcset=\"https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-05-680x1024.png 680w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-05-199x300.png 199w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-05-768x1156.png 768w, https:\/\/itgen.itbumper.com\/wp-content\/uploads\/2026\/07\/005_debian_logs_journal-05.png 862w\" sizes=\"(max-width: 680px) 85vw, 680px\" \/><\/figure><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[21,26],"tags":[],"_links":{"self":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/1172"}],"collection":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1172"}],"version-history":[{"count":2,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/1172\/revisions"}],"predecessor-version":[{"id":1179,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=\/wp\/v2\/pages\/1172\/revisions\/1179"}],"wp:attachment":[{"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1172"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1172"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itgen.itbumper.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}