You are not logged in.

#1 2021-03-15 22:13:01

FurikuriYugi
Member
Registered: 2018-04-23
Posts: 8

[SOLVED]Unable to boot after update

Greetings friends I have run into an issue after updating.  Here is what I'm working with and the steps I've taken.
I use Arch on a microSD that I can use where ever the main hardware I use it on is a new Alienware m17 laptop.
I started this morning with [user ~]$ sudo pacman -Syu, everything seemed to go fine so I shutdown and restarted which brought me to the following error.

Error loading /vmlinuz-linux: Not Found
Failed to execute Arch Linux (/vmlinuz-linux): Not Found

When something breaks like this I go to https://archlinux.org to see what has changed and sure enough there are changes to mkinitcpio so I preformed the following tasks.
put the microSD into a USB adapter plugged into my work computer (also running latest Arch updated this morning) and checked the block devices.

[user ~]$ lsblk
NAME    MAJ:MIN    RM    SIZE    RO    TYPE    MOUNTPOINT
sda       8:0       0    1.8T     0    disk
|_sda1    8:1       0    100G     0    part    /
|_sda2    8:2       0    1.7T     0    part    /home
sdb       8:16      1  238.5G     0    disk
|_sdb1    8:17      1    260M     0    part
|_sdb2    8:18      1  238.2G     0    part    /run/media/user/a656a77f-bcef-4c60-b6ab-b5883d5d61e6

then unmounted the partition and mounted to /mnt

[user ~]$ sudo umount /dev/sdb2
[sudo] password for user:
[user ~]$ sudo mount /dev/sdb2 /mnt
[user ~]$ sudo mount /dev/sdb1 /mnt/boot
[user ~]$ sudo arch-chroot /mnt

once in I used nano to edit mkinitcpio.conf, un-commented #COMPRESSION='gzip' updated linux and re ran grub-mkconfig.

[root /]# nano etc/mkinitcpio.conf
---------------------------------------------
[root /]# mkinitcpio -P
[root /]# pacman -Syu linux
:: Synchronizing package databases...
 core is up to date
 extra is up to date
 community is up to date
 multilib is up to date
warning: linux-5.11.6.arch1-1 is up to date -- reinstalling
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Packages (1) linux-5.11.6.arch1-1

Total Installed Size:  97.48 MiB
Net Upgrade Size:       0.00 MiB

:: Proceed with installation? [Y/n] 
(1/1) checking keys in keyring                          [#############################] 100%
(1/1) checking package integrity                        [#############################] 100%
(1/1) loading package files                             [#############################] 100%
(1/1) checking for file conflicts                       [#############################] 100%
(1/1) checking available disk space                     [#############################] 100%
:: Processing package changes...
(1/1) reinstalling linux                                [#############################] 100%
:: Running post-transaction hooks...
(1/3) Arming ConditionNeedsUpdate...
(2/3) Updating module dependencies...
(3/3) Updating linux initcpios...
[root /]# grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/intel-ucode.img /boot/initramfs-linux.img
done
[root /]# exit

I put the microSD back into the laptop and then got this error.

[    1.836202] Initramfs unpacking failed: read error
[    1.992944] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)
[    1.993033] CPU: 3 PID: 1 Comm: swapper/0 Not tainted 5.11.6-arch-1 #1
[    1.993100] Hardware name: Alienware Alienware m17 R3/Alienware m17 R3, BIOS 1.7.2 12/1/2020
[    1.993170] Call Trace:
[    1.993210]  dump_stack+0x6b/0x83
[    1.993257]  panic+0x112/0x2e8
[    1.993304]  mount_block_root+0x310/0x31f
[    1.993353]  prepare_namespace+0x136/0x165
[    1.993398]  ? rest_init+0xbe/0xbe
[    1.993439]  kernel_init+0xa/0x112
[    1.993479]  ret_from_fork+0x1f/0x30
[    1.993617] Kernel Offset: 0x9200000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
[    2.075170] ---[end Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) ]---

After much trial and error and searching the forums and net I'm not sure how to proceed so if anyone has any ideas it would be greatly appreciated.

Last edited by FurikuriYugi (2021-03-18 20:11:26)

Offline

#2 2021-03-15 22:44:01

loqs
Member
Registered: 2014-03-06
Posts: 17,440

Re: [SOLVED]Unable to boot after update

The original issue appears to be the kernel image was missing after an update which is not related to the mkinitcpio change.
Reinstalling the kernel,  regenerating the initrd then regenerating grub's config looks to have solved that issue but there is now an issue with the newly generated initrd.
From the live media,  after chrooting in what is the output of:

stat /boot/initramfs-linux.img
file /boot/initramfs-linux.img

Offline

#3 2021-03-18 10:56:30

pi-rp
Member
Registered: 2021-03-18
Posts: 2

Re: [SOLVED]Unable to boot after update

Hello,


Same as you @FurikuriYugi, so I registered to share experiences.
-Update arch yesterday evening, shut down computer, kernel panic at boot in the morning.
-tried 2020.03 image : kernel panic too
-memtest: OK
-dell diagnostic: OK
-tried 2020.01 image : OK.

There is something with the latest kernel and my hardware.

Offline

#4 2021-03-18 11:40:10

pi-rp
Member
Registered: 2021-03-18
Posts: 2

Re: [SOLVED]Unable to boot after update

I cannot understand the problem, but 5.11 kernel is the culprit.
I had to chroot with 2020.01 image, then downgrade to 5.10.
I'm pretty happy not to clean /var/cache/pacman too often...

I can investigate or send logs, if someone helps me a little in this way.
I cannot guess from journalctl what triggers the kernel panic.

Offline

#5 2021-03-18 20:09:54

FurikuriYugi
Member
Registered: 2018-04-23
Posts: 8

Re: [SOLVED]Unable to boot after update

Thank you for your response I appologize for the delay.  I have repaired the system in the following steps which may or not be recommended.  Anyone with better or proper methods please address thank you.

1st problem: I found that a hung system and a forced shutdown by me caused the initial corruption on the microSD.

2nd problem:  The usb2 ports on my work PC keep resetting and caused the initial attempts to fix the system on the microSD to fail in the middle of updating.
Here's a snipit of the journalctl log for that day.

Mar 15 13:00:31 iHx systemd-coredump[1009]: Process 759 (udisksd) of user 0 dumped core.
                                            
                                            Stack trace of thread 759:
                                            #0  0x00007f5df694a77b udisks_block_get_id_usage (libudisks2.so.0 + 0x4577b)
                                            #1  0x000055752529f0c8 n/a (udisksd + 0x200c8)
                                            #2  0x000055752529e860 n/a (udisksd + 0x1f860)
                                            #3  0x000055752529f86c udisks_linux_block_object_uevent (udisksd + 0x2086c)
                                            #4  0x00007f5df6702072 g_closure_invoke (libgobject-2.0.so.0 + 0x13072)
                                            #5  0x00007f5df672aa85 n/a (libgobject-2.0.so.0 + 0x3ba85)
                                            #6  0x00007f5df671e5dd g_signal_emit_valist (libgobject-2.0.so.0 + 0x2f5dd)
                                            #7  0x00007f5df671eb40 g_signal_emit (libgobject-2.0.so.0 + 0x2fb40)
                                            #8  0x00005575252c9f3a n/a (udisksd + 0x4af3a)
                                            #9  0x00005575252ca2ba n/a (udisksd + 0x4b2ba)
                                            #10 0x00007f5df660db84 g_main_context_dispatch (libglib-2.0.so.0 + 0x53b84)
                                            #11 0x00007f5df6661c21 n/a (libglib-2.0.so.0 + 0xa7c21)
                                            #12 0x00007f5df660d0d3 g_main_loop_run (libglib-2.0.so.0 + 0x530d3)
                                            #13 0x00005575252982fd main (udisksd + 0x192fd)
                                            #14 0x00007f5df63f3b25 __libc_start_main (libc.so.6 + 0x27b25)
                                            #15 0x000055752529848e _start (udisksd + 0x1948e)
                                            
                                            Stack trace of thread 772:
                                            #0  0x00007f5df64c037f __poll (libc.so.6 + 0xf437f)
                                            #1  0x00007f5df6661baf n/a (libglib-2.0.so.0 + 0xa7baf)
                                            #2  0x00007f5df660d0d3 g_main_loop_run (libglib-2.0.so.0 + 0x530d3)
                                            #3  0x00005575252ce193 n/a (udisksd + 0x4f193)
                                            #4  0x00007f5df663afc1 n/a (libglib-2.0.so.0 + 0x80fc1)
                                            #5  0x00007f5df65a2299 start_thread (libpthread.so.0 + 0x9299)
                                            #6  0x00007f5df64cb053 __clone (libc.so.6 + 0xff053)
                                            
                                            Stack trace of thread 763:
                                            #0  0x00007f5df64c037f __poll (libc.so.6 + 0xf437f)
                                            #1  0x00007f5df6661baf n/a (libglib-2.0.so.0 + 0xa7baf)
                                            #2  0x00007f5df660d0d3 g_main_loop_run (libglib-2.0.so.0 + 0x530d3)
                                            #3  0x00007f5df684ad18 n/a (libgio-2.0.so.0 + 0x101d18)
                                            #4  0x00007f5df663afc1 n/a (libglib-2.0.so.0 + 0x80fc1)
                                            #5  0x00007f5df65a2299 start_thread (libpthread.so.0 + 0x9299)
                                            #6  0x00007f5df64cb053 __clone (libc.so.6 + 0xff053)
                                            
                                            Stack trace of thread 764:
                                            #0  0x00007f5df64c5a9d syscall (libc.so.6 + 0xf9a9d)
                                            #1  0x00007f5df665a3e1 g_cond_wait (libglib-2.0.so.0 + 0xa03e1)
                                            #2  0x00007f5df65dd944 n/a (libglib-2.0.so.0 + 0x23944)
                                            #3  0x00007f5df65dd979 g_async_queue_pop (libglib-2.0.so.0 + 0x23979)
                                            #4  0x000055752529e13b probe_request_thread_func (udisksd + 0x1f13b)
                                            #5  0x00007f5df663afc1 n/a (libglib-2.0.so.0 + 0x80fc1)
                                            #6  0x00007f5df65a2299 start_thread (libpthread.so.0 + 0x9299)
                                            #7  0x00007f5df64cb053 __clone (libc.so.6 + 0xff053)
                                            
                                            Stack trace of thread 761:
                                            #0  0x00007f5df64c037f __poll (libc.so.6 + 0xf437f)
                                            #1  0x00007f5df6661baf n/a (libglib-2.0.so.0 + 0xa7baf)
                                            #2  0x00007f5df660c3b1 g_main_context_iteration (libglib-2.0.so.0 + 0x523b1)
                                            #3  0x00007f5df660c402 n/a (libglib-2.0.so.0 + 0x52402)
                                            #4  0x00007f5df663afc1 n/a (libglib-2.0.so.0 + 0x80fc1)
                                            #5  0x00007f5df65a2299 start_thread (libpthread.so.0 + 0x9299)
                                            #6  0x00007f5df64cb053 __clone (libc.so.6 + 0xff053)
Mar 15 13:00:31 iHx systemd[1]: systemd-coredump@0-992-0.service: Succeeded.
Mar 15 13:00:32 iHx kernel: audit: type=1131 audit(1615831231.881:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-992-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:00:32 iHx kernel: audit: type=1131 audit(1615831231.897:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 15 13:00:31 iHx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-coredump@0-992-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:00:31 iHx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Mar 15 13:00:31 iHx systemd[1]: udisks2.service: Main process exited, code=dumped, status=11/SEGV
Mar 15 13:00:31 iHx systemd[1]: udisks2.service: Failed with result 'core-dump'.
Mar 15 13:00:32 iHx audit: BPF prog-id=25 op=UNLOAD
Mar 15 13:00:32 iHx audit: BPF prog-id=24 op=UNLOAD
Mar 15 13:00:32 iHx kernel: audit: type=1334 audit(1615831232.061:94): prog-id=25 op=UNLOAD
Mar 15 13:00:32 iHx kernel: audit: type=1334 audit(1615831232.061:95): prog-id=24 op=UNLOAD
Mar 15 13:00:32 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:00:32 iHx kernel: sd 6:0:0:0: [sdc] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:00:32 iHx kernel: sd 6:0:0:0: [sdc] Write Protect is off
Mar 15 13:00:32 iHx kernel: sd 6:0:0:0: [sdc] Mode Sense: 21 00 00 00
Mar 15 13:00:32 iHx kernel: sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:00:32 iHx kernel:  sdc: sdc1 sdc2
Mar 15 13:00:32 iHx kernel: sd 6:0:0:0: [sdc] Attached SCSI removable disk
Mar 15 13:00:41 iHx systemd[511]: Started Firefox in Jail - Firefox in Jail.
Mar 15 13:00:56 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.46' (uid=0 pid=1308 comm="sudo arch-chroot /mnt/ ")
Mar 15 13:00:56 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:00:56 iHx sudo[1308]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:00:56 iHx audit[1308]: USER_ACCT pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx audit[1308]: CRED_REFR pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx sudo[1308]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/arch-chroot /mnt/
Mar 15 13:00:56 iHx kernel: audit: type=1101 audit(1615831256.165:96): pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx kernel: audit: type=1110 audit(1615831256.165:97): pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx sudo[1308]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:00:56 iHx audit[1308]: USER_START pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx kernel: audit: type=1105 audit(1615831256.172:98): pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm mount: reading directory lblock 0
Mar 15 13:00:56 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm mount: reading directory lblock 0
Mar 15 13:00:56 iHx audit[1308]: USER_END pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx kernel: audit: type=1106 audit(1615831256.355:99): pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx kernel: audit: type=1104 audit(1615831256.355:100): pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx audit[1308]: CRED_DISP pid=1308 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:00:56 iHx sudo[1308]: pam_unix(sudo:session): session closed for user root
Mar 15 13:01:01 iHx kernel: Buffer I/O error on dev sdb2, logical block 30965760, lost sync page write
Mar 15 13:01:01 iHx kernel: JBD2: Error -5 detected when updating journal superblock for sdb2-8.
Mar 15 13:01:01 iHx kernel: Aborting journal on device sdb2-8.
Mar 15 13:01:01 iHx kernel: Buffer I/O error on dev sdb2, logical block 30965760, lost sync page write
Mar 15 13:01:01 iHx kernel: JBD2: Error -5 detected when updating journal superblock for sdb2-8.
Mar 15 13:01:37 iHx kernel: usb 2-2: USB disconnect, device number 4
Mar 15 13:01:37 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:01:37 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 5 using xhci_hcd
Mar 15 13:01:37 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:01:37 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:01:37 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:01:37 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:01:37 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:01:37 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:01:37 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:01:37 iHx mtp-probe[1451]: checking bus 2, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:01:37 iHx mtp-probe[1451]: bus: 2, device: 5 was not an MTP device
Mar 15 13:01:37 iHx mtp-probe[1465]: checking bus 2, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:01:37 iHx mtp-probe[1465]: bus: 2, device: 5 was not an MTP device
Mar 15 13:01:38 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:01:39 iHx kernel: sd 6:0:0:0: [sdc] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:01:39 iHx kernel: sd 6:0:0:0: [sdc] Write Protect is off
Mar 15 13:01:39 iHx kernel: sd 6:0:0:0: [sdc] Mode Sense: 21 00 00 00
Mar 15 13:01:39 iHx kernel: sd 6:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:01:39 iHx kernel:  sdc: sdc1 sdc2
Mar 15 13:01:39 iHx kernel: sd 6:0:0:0: [sdc] Attached SCSI removable disk
Mar 15 13:01:56 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.47' (uid=0 pid=1485 comm="sudo umount /dev/sdb2 ")
Mar 15 13:01:56 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:01:56 iHx sudo[1485]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:01:56 iHx audit[1485]: USER_ACCT pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx audit[1485]: CRED_REFR pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx sudo[1485]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb2
Mar 15 13:01:56 iHx audit[1485]: USER_START pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx sudo[1485]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:01:56 iHx kernel: audit: type=1101 audit(1615831316.033:101): pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx kernel: audit: type=1110 audit(1615831316.033:102): pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx kernel: audit: type=1105 audit(1615831316.033:103): pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx sudo[1485]: pam_unix(sudo:session): session closed for user root
Mar 15 13:01:56 iHx audit[1485]: USER_END pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx audit[1485]: CRED_DISP pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx kernel: audit: type=1106 audit(1615831316.036:104): pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:01:56 iHx kernel: audit: type=1104 audit(1615831316.036:105): pid=1485 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.48' (uid=0 pid=1491 comm="sudo umount /dev/sdb1 ")
Mar 15 13:02:01 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:01 iHx sudo[1491]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:01 iHx audit[1491]: USER_ACCT pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx audit[1491]: CRED_REFR pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx sudo[1491]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb1
Mar 15 13:02:01 iHx kernel: audit: type=1101 audit(1615831321.246:106): pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx kernel: audit: type=1110 audit(1615831321.246:107): pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx sudo[1491]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:02:01 iHx audit[1491]: USER_START pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx kernel: audit: type=1105 audit(1615831321.250:108): pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx sudo[1491]: pam_unix(sudo:session): session closed for user root
Mar 15 13:02:01 iHx audit[1491]: USER_END pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx audit[1491]: CRED_DISP pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx systemd[1]: mnt-boot.mount: Succeeded.
Mar 15 13:02:01 iHx systemd[511]: mnt-boot.mount: Succeeded.
Mar 15 13:02:01 iHx kernel: audit: type=1106 audit(1615831321.253:109): pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:01 iHx kernel: audit: type=1104 audit(1615831321.253:110): pid=1491 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.49' (uid=0 pid=1498 comm="sudo umount /dev/sdb2 ")
Mar 15 13:02:04 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:04 iHx sudo[1498]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:04 iHx audit[1498]: USER_ACCT pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx sudo[1498]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb2
Mar 15 13:02:04 iHx audit[1498]: CRED_REFR pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx kernel: audit: type=1101 audit(1615831324.686:111): pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx kernel: audit: type=1110 audit(1615831324.686:112): pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx sudo[1498]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:02:04 iHx audit[1498]: USER_START pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx kernel: audit: type=1105 audit(1615831324.690:113): pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx systemd[511]: mnt.mount: Succeeded.
Mar 15 13:02:04 iHx systemd[1]: mnt.mount: Succeeded.
Mar 15 13:02:04 iHx sudo[1498]: pam_unix(sudo:session): session closed for user root
Mar 15 13:02:04 iHx audit[1498]: USER_END pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx audit[1498]: CRED_DISP pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx kernel: audit: type=1106 audit(1615831324.730:114): pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:04 iHx kernel: audit: type=1104 audit(1615831324.730:115): pid=1498 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:11 iHx kernel: usb 2-2: USB disconnect, device number 5
Mar 15 13:02:11 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:02:12 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 6 using xhci_hcd
Mar 15 13:02:12 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:02:12 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:02:12 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:02:12 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:02:12 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:02:12 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:02:12 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:02:12 iHx mtp-probe[1520]: checking bus 2, device 6: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:12 iHx mtp-probe[1520]: bus: 2, device: 6 was not an MTP device
Mar 15 13:02:12 iHx mtp-probe[1534]: checking bus 2, device 6: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:12 iHx mtp-probe[1534]: bus: 2, device: 6 was not an MTP device
Mar 15 13:02:13 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:02:13 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:02:13 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:02:13 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:02:13 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:02:13 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:02:13 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:02:26 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.50' (uid=0 pid=1548 comm="sudo mount /dev/sdc2 /mnt/ ")
Mar 15 13:02:26 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:26 iHx sudo[1548]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:02:26 iHx audit[1548]: USER_ACCT pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx sudo[1548]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/mount /dev/sdc2 /mnt/
Mar 15 13:02:26 iHx audit[1548]: CRED_REFR pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx kernel: audit: type=1101 audit(1615831346.740:116): pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx kernel: audit: type=1110 audit(1615831346.740:117): pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx sudo[1548]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:02:26 iHx audit[1548]: USER_START pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx kernel: audit: type=1105 audit(1615831346.746:118): pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx sudo[1548]: pam_unix(sudo:session): session closed for user root
Mar 15 13:02:26 iHx audit[1548]: USER_END pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx audit[1548]: CRED_DISP pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx kernel: audit: type=1106 audit(1615831346.750:119): pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:26 iHx kernel: audit: type=1104 audit(1615831346.750:120): pid=1548 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:02:33 iHx kernel: usb 2-2: USB disconnect, device number 6
Mar 15 13:02:33 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:02:33 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 7 using xhci_hcd
Mar 15 13:02:33 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:02:33 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:02:33 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:02:33 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:02:33 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:02:33 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:02:33 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:02:33 iHx mtp-probe[1569]: checking bus 2, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:33 iHx mtp-probe[1569]: bus: 2, device: 7 was not an MTP device
Mar 15 13:02:33 iHx mtp-probe[1583]: checking bus 2, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:33 iHx mtp-probe[1583]: bus: 2, device: 7 was not an MTP device
Mar 15 13:02:34 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:02:35 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:02:35 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:02:35 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:02:35 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:02:35 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:02:35 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:02:45 iHx kernel: usb 2-2: USB disconnect, device number 7
Mar 15 13:02:55 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 8 using xhci_hcd
Mar 15 13:02:55 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:02:55 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:02:55 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:02:55 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:02:55 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:02:55 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:02:55 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:02:55 iHx mtp-probe[1620]: checking bus 2, device 8: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:55 iHx mtp-probe[1620]: bus: 2, device: 8 was not an MTP device
Mar 15 13:02:55 iHx mtp-probe[1634]: checking bus 2, device 8: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:02:55 iHx mtp-probe[1634]: bus: 2, device: 8 was not an MTP device
Mar 15 13:02:56 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:02:57 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:02:57 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:02:57 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:02:57 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:02:57 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:02:57 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:03:24 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.51' (uid=0 pid=1661 comm="sudo mount /dev/sdb2 /mnt/ ")
Mar 15 13:03:24 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:24 iHx sudo[1661]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:24 iHx audit[1661]: USER_ACCT pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx sudo[1661]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/mount /dev/sdb2 /mnt/
Mar 15 13:03:24 iHx audit[1661]: CRED_REFR pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx sudo[1661]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:03:24 iHx audit[1661]: USER_START pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx kernel: audit: type=1101 audit(1615831404.722:121): pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx kernel: audit: type=1110 audit(1615831404.722:122): pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx kernel: audit: type=1105 audit(1615831404.722:123): pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx sudo[1661]: pam_unix(sudo:session): session closed for user root
Mar 15 13:03:24 iHx audit[1661]: USER_END pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx audit[1661]: CRED_DISP pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx kernel: EXT4-fs (sdb2): recovery complete
Mar 15 13:03:24 iHx kernel: EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Mar 15 13:03:24 iHx kernel: audit: type=1106 audit(1615831404.789:124): pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:24 iHx kernel: audit: type=1104 audit(1615831404.789:125): pid=1661 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.52' (uid=0 pid=1670 comm="sudo mount /dev/sdb1 /mnt/boot/ ")
Mar 15 13:03:32 iHx audit[1670]: USER_ACCT pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx kernel: audit: type=1101 audit(1615831412.979:126): pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:32 iHx audit[1670]: CRED_REFR pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx sudo[1670]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:32 iHx sudo[1670]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/mount /dev/sdb1 /mnt/boot/
Mar 15 13:03:33 iHx kernel: audit: type=1110 audit(1615831412.982:127): pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:33 iHx kernel: audit: type=1105 audit(1615831412.985:128): pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx audit[1670]: USER_START pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:32 iHx sudo[1670]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:03:33 iHx sudo[1670]: pam_unix(sudo:session): session closed for user root
Mar 15 13:03:33 iHx audit[1670]: USER_END pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:33 iHx audit[1670]: CRED_DISP pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:33 iHx kernel: FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Mar 15 13:03:33 iHx kernel: audit: type=1106 audit(1615831413.042:129): pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:33 iHx kernel: audit: type=1104 audit(1615831413.042:130): pid=1670 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.53' (uid=0 pid=1680 comm="sudo arch-chroot /mnt/ ")
Mar 15 13:03:41 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:41 iHx sudo[1680]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:03:41 iHx audit[1680]: USER_ACCT pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx audit[1680]: CRED_REFR pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx sudo[1680]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/arch-chroot /mnt/
Mar 15 13:03:41 iHx audit[1680]: USER_START pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx sudo[1680]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:03:41 iHx kernel: audit: type=1101 audit(1615831421.842:131): pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx kernel: audit: type=1110 audit(1615831421.842:132): pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:03:41 iHx kernel: audit: type=1105 audit(1615831421.842:133): pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:08:40 iHx kernel: usb 2-2: USB disconnect, device number 8
Mar 15 13:08:40 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:08:40 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 9 using xhci_hcd
Mar 15 13:08:40 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:08:40 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:08:40 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:08:40 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:08:40 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:08:40 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:08:40 iHx kernel: scsi host7: usb-storage 2-2:1.0
Mar 15 13:08:40 iHx mtp-probe[2047]: checking bus 2, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:08:40 iHx mtp-probe[2047]: bus: 2, device: 9 was not an MTP device
Mar 15 13:08:40 iHx mtp-probe[2061]: checking bus 2, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:08:40 iHx mtp-probe[2061]: bus: 2, device: 9 was not an MTP device
Mar 15 13:08:41 iHx kernel: scsi 7:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:08:42 iHx kernel: sd 7:0:0:0: [sdc] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:08:42 iHx kernel: sd 7:0:0:0: [sdc] Write Protect is off
Mar 15 13:08:42 iHx kernel: sd 7:0:0:0: [sdc] Mode Sense: 21 00 00 00
Mar 15 13:08:42 iHx kernel: sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:08:42 iHx kernel:  sdc: sdc1 sdc2
Mar 15 13:08:42 iHx kernel: sd 7:0:0:0: [sdc] Attached SCSI removable disk
Mar 15 13:09:40 iHx kernel: usb 2-2: USB disconnect, device number 9
Mar 15 13:09:40 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:09:40 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 10 using xhci_hcd
Mar 15 13:09:40 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:09:40 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:09:40 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:09:40 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:09:40 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:09:40 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:09:40 iHx kernel: scsi host7: usb-storage 2-2:1.0
Mar 15 13:09:40 iHx mtp-probe[2125]: checking bus 2, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:09:40 iHx mtp-probe[2125]: bus: 2, device: 10 was not an MTP device
Mar 15 13:09:40 iHx mtp-probe[2139]: checking bus 2, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:09:40 iHx mtp-probe[2139]: bus: 2, device: 10 was not an MTP device
Mar 15 13:09:41 iHx kernel: scsi 7:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:09:42 iHx kernel: sd 7:0:0:0: [sdc] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:09:42 iHx kernel: sd 7:0:0:0: [sdc] Write Protect is off
Mar 15 13:09:42 iHx kernel: sd 7:0:0:0: [sdc] Mode Sense: 21 00 00 00
Mar 15 13:09:42 iHx kernel: sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:09:42 iHx kernel:  sdc: sdc1 sdc2
Mar 15 13:09:42 iHx kernel: sd 7:0:0:0: [sdc] Attached SCSI removable disk
Mar 15 13:10:26 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm bash: reading directory lblock 0
Mar 15 13:10:26 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm bash: reading directory lblock 0
Mar 15 13:10:26 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm bash: reading directory lblock 0
Mar 15 13:10:26 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm bash: reading directory lblock 0
Mar 15 13:10:27 iHx kernel: EXT4-fs error (device sdb2): __ext4_find_entry:1524: inode #2: comm bash: reading directory lblock 0
Mar 15 13:10:27 iHx kernel: audit: type=1106 audit(1615831826.868:134): pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:27 iHx kernel: audit: type=1104 audit(1615831826.868:135): pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:26 iHx audit[1680]: USER_END pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:26 iHx audit[1680]: CRED_DISP pid=1680 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:26 iHx sudo[1680]: pam_unix(sudo:session): session closed for user root
Mar 15 13:10:26 iHx systemd[1]: mnt-etc-resolv.conf.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-etc-resolv.conf.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-tmp.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-tmp.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-run.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-dev-shm.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-run.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-dev-pts.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-dev.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-dev-shm.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-sys.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-dev-pts.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[1]: mnt-proc.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-dev.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-sys.mount: Succeeded.
Mar 15 13:10:26 iHx systemd[511]: mnt-proc.mount: Succeeded.
Mar 15 13:10:32 iHx kernel: Aborting journal on device sdb2-8.
Mar 15 13:10:32 iHx kernel: Buffer I/O error on dev sdb2, logical block 30965760, lost sync page write
Mar 15 13:10:32 iHx kernel: JBD2: Error -5 detected when updating journal superblock for sdb2-8.
Mar 15 13:10:39 iHx audit[2191]: USER_AUTH pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.54' (uid=0 pid=2191 comm="sudo umount /dev/sdb2 ")
Mar 15 13:10:39 iHx kernel: audit: type=1100 audit(1615831839.965:136): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:39 iHx sudo[2191]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:39 iHx audit[2191]: USER_ACCT pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx sudo[2191]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb2
Mar 15 13:10:39 iHx audit[2191]: CRED_REFR pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx kernel: audit: type=1101 audit(1615831839.968:137): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx kernel: audit: type=1110 audit(1615831839.968:138): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx sudo[2191]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:10:39 iHx audit[2191]: USER_START pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx kernel: audit: type=1105 audit(1615831839.971:139): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx sudo[2191]: pam_unix(sudo:session): session closed for user root
Mar 15 13:10:39 iHx audit[2191]: USER_END pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx audit[2191]: CRED_DISP pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx kernel: audit: type=1106 audit(1615831839.978:140): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:39 iHx kernel: audit: type=1104 audit(1615831839.978:141): pid=2191 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.55' (uid=0 pid=2201 comm="sudo umount /dev/sdb1 ")
Mar 15 13:10:47 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:47 iHx sudo[2201]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:47 iHx audit[2201]: USER_ACCT pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx sudo[2201]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb1
Mar 15 13:10:47 iHx audit[2201]: CRED_REFR pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx kernel: audit: type=1101 audit(1615831847.331:142): pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx kernel: audit: type=1110 audit(1615831847.331:143): pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx audit[2201]: USER_START pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx sudo[2201]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:10:47 iHx kernel: audit: type=1105 audit(1615831847.335:144): pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx sudo[2201]: pam_unix(sudo:session): session closed for user root
Mar 15 13:10:47 iHx audit[2201]: USER_END pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx audit[2201]: CRED_DISP pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx systemd[1]: mnt-boot.mount: Succeeded.
Mar 15 13:10:47 iHx systemd[511]: mnt-boot.mount: Succeeded.
Mar 15 13:10:47 iHx kernel: audit: type=1106 audit(1615831847.338:145): pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:47 iHx kernel: audit: type=1104 audit(1615831847.338:146): pid=2201 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.56' (uid=0 pid=2206 comm="sudo umount /dev/sdb2 ")
Mar 15 13:10:50 iHx dbus-daemon[447]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:50 iHx sudo[2206]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 15 13:10:50 iHx audit[2206]: USER_ACCT pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx sudo[2206]:   justin : TTY=pts/1 ; PWD=/home/justin ; USER=root ; COMMAND=/usr/bin/umount /dev/sdb2
Mar 15 13:10:50 iHx audit[2206]: CRED_REFR pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx kernel: audit: type=1101 audit(1615831850.195:147): pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="justin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx kernel: audit: type=1110 audit(1615831850.195:148): pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx sudo[2206]: pam_unix(sudo:session): session opened for user root(uid=0) by justin(uid=1000)
Mar 15 13:10:50 iHx audit[2206]: USER_START pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx kernel: audit: type=1105 audit(1615831850.198:149): pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx systemd[511]: mnt.mount: Succeeded.
Mar 15 13:10:50 iHx systemd[1]: mnt.mount: Succeeded.
Mar 15 13:10:50 iHx sudo[2206]: pam_unix(sudo:session): session closed for user root
Mar 15 13:10:50 iHx audit[2206]: USER_END pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx audit[2206]: CRED_DISP pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx kernel: audit: type=1106 audit(1615831850.251:150): pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:10:50 iHx kernel: audit: type=1104 audit(1615831850.251:151): pid=2206 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Mar 15 13:11:02 iHx kernel: usb 2-2: USB disconnect, device number 10
Mar 15 13:12:20 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 11 using xhci_hcd
Mar 15 13:12:20 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:12:20 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:12:20 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:12:20 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:12:20 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:12:20 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:12:20 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:12:20 iHx mtp-probe[2306]: checking bus 2, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:12:20 iHx mtp-probe[2306]: bus: 2, device: 11 was not an MTP device
Mar 15 13:12:20 iHx mtp-probe[2320]: checking bus 2, device 11: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:12:20 iHx mtp-probe[2320]: bus: 2, device: 11 was not an MTP device
Mar 15 13:12:21 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:12:22 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:12:22 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:12:22 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:12:22 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:12:22 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:12:22 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:12:39 iHx systemd[511]: Started Oracle VM VirtualBox - Virtual Machine.
Mar 15 13:13:18 iHx systemd[1]: Starting Cleanup of Temporary Directories...
Mar 15 13:13:18 iHx systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
Mar 15 13:13:18 iHx systemd[1]: Finished Cleanup of Temporary Directories.
Mar 15 13:13:18 iHx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:13:18 iHx audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:13:18 iHx kernel: audit: type=1130 audit(1615831998.841:152): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:13:18 iHx kernel: audit: type=1131 audit(1615831998.841:153): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:13:20 iHx kernel: usb 2-2: USB disconnect, device number 11
Mar 15 13:13:20 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:13:20 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 12 using xhci_hcd
Mar 15 13:13:20 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:13:20 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:13:20 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:13:20 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:13:20 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:13:20 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:13:20 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:13:20 iHx mtp-probe[2443]: checking bus 2, device 12: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:13:20 iHx mtp-probe[2443]: bus: 2, device: 12 was not an MTP device
Mar 15 13:13:20 iHx mtp-probe[2457]: checking bus 2, device 12: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:13:20 iHx mtp-probe[2457]: bus: 2, device: 12 was not an MTP device
Mar 15 13:13:21 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:13:22 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:13:22 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:13:22 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:13:22 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:13:22 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:13:22 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:14:33 iHx kernel: usb 2-2: USB disconnect, device number 12
Mar 15 13:14:33 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:14:33 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 13 using xhci_hcd
Mar 15 13:14:33 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:14:33 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:14:33 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:14:33 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:14:33 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:14:33 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:14:33 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:14:33 iHx mtp-probe[2549]: checking bus 2, device 13: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:14:33 iHx mtp-probe[2549]: bus: 2, device: 13 was not an MTP device
Mar 15 13:14:33 iHx mtp-probe[2563]: checking bus 2, device 13: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:14:33 iHx mtp-probe[2563]: bus: 2, device: 13 was not an MTP device
Mar 15 13:14:34 iHx kernel: scsi 6:0:0:0: Direct-Access     SABRENT  SD               1206 PQ: 0 ANSI: 6
Mar 15 13:14:35 iHx kernel: sd 6:0:0:0: [sdb] 500170752 512-byte logical blocks: (256 GB/239 GiB)
Mar 15 13:14:35 iHx kernel: sd 6:0:0:0: [sdb] Write Protect is off
Mar 15 13:14:35 iHx kernel: sd 6:0:0:0: [sdb] Mode Sense: 21 00 00 00
Mar 15 13:14:35 iHx kernel: sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Mar 15 13:14:35 iHx kernel:  sdb: sdb1 sdb2
Mar 15 13:14:35 iHx kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Mar 15 13:15:08 iHx kernel: SUPR0GipMap: fGetGipCpu=0x1b
Mar 15 13:15:10 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-STARTED-CHANNEL-SWITCH freq=5180 ht_enabled=1 ch_offset=1 ch_width=80 MHz cf1=5210 cf2=0
Mar 15 13:15:10 iHx kernel: wlp3s0: cannot understand ECSA IE operating class, 22, ignoring
Mar 15 13:15:10 iHx kernel: wlp3s0: cannot understand ECSA IE operating class, 22, ignoring
Mar 15 13:15:10 iHx kernel: wlp3s0: AP c0:a0:0d:72:a7:d4 changed bandwidth, new config is 5745.000 MHz, width 1 (5745.000/0 MHz)
Mar 15 13:15:10 iHx kernel: wlp3s0: AP c0:a0:0d:72:a7:d4 changed bandwidth to incompatible one - disconnect
Mar 15 13:15:10 iHx kernel: wlp3s0: failed to follow AP c0:a0:0d:72:a7:d4 bandwidth change, disconnect
Mar 15 13:15:10 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-DISCONNECTED bssid=c0:a0:0d:72:a7:d4 reason=3 locally_generated=1
Mar 15 13:15:10 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Mar 15 13:15:10 iHx NetworkManager[499]: <info>  [1615832110.7540] device (wlp3s0): supplicant interface state: completed -> disconnected
Mar 15 13:15:10 iHx NetworkManager[499]: <info>  [1615832110.7541] device (p2p-dev-wlp3s0): supplicant management interface state: completed -> disconnected
Mar 15 13:15:10 iHx NetworkManager[499]: <info>  [1615832110.8207] device (wlp3s0): supplicant interface state: disconnected -> scanning
Mar 15 13:15:10 iHx NetworkManager[499]: <info>  [1615832110.8208] device (p2p-dev-wlp3s0): supplicant management interface state: disconnected -> scanning
Mar 15 13:15:13 iHx wpa_supplicant[509]: wlp3s0: SME: Trying to authenticate with c0:a0:0d:72:a7:d4 (SSID='Frontier8224_5G' freq=5180 MHz)
Mar 15 13:15:13 iHx kernel: wlp3s0: authenticate with c0:a0:0d:72:a7:d4
Mar 15 13:15:13 iHx kernel: wlp3s0: send auth to c0:a0:0d:72:a7:d4 (try 1/3)
Mar 15 13:15:13 iHx kernel: wlp3s0: authenticated
Mar 15 13:15:13 iHx wpa_supplicant[509]: wlp3s0: Trying to associate with c0:a0:0d:72:a7:d4 (SSID='Frontier8224_5G' freq=5180 MHz)
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9848] device (wlp3s0): supplicant interface state: scanning -> authenticating
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9848] device (p2p-dev-wlp3s0): supplicant management interface state: scanning -> authenticating
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9872] device (wlp3s0): supplicant interface state: authenticating -> associating
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9872] device (p2p-dev-wlp3s0): supplicant management interface state: authenticating -> associating
Mar 15 13:15:13 iHx wpa_supplicant[509]: wlp3s0: Associated with c0:a0:0d:72:a7:d4
Mar 15 13:15:13 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 15 13:15:13 iHx kernel: wlp3s0: associate with c0:a0:0d:72:a7:d4 (try 1/3)
Mar 15 13:15:13 iHx kernel: wlp3s0: RX AssocResp from c0:a0:0d:72:a7:d4 (capab=0x1011 status=0 aid=3)
Mar 15 13:15:13 iHx kernel: wlp3s0: associated
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9942] device (wlp3s0): supplicant interface state: associating -> 4way_handshake
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9942] device (p2p-dev-wlp3s0): supplicant management interface state: associating -> 4way_handshake
Mar 15 13:15:13 iHx NetworkManager[499]: <info>  [1615832113.9943] device (wlp3s0): DHCPv4 lease renewal requested
Mar 15 13:15:14 iHx NetworkManager[499]: <info>  [1615832114.0200] dhcp4 (wlp3s0): canceled DHCP transaction
Mar 15 13:15:14 iHx NetworkManager[499]: <info>  [1615832114.0201] dhcp4 (wlp3s0): state changed bound -> done
Mar 15 13:15:14 iHx NetworkManager[499]: <info>  [1615832114.0208] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Mar 15 13:15:14 iHx kernel: wlp3s0: Limiting TX power to 24 (24 - 0) dBm as advertised by c0:a0:0d:72:a7:d4
Mar 15 13:15:21 iHx kernel: wlp3s0: deauthenticated from c0:a0:0d:72:a7:d4 (Reason: 15=4WAY_HANDSHAKE_TIMEOUT)
Mar 15 13:15:22 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-DISCONNECTED bssid=c0:a0:0d:72:a7:d4 reason=15
Mar 15 13:15:22 iHx wpa_supplicant[509]: wlp3s0: WPA: 4-Way Handshake failed - pre-shared key may be incorrect
Mar 15 13:15:22 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-SSID-TEMP-DISABLED id=0 ssid="Frontier8224_5G" auth_failures=1 duration=10 reason=WRONG_KEY
Mar 15 13:15:22 iHx wpa_supplicant[509]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.0874] device (wlp3s0): supplicant interface state: 4way_handshake -> disconnected
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.0892] device (wlp3s0): Activation: (wifi) disconnected during association, asking for new key
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.0895] device (wlp3s0): state change: activated -> need-auth (reason 'supplicant-disconnect', sys-iface-state: 'managed')
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.1335] dhcp4 (wlp3s0): canceled DHCP transaction
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.1336] dhcp4 (wlp3s0): state changed unknown -> done
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.1353] manager: NetworkManager state is now CONNECTING
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.1405] device (p2p-dev-wlp3s0): supplicant management interface state: 4way_handshake -> disconnected
Mar 15 13:15:22 iHx dbus-daemon[447]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.6' (uid=0 pid=499 comm="/usr/bin/NetworkManager --no-daemon ")
Mar 15 13:15:22 iHx systemd[1]: Starting Network Manager Script Dispatcher Service...
Mar 15 13:15:22 iHx dbus-daemon[447]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Mar 15 13:15:22 iHx systemd[1]: Started Network Manager Script Dispatcher Service.
Mar 15 13:15:22 iHx audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:15:22 iHx kernel: audit: type=1130 audit(1615832122.164:154): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.2084] device (wlp3s0): supplicant interface state: disconnected -> inactive
Mar 15 13:15:22 iHx NetworkManager[499]: <info>  [1615832122.2085] device (p2p-dev-wlp3s0): supplicant management interface state: disconnected -> inactive
Mar 15 13:15:26 iHx kernel: usb 2-2: USB disconnect, device number 13
Mar 15 13:15:26 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:15:27 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 14 using xhci_hcd
Mar 15 13:15:27 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:15:27 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:15:27 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:15:27 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:15:27 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:15:27 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected
Mar 15 13:15:27 iHx kernel: scsi host6: usb-storage 2-2:1.0
Mar 15 13:15:27 iHx mtp-probe[2660]: checking bus 2, device 14: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:15:27 iHx mtp-probe[2660]: bus: 2, device: 14 was not an MTP device
Mar 15 13:15:27 iHx mtp-probe[2674]: checking bus 2, device 14: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-2"
Mar 15 13:15:27 iHx mtp-probe[2674]: bus: 2, device: 14 was not an MTP device
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5219] device (wlp3s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5238] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5247] device (wlp3s0): Activation: (wifi) connection 'Frontier8224_5G' has security, and secrets exist.  No new secrets needed.
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5248] Config: added 'ssid' value 'Frontier8224_5G'
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5248] Config: added 'scan_ssid' value '1'
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5249] Config: added 'bgscan' value 'simple:30:-70:86400'
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5249] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.5250] Config: added 'psk' value '<hidden>'
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.7389] device (wlp3s0): supplicant interface state: inactive -> scanning
Mar 15 13:15:27 iHx NetworkManager[499]: <info>  [1615832127.7390] device (p2p-dev-wlp3s0): supplicant management interface state: inactive -> scanning
Mar 15 13:15:28 iHx kernel: usb 2-2: USB disconnect, device number 14
Mar 15 13:15:28 iHx kernel: xhci_hcd 0000:00:14.0: WARN Set TR Deq Ptr cmd failed due to incorrect slot or ep state.
Mar 15 13:15:28 iHx kernel: usb 2-2: new SuperSpeed Gen 1 USB device number 15 using xhci_hcd
Mar 15 13:15:28 iHx kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=12.06
Mar 15 13:15:28 iHx kernel: usb 2-2: New USB device strings: Mfr=3, Product=1, SerialNumber=5
Mar 15 13:15:28 iHx kernel: usb 2-2: Product: USB Storage
Mar 15 13:15:28 iHx kernel: usb 2-2: Manufacturer: SABRENT 
Mar 15 13:15:28 iHx kernel: usb 2-2: SerialNumber: 000000000015
Mar 15 13:15:28 iHx kernel: usb-storage 2-2:1.0: USB Mass Storage device detected

I moved the usb stick to a usb3 port on the back of the machine and re-updated met with

ldconfig: File /usr/lib/"Example.so" is empty, not checked.

so I used

pacman -Qo /usr/lib/"Example.so"

and

pacman -F /usr/lib/"Example.so"

to find the broken packages and reinstalled with

pacman -Syu "ExmplePackage" --overwrite '*'

I then unmounted to microSD and put it back into the laptop and booted into it which got me to my first post

Error loading /vmlinuz-linux: Not Found
Failed to execute Arch Linux (/vmlinuz-linux): Not Found

The next day I put the microSD into my work PC (in a usb3 port) arch-chroot into it and checked /boot to find initramfs-linux.img missing so I tried to update again and check, still not there.  I then ran

mkinitcpio -P

checked and not there so I ran

mkinitcpio -p linux

checked and not there.
Finally I exited the chroot and coppied the img from my work PC to the microSD

sudo cp /boot/initramfs-linux.img /mnt/boot/

unmounted the microSD and put it into the laptop and sucsess.  Iv'e been going through and reinstalling the odd package that didn't show up in the chroot to have my OS fully operational.

Offline

Board footer

Powered by FluxBB