System/Kernel


barney@b3dr0ck:~$ file /bin/bash ; uname -a ; cat /etc/*release
/bin/bash: ELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2a9f157890930ced4c3ad0e74fc1b1b84aad71e6, for GNU/Linux 3.2.0, stripped
Linux b3dr0ck 5.4.0-109-generic #123-Ubuntu SMP Fri Apr 8 09:10:54 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=20.04
DISTRIB_CODENAME=focal
DISTRIB_DESCRIPTION="Ubuntu 20.04.4 LTS"
NAME="Ubuntu"
VERSION="20.04.4 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.4 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

Ubuntu 20.04.4 LTS (Focal Fossa) 5.4.0-109-generic

Networks


barney@b3dr0ck:~$ ip route 
default via 10.10.0.1 dev eth0 proto dhcp src 10.10.99.145 metric 100 
10.10.0.0/16 dev eth0 proto kernel scope link src 10.10.99.145 
10.10.0.1 dev eth0 proto dhcp scope link src 10.10.99.145 metric 100 
barney@b3dr0ck:~$ ss -tunlp4
Netid       State        Recv-Q        Send-Q                   Local Address:Port                Peer Address:Port       Process       
udp         UNCONN       0             0                        127.0.0.53%lo:53                       0.0.0.0:*                        
udp         UNCONN       0             0                    10.10.99.145%eth0:68                       0.0.0.0:*                        
tcp         LISTEN       0             511                            0.0.0.0:80                       0.0.0.0:*                        
tcp         LISTEN       0             511                            0.0.0.0:54321                    0.0.0.0:*                        
tcp         LISTEN       0             511                            0.0.0.0:9009                     0.0.0.0:*                        
tcp         LISTEN       0             4096                     127.0.0.53%lo:53                       0.0.0.0:*                        
tcp         LISTEN       0             128                            0.0.0.0:22                       0.0.0.0:*                        
tcp         LISTEN       0             511                            0.0.0.0:4040                     0.0.0.0:*                        

Users & Groups


barney@b3dr0ck:~$ cat /etc/passwd ; ll /home
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-network:x:100:102:systemd Network Management,,,:/run/systemd:/usr/sbin/nologin
systemd-resolve:x:101:103:systemd Resolver,,,:/run/systemd:/usr/sbin/nologin
systemd-timesync:x:102:104:systemd Time Synchronization,,,:/run/systemd:/usr/sbin/nologin
messagebus:x:103:106::/nonexistent:/usr/sbin/nologin
syslog:x:104:110::/home/syslog:/usr/sbin/nologin
_apt:x:105:65534::/nonexistent:/usr/sbin/nologin
tss:x:106:111:TPM software stack,,,:/var/lib/tpm:/bin/false
uuidd:x:107:112::/run/uuidd:/usr/sbin/nologin
tcpdump:x:108:113::/nonexistent:/usr/sbin/nologin
landscape:x:109:115::/var/lib/landscape:/usr/sbin/nologin
pollinate:x:110:1::/var/cache/pollinate:/bin/false
usbmux:x:111:46:usbmux daemon,,,:/var/lib/usbmux:/usr/sbin/nologin
sshd:x:112:65534::/run/sshd:/usr/sbin/nologin
systemd-coredump:x:999:999:systemd Core Dumper:/:/usr/sbin/nologin
fred:x:1000:1000:Fred Flintstone:/home/fred:/bin/bash
lxd:x:998:100::/var/snap/lxd/common/lxd:/bin/false
barney:x:1001:1001:Barney Rubble,,,:/home/barney:/bin/bash
total 16
drwxr-xr-x  4 root   root   4096 Apr 10  2022 ./
drwxr-xr-x 19 root   root   4096 Apr  9  2022 ../
drwxr-xr-x  3 barney barney 4096 Apr 30  2022 barney/
drwxr-xr-x  4 fred   fred   4096 Apr 30  2022 fred/

fred

barney@b3dr0ck:~$ cut -d: -f1 /etc/passwd | xargs -n1 id
uid=0(root) gid=0(root) groups=0(root)
uid=1(daemon) gid=1(daemon) groups=1(daemon)
uid=2(bin) gid=2(bin) groups=2(bin)
uid=3(sys) gid=3(sys) groups=3(sys)
uid=4(sync) gid=65534(nogroup) groups=65534(nogroup)
uid=5(games) gid=60(games) groups=60(games)
uid=6(man) gid=12(man) groups=12(man)
uid=7(lp) gid=7(lp) groups=7(lp)
uid=8(mail) gid=8(mail) groups=8(mail)
uid=9(news) gid=9(news) groups=9(news)
uid=10(uucp) gid=10(uucp) groups=10(uucp)
uid=13(proxy) gid=13(proxy) groups=13(proxy)
uid=33(www-data) gid=33(www-data) groups=33(www-data)
uid=34(backup) gid=34(backup) groups=34(backup)
uid=38(list) gid=38(list) groups=38(list)
uid=39(irc) gid=39(irc) groups=39(irc)
uid=41(gnats) gid=41(gnats) groups=41(gnats)
uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
uid=100(systemd-network) gid=102(systemd-network) groups=102(systemd-network)
uid=101(systemd-resolve) gid=103(systemd-resolve) groups=103(systemd-resolve)
uid=102(systemd-timesync) gid=104(systemd-timesync) groups=104(systemd-timesync)
uid=103(messagebus) gid=106(messagebus) groups=106(messagebus)
uid=104(syslog) gid=110(syslog) groups=110(syslog),4(adm),5(tty)
uid=105(_apt) gid=65534(nogroup) groups=65534(nogroup)
uid=106(tss) gid=111(tss) groups=111(tss)
uid=107(uuidd) gid=112(uuidd) groups=112(uuidd)
uid=108(tcpdump) gid=113(tcpdump) groups=113(tcpdump)
uid=109(landscape) gid=115(landscape) groups=115(landscape)
uid=110(pollinate) gid=1(daemon) groups=1(daemon)
uid=111(usbmux) gid=46(plugdev) groups=46(plugdev)
uid=112(sshd) gid=65534(nogroup) groups=65534(nogroup)
uid=999(systemd-coredump) gid=999(systemd-coredump) groups=999(systemd-coredump)
uid=1000(fred) gid=1000(fred) groups=1000(fred),24(cdrom),30(dip),46(plugdev),1002(help)
uid=998(lxd) gid=100(users) groups=100(users)
uid=1001(barney) gid=1001(barney) groups=1001(barney)

uid=1001(barney) gid=1001(barney) groups=1001(barney) uid=1000(fred) gid=1000(fred) groups=1000(fred),24(cdrom),30(dip),46(plugdev),1002(help)

SUIDs


barney@b3dr0ck:~$ find / -perm -04000 -ls -type f 2>/dev/null
      135    121 -rwsr-xr-x   1 root     root       123560 Apr  8  2022 /snap/snapd/15534/usr/lib/snapd/snap-confine
      133    121 -rwsr-xr-x   1 root     root       123464 Mar  3  2022 /snap/snapd/15177/usr/lib/snapd/snap-confine
      811     84 -rwsr-xr-x   1 root     root        85064 Jul 14  2021 /snap/core20/1405/usr/bin/chfn
      817     52 -rwsr-xr-x   1 root     root        53040 Jul 14  2021 /snap/core20/1405/usr/bin/chsh
      886     87 -rwsr-xr-x   1 root     root        88464 Jul 14  2021 /snap/core20/1405/usr/bin/gpasswd
      970     55 -rwsr-xr-x   1 root     root        55528 Feb  7  2022 /snap/core20/1405/usr/bin/mount
      979     44 -rwsr-xr-x   1 root     root        44784 Jul 14  2021 /snap/core20/1405/usr/bin/newgrp
      992     67 -rwsr-xr-x   1 root     root        68208 Jul 14  2021 /snap/core20/1405/usr/bin/passwd
     1101     67 -rwsr-xr-x   1 root     root        67816 Feb  7  2022 /snap/core20/1405/usr/bin/su
     1102    163 -rwsr-xr-x   1 root     root       166056 Jan 19  2021 /snap/core20/1405/usr/bin/sudo
     1160     39 -rwsr-xr-x   1 root     root        39144 Feb  7  2022 /snap/core20/1405/usr/bin/umount
     1247     51 -rwsr-xr--   1 root     systemd-resolve    51344 Jun 11  2020 /snap/core20/1405/usr/lib/dbus-1.0/dbus-daemon-launch-helper
     1619    463 -rwsr-xr-x   1 root     root              473576 Dec  2  2021 /snap/core20/1405/usr/lib/openssh/ssh-keysign
      812     84 -rwsr-xr-x   1 root     root               85064 Jul 14  2021 /snap/core20/1434/usr/bin/chfn
      818     52 -rwsr-xr-x   1 root     root               53040 Jul 14  2021 /snap/core20/1434/usr/bin/chsh
      887     87 -rwsr-xr-x   1 root     root               88464 Jul 14  2021 /snap/core20/1434/usr/bin/gpasswd
      971     55 -rwsr-xr-x   1 root     root               55528 Feb  7  2022 /snap/core20/1434/usr/bin/mount
      980     44 -rwsr-xr-x   1 root     root               44784 Jul 14  2021 /snap/core20/1434/usr/bin/newgrp
      993     67 -rwsr-xr-x   1 root     root               68208 Jul 14  2021 /snap/core20/1434/usr/bin/passwd
     1102     67 -rwsr-xr-x   1 root     root               67816 Feb  7  2022 /snap/core20/1434/usr/bin/su
     1103    163 -rwsr-xr-x   1 root     root              166056 Jan 19  2021 /snap/core20/1434/usr/bin/sudo
     1161     39 -rwsr-xr-x   1 root     root               39144 Feb  7  2022 /snap/core20/1434/usr/bin/umount
     1248     51 -rwsr-xr--   1 root     systemd-resolve    51344 Jun 11  2020 /snap/core20/1434/usr/lib/dbus-1.0/dbus-daemon-launch-helper
     1620    463 -rwsr-xr-x   1 root     root              473576 Dec  2  2021 /snap/core20/1434/usr/lib/openssh/ssh-keysign
   264972     16 -rwsr-xr-x   1 root     root               14488 Jul  8  2019 /usr/lib/eject/dmcrypt-get-device
   264965     52 -rwsr-xr--   1 root     messagebus         51344 Jun 11  2020 /usr/lib/dbus-1.0/dbus-daemon-launch-helper
   266004     24 -rwsr-xr-x   1 root     root               22840 Feb 21  2022 /usr/lib/policykit-1/polkit-agent-helper-1
   273481    140 -rwsr-xr-x   1 root     root              142696 Feb 23  2022 /usr/lib/snapd/snap-confine
   265178    464 -rwsr-xr-x   1 root     root              473576 Dec  2  2021 /usr/lib/openssh/ssh-keysign
   264154     52 -rwsr-xr-x   1 root     root               53040 Jul 14  2021 /usr/bin/chsh
   264757     40 -rwsr-xr-x   1 root     root               39144 Feb  7  2022 /usr/bin/umount
   266000     32 -rwsr-xr-x   1 root     root               31032 Feb 21  2022 /usr/bin/pkexec
   264279     88 -rwsr-xr-x   1 root     root               88464 Jul 14  2021 /usr/bin/gpasswd
   264427     44 -rwsr-xr-x   1 root     root               44784 Jul 14  2021 /usr/bin/newgrp
   264460     68 -rwsr-xr-x   1 root     root               68208 Jul 14  2021 /usr/bin/passwd
   264413     56 -rwsr-xr-x   1 root     root               55528 Feb  7  2022 /usr/bin/mount
   264261     40 -rwsr-xr-x   1 root     root               39144 Mar  7  2020 /usr/bin/fusermount
   264080     56 -rwsr-sr-x   1 daemon   daemon             55560 Nov 12  2018 /usr/bin/at
   264148     84 -rwsr-xr-x   1 root     root               85064 Jul 14  2021 /usr/bin/chfn
   264686    164 -rwsr-xr-x   1 root     root              166056 Jan 19  2021 /usr/bin/sudo
   264685     68 -rwsr-xr-x   1 root     root               67816 Feb  7  2022 /usr/bin/su

SGIDs


barney@b3dr0ck:~$ find / -perm -02000 -ls -type f 2>/dev/null
      806     83 -rwxr-sr-x   1 root     shadow      84512 Jul 14  2021 /snap/core20/1405/usr/bin/chage
      867     31 -rwxr-sr-x   1 root     shadow      31312 Jul 14  2021 /snap/core20/1405/usr/bin/expiry
     1093    343 -rwxr-sr-x   1 root     crontab    350504 Dec  2  2021 /snap/core20/1405/usr/bin/ssh-agent
     1179     35 -rwxr-sr-x   1 root     tty         35048 Feb  7  2022 /snap/core20/1405/usr/bin/wall
     7229     43 -rwxr-sr-x   1 root     shadow      43168 Sep 17  2021 /snap/core20/1405/usr/sbin/pam_extrausers_chkpwd
     7273     43 -rwxr-sr-x   1 root     shadow      43160 Sep 17  2021 /snap/core20/1405/usr/sbin/unix_chkpwd
    11770      0 drwxrwsr-x   2 root     mail            3 Mar 18  2022 /snap/core20/1405/var/mail
      807     83 -rwxr-sr-x   1 root     shadow      84512 Jul 14  2021 /snap/core20/1434/usr/bin/chage
      868     31 -rwxr-sr-x   1 root     shadow      31312 Jul 14  2021 /snap/core20/1434/usr/bin/expiry
     1094    343 -rwxr-sr-x   1 root     crontab    350504 Dec  2  2021 /snap/core20/1434/usr/bin/ssh-agent
     1180     35 -rwxr-sr-x   1 root     tty         35048 Feb  7  2022 /snap/core20/1434/usr/bin/wall
     7237     43 -rwxr-sr-x   1 root     shadow      43168 Sep 17  2021 /snap/core20/1434/usr/sbin/pam_extrausers_chkpwd
     7281     43 -rwxr-sr-x   1 root     shadow      43160 Sep 17  2021 /snap/core20/1434/usr/sbin/unix_chkpwd
    11781      0 drwxrwsr-x   2 root     mail            3 Mar 29  2022 /snap/core20/1434/var/mail
   277419      4 drwxrwsr-x   2 root     staff        4096 Apr 15  2020 /var/local
   395392      4 drwxr-sr-x   3 root     systemd-journal     4096 Apr  9  2022 /var/log/journal
   408644      4 drwxr-sr-x   2 root     systemd-journal     4096 Jul 11 13:08 /var/log/journal/140b9d81a4544cc3abae5bf0f35a1724
   277421      4 drwxrwsr-x   2 root     mail                4096 Feb 23  2022 /var/mail
      309      0 drwxr-sr-x   2 root     systemd-journal       40 Jul 11 11:52 /run/log/journal
     5650     16 -rwxr-sr-x   1 root     utmp               14648 Sep 30  2019 /usr/lib/x86_64-linux-gnu/utempter/utempter
    11801      4 drwxrwsr-x   2 root     staff               4096 Apr  9  2022 /usr/local/share/fonts
   270404      4 drwxrwsr-x   3 root     staff               4096 Feb 23  2022 /usr/local/lib/python3.8
   270405      4 drwxrwsr-x   2 root     staff               4096 Feb 23  2022 /usr/local/lib/python3.8/dist-packages
   264675    344 -rwxr-sr-x   1 root     ssh               350504 Dec  2  2021 /usr/bin/ssh-agent
   264243     32 -rwxr-sr-x   1 root     shadow             31312 Jul 14  2021 /usr/bin/expiry
   264178     44 -rwxr-sr-x   1 root     crontab            43720 Feb 13  2020 /usr/bin/crontab
   264799     36 -rwxr-sr-x   1 root     tty                35048 Feb  7  2022 /usr/bin/wall
   264143     84 -rwxr-sr-x   1 root     shadow             84512 Jul 14  2021 /usr/bin/chage
   264093     16 -rwxr-sr-x   1 root     tty                14488 Mar 30  2020 /usr/bin/bsd-write
   264080     56 -rwsr-sr-x   1 daemon   daemon             55560 Nov 12  2018 /usr/bin/at
   270856     44 -rwxr-sr-x   1 root     shadow             43160 Sep 17  2021 /usr/sbin/unix_chkpwd
   270808     44 -rwxr-sr-x   1 root     shadow             43168 Sep 17  2021 /usr/sbin/pam_extrausers_chkpwd

Processes


barney@b3dr0ck:~$ ps -auxwww
USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root           1  0.4  1.5 167404  7528 ?        Ss   11:51   0:23 /sbin/init maybe-ubiquity
root         344  0.0  1.4  51420  6852 ?        S<s  11:52   0:03 /lib/systemd/systemd-journald
root         373  0.2  0.9  21972  4708 ?        Ss   11:52   0:11 /lib/systemd/systemd-udevd
root         484  0.0  3.7 280196 17996 ?        SLsl 11:53   0:00 /sbin/multipathd -d -s
systemd+     527  0.0  0.7  90188  3672 ?        Ssl  11:53   0:01 /lib/systemd/systemd-timesyncd
systemd+     576  0.0  0.9  26572  4436 ?        Ss   11:53   0:00 /lib/systemd/systemd-networkd
systemd+     580  0.0  1.5  23860  7332 ?        Ss   11:53   0:01 /lib/systemd/systemd-resolved
root         606  0.4  7.8 636956 37816 ?        Ssl  11:53   0:20 /usr/bin/node dist/server.js
root         607  0.0  0.9 239384  4756 ?        Ssl  11:53   0:00 /usr/lib/accountsservice/accounts-daemon
root         608  0.0  1.2 1232936 6088 ?        Ssl  11:53   0:00 /usr/bin/amazon-ssm-agent
root         611  0.0  0.4   6812  2368 ?        Ss   11:53   0:00 /usr/sbin/cron -f
message+     613  0.0  0.8   7560  3888 ?        Ss   11:53   0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
root         627  0.0  2.5  29404 12264 ?        Ss   11:54   0:01 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers
root         629  0.0  0.9 236436  4676 ?        Ssl  11:54   0:00 /usr/lib/policykit-1/polkitd --no-debug
syslog       631  0.0  0.8 224344  4136 ?        Ssl  11:54   0:00 /usr/sbin/rsyslogd -n -iNONE
root         636  0.0  1.0  16792  5192 ?        Ss   11:54   0:01 /lib/systemd/systemd-logind
root         638  0.0  1.2 394672  6096 ?        Ssl  11:54   0:01 /usr/lib/udisks2/udisksd
daemon       641  0.0  0.4   3792  2168 ?        Ss   11:54   0:00 /usr/sbin/atd -f
root         676  0.0  0.9  12172  4368 ?        Ss   11:54   0:00 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups
root         681  0.0  0.3   5600  1744 ttyS0    Ss+  11:54   0:00 /sbin/agetty -o -p -- \u --keep-baud 115200,38400,9600 ttyS0 vt220
root         693  0.0  0.3   5828  1648 tty1     Ss+  11:54   0:00 /sbin/agetty -o -p -- \u --noclear tty1 linux
root         696  0.0  1.0 314440  5292 ?        Ssl  11:54   0:01 /usr/sbin/ModemManager
root         718  0.0  0.3  55280  1448 ?        Ss   11:54   0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data     719  0.8  0.9  55976  4620 ?        S    11:54   0:40 nginx: worker process
root         727  0.0  2.1 1318004 10144 ?       Sl   11:54   0:02 /usr/bin/ssm-agent-worker
root         756  0.0  2.5 107904 12460 ?        Ssl  11:54   0:01 /usr/bin/python3 /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
root         842  0.2  3.1 742936 15240 ?        Ssl  11:55   0:12 /usr/lib/snapd/snapd
root        1320  0.0  1.0  13952  5156 ?        Ss   13:08   0:00 sshd: barney [priv]
barney      1333  0.0  1.2  18392  6016 ?        Ss   13:08   0:00 /lib/systemd/systemd --user
barney      1334  0.0  0.6 168760  3340 ?        S    13:08   0:00 (sd-pam)
barney      1461  0.0  0.7  13952  3612 ?        S    13:08   0:00 sshd: barney@pts/0
barney      1464  0.0  0.9   8276  4428 pts/0    Ss+  13:08   0:00 -bash
barney      1584  0.0  0.8   8276  3904 pts/1    Ss   13:12   0:00 -bash
barney      1691  0.0  0.7   9080  3456 pts/1    R+   13:17   0:00 ps -auxwww

/usr/bin/node dist/server.js /usr/sbin/cron -f /usr/lib/policykit-1/polkitd --no-debug

Cron & Systemd


barney@b3dr0ck:~$ crontab -l ; cat /etc/crontab ; systemctl list-timers
no crontab for barney
 
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.
 
SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
 
# Example of job definition:
# .---------------- minute (0 - 59)
# |  .------------- hour (0 - 23)
# |  |  .---------- day of month (1 - 31)
# |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ...
# |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# |  |  |  |  |
# *  *  *  *  * user-name command to be executed
17 *	* * *	root    cd / && run-parts --report /etc/cron.hourly
25 6	* * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6	* * 7	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6	1 * *	root	test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
NEXT                        LEFT          LAST                        PASSED               UNIT                         ACTIVATES      >
Thu 2024-07-11 16:04:10 UTC 2h 45min left Thu 2022-04-28 18:18:32 UTC 2 years 2 months ago apt-daily.timer              apt-daily.servi>
Thu 2024-07-11 18:44:08 UTC 5h 25min left Thu 2024-07-11 12:09:24 UTC 1h 9min ago          ua-timer.timer               ua-timer.servic>
Thu 2024-07-11 19:48:06 UTC 6h left       Fri 2022-04-29 00:44:43 UTC 2 years 2 months ago fwupd-refresh.timer          fwupd-refresh.s>
Thu 2024-07-11 22:05:37 UTC 8h left       Fri 2022-04-29 04:33:48 UTC 2 years 2 months ago motd-news.timer              motd-news.servi>
Fri 2024-07-12 00:00:00 UTC 10h left      Thu 2024-07-11 11:53:59 UTC 1h 24min ago         logrotate.timer              logrotate.servi>
Fri 2024-07-12 00:00:00 UTC 10h left      Thu 2024-07-11 11:53:59 UTC 1h 24min ago         man-db.timer                 man-db.service >
Fri 2024-07-12 06:59:15 UTC 17h left      Thu 2024-07-11 12:50:24 UTC 28min ago            apt-daily-upgrade.timer      apt-daily-upgra>
Fri 2024-07-12 12:07:11 UTC 22h left      Thu 2024-07-11 12:07:11 UTC 1h 11min ago         systemd-tmpfiles-clean.timer systemd-tmpfile>
Sun 2024-07-14 03:10:51 UTC 2 days left   Thu 2024-07-11 11:53:59 UTC 1h 24min ago         e2scrub_all.timer            e2scrub_all.ser>
Mon 2024-07-15 00:00:00 UTC 3 days left   Thu 2024-07-11 11:53:59 UTC 1h 24min ago         fstrim.timer                 fstrim.service >
 
10 timers listed.
Pass --all to see loaded but inactive timers, too.

Sudo Version


barney@b3dr0ck:~$ sudo --version
Sudo version 1.8.31
Sudoers policy plugin version 1.8.31
Sudoers file grammar version 46
Sudoers I/O plugin version 1.8.31

Sudo version 1.8.31

Glibc Version


barney@b3dr0ck:~$ ldd --version
ldd (Ubuntu GLIBC 2.31-0ubuntu9.7) 2.31
Copyright (C) 2020 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.

ldd (Ubuntu GLIBC 2.31-0ubuntu9.7) 2.31