From: Thomas Walker Lynch Date: Wed, 18 Sep 2024 11:52:03 +0000 (+0000) Subject: busy refactoring to create interfaces X-Git-Url: https://git.reasoningtechnology.com/usr/lib/python2.7/quopri.py?a=commitdiff_plain;h=2eedd66e1209a7b0d82bb6074989e33751b0e4a9;p=noflash busy refactoring to create interfaces --- diff --git a/developer/cc/Frame.c b/developer/cc/Frame.c index 0a79b40..ed2225d 100644 --- a/developer/cc/Frame.c +++ b/developer/cc/Frame.c @@ -19,81 +19,106 @@ #include // -------------------------------------------------------------------------------- -// enum for frame types +// instance typedef enum { FRAME_TYPE_LOCAL - ,FRAME_TYPE_DRM + ,FRAME_TYPE_EXTERNAL // external data (e.g., DRM) } FrameType; -// -------------------------------------------------------------------------------- -// instance state - -typedef struct{ +typedef struct { uint32_t width; uint32_t height; - PixelRGBA *data; // Pointer to pixel data (local or DRM-mapped buffer) - FrameType type; // Frame type: local or DRM - int fd; // File descriptor for DRM (only relevant for DRM frames) - uint32_t drm_fb_id; // DRM framebuffer ID (only relevant for DRM frames) + PixelRGBA *data; // Pointer to pixel data (local or external) + void *meta_data; // Backend-specific metadata (e.g., DRM, file, etc.) + FrameType type; // Frame type: local or external } FrameRGBA; +// replace this with a general destructure method, add a structure method. +void FrameRGBA·dimensions(FrameRGBA *frame ,uint32_t *width ,uint32_t *height){ + if(!frame){ + *width = 0; + *height = 0; + return; + } + *width = frame->width; + *height = frame->height; +} + // -------------------------------------------------------------------------------- // interface -// Allocate a local frame (in system memory) -FrameRGBA *FrameRGBA·alloc_local(int width ,int height){ - if(width == 0 || height == 0){ - fprintf(stderr ,"FrameRGBA·alloc_local:: invalid dimensions\n"); - return NULL; - } - +FrameRGBA *FrameRGBA·alloc(int width, int height, void *meta_data) { FrameRGBA *frame = malloc(sizeof(FrameRGBA)); - if(!frame){ - fprintf(stderr ,"FrameRGBA·alloc_local:: failed to allocate frame\n"); - return NULL; - } - + if (!frame) return NULL; + frame->width = width; frame->height = height; - frame->data = malloc(width * height * sizeof(PixelRGBA)); - if(!frame->data){ - fprintf(stderr ,"FrameRGBA·alloc_local:: failed to allocate pixel data\n"); - free(frame); - return NULL; - } - + frame->data = malloc(width * height * sizeof(PixelRGBA)); // Allocate pixel buffer + frame->meta_data = meta_data; // Store metadata (e.g., backend-specific info) frame->type = FRAME_TYPE_LOCAL; - frame->fd = -1; - frame->drm_fb_id = 0; + return frame; } -// Allocate a frame from DRM -FrameRGBA *FrameRGBA·alloc_capture_drm(int fd ,uint32_t width ,uint32_t height ,uint32_t buffer_id){ - if(width == 0 || height == 0){ - fprintf(stderr ,"FrameRGBA·alloc_capture_drm:: invalid dimensions\n"); - return NULL; - } +FrameRGBA *FrameRGBA·alloc_external_data(int width, int height, void *meta_data, PixelRGBA *data) { + FrameRGBA *frame = malloc(sizeof(FrameRGBA)); + if (!frame) return NULL; + + frame->width = width; + frame->height = height; + frame->data = data; // Use the provided external buffer + frame->meta_data = meta_data; + frame->type = FRAME_TYPE_EXTERNAL; + + return frame; +} + +#include +#include +FrameRGBA *FrameRGBA·alloc_capture_drm(int fd ,int width ,int height ,int buffer_id) { FrameRGBA *frame = malloc(sizeof(FrameRGBA)); - if(!frame){ - fprintf(stderr ,"FrameRGBA·alloc_capture_drm:: failed to allocate frame\n"); + if( !frame ){ + perror("Failed to allocate FrameRGBA"); return NULL; } frame->width = width; frame->height = height; - frame->fd = fd; - frame->data = mmap(NULL, width * height * sizeof(PixelRGBA), PROT_READ | PROT_WRITE, MAP_SHARED, fd, buffer_id); - if(frame->data == MAP_FAILED){ - fprintf(stderr ,"FrameRGBA·alloc_capture_drm:: failed to mmap framebuffer\n"); + + // Use drmModeGetFB2 for framebuffer access + drmModeFB2 *fb = drmModeGetFB2(fd, buffer_id); + if( !fb ){ + perror("Failed to get framebuffer details (drmModeGetFB2)"); + free(frame); + return NULL; + } + + // Check size based on pitches and height + size_t buffer_size = fb->height * fb->pitches[0]; + size_t buffer_size2 = width * height * 4; + off_t offset = fb->offsets[0]; + + // Log details for debugging + fprintf(stderr, "FrameRGBA·alloc_capture_drm:: Buffer size: %zu\n", buffer_size); + fprintf(stderr, "FrameRGBA·alloc_capture_drm:: Buffer size2: %zu\n", buffer_size2); + fprintf(stderr, "FrameRGBA·alloc_capture_drm:: Buffer size: 0x%xu\n", buffer_size); + fprintf(stderr, "FrameRGBA·alloc_capture_drm:: Pitch: 0x%xu\n", fb->pitches[0]); + fprintf(stderr, "FrameRGBA·alloc_capture_drm:: Offset: %ld\n", (long)offset); + fprintf(stderr, "Attempting mmap with fd: %d, size: %zu, offset: %ld\n", fd, buffer_size, (long)offset); + + + // Map the framebuffer + frame->data = mmap(NULL, buffer_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, offset); + if( frame->data == MAP_FAILED ){ + perror("FrameRGBA·alloc_capture_drm:: mmap failed"); + drmModeFreeFB2(fb); free(frame); return NULL; } - frame->type = FRAME_TYPE_DRM; - frame->drm_fb_id = buffer_id; + drmModeFreeFB2(fb); return frame; } @@ -111,6 +136,7 @@ void FrameRGBA·dealloc(FrameRGBA **frame){ *frame = NULL; } + // Method to send a frame to the display int FrameRGBA·display(FrameRGBA *frame ,int fd ,uint32_t crtc_id ,uint32_t connector_id){ if(frame->type != FRAME_TYPE_DRM){ @@ -144,17 +170,6 @@ void FrameRGBA·copy(FrameRGBA *from_frame ,FrameRGBA **to_frame_arg){ memcpy(to_frame->data, from_frame->data, width * height * sizeof(PixelRGBA)); } -// Get frame dimensions -void FrameRGBA·dimensions(FrameRGBA *frame ,uint32_t *width ,uint32_t *height){ - if(!frame){ - *width = 0; - *height = 0; - return; - } - *width = frame->width; - *height = frame->height; -} - // if i and j walk out of frame returns NULL PixelRGBA *FrameRGBA·access(FrameRGBA *from_frame ,uint32_t i ,uint32_t j){ if(!from_frame) return NULL; @@ -242,16 +257,6 @@ void FrameRGBA·fill(FrameRGBA *to_frame ,PixelRGBA *fill_px){ FrameRGBA·every(to_frame ,fill_f ,fill_px); } -void FrameRGBA·fill_black(FrameRGBA *to_frame){ - if(!to_frame) return; - FrameRGBA·fill(to_frame ,&black); -} - -void FrameRGBA·fill_white(FrameRGBA *to_frame){ - if(!to_frame) return; - FrameRGBA·fill(to_frame ,&white); -} - void fill_random_f(FrameRGBA *frame ,PixelRGBA *px ,void *arg){ *px = PixelRGBA·random(); } diff --git a/developer/cc/drm_dumb_test b/developer/cc/drm_dumb_test new file mode 100755 index 0000000..f525e83 Binary files /dev/null and b/developer/cc/drm_dumb_test differ diff --git a/developer/cc/drm_dumb_test.c b/developer/cc/drm_dumb_test.c new file mode 100644 index 0000000..88639fd --- /dev/null +++ b/developer/cc/drm_dumb_test.c @@ -0,0 +1,60 @@ +// gcc -I/usr/include/libdrm drm_dumb_test.c -o drm_dumb_test -ldrm +// sudo ./drm_dumb_test + +#include +#include +#include +#include +#include +#include +#include +#include + +int main() { + int fd = open("/dev/dri/card2", O_RDWR | O_CLOEXEC); // Open the DRM device + if (fd < 0) { + perror("Failed to open DRM device"); + return -1; + } + + // Create a dumb buffer + struct drm_mode_create_dumb create_dumb = {0}; + create_dumb.width = 1920; + create_dumb.height = 1080; + create_dumb.bpp = 32; // 32 bits per pixel + + if (drmIoctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_dumb) < 0) { + perror("DRM_IOCTL_MODE_CREATE_DUMB failed"); + close(fd); + return -1; + } + + // Map the dumb buffer + struct drm_mode_map_dumb map_dumb = {0}; + map_dumb.handle = create_dumb.handle; + + if (drmIoctl(fd, DRM_IOCTL_MODE_MAP_DUMB, &map_dumb) < 0) { + perror("DRM_IOCTL_MODE_MAP_DUMB failed"); + close(fd); + return -1; + } + + size_t buffer_size = create_dumb.size; + void* buffer = mmap(NULL, buffer_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, map_dumb.offset); + if (buffer == MAP_FAILED) { + perror("mmap failed for dumb buffer"); + close(fd); + return -1; + } + + printf("Dumb buffer created and mapped successfully. Size: %zu bytes\n", buffer_size); + + // Clean up + munmap(buffer, buffer_size); + struct drm_mode_destroy_dumb destroy_dumb = {0}; + destroy_dumb.handle = create_dumb.handle; + drmIoctl(fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_dumb); + + close(fd); + return 0; +} diff --git a/developer/cc/echo_frames b/developer/cc/echo_frames new file mode 100755 index 0000000..2afb9ca Binary files /dev/null and b/developer/cc/echo_frames differ diff --git a/developer/cc/echo_frames.c b/developer/cc/echo_frames.c index 9918322..eecc130 100644 --- a/developer/cc/echo_frames.c +++ b/developer/cc/echo_frames.c @@ -1,40 +1,107 @@ // gcc -I/usr/include/libdrm echo_frames.c -o echo_frames -ldrm -// ./drm_info - - +// sudo ./echo_frames /* Echos frames. -Proof of principles: grabs frame, does nothing to it, then displays it, in a loop. - +Proof of principle: grabs frame, does nothing to it, then displays it, in a loop. */ +#include // For printf, fprintf, perror +#include // For malloc, free, NULL +#include // For open +#include // For close +#include // For memcpy +#include // For timing the loop +#include // For DRM functions +#include // For DRM Mode resources +#include // For mmap, munmap, PROT_READ, PROT_WRITE, MAP_SHARED, MAP_FAILED #include "Pixel.c" #include "Frame.c" -#include // For timing the loop int main() { - int fd = open("/dev/dri/card0", O_RDWR | O_CLOEXEC); // Open the DRM device - if(fd < 0){ + // Open the DRM device + int fd = open("/dev/dri/card2" ,O_RDWR | O_CLOEXEC); + if( fd < 0 ){ perror("Failed to open DRM device"); return -1; } - // Allocate a DRM captured frame - FrameRGBA *drm_frame = FrameRGBA·alloc_capture_drm(fd, 1920, 1080, 0); // Replace 0 with actual buffer ID - if(!drm_frame){ - fprintf(stderr, "Failed to allocate DRM frame\n"); + // Get DRM resources + drmModeRes *resources = drmModeGetResources(fd); + if( !resources ){ + perror("drmModeGetResources failed"); + close(fd); + return -1; + } + + // Find a connected connector + drmModeConnector *connector = NULL; + for( int i = 0; i < resources->count_connectors; i++ ){ + connector = drmModeGetConnector(fd ,resources->connectors[i]); + if( connector->connection == DRM_MODE_CONNECTED ){ + break; + } + drmModeFreeConnector(connector); + } + + if( !connector || connector->connection != DRM_MODE_CONNECTED ){ + fprintf(stderr ,"No connected connector found\n"); + drmModeFreeResources(resources); + close(fd); + return -1; + } + + // Get encoder and CRTC + drmModeEncoder *encoder = drmModeGetEncoder(fd ,connector->encoder_id); + if( !encoder ){ + perror("drmModeGetEncoder failed"); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); + close(fd); + return -1; + } + + drmModeCrtc *crtc = drmModeGetCrtc(fd ,encoder->crtc_id); + if( !crtc ){ + perror("drmModeGetCrtc failed"); + drmModeFreeEncoder(encoder); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); + close(fd); + return -1; + } + + // Extract the framebuffer ID and resolution from the CRTC + int buffer_id = crtc->buffer_id; + int width = crtc->width; + int height = crtc->height; + + printf("Framebuffer ID: %d\n" ,buffer_id); + printf("Resolution: %dx%d\n" ,width ,height); + + // Allocate a DRM captured frame using the correct framebuffer ID + FrameRGBA *drm_frame = FrameRGBA·alloc_capture_drm(fd ,width ,height ,buffer_id); + if( !drm_frame ){ + fprintf(stderr ,"Failed to allocate DRM frame\n"); + drmModeFreeCrtc(crtc); + drmModeFreeEncoder(encoder); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); close(fd); return -1; } // Allocate a local frame for copying - FrameRGBA *local_frame = FrameRGBA·alloc_local(1920, 1080); - if(!local_frame){ - fprintf(stderr, "Failed to allocate local frame\n"); + FrameRGBA *local_frame = FrameRGBA·alloc_local(width ,height); + if( !local_frame ){ + fprintf(stderr ,"Failed to allocate local frame\n"); FrameRGBA·dealloc(&drm_frame); + drmModeFreeCrtc(crtc); + drmModeFreeEncoder(encoder); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); close(fd); return -1; } @@ -43,15 +110,19 @@ int main() { time_t start_time = time(NULL); // Loop for 5 seconds - while(time(NULL) - start_time < 5){ + while( time(NULL) - start_time < 5 ){ // Capture from the DRM frame and copy to the local frame - FrameRGBA·copy(drm_frame, &local_frame); + FrameRGBA·copy(drm_frame ,&local_frame); // Display the local frame (for simplicity, we use the DRM frame display method) - if(FrameRGBA·display(local_frame, fd, 0, 0) < 0){ // Replace with proper crtc and connector IDs - fprintf(stderr, "Failed to display local frame\n"); + if( FrameRGBA·display(local_frame ,fd ,0 ,0) < 0 ){ // Replace with proper crtc and connector IDs + fprintf(stderr ,"Failed to display local frame\n"); FrameRGBA·dealloc(&drm_frame); FrameRGBA·dealloc(&local_frame); + drmModeFreeCrtc(crtc); + drmModeFreeEncoder(encoder); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); close(fd); return -1; } @@ -60,6 +131,10 @@ int main() { // Clean up and close DRM device FrameRGBA·dealloc(&drm_frame); FrameRGBA·dealloc(&local_frame); + drmModeFreeCrtc(crtc); + drmModeFreeEncoder(encoder); + drmModeFreeConnector(connector); + drmModeFreeResources(resources); close(fd); return 0; diff --git a/developer/cc/echo_frames_2024-09-18_1345.c b/developer/cc/echo_frames_2024-09-18_1345.c new file mode 100644 index 0000000..dcea910 --- /dev/null +++ b/developer/cc/echo_frames_2024-09-18_1345.c @@ -0,0 +1,76 @@ +// gcc -I/usr/include/libdrm echo_frames.c -o echo_frames -ldrm +// sudo ./echo_frames + +/* +Echos frames. + +Proof of principle: grabs frame, does nothing to it, then displays it, in a loop. +*/ + +#include // For printf, fprintf, perror +#include // For malloc, free, NULL +#include // For open +#include // For close +#include // For memcpy +#include // For timing the loop +#include // For DRM functions +#include // For DRM Mode resources +#include // For mmap, munmap, PROT_READ, PROT_WRITE, MAP_SHARED, MAP_FAILED + +#include "Pixel.c" +#include "Frame.c" + +int main() { + int fd = open("/dev/dri/card2", O_RDWR | O_CLOEXEC); // Open the DRM device + if(fd < 0){ + perror("Failed to open DRM device"); + return -1; + } + + // Framebuffer ID: 108, resolution: 3840x2400 + int buffer_id = 108; + int width = 3840; + int height = 2400; + + // Allocate a DRM captured frame using the correct framebuffer ID + FrameRGBA *drm_frame = FrameRGBA·alloc_capture_drm(fd, width, height, buffer_id); + if(!drm_frame){ + fprintf(stderr, "Failed to allocate DRM frame\n"); + close(fd); + return -1; + } + + // Allocate a local frame for copying + FrameRGBA *local_frame = FrameRGBA·alloc_local(1920, 1080); + if(!local_frame){ + fprintf(stderr, "Failed to allocate local frame\n"); + FrameRGBA·dealloc(&drm_frame); + close(fd); + return -1; + } + + // Get current time for the 5-second loop duration + time_t start_time = time(NULL); + + // Loop for 5 seconds + while(time(NULL) - start_time < 5){ + // Capture from the DRM frame and copy to the local frame + FrameRGBA·copy(drm_frame, &local_frame); + + // Display the local frame (for simplicity, we use the DRM frame display method) + if(FrameRGBA·display(local_frame, fd, 0, 0) < 0){ // Replace with proper crtc and connector IDs + fprintf(stderr, "Failed to display local frame\n"); + FrameRGBA·dealloc(&drm_frame); + FrameRGBA·dealloc(&local_frame); + close(fd); + return -1; + } + } + + // Clean up and close DRM device + FrameRGBA·dealloc(&drm_frame); + FrameRGBA·dealloc(&local_frame); + close(fd); + + return 0; +} diff --git a/developer/cc/temp.txt b/developer/cc/temp.txt new file mode 100644 index 0000000..31f426d --- /dev/null +++ b/developer/cc/temp.txt @@ -0,0 +1,5199 @@ +Sep 17 17:49:58 fedora kernel: Linux version 6.10.9-200.fc40.x86_64 (mockbuild@eed293a01169418eb17e82cca872df8c) (gcc (GCC) 14.2.1 20240801 (Red Hat 14.2.1-1), GNU ld version 2.41-37.fc40) #1 SMP PREEMPT_DYNAMIC Sun Sep 8 17:23:55 UTC 2024 +Sep 17 17:49:58 fedora kernel: Command line: BOOT_IMAGE=(hd1,gpt2)/vmlinuz-6.10.9-200.fc40.x86_64 root=UUID=b3de6112-9a11-4d4e-91c9-4c7b11e7bfba ro rootflags=subvol=root rhgb quiet +Sep 17 17:49:58 fedora kernel: BIOS-provided physical RAM map: +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009cfefff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x0000000009cff000-0x000000000a000fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x000000000a001000-0x000000000a1fffff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20efff] ACPI NVS +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x000000000a20f000-0x00000000bacf8fff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bacf9000-0x00000000bacf9fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bacfa000-0x00000000bb1c3fff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bb1c4000-0x00000000bc745fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bc746000-0x00000000bc7aafff] ACPI data +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bc7ab000-0x00000000bc962fff] ACPI NVS +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bc963000-0x00000000bd1fefff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000bd1ff000-0x00000000bdffffff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000be000000-0x00000000bfffffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fdffffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fedc4000-0x00000000fedc9fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fedcc000-0x00000000fedcefff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000fedd5000-0x00000000fedd5fff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041e2fffff] usable +Sep 17 17:49:58 fedora kernel: BIOS-e820: [mem 0x000000041e300000-0x000000043fffffff] reserved +Sep 17 17:49:58 fedora kernel: NX (Execute Disable) protection: active +Sep 17 17:49:58 fedora kernel: APIC: Static calls initialized +Sep 17 17:49:58 fedora kernel: e820: update [mem 0xb7512018-0xb753a257] usable ==> usable +Sep 17 17:49:58 fedora kernel: e820: update [mem 0xb7504018-0xb7511857] usable ==> usable +Sep 17 17:49:58 fedora kernel: extended physical RAM map: +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000009cfefff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x0000000009cff000-0x000000000a000fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x000000000a001000-0x000000000a1fffff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x000000000a200000-0x000000000a20efff] ACPI NVS +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x000000000a20f000-0x00000000b7504017] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000b7504018-0x00000000b7511857] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000b7511858-0x00000000b7512017] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000b7512018-0x00000000b753a257] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000b753a258-0x00000000bacf8fff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bacf9000-0x00000000bacf9fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bacfa000-0x00000000bb1c3fff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bb1c4000-0x00000000bc745fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bc746000-0x00000000bc7aafff] ACPI data +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bc7ab000-0x00000000bc962fff] ACPI NVS +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bc963000-0x00000000bd1fefff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000bd1ff000-0x00000000bdffffff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000be000000-0x00000000bfffffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fdffffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fedc4000-0x00000000fedc9fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fedcc000-0x00000000fedcefff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000fedd5000-0x00000000fedd5fff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x0000000100000000-0x000000041e2fffff] usable +Sep 17 17:49:58 fedora kernel: reserve setup_data: [mem 0x000000041e300000-0x000000043fffffff] reserved +Sep 17 17:49:58 fedora kernel: efi: EFI v2.7 by American Megatrends +Sep 17 17:49:58 fedora kernel: efi: ACPI=0xbc7aa000 ACPI 2.0=0xbc7aa014 TPMFinalLog=0xbc918000 SMBIOS=0xbcfed000 SMBIOS 3.0=0xbcfec000 MEMATTR=0xb8658018 ESRT=0xba308318 MOKvar=0xbd03e000 RNG=0xbc759018 TPMEventLog=0xb753b018 +Sep 17 17:49:58 fedora kernel: random: crng init done +Sep 17 17:49:58 fedora kernel: efi: Remove mem68: MMIO range=[0xf0000000-0xf7ffffff] (128MB) from e820 map +Sep 17 17:49:58 fedora kernel: e820: remove [mem 0xf0000000-0xf7ffffff] reserved +Sep 17 17:49:58 fedora kernel: efi: Remove mem69: MMIO range=[0xfd000000-0xfdffffff] (16MB) from e820 map +Sep 17 17:49:58 fedora kernel: e820: remove [mem 0xfd000000-0xfdffffff] reserved +Sep 17 17:49:58 fedora kernel: efi: Remove mem70: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map +Sep 17 17:49:58 fedora kernel: e820: remove [mem 0xfeb80000-0xfec01fff] reserved +Sep 17 17:49:58 fedora kernel: efi: Not removing mem71: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem72: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem73: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem74: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem75: MMIO range=[0xfedc4000-0xfedc9fff] (24KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem76: MMIO range=[0xfedcc000-0xfedcefff] (12KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Not removing mem77: MMIO range=[0xfedd5000-0xfedd5fff] (4KB) from e820 map +Sep 17 17:49:58 fedora kernel: efi: Remove mem78: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map +Sep 17 17:49:58 fedora kernel: e820: remove [mem 0xff000000-0xffffffff] reserved +Sep 17 17:49:58 fedora kernel: secureboot: Secure boot enabled +Sep 17 17:49:58 fedora kernel: Kernel is locked down from EFI Secure Boot mode; see man kernel_lockdown.7 +Sep 17 17:49:58 fedora kernel: SMBIOS 3.3.0 present. +Sep 17 17:49:58 fedora kernel: DMI: ASUSTeK COMPUTER INC. Vivobook_ASUSLaptop M7600QC_M7600QC/M7600QC, BIOS M7600QC.312 05/29/2023 +Sep 17 17:49:58 fedora kernel: DMI: Memory slots populated: 2/2 +Sep 17 17:49:58 fedora kernel: tsc: Fast TSC calibration using PIT +Sep 17 17:49:58 fedora kernel: tsc: Detected 3193.961 MHz processor +Sep 17 17:49:58 fedora kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved +Sep 17 17:49:58 fedora kernel: e820: remove [mem 0x000a0000-0x000fffff] usable +Sep 17 17:49:58 fedora kernel: last_pfn = 0x41e300 max_arch_pfn = 0x400000000 +Sep 17 17:49:58 fedora kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 20), built from 9 variable MTRRs +Sep 17 17:49:58 fedora kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT +Sep 17 17:49:58 fedora kernel: e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved +Sep 17 17:49:58 fedora kernel: last_pfn = 0xbe000 max_arch_pfn = 0x400000000 +Sep 17 17:49:58 fedora kernel: esrt: Reserving ESRT space from 0x00000000ba308318 to 0x00000000ba308350. +Sep 17 17:49:58 fedora kernel: e820: update [mem 0xba308000-0xba308fff] usable ==> reserved +Sep 17 17:49:58 fedora kernel: Using GB pages for direct mapping +Sep 17 17:49:58 fedora kernel: secureboot: Secure boot enabled +Sep 17 17:49:58 fedora kernel: RAMDISK: [mem 0xb1045000-0xb6c1afff] +Sep 17 17:49:58 fedora kernel: ACPI: Early table checksum verification disabled +Sep 17 17:49:58 fedora kernel: ACPI: RSDP 0x00000000BC7AA014 000024 (v02 _ASUS_) +Sep 17 17:49:58 fedora kernel: ACPI: XSDT 0x00000000BC7A9728 000114 (v01 _ASUS_ Notebook 01072009 AMI 01000013) +Sep 17 17:49:58 fedora kernel: ACPI: FACP 0x00000000BC79A000 000114 (v06 _ASUS_ Notebook 01072009 AMI 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: DSDT 0x00000000BC78D000 00C73B (v02 _ASUS_ Notebook 01072009 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: FACS 0x00000000BC916000 000040 +Sep 17 17:49:58 fedora kernel: ACPI: MSDM 0x00000000BC7A8000 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC7A0000 0072B0 (v02 AMD AmdTable 00000002 MSFT 04000000) +Sep 17 17:49:58 fedora kernel: ACPI: IVRS 0x00000000BC79F000 0001A4 (v02 AMD AmdTable 00000001 AMD 00000000) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC79B000 003A21 (v01 AMD AMD AOD 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: FIDT 0x00000000BC78C000 00009C (v01 _ASUS_ Notebook 01072009 AMI 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: ECDT 0x00000000BC78B000 0000C1 (v01 _ASUS_ Notebook 01072009 AMI. 00000005) +Sep 17 17:49:58 fedora kernel: ACPI: MCFG 0x00000000BC78A000 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: HPET 0x00000000BC789000 000038 (v01 _ASUS_ Notebook 01072009 AMI 00000005) +Sep 17 17:49:58 fedora kernel: ACPI: FPDT 0x00000000BC788000 000044 (v01 _ASUS_ A M I 01072009 AMI 01000013) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC782000 005354 (v02 AMD AmdTable 00000001 AMD 00000001) +Sep 17 17:49:58 fedora kernel: ACPI: CRAT 0x00000000BC781000 000EE8 (v01 AMD AmdTable 00000001 AMD 00000001) +Sep 17 17:49:58 fedora kernel: ACPI: CDIT 0x00000000BC780000 000029 (v01 AMD AmdTable 00000001 AMD 00000001) +Sep 17 17:49:58 fedora kernel: ACPI: VFCT 0x00000000BC772000 00D884 (v01 _ASUS_ Notebook 00000001 AMD 31504F47) +Sep 17 17:49:58 fedora kernel: ACPI: BGRT 0x00000000BC771000 000038 (v01 _ASUS_ Notebook 01072009 AMI 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: TPM2 0x00000000BC770000 00004C (v04 _ASUS_ Notebook 00000001 AMI 00000000) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC76F000 000149 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC76D000 00148E (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC76B000 00151E (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC76A000 000024 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC766000 003952 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC765000 0007B2 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC761000 00386E (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: WSMT 0x00000000BC760000 000028 (v01 _ASUS_ Notebook 01072009 AMI 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: APIC 0x00000000BC75F000 0000DE (v04 _ASUS_ Notebook 01072009 AMI 00010013) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC75E000 00008D (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC75D000 0008F0 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC75C000 000241 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC75B000 0006AA (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: SSDT 0x00000000BC75A000 0007B6 (v01 AMD AmdTable 00000001 INTL 20200717) +Sep 17 17:49:58 fedora kernel: ACPI: Reserving FACP table memory at [mem 0xbc79a000-0xbc79a113] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving DSDT table memory at [mem 0xbc78d000-0xbc79973a] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving FACS table memory at [mem 0xbc916000-0xbc91603f] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving MSDM table memory at [mem 0xbc7a8000-0xbc7a8054] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc7a0000-0xbc7a72af] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving IVRS table memory at [mem 0xbc79f000-0xbc79f1a3] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc79b000-0xbc79ea20] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving FIDT table memory at [mem 0xbc78c000-0xbc78c09b] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving ECDT table memory at [mem 0xbc78b000-0xbc78b0c0] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving MCFG table memory at [mem 0xbc78a000-0xbc78a03b] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving HPET table memory at [mem 0xbc789000-0xbc789037] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving FPDT table memory at [mem 0xbc788000-0xbc788043] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc782000-0xbc787353] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving CRAT table memory at [mem 0xbc781000-0xbc781ee7] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving CDIT table memory at [mem 0xbc780000-0xbc780028] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving VFCT table memory at [mem 0xbc772000-0xbc77f883] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving BGRT table memory at [mem 0xbc771000-0xbc771037] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving TPM2 table memory at [mem 0xbc770000-0xbc77004b] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc76f000-0xbc76f148] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc76d000-0xbc76e48d] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc76b000-0xbc76c51d] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc76a000-0xbc76a023] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc766000-0xbc769951] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc765000-0xbc7657b1] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc761000-0xbc76486d] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving WSMT table memory at [mem 0xbc760000-0xbc760027] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving APIC table memory at [mem 0xbc75f000-0xbc75f0dd] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc75e000-0xbc75e08c] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc75d000-0xbc75d8ef] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc75c000-0xbc75c240] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc75b000-0xbc75b6a9] +Sep 17 17:49:58 fedora kernel: ACPI: Reserving SSDT table memory at [mem 0xbc75a000-0xbc75a7b5] +Sep 17 17:49:58 fedora kernel: No NUMA configuration found +Sep 17 17:49:58 fedora kernel: Faking a node at [mem 0x0000000000000000-0x000000041e2fffff] +Sep 17 17:49:58 fedora kernel: NODE_DATA(0) allocated [mem 0x41e2d5000-0x41e2fffff] +Sep 17 17:49:58 fedora kernel: Zone ranges: +Sep 17 17:49:58 fedora kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] +Sep 17 17:49:58 fedora kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] +Sep 17 17:49:58 fedora kernel: Normal [mem 0x0000000100000000-0x000000041e2fffff] +Sep 17 17:49:58 fedora kernel: Device empty +Sep 17 17:49:58 fedora kernel: Movable zone start for each node +Sep 17 17:49:58 fedora kernel: Early memory node ranges +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x0000000000001000-0x000000000009ffff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x0000000000100000-0x0000000009cfefff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x000000000a001000-0x000000000a1fffff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x000000000a20f000-0x00000000bacf8fff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x00000000bacfa000-0x00000000bb1c3fff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x00000000bd1ff000-0x00000000bdffffff] +Sep 17 17:49:58 fedora kernel: node 0: [mem 0x0000000100000000-0x000000041e2fffff] +Sep 17 17:49:58 fedora kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000041e2fffff] +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA: 1 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA: 96 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA32: 770 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA32: 15 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA32: 1 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone DMA32: 8251 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone Normal: 8192 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: On node 0, zone Normal: 7424 pages in unavailable ranges +Sep 17 17:49:58 fedora kernel: ACPI: PM-Timer IO Port: 0x808 +Sep 17 17:49:58 fedora kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) +Sep 17 17:49:58 fedora kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23 +Sep 17 17:49:58 fedora kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55 +Sep 17 17:49:58 fedora kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +Sep 17 17:49:58 fedora kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) +Sep 17 17:49:58 fedora kernel: ACPI: Using ACPI (MADT) for SMP configuration information +Sep 17 17:49:58 fedora kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000 +Sep 17 17:49:58 fedora kernel: e820: update [mem 0xb7d3f000-0xb7debfff] usable ==> reserved +Sep 17 17:49:58 fedora kernel: CPU topo: Max. logical packages: 1 +Sep 17 17:49:58 fedora kernel: CPU topo: Max. logical dies: 1 +Sep 17 17:49:58 fedora kernel: CPU topo: Max. dies per package: 1 +Sep 17 17:49:58 fedora kernel: CPU topo: Max. threads per core: 2 +Sep 17 17:49:58 fedora kernel: CPU topo: Num. cores per package: 8 +Sep 17 17:49:58 fedora kernel: CPU topo: Num. threads per package: 16 +Sep 17 17:49:58 fedora kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0x09cff000-0x0a000fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20efff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xb7504000-0xb7504fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xb7511000-0xb7511fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xb7512000-0xb7512fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xb753a000-0xb753afff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xb7d3f000-0xb7debfff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xba308000-0xba308fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbacf9000-0xbacf9fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbb1c4000-0xbc745fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbc746000-0xbc7aafff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbc7ab000-0xbc962fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbc963000-0xbd1fefff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xbe000000-0xbfffffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xfec0ffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfecfffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc3fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedc4000-0xfedc9fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedca000-0xfedcbfff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedcc000-0xfedcefff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedcf000-0xfedd4fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd5000-0xfedd5fff] +Sep 17 17:49:58 fedora kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xffffffff] +Sep 17 17:49:58 fedora kernel: [mem 0xc0000000-0xfec0ffff] available for PCI devices +Sep 17 17:49:58 fedora kernel: Booting paravirtualized kernel on bare hardware +Sep 17 17:49:58 fedora kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns +Sep 17 17:49:58 fedora kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1 +Sep 17 17:49:58 fedora kernel: percpu: Embedded 87 pages/cpu s233472 r8192 d114688 u524288 +Sep 17 17:49:58 fedora kernel: pcpu-alloc: s233472 r8192 d114688 u524288 alloc=1*2097152 +Sep 17 17:49:58 fedora kernel: pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07 +Sep 17 17:49:58 fedora kernel: pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15 +Sep 17 17:49:58 fedora kernel: Kernel command line: BOOT_IMAGE=(hd1,gpt2)/vmlinuz-6.10.9-200.fc40.x86_64 root=UUID=b3de6112-9a11-4d4e-91c9-4c7b11e7bfba ro rootflags=subvol=root rhgb quiet +Sep 17 17:49:58 fedora kernel: Unknown kernel command line parameters "rhgb BOOT_IMAGE=(hd1,gpt2)/vmlinuz-6.10.9-200.fc40.x86_64", will be passed to user space. +Sep 17 17:49:58 fedora kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) +Sep 17 17:49:58 fedora kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) +Sep 17 17:49:58 fedora kernel: Fallback order for Node 0: 0 +Sep 17 17:49:58 fedora kernel: Built 1 zonelists, mobility grouping on. Total pages: 4038482 +Sep 17 17:49:58 fedora kernel: Policy zone: Normal +Sep 17 17:49:58 fedora kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off +Sep 17 17:49:58 fedora kernel: software IO TLB: area num 16. +Sep 17 17:49:58 fedora kernel: Memory: 15615476K/16153928K available (20480K kernel code, 4314K rwdata, 15300K rodata, 4724K init, 5276K bss, 538192K reserved, 0K cma-reserved) +Sep 17 17:49:58 fedora kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1 +Sep 17 17:49:58 fedora kernel: ftrace: allocating 55673 entries in 218 pages +Sep 17 17:49:58 fedora kernel: ftrace: allocated 218 pages with 5 groups +Sep 17 17:49:58 fedora kernel: Dynamic Preempt: voluntary +Sep 17 17:49:58 fedora kernel: rcu: Preemptible hierarchical RCU implementation. +Sep 17 17:49:58 fedora kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16. +Sep 17 17:49:58 fedora kernel: Trampoline variant of Tasks RCU enabled. +Sep 17 17:49:58 fedora kernel: Rude variant of Tasks RCU enabled. +Sep 17 17:49:58 fedora kernel: Tracing variant of Tasks RCU enabled. +Sep 17 17:49:58 fedora kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. +Sep 17 17:49:58 fedora kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16 +Sep 17 17:49:58 fedora kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. +Sep 17 17:49:58 fedora kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. +Sep 17 17:49:58 fedora kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1. +Sep 17 17:49:58 fedora kernel: NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16 +Sep 17 17:49:58 fedora kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention. +Sep 17 17:49:58 fedora kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____) +Sep 17 17:49:58 fedora kernel: Console: colour dummy device 80x25 +Sep 17 17:49:58 fedora kernel: printk: legacy console [tty0] enabled +Sep 17 17:49:58 fedora kernel: ACPI: Core revision 20240322 +Sep 17 17:49:58 fedora kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns +Sep 17 17:49:58 fedora kernel: APIC: Switch to symmetric I/O mode setup +Sep 17 17:49:58 fedora kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160 +Sep 17 17:49:58 fedora kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160 +Sep 17 17:49:58 fedora kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160 +Sep 17 17:49:58 fedora kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160 +Sep 17 17:49:58 fedora kernel: AMD-Vi: Using global IVHD EFR:0x206d73ef22254ade, EFR2:0x0 +Sep 17 17:49:58 fedora kernel: APIC: Switched APIC routing to: physical flat +Sep 17 17:49:58 fedora kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +Sep 17 17:49:58 fedora kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e0a011a876, max_idle_ns: 440795241200 ns +Sep 17 17:49:58 fedora kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6387.92 BogoMIPS (lpj=3193961) +Sep 17 17:49:58 fedora kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated +Sep 17 17:49:58 fedora kernel: LVT offset 1 assigned for vector 0xf9 +Sep 17 17:49:58 fedora kernel: LVT offset 2 assigned for vector 0xf4 +Sep 17 17:49:58 fedora kernel: Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256 +Sep 17 17:49:58 fedora kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0 +Sep 17 17:49:58 fedora kernel: process: using mwait in idle threads +Sep 17 17:49:58 fedora kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization +Sep 17 17:49:58 fedora kernel: Spectre V2 : Mitigation: Retpolines +Sep 17 17:49:58 fedora kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch +Sep 17 17:49:58 fedora kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT +Sep 17 17:49:58 fedora kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls +Sep 17 17:49:58 fedora kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier +Sep 17 17:49:58 fedora kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection +Sep 17 17:49:58 fedora kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl +Sep 17 17:49:58 fedora kernel: Speculative Return Stack Overflow: IBPB-extending microcode not applied! +Sep 17 17:49:58 fedora kernel: Speculative Return Stack Overflow: WARNING: See https://kernel.org/doc/html/latest/admin-guide/hw-vuln/srso.html for mitigation options. +Sep 17 17:49:58 fedora kernel: Speculative Return Stack Overflow: Vulnerable: Safe RET, no microcode +Sep 17 17:49:58 fedora kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' +Sep 17 17:49:58 fedora kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' +Sep 17 17:49:58 fedora kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' +Sep 17 17:49:58 fedora kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' +Sep 17 17:49:58 fedora kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers' +Sep 17 17:49:58 fedora kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +Sep 17 17:49:58 fedora kernel: x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8 +Sep 17 17:49:58 fedora kernel: x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16 +Sep 17 17:49:58 fedora kernel: x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format. +Sep 17 17:49:58 fedora kernel: Freeing SMP alternatives memory: 48K +Sep 17 17:49:58 fedora kernel: pid_max: default: 32768 minimum: 301 +Sep 17 17:49:58 fedora kernel: LSM: initializing lsm=lockdown,capability,yama,selinux,bpf,landlock,ima,evm +Sep 17 17:49:58 fedora kernel: Yama: becoming mindful. +Sep 17 17:49:58 fedora kernel: SELinux: Initializing. +Sep 17 17:49:58 fedora kernel: LSM support for eBPF active +Sep 17 17:49:58 fedora kernel: landlock: Up and running. +Sep 17 17:49:58 fedora kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: smpboot: CPU0: AMD Ryzen 7 5800H with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0) +Sep 17 17:49:58 fedora kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver. +Sep 17 17:49:58 fedora kernel: ... version: 0 +Sep 17 17:49:58 fedora kernel: ... bit width: 48 +Sep 17 17:49:58 fedora kernel: ... generic registers: 6 +Sep 17 17:49:58 fedora kernel: ... value mask: 0000ffffffffffff +Sep 17 17:49:58 fedora kernel: ... max period: 00007fffffffffff +Sep 17 17:49:58 fedora kernel: ... fixed-purpose events: 0 +Sep 17 17:49:58 fedora kernel: ... event mask: 000000000000003f +Sep 17 17:49:58 fedora kernel: signal: max sigframe size: 3376 +Sep 17 17:49:58 fedora kernel: rcu: Hierarchical SRCU implementation. +Sep 17 17:49:58 fedora kernel: rcu: Max phase no-delay instances is 400. +Sep 17 17:49:58 fedora kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. +Sep 17 17:49:58 fedora kernel: smp: Bringing up secondary CPUs ... +Sep 17 17:49:58 fedora kernel: smpboot: x86: Booting SMP configuration: +Sep 17 17:49:58 fedora kernel: .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #1 #3 #5 #7 #9 #11 #13 #15 +Sep 17 17:49:58 fedora kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on +Sep 17 17:49:58 fedora kernel: smp: Brought up 1 node, 16 CPUs +Sep 17 17:49:58 fedora kernel: smpboot: Total of 16 processors activated (102206.75 BogoMIPS) +Sep 17 17:49:58 fedora kernel: devtmpfs: initialized +Sep 17 17:49:58 fedora kernel: x86/mm: Memory block size: 128MB +Sep 17 17:49:58 fedora kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20efff] (61440 bytes) +Sep 17 17:49:58 fedora kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbc7ab000-0xbc962fff] (1802240 bytes) +Sep 17 17:49:58 fedora kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns +Sep 17 17:49:58 fedora kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: pinctrl core: initialized pinctrl subsystem +Sep 17 17:49:58 fedora kernel: PM: RTC time: 09:49:58, date: 2024-09-17 +Sep 17 17:49:58 fedora kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family +Sep 17 17:49:58 fedora kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations +Sep 17 17:49:58 fedora kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations +Sep 17 17:49:58 fedora kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations +Sep 17 17:49:58 fedora kernel: audit: initializing netlink subsys (disabled) +Sep 17 17:49:58 fedora kernel: audit: type=2000 audit(1726566597.162:1): state=initialized audit_enabled=0 res=1 +Sep 17 17:49:58 fedora kernel: thermal_sys: Registered thermal governor 'fair_share' +Sep 17 17:49:58 fedora kernel: thermal_sys: Registered thermal governor 'bang_bang' +Sep 17 17:49:58 fedora kernel: thermal_sys: Registered thermal governor 'step_wise' +Sep 17 17:49:58 fedora kernel: thermal_sys: Registered thermal governor 'user_space' +Sep 17 17:49:58 fedora kernel: cpuidle: using governor menu +Sep 17 17:49:58 fedora kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +Sep 17 17:49:58 fedora kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +Sep 17 17:49:58 fedora kernel: PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f] +Sep 17 17:49:58 fedora kernel: PCI: Using configuration type 1 for base access +Sep 17 17:49:58 fedora kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. +Sep 17 17:49:58 fedora kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages +Sep 17 17:49:58 fedora kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page +Sep 17 17:49:58 fedora kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages +Sep 17 17:49:58 fedora kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page +Sep 17 17:49:58 fedora kernel: Demotion targets for Node 0: null +Sep 17 17:49:58 fedora kernel: cryptd: max_cpu_qlen set to 1000 +Sep 17 17:49:58 fedora kernel: raid6: skipped pq benchmark and selected avx2x4 +Sep 17 17:49:58 fedora kernel: raid6: using avx2x2 recovery algorithm +Sep 17 17:49:58 fedora kernel: ACPI: Added _OSI(Module Device) +Sep 17 17:49:58 fedora kernel: ACPI: Added _OSI(Processor Device) +Sep 17 17:49:58 fedora kernel: ACPI: Added _OSI(3.0 _SCP Extensions) +Sep 17 17:49:58 fedora kernel: ACPI: Added _OSI(Processor Aggregator Device) +Sep 17 17:49:58 fedora kernel: ACPI: 16 ACPI AML tables successfully acquired and loaded +Sep 17 17:49:58 fedora kernel: ACPI: EC: EC started +Sep 17 17:49:58 fedora kernel: ACPI: EC: interrupt blocked +Sep 17 17:49:58 fedora kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62 +Sep 17 17:49:58 fedora kernel: ACPI: EC: Boot ECDT EC used to handle transactions +Sep 17 17:49:58 fedora kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored +Sep 17 17:49:58 fedora kernel: ACPI: _OSC evaluation for CPUs failed, trying _PDC +Sep 17 17:49:58 fedora kernel: ACPI: Interpreter enabled +Sep 17 17:49:58 fedora kernel: ACPI: PM: (supports S0 S4 S5) +Sep 17 17:49:58 fedora kernel: ACPI: Using IOAPIC for interrupt routing +Sep 17 17:49:58 fedora kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +Sep 17 17:49:58 fedora kernel: PCI: Ignoring E820 reservations for host bridge windows +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P0U0: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP17.XHC0.P3U0: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P0U1: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP17.XHC1.P3U1: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP17.XHC1.RHUB.PRT2.BTPR: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP18.SATA.P0SA: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GP18.SAT1.P0SA: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.GPP0.M237: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PRWL: New power resource +Sep 17 17:49:58 fedora kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) +Sep 17 17:49:58 fedora kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] +Sep 17 17:49:58 fedora kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC] +Sep 17 17:49:58 fedora kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability] +Sep 17 17:49:58 fedora kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration +Sep 17 17:49:58 fedora kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge +Sep 17 17:49:58 fedora kernel: PCI host bridge to bus 0000:00 +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xefff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfcffffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [mem 0x440000000-0x7fffffffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: root bus resource [bus 00-ff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: [1022:1633] type 01 class 0x060400 PCIe Root Port +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: PCI bridge to [bus 01] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [io 0xe000-0xefff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [mem 0xfb000000-0xfc0fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [mem 0x7e00000000-0x7f01ffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: [1022:1634] type 01 class 0x060400 PCIe Root Port +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: PCI bridge to [bus 02] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: bridge window [mem 0x7f20300000-0x7f204fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: [1022:1634] type 01 class 0x060400 PCIe Root Port +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: PCI bridge to [bus 03] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: bridge window [mem 0xfc700000-0xfc7fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: PCI bridge to [bus 04] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [io 0xd000-0xdfff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [mem 0xfc200000-0xfc5fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [mem 0x7f10000000-0x7f201fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: [1022:1635] type 01 class 0x060400 PCIe Root Port +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: PCI bridge to [bus 05] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: bridge window [mem 0xfc600000-0xfc6fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.0: [1022:166a] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.1: [1022:166b] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.2: [1022:166c] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.3: [1022:166d] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.4: [1022:166e] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.5: [1022:166f] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.6: [1022:1670] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.7: [1022:1671] type 00 class 0x060000 conventional PCI endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: [10de:25a2] type 00 class 0x030200 PCIe Legacy Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: BAR 0 [mem 0xfb000000-0xfbffffff] +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: BAR 1 [mem 0x7e00000000-0x7effffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: BAR 3 [mem 0x7f00000000-0x7f01ffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: BAR 5 [io 0xe000-0xe07f] +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: ROM [mem 0xfc000000-0xfc07ffff pref] +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: PME# supported from D0 D3hot +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: 63.008 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x8 link at 0000:00:01.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: PCI bridge to [bus 01] +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: [14c3:7961] type 00 class 0x028000 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: BAR 0 [mem 0x7f20300000-0x7f203fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: BAR 2 [mem 0x7f20400000-0x7f20403fff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: BAR 4 [mem 0x7f20404000-0x7f20404fff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: supports D1 D2 +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: PCI bridge to [bus 02] +Sep 17 17:49:58 fedora kernel: pci 0000:03:00.0: [1c5c:174a] type 00 class 0x010802 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:03:00.0: BAR 0 [mem 0xfc700000-0xfc703fff 64bit] +Sep 17 17:49:58 fedora kernel: pci 0000:03:00.0: BAR 2 [mem 0xfc705000-0xfc705fff] +Sep 17 17:49:58 fedora kernel: pci 0000:03:00.0: BAR 3 [mem 0xfc704000-0xfc704fff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: PCI bridge to [bus 03] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: [1002:1638] type 00 class 0x030000 PCIe Legacy Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: BAR 0 [mem 0x7f10000000-0x7f1fffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: BAR 2 [mem 0x7f20000000-0x7f201fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: BAR 4 [io 0xd000-0xd0ff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: BAR 5 [mem 0xfc500000-0xfc57ffff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: BAR 0 [mem 0xfc5c8000-0xfc5cbfff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.2: BAR 2 [mem 0xfc400000-0xfc4fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.2: BAR 5 [mem 0xfc5cc000-0xfc5cdfff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.2: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: BAR 0 [mem 0xfc300000-0xfc3fffff 64bit] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: BAR 0 [mem 0xfc200000-0xfc2fffff 64bit] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.5: BAR 0 [mem 0xfc580000-0xfc5bffff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.5: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.5: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.6: BAR 0 [mem 0xfc5c0000-0xfc5c7fff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.6: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.6: PME# supported from D0 D3hot D3cold +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: PCI bridge to [bus 04] +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.0: BAR 5 [mem 0xfc601000-0xfc6017ff] +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.0: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.1: BAR 5 [mem 0xfc600000-0xfc6007ff] +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.1: enabling Extended Tags +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: PCI bridge to [bus 05] +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0 +Sep 17 17:49:58 fedora kernel: Low-power S0 idle used by default for system suspend +Sep 17 17:49:58 fedora kernel: ACPI: EC: interrupt unblocked +Sep 17 17:49:58 fedora kernel: ACPI: EC: event unblocked +Sep 17 17:49:58 fedora kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62 +Sep 17 17:49:58 fedora kernel: ACPI: EC: GPE=0x3 +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot ECDT EC initialization complete +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events +Sep 17 17:49:58 fedora kernel: iommu: Default domain type: Translated +Sep 17 17:49:58 fedora kernel: iommu: DMA domain TLB invalidation policy: lazy mode +Sep 17 17:49:58 fedora kernel: SCSI subsystem initialized +Sep 17 17:49:58 fedora kernel: libata version 3.00 loaded. +Sep 17 17:49:58 fedora kernel: ACPI: bus type USB registered +Sep 17 17:49:58 fedora kernel: usbcore: registered new interface driver usbfs +Sep 17 17:49:58 fedora kernel: usbcore: registered new interface driver hub +Sep 17 17:49:58 fedora kernel: usbcore: registered new device driver usb +Sep 17 17:49:58 fedora kernel: pps_core: LinuxPPS API ver. 1 registered +Sep 17 17:49:58 fedora kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti +Sep 17 17:49:58 fedora kernel: PTP clock support registered +Sep 17 17:49:58 fedora kernel: EDAC MC: Ver: 3.0.0 +Sep 17 17:49:58 fedora kernel: efivars: Registered efivars operations +Sep 17 17:49:58 fedora kernel: NetLabel: Initializing +Sep 17 17:49:58 fedora kernel: NetLabel: domain hash size = 128 +Sep 17 17:49:58 fedora kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO +Sep 17 17:49:58 fedora kernel: NetLabel: unlabeled traffic allowed by default +Sep 17 17:49:58 fedora kernel: mctp: management component transport protocol core +Sep 17 17:49:58 fedora kernel: NET: Registered PF_MCTP protocol family +Sep 17 17:49:58 fedora kernel: PCI: Using ACPI for IRQ routing +Sep 17 17:49:58 fedora kernel: PCI: pci_cache_line_size set to 64 bytes +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0x09cff000-0x0bffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xb7504018-0xb7ffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xb7512018-0xb7ffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xb7d3f000-0xb7ffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xba308000-0xbbffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xbacf9000-0xbbffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xbb1c4000-0xbbffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff] +Sep 17 17:49:58 fedora kernel: e820: reserve RAM buffer [mem 0x41e300000-0x41fffffff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: vgaarb: setting as boot VGA device +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: vgaarb: bridge control possible +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none +Sep 17 17:49:58 fedora kernel: vgaarb: loaded +Sep 17 17:49:58 fedora kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 +Sep 17 17:49:58 fedora kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter +Sep 17 17:49:58 fedora kernel: clocksource: Switched to clocksource tsc-early +Sep 17 17:49:58 fedora kernel: VFS: Disk quotas dquot_6.6.0 +Sep 17 17:49:58 fedora kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +Sep 17 17:49:58 fedora kernel: pnp: PnP ACPI init +Sep 17 17:49:58 fedora kernel: system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x04d0-0x04d1] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x040b] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x04d6] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c00-0x0c01] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c14] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c50-0x0c51] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c52] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c6c] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0c6f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0cd8-0x0cdf] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0800-0x089f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0b00-0x0b0f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0b20-0x0b3f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0900-0x090f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [io 0x0910-0x091f] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved +Sep 17 17:49:58 fedora kernel: system 00:03: [mem 0xff000000-0xffffffff] has been reserved +Sep 17 17:49:58 fedora kernel: pnp: PnP ACPI: found 4 devices +Sep 17 17:49:58 fedora kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +Sep 17 17:49:58 fedora kernel: NET: Registered PF_INET protocol family +Sep 17 17:49:58 fedora kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) +Sep 17 17:49:58 fedora kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear) +Sep 17 17:49:58 fedora kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear) +Sep 17 17:49:58 fedora kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear) +Sep 17 17:49:58 fedora kernel: TCP: Hash tables configured (established 131072 bind 65536) +Sep 17 17:49:58 fedora kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear) +Sep 17 17:49:58 fedora kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear) +Sep 17 17:49:58 fedora kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family +Sep 17 17:49:58 fedora kernel: NET: Registered PF_XDP protocol family +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: PCI bridge to [bus 01] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [io 0xe000-0xefff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [mem 0xfb000000-0xfc0fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: bridge window [mem 0x7e00000000-0x7f01ffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: PCI bridge to [bus 02] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: bridge window [mem 0x7f20300000-0x7f204fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: PCI bridge to [bus 03] +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: bridge window [mem 0xfc700000-0xfc7fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: PCI bridge to [bus 04] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [io 0xd000-0xdfff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [mem 0xfc200000-0xfc5fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: bridge window [mem 0x7f10000000-0x7f201fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: PCI bridge to [bus 05] +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: bridge window [mem 0xfc600000-0xfc6fffff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xefff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfcffffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:00: resource 10 [mem 0x440000000-0x7fffffffff window] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:01: resource 0 [io 0xe000-0xefff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:01: resource 1 [mem 0xfb000000-0xfc0fffff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:01: resource 2 [mem 0x7e00000000-0x7f01ffffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:02: resource 2 [mem 0x7f20300000-0x7f204fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:03: resource 1 [mem 0xfc700000-0xfc7fffff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:04: resource 0 [io 0xd000-0xdfff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:04: resource 1 [mem 0xfc200000-0xfc5fffff] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:04: resource 2 [mem 0x7f10000000-0x7f201fffff 64bit pref] +Sep 17 17:49:58 fedora kernel: pci_bus 0000:05: resource 1 [mem 0xfc600000-0xfc6fffff] +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: D0 power state depends on 0000:04:00.0 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec +Sep 17 17:49:58 fedora kernel: PCI: CLS 64 bytes, default 64 +Sep 17 17:49:58 fedora kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported +Sep 17 17:49:58 fedora kernel: Trying to unpack rootfs image as initramfs... +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.0: Adding to iommu group 0 +Sep 17 17:49:58 fedora kernel: pci 0000:00:01.1: Adding to iommu group 1 +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.0: Adding to iommu group 2 +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.2: Adding to iommu group 3 +Sep 17 17:49:58 fedora kernel: pci 0000:00:02.4: Adding to iommu group 4 +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.0: Adding to iommu group 5 +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.1: Adding to iommu group 6 +Sep 17 17:49:58 fedora kernel: pci 0000:00:08.2: Adding to iommu group 7 +Sep 17 17:49:58 fedora kernel: pci 0000:00:14.0: Adding to iommu group 8 +Sep 17 17:49:58 fedora kernel: pci 0000:00:14.3: Adding to iommu group 8 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.0: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.1: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.2: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.3: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.4: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.5: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.6: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:00:18.7: Adding to iommu group 9 +Sep 17 17:49:58 fedora kernel: pci 0000:01:00.0: Adding to iommu group 10 +Sep 17 17:49:58 fedora kernel: pci 0000:02:00.0: Adding to iommu group 11 +Sep 17 17:49:58 fedora kernel: pci 0000:03:00.0: Adding to iommu group 12 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.0: Adding to iommu group 13 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.1: Adding to iommu group 14 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.2: Adding to iommu group 15 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.3: Adding to iommu group 16 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.4: Adding to iommu group 17 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.5: Adding to iommu group 18 +Sep 17 17:49:58 fedora kernel: pci 0000:04:00.6: Adding to iommu group 19 +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.0: Adding to iommu group 20 +Sep 17 17:49:58 fedora kernel: pci 0000:05:00.1: Adding to iommu group 21 +Sep 17 17:49:58 fedora kernel: AMD-Vi: Extended features (0x206d73ef22254ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC +Sep 17 17:49:58 fedora kernel: AMD-Vi: Interrupt remapping enabled +Sep 17 17:49:58 fedora kernel: AMD-Vi: X2APIC enabled +Sep 17 17:49:58 fedora kernel: AMD-Vi: Virtual APIC enabled +Sep 17 17:49:58 fedora kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +Sep 17 17:49:58 fedora kernel: software IO TLB: mapped [mem 0x00000000ad045000-0x00000000b1045000] (64MB) +Sep 17 17:49:58 fedora kernel: LVT offset 0 assigned for vector 0x400 +Sep 17 17:49:58 fedora kernel: perf: AMD IBS detected (0x000003ff) +Sep 17 17:49:58 fedora kernel: amd_uncore: 4 amd_df counters detected +Sep 17 17:49:58 fedora kernel: amd_uncore: 6 amd_l3 counters detected +Sep 17 17:49:58 fedora kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank). +Sep 17 17:49:58 fedora kernel: Initialise system trusted keyrings +Sep 17 17:49:58 fedora kernel: Key type blacklist registered +Sep 17 17:49:58 fedora kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0 +Sep 17 17:49:58 fedora kernel: zbud: loaded +Sep 17 17:49:58 fedora kernel: integrity: Platform Keyring initialized +Sep 17 17:49:58 fedora kernel: integrity: Machine keyring initialized +Sep 17 17:49:58 fedora kernel: NET: Registered PF_ALG protocol family +Sep 17 17:49:58 fedora kernel: xor: automatically using best checksumming function avx +Sep 17 17:49:58 fedora kernel: Key type asymmetric registered +Sep 17 17:49:58 fedora kernel: Asymmetric key parser 'x509' registered +Sep 17 17:49:58 fedora kernel: Freeing initrd memory: 94040K +Sep 17 17:49:58 fedora kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) +Sep 17 17:49:58 fedora kernel: io scheduler mq-deadline registered +Sep 17 17:49:58 fedora kernel: io scheduler kyber registered +Sep 17 17:49:58 fedora kernel: io scheduler bfq registered +Sep 17 17:49:58 fedora kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 37 +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 38 +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 39 +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 40 +Sep 17 17:49:58 fedora kernel: pcieport 0000:00:08.2: PME: Signaling with IRQ 41 +Sep 17 17:49:58 fedora kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +Sep 17 17:49:58 fedora kernel: ACPI: AC: AC Adapter [AC0] (on-line) +Sep 17 17:49:58 fedora kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2e/PNP0C09:00/PNP0C0D:00/input/input0 +Sep 17 17:49:58 fedora kernel: ACPI: button: Lid Switch [LID] +Sep 17 17:49:58 fedora kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 +Sep 17 17:49:58 fedora kernel: ACPI: button: Power Button [PWRB] +Sep 17 17:49:58 fedora kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1226 +Sep 17 17:49:58 fedora kernel: Monitor-Mwait will be used to enter C-1 state +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P000: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P001: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P002: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P003: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P004: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P005: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P006: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P007: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P008: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P009: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00A: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00B: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00C: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00D: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00E: Found 3 idle states +Sep 17 17:49:58 fedora kernel: ACPI: \_SB_.PLTF.P00F: Found 3 idle states +Sep 17 17:49:58 fedora kernel: thermal LNXTHERM:00: registered as thermal_zone0 +Sep 17 17:49:58 fedora kernel: ACPI: thermal: Thermal Zone [THRM] (78 C) +Sep 17 17:49:58 fedora kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +Sep 17 17:49:58 fedora kernel: ACPI: battery: Slot [BAT0] (battery present) +Sep 17 17:49:58 fedora kernel: Non-volatile memory driver v1.3 +Sep 17 17:49:58 fedora kernel: Linux agpgart interface v0.103 +Sep 17 17:49:58 fedora kernel: tpm_crb MSFT0101:00: Disabling hwrng +Sep 17 17:49:58 fedora kernel: ACPI: bus type drm_connector registered +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.0: version 3.0 +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.0: 1/1 ports implemented (port mask 0x1) +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part +Sep 17 17:49:58 fedora kernel: scsi host0: ahci +Sep 17 17:49:58 fedora kernel: ata1: SATA max UDMA/133 abar m2048@0xfc601000 port 0xfc601100 irq 43 lpm-pol 4 +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.1: 1/1 ports implemented (port mask 0x1) +Sep 17 17:49:58 fedora kernel: ahci 0000:05:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part +Sep 17 17:49:58 fedora kernel: scsi host1: ahci +Sep 17 17:49:58 fedora kernel: ata2: SATA max UDMA/133 abar m2048@0xfc600000 port 0xfc600100 irq 45 lpm-pol 4 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed +Sep 17 17:49:58 fedora kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10 +Sep 17 17:49:58 fedora kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +Sep 17 17:49:58 fedora kernel: usb usb1: Product: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: usb usb1: Manufacturer: Linux 6.10.9-200.fc40.x86_64 xhci-hcd +Sep 17 17:49:58 fedora kernel: usb usb1: SerialNumber: 0000:04:00.3 +Sep 17 17:49:58 fedora kernel: hub 1-0:1.0: USB hub found +Sep 17 17:49:58 fedora kernel: hub 1-0:1.0: 4 ports detected +Sep 17 17:49:58 fedora kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. +Sep 17 17:49:58 fedora kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10 +Sep 17 17:49:58 fedora kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +Sep 17 17:49:58 fedora kernel: usb usb2: Product: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: usb usb2: Manufacturer: Linux 6.10.9-200.fc40.x86_64 xhci-hcd +Sep 17 17:49:58 fedora kernel: usb usb2: SerialNumber: 0000:04:00.3 +Sep 17 17:49:58 fedora kernel: hub 2-0:1.0: USB hub found +Sep 17 17:49:58 fedora kernel: hub 2-0:1.0: 2 ports detected +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4 +Sep 17 17:49:58 fedora kernel: xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed +Sep 17 17:49:58 fedora kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.10 +Sep 17 17:49:58 fedora kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +Sep 17 17:49:58 fedora kernel: usb usb3: Product: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: usb usb3: Manufacturer: Linux 6.10.9-200.fc40.x86_64 xhci-hcd +Sep 17 17:49:58 fedora kernel: usb usb3: SerialNumber: 0000:04:00.4 +Sep 17 17:49:58 fedora kernel: hub 3-0:1.0: USB hub found +Sep 17 17:49:58 fedora kernel: hub 3-0:1.0: 4 ports detected +Sep 17 17:49:58 fedora kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. +Sep 17 17:49:58 fedora kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.10 +Sep 17 17:49:58 fedora kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +Sep 17 17:49:58 fedora kernel: usb usb4: Product: xHCI Host Controller +Sep 17 17:49:58 fedora kernel: usb usb4: Manufacturer: Linux 6.10.9-200.fc40.x86_64 xhci-hcd +Sep 17 17:49:58 fedora kernel: usb usb4: SerialNumber: 0000:04:00.4 +Sep 17 17:49:58 fedora kernel: hub 4-0:1.0: USB hub found +Sep 17 17:49:58 fedora kernel: hub 4-0:1.0: 2 ports detected +Sep 17 17:49:58 fedora kernel: usbcore: registered new interface driver usbserial_generic +Sep 17 17:49:58 fedora kernel: usbserial: USB Serial support registered for generic +Sep 17 17:49:58 fedora kernel: i8042: PNP: PS/2 Controller [PNP030b:PS2K] at 0x60,0x64 irq 1 +Sep 17 17:49:58 fedora kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp +Sep 17 17:49:58 fedora kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 +Sep 17 17:49:58 fedora kernel: mousedev: PS/2 mouse device common for all mice +Sep 17 17:49:58 fedora kernel: rtc_cmos 00:01: RTC can wake from S4 +Sep 17 17:49:58 fedora kernel: rtc_cmos 00:01: registered as rtc0 +Sep 17 17:49:58 fedora kernel: rtc_cmos 00:01: setting system clock to 2024-09-17T09:49:58 UTC (1726566598) +Sep 17 17:49:58 fedora kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram +Sep 17 17:49:58 fedora kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. +Sep 17 17:49:58 fedora kernel: device-mapper: uevent: version 1.0.3 +Sep 17 17:49:58 fedora kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev +Sep 17 17:49:58 fedora kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2 +Sep 17 17:49:58 fedora kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0 +Sep 17 17:49:58 fedora kernel: fbcon: Deferring console take-over +Sep 17 17:49:58 fedora kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device +Sep 17 17:49:58 fedora kernel: hid: raw HID events driver (C) Jiri Kosina +Sep 17 17:49:58 fedora kernel: usbcore: registered new interface driver usbhid +Sep 17 17:49:58 fedora kernel: usbhid: USB HID core driver +Sep 17 17:49:58 fedora kernel: drop_monitor: Initializing network drop monitor service +Sep 17 17:49:58 fedora kernel: Initializing XFRM netlink socket +Sep 17 17:49:58 fedora kernel: NET: Registered PF_INET6 protocol family +Sep 17 17:49:58 fedora kernel: Segment Routing with IPv6 +Sep 17 17:49:58 fedora kernel: RPL Segment Routing with IPv6 +Sep 17 17:49:58 fedora kernel: In-situ OAM (IOAM) with IPv6 +Sep 17 17:49:58 fedora kernel: mip6: Mobile IPv6 +Sep 17 17:49:58 fedora kernel: NET: Registered PF_PACKET protocol family +Sep 17 17:49:58 fedora kernel: microcode: Current revision: 0x0a50000d +Sep 17 17:49:58 fedora kernel: resctrl: L3 allocation detected +Sep 17 17:49:58 fedora kernel: resctrl: MB allocation detected +Sep 17 17:49:58 fedora kernel: resctrl: L3 monitoring detected +Sep 17 17:49:58 fedora kernel: IPI shorthand broadcast: enabled +Sep 17 17:49:58 fedora kernel: AVX2 version of gcm_enc/dec engaged. +Sep 17 17:49:58 fedora kernel: AES CTR mode by8 optimization enabled +Sep 17 17:49:58 fedora kernel: sched_clock: Marking stable (765821838, 315790)->(786139903, -20002275) +Sep 17 17:49:58 fedora kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level +Sep 17 17:49:58 fedora kernel: registered taskstats version 1 +Sep 17 17:49:58 fedora kernel: Loading compiled-in X.509 certificates +Sep 17 17:49:58 fedora kernel: Loaded X.509 cert 'Fedora kernel signing key: 2078dceefbc6defda71416a91853237381d85556' +Sep 17 17:49:58 fedora kernel: Loaded X.509 cert 'Fedora IMA CA: a8a00c31663f853f9c6ff2564872e378af026b28' +Sep 17 17:49:58 fedora kernel: Demotion targets for Node 0: null +Sep 17 17:49:58 fedora kernel: page_owner is disabled +Sep 17 17:49:58 fedora kernel: Key type .fscrypt registered +Sep 17 17:49:58 fedora kernel: Key type fscrypt-provisioning registered +Sep 17 17:49:58 fedora kernel: Btrfs loaded, zoned=yes, fsverity=yes +Sep 17 17:49:58 fedora kernel: Key type big_key registered +Sep 17 17:49:58 fedora kernel: Key type trusted registered +Sep 17 17:49:58 fedora kernel: Key type encrypted registered +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:db +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071' +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:db +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2' +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:db +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:db +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:db +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +Sep 17 17:49:58 fedora kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +Sep 17 17:49:58 fedora kernel: integrity: Loaded X.509 cert 'Red Hat, Inc.: fedoraca: b280c7ae6b884e0f4d2a0d8724c25eaf6c65c326' +Sep 17 17:49:58 fedora kernel: Loading compiled-in module X.509 certificates +Sep 17 17:49:58 fedora kernel: Loaded X.509 cert 'Fedora kernel signing key: 2078dceefbc6defda71416a91853237381d85556' +Sep 17 17:49:58 fedora kernel: ima: Allocated hash algorithm: sha256 +Sep 17 17:49:58 fedora kernel: audit: type=1807 audit(1726566598.661:2): action=measure func=KEXEC_KERNEL_CHECK res=1 +Sep 17 17:49:58 fedora kernel: audit: type=1807 audit(1726566598.661:3): action=appraise func=POLICY_CHECK appraise_type=imasig res=1 +Sep 17 17:49:58 fedora kernel: audit: type=1807 audit(1726566598.661:4): action=measure func=MODULE_CHECK res=1 +Sep 17 17:49:58 fedora kernel: evm: Initialising EVM extended attributes: +Sep 17 17:49:58 fedora kernel: evm: security.selinux +Sep 17 17:49:58 fedora kernel: evm: security.SMACK64 (disabled) +Sep 17 17:49:58 fedora kernel: evm: security.SMACK64EXEC (disabled) +Sep 17 17:49:58 fedora kernel: evm: security.SMACK64TRANSMUTE (disabled) +Sep 17 17:49:58 fedora kernel: evm: security.SMACK64MMAP (disabled) +Sep 17 17:49:58 fedora kernel: evm: security.apparmor (disabled) +Sep 17 17:49:58 fedora kernel: evm: security.ima +Sep 17 17:49:58 fedora kernel: evm: security.capability +Sep 17 17:49:58 fedora kernel: evm: HMAC attrs: 0x1 +Sep 17 17:49:58 fedora kernel: alg: No test for 842 (842-scomp) +Sep 17 17:49:58 fedora kernel: alg: No test for 842 (842-generic) +Sep 17 17:49:58 fedora kernel: usb 1-2: new high-speed USB device number 2 using xhci_hcd +Sep 17 17:49:58 fedora kernel: usb 3-1: new full-speed USB device number 2 using xhci_hcd +Sep 17 17:49:58 fedora kernel: PM: Magic number: 8:38:829 +Sep 17 17:49:58 fedora kernel: RAS: Correctable Errors collector initialized. +Sep 17 17:49:58 fedora kernel: Lockdown: swapper/0: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 17:49:58 fedora kernel: ata2: SATA link down (SStatus 0 SControl 300) +Sep 17 17:49:58 fedora kernel: ata1: SATA link down (SStatus 0 SControl 300) +Sep 17 17:49:58 fedora kernel: clk: Disabling unused clocks +Sep 17 17:49:58 fedora kernel: PM: genpd: Disabling unused power domains +Sep 17 17:49:58 fedora kernel: Freeing unused decrypted memory: 2028K +Sep 17 17:49:58 fedora kernel: Freeing unused kernel image (initmem) memory: 4724K +Sep 17 17:49:58 fedora kernel: Write protecting the kernel read-only data: 36864k +Sep 17 17:49:58 fedora kernel: Freeing unused kernel image (rodata/data gap) memory: 1084K +Sep 17 17:49:58 fedora kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found. +Sep 17 17:49:58 fedora kernel: Run /init as init process +Sep 17 17:49:58 fedora kernel: with arguments: +Sep 17 17:49:58 fedora kernel: /init +Sep 17 17:49:58 fedora kernel: rhgb +Sep 17 17:49:58 fedora kernel: with environment: +Sep 17 17:49:58 fedora kernel: HOME=/ +Sep 17 17:49:58 fedora kernel: TERM=linux +Sep 17 17:49:58 fedora kernel: BOOT_IMAGE=(hd1,gpt2)/vmlinuz-6.10.9-200.fc40.x86_64 +Sep 17 17:49:58 fedora systemd[1]: systemd 255.12-1.fc40 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) +Sep 17 17:49:58 fedora systemd[1]: Detected architecture x86-64. +Sep 17 17:49:58 fedora systemd[1]: Running in initrd. +Sep 17 17:49:58 fedora systemd[1]: No hostname configured, using default hostname. +Sep 17 17:49:58 fedora systemd[1]: Hostname set to . +Sep 17 17:49:58 fedora kernel: usb 1-2: New USB device found, idVendor=2109, idProduct=2811, bcdDevice=90.90 +Sep 17 17:49:58 fedora kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:49:58 fedora kernel: usb 1-2: Product: USB2.0 Hub +Sep 17 17:49:58 fedora kernel: usb 1-2: Manufacturer: VIA Labs, Inc. +Sep 17 17:49:58 fedora kernel: usb 3-1: New USB device found, idVendor=04f3, idProduct=0c6e, bcdDevice= 5.00 +Sep 17 17:49:58 fedora kernel: usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:49:58 fedora kernel: usb 3-1: Product: ELAN:Fingerprint +Sep 17 17:49:58 fedora kernel: usb 3-1: Manufacturer: ELAN +Sep 17 17:49:58 fedora kernel: hub 1-2:1.0: USB hub found +Sep 17 17:49:58 fedora kernel: hub 1-2:1.0: 4 ports detected +Sep 17 17:49:58 fedora systemd[1]: Queued start job for default target initrd.target. +Sep 17 17:49:58 fedora systemd[1]: Expecting device dev-disk-by\x2duuid-b3de6112\x2d9a11\x2d4d4e\x2d91c9\x2d4c7b11e7bfba.device - /dev/disk/by-uuid/b3de6112-9a11-4d4e-91c9-4c7b11e7bfba... +Sep 17 17:49:58 fedora systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System. +Sep 17 17:49:58 fedora systemd[1]: Reached target slices.target - Slice Units. +Sep 17 17:49:58 fedora systemd[1]: Reached target swap.target - Swaps. +Sep 17 17:49:58 fedora systemd[1]: Reached target timers.target - Timer Units. +Sep 17 17:49:58 fedora systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log). +Sep 17 17:49:58 fedora systemd[1]: Listening on systemd-journald.socket - Journal Socket. +Sep 17 17:49:58 fedora systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. +Sep 17 17:49:58 fedora systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. +Sep 17 17:49:58 fedora systemd[1]: Reached target sockets.target - Socket Units. +Sep 17 17:49:58 fedora systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... +Sep 17 17:49:58 fedora systemd[1]: memstrack.service - Memstrack Anylazing Service was skipped because no trigger condition checks were met. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-journald.service - Journal Service... +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... +Sep 17 17:49:58 fedora systemd[1]: systemd-pcrphase-initrd.service - TPM2 PCR Barrier (initrd) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup... +Sep 17 17:49:58 fedora systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... +Sep 17 17:49:58 fedora systemd-journald[361]: Collecting audit messages is disabled. +Sep 17 17:49:58 fedora kernel: fuse: init (API version 7.40) +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-sysusers.service - Create System Users... +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables. +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-sysusers.service - Create System Users. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... +Sep 17 17:49:58 fedora kernel: usb 2-2: new SuperSpeed USB device number 2 using xhci_hcd +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-vconsole-setup.service - Virtual Console Setup. +Sep 17 17:49:58 fedora systemd[1]: Starting dracut-cmdline-ask.service - dracut ask for additional cmdline parameters... +Sep 17 17:49:58 fedora systemd-journald[361]: Journal started +Sep 17 17:49:58 fedora systemd-journald[361]: Runtime Journal (/run/log/journal/25329b71048846eda1b36bebcfc9160b) is 8.0M, max 307.6M, 299.6M free. +Sep 17 17:49:58 fedora systemd-vconsole-setup[366]: /usr/bin/setfont failed with a "system error" (EX_OSERR), ignoring. +Sep 17 17:49:58 fedora systemd-modules-load[362]: Inserted module 'fuse' +Sep 17 17:49:58 fedora systemd-modules-load[362]: Module 'msr' is built in +Sep 17 17:49:58 fedora systemd[1]: Started systemd-journald.service - Journal Service. +Sep 17 17:49:58 fedora systemd-modules-load[362]: Inserted module 'ip_tables' +Sep 17 17:49:58 fedora systemd-modules-load[362]: Inserted module 'ip6_tables' +Sep 17 17:49:58 fedora systemd-vconsole-setup[371]: setfont: ERROR kdfontop.c:183 put_font_kdfontop: Unable to load such font with such kernel version +Sep 17 17:49:58 fedora systemd-sysusers[376]: Creating group 'nobody' with GID 65534. +Sep 17 17:49:58 fedora systemd-sysusers[376]: Creating group 'users' with GID 100. +Sep 17 17:49:58 fedora systemd-sysusers[376]: Creating group 'systemd-journal' with GID 190. +Sep 17 17:49:58 fedora systemd-sysusers[376]: Creating group 'tss' with GID 59. +Sep 17 17:49:58 fedora systemd-sysusers[376]: Creating user 'tss' (Account used for TPM access) with UID 59 and GID 59. +Sep 17 17:49:58 fedora systemd-vconsole-setup[366]: Setting source virtual console failed, ignoring remaining ones. +Sep 17 17:49:58 fedora systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. +Sep 17 17:49:58 fedora systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems. +Sep 17 17:49:58 fedora systemd[1]: Reached target local-fs.target - Local File Systems. +Sep 17 17:49:58 fedora systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories... +Sep 17 17:49:58 fedora systemd[1]: Finished dracut-cmdline-ask.service - dracut ask for additional cmdline parameters. +Sep 17 17:49:58 fedora systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook... +Sep 17 17:49:59 fedora systemd-tmpfiles[394]: /usr/lib/tmpfiles.d/var.conf:14: Duplicate line for path "/var/log", ignoring. +Sep 17 17:49:59 fedora dracut-cmdline[407]: dracut-102-2.fc40 +Sep 17 17:49:59 fedora dracut-cmdline[407]: Using kernel command line parameters: rd.driver.pre=btrfs BOOT_IMAGE=(hd1,gpt2)/vmlinuz-6.10.9-200.fc40.x86_64 root=UUID=b3de6112-9a11-4d4e-91c9-4c7b11e7bfba ro rootflags=subvol=root rhgb quiet +Sep 17 17:49:59 fedora systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories. +Sep 17 17:49:59 fedora kernel: usb 3-2: new high-speed USB device number 3 using xhci_hcd +Sep 17 17:49:59 fedora systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook. +Sep 17 17:49:59 fedora systemd[1]: Starting dracut-pre-udev.service - dracut pre-udev hook... +Sep 17 17:49:59 fedora systemd[1]: Finished dracut-pre-udev.service - dracut pre-udev hook. +Sep 17 17:49:59 fedora systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files... +Sep 17 17:49:59 fedora systemd-udevd[482]: Using default interface naming scheme 'v255'. +Sep 17 17:49:59 fedora systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files. +Sep 17 17:49:59 fedora systemd[1]: dracut-pre-trigger.service - dracut pre-trigger hook was skipped because no trigger condition checks were met. +Sep 17 17:49:59 fedora systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... +Sep 17 17:49:59 fedora kernel: usb 3-2: New USB device found, idVendor=13d3, idProduct=3563, bcdDevice= 1.00 +Sep 17 17:49:59 fedora kernel: usb 3-2: New USB device strings: Mfr=5, Product=6, SerialNumber=7 +Sep 17 17:49:59 fedora kernel: usb 3-2: Product: Wireless_Device +Sep 17 17:49:59 fedora kernel: usb 3-2: Manufacturer: MediaTek Inc. +Sep 17 17:49:59 fedora kernel: usb 3-2: SerialNumber: 000000000 +Sep 17 17:49:59 fedora systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe. +Sep 17 17:49:59 fedora systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... +Sep 17 17:49:59 fedora systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices. +Sep 17 17:49:59 fedora systemd[1]: modprobe@configfs.service: Deactivated successfully. +Sep 17 17:49:59 fedora systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. +Sep 17 17:49:59 fedora systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System... +Sep 17 17:49:59 fedora systemd[1]: dracut-initqueue.service - dracut initqueue hook was skipped because no trigger condition checks were met. +Sep 17 17:49:59 fedora systemd[1]: Reached target remote-fs-pre.target - Preparation for Remote File Systems. +Sep 17 17:49:59 fedora systemd[1]: Reached target remote-fs.target - Remote File Systems. +Sep 17 17:49:59 fedora systemd[1]: dracut-pre-mount.service - dracut pre-mount hook was skipped because no trigger condition checks were met. +Sep 17 17:49:59 fedora systemd[1]: Starting plymouth-start.service - Show Plymouth Boot Screen... +Sep 17 17:49:59 fedora kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver +Sep 17 17:49:59 fedora kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address +Sep 17 17:49:59 fedora kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0) +Sep 17 17:49:59 fedora systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. +Sep 17 17:49:59 fedora systemd[1]: Received SIGRTMIN+20 from PID 530 (plymouthd). +Sep 17 17:49:59 fedora systemd[1]: Reached target sysinit.target - System Initialization. +Sep 17 17:49:59 fedora kernel: ccp 0000:04:00.2: enabling device (0000 -> 0002) +Sep 17 17:49:59 fedora kernel: ccp 0000:04:00.2: ccp: unable to access the device: you might be running a broken BIOS. +Sep 17 17:49:59 fedora kernel: ccp 0000:04:00.2: tee enabled +Sep 17 17:49:59 fedora kernel: ccp 0000:04:00.2: psp enabled +Sep 17 17:49:59 fedora kernel: usb 2-2: New USB device found, idVendor=2109, idProduct=8110, bcdDevice=90.95 +Sep 17 17:49:59 fedora kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:49:59 fedora kernel: usb 2-2: Product: USB3.0 Hub +Sep 17 17:49:59 fedora kernel: usb 2-2: Manufacturer: VIA Labs, Inc. +Sep 17 17:49:59 fedora systemd[1]: Started plymouth-start.service - Show Plymouth Boot Screen. +Sep 17 17:49:59 fedora systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). +Sep 17 17:49:59 fedora systemd[1]: Started systemd-ask-password-plymouth.path - Forward Password Requests to Plymouth Directory Watch. +Sep 17 17:49:59 fedora systemd[1]: Reached target paths.target - Path Units. +Sep 17 17:49:59 fedora systemd[1]: Reached target basic.target - Basic System. +Sep 17 17:49:59 fedora systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. +Sep 17 17:49:59 fedora systemd[1]: Stopped systemd-vconsole-setup.service - Virtual Console Setup. +Sep 17 17:49:59 fedora systemd[1]: Stopping systemd-vconsole-setup.service - Virtual Console Setup... +Sep 17 17:49:59 fedora systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup... +Sep 17 17:49:59 fedora systemd-vconsole-setup[566]: setfont: ERROR kdfontop.c:183 put_font_kdfontop: Unable to load such font with such kernel version +Sep 17 17:49:59 fedora systemd-vconsole-setup[564]: /usr/bin/setfont failed with a "system error" (EX_OSERR), ignoring. +Sep 17 17:49:59 fedora kernel: hub 2-2:1.0: USB hub found +Sep 17 17:49:59 fedora kernel: hub 2-2:1.0: 4 ports detected +Sep 17 17:49:59 fedora kernel: usb 3-3: new high-speed USB device number 4 using xhci_hcd +Sep 17 17:49:59 fedora systemd-vconsole-setup[564]: Setting source virtual console failed, ignoring remaining ones. +Sep 17 17:49:59 fedora systemd[1]: Finished systemd-vconsole-setup.service - Virtual Console Setup. +Sep 17 17:49:59 fedora kernel: input: ASUE1A01:00 04F3:31D4 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1A01:00/0018:04F3:31D4.0001/input/input3 +Sep 17 17:49:59 fedora kernel: input: ASUE1A01:00 04F3:31D4 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1A01:00/0018:04F3:31D4.0001/input/input4 +Sep 17 17:49:59 fedora kernel: hid-generic 0018:04F3:31D4.0001: input,hidraw0: I2C HID v1.00 Mouse [ASUE1A01:00 04F3:31D4] on i2c-ASUE1A01:00 +Sep 17 17:49:59 fedora kernel: usb 1-2.1: new high-speed USB device number 3 using xhci_hcd +Sep 17 17:49:59 fedora kernel: hid-generic 0018:0B05:0220.0002: unsupported Resolution Multiplier 0 +Sep 17 17:49:59 fedora kernel: hid-generic 0018:0B05:0220.0002: hidraw1: I2C HID v1.00 Device [ASUS2020:00 0B05:0220] on i2c-ASUS2020:00 +Sep 17 17:49:59 fedora kernel: ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no) +Sep 17 17:49:59 fedora kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input5 +Sep 17 17:49:59 fedora kernel: nvme 0000:03:00.0: platform quirk: setting simple suspend +Sep 17 17:49:59 fedora kernel: nvme nvme0: pci function 0000:03:00.0 +Sep 17 17:49:59 fedora kernel: input: ASUE1A01:00 04F3:31D4 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1A01:00/0018:04F3:31D4.0001/input/input6 +Sep 17 17:49:59 fedora kernel: input: ASUE1A01:00 04F3:31D4 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-ASUE1A01:00/0018:04F3:31D4.0001/input/input7 +Sep 17 17:49:59 fedora kernel: hid-multitouch 0018:04F3:31D4.0001: input,hidraw0: I2C HID v1.00 Mouse [ASUE1A01:00 04F3:31D4] on i2c-ASUE1A01:00 +Sep 17 17:49:59 fedora kernel: usb 3-3: New USB device found, idVendor=13d3, idProduct=5458, bcdDevice=20.51 +Sep 17 17:49:59 fedora kernel: usb 3-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2 +Sep 17 17:49:59 fedora kernel: usb 3-3: Product: USB2.0 HD UVC WebCam +Sep 17 17:49:59 fedora kernel: usb 3-3: Manufacturer: Azurewave +Sep 17 17:49:59 fedora kernel: usb 3-3: SerialNumber: 0x0001 +Sep 17 17:49:59 fedora kernel: tsc: Refined TSC clocksource calibration: 3193.999 MHz +Sep 17 17:49:59 fedora kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a24cf65f, max_idle_ns: 440795271781 ns +Sep 17 17:49:59 fedora kernel: clocksource: Switched to clocksource tsc +Sep 17 17:49:59 fedora kernel: usb 1-2.1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.28 +Sep 17 17:49:59 fedora kernel: usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:49:59 fedora kernel: usb 1-2.1: Product: 4-Port USB 2.1 Hub +Sep 17 17:49:59 fedora kernel: usb 1-2.1: Manufacturer: Generic +Sep 17 17:49:59 fedora kernel: nvme nvme0: 16/0/0 default/read/poll queues +Sep 17 17:49:59 fedora kernel: nvme nvme0: Ignoring bogus Namespace Identifiers +Sep 17 17:49:59 fedora kernel: nvme0n1: p1 p2 p3 +Sep 17 17:49:59 fedora kernel: hub 1-2.1:1.0: USB hub found +Sep 17 17:49:59 fedora kernel: hub 1-2.1:1.0: 4 ports detected +Sep 17 17:49:59 fedora systemd[1]: Found device dev-disk-by\x2duuid-b3de6112\x2d9a11\x2d4d4e\x2d91c9\x2d4c7b11e7bfba.device - HFM512GD3JX013N fedora. +Sep 17 17:49:59 fedora systemd[1]: Reached target initrd-root-device.target - Initrd Root Device. +Sep 17 17:49:59 fedora systemd[1]: Starting systemd-fsck-root.service - File System Check on /dev/disk/by-uuid/b3de6112-9a11-4d4e-91c9-4c7b11e7bfba... +Sep 17 17:49:59 fedora systemd[1]: Finished systemd-fsck-root.service - File System Check on /dev/disk/by-uuid/b3de6112-9a11-4d4e-91c9-4c7b11e7bfba. +Sep 17 17:49:59 fedora kernel: usb 2-2.1: new SuperSpeed USB device number 3 using xhci_hcd +Sep 17 17:49:59 fedora kernel: usb 2-2.1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.28 +Sep 17 17:49:59 fedora kernel: usb 2-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:49:59 fedora kernel: usb 2-2.1: Product: 4-Port USB 3.1 Hub +Sep 17 17:49:59 fedora kernel: usb 2-2.1: Manufacturer: Generic +Sep 17 17:49:59 fedora kernel: hub 2-2.1:1.0: USB hub found +Sep 17 17:49:59 fedora kernel: hub 2-2.1:1.0: 4 ports detected +Sep 17 17:49:59 fedora kernel: ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20240322/nsarguments-61) +Sep 17 17:49:59 fedora kernel: pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported +Sep 17 17:49:59 fedora kernel: VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.GPP0.PEGP handle +Sep 17 17:49:59 fedora kernel: nouveau: detected PR support, will not use DSM +Sep 17 17:49:59 fedora kernel: nouveau 0000:01:00.0: NVIDIA GA107 (b77000a1) +Sep 17 17:49:59 fedora kernel: usb 2-2.2: new SuperSpeed USB device number 4 using xhci_hcd +Sep 17 17:49:59 fedora kernel: usb 2-2.2: New USB device found, idVendor=04e8, idProduct=61fb, bcdDevice= 1.00 +Sep 17 17:49:59 fedora kernel: usb 2-2.2: New USB device strings: Mfr=2, Product=3, SerialNumber=1 +Sep 17 17:49:59 fedora kernel: usb 2-2.2: Product: PSSD T7 Shield +Sep 17 17:49:59 fedora kernel: usb 2-2.2: Manufacturer: Samsung +Sep 17 17:49:59 fedora kernel: usb 2-2.2: SerialNumber: S6YGNS0TB03358K +Sep 17 17:49:59 fedora kernel: usb 1-2.1.1: new high-speed USB device number 4 using xhci_hcd +Sep 17 17:49:59 fedora kernel: usb 1-2.1.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.00 +Sep 17 17:49:59 fedora kernel: usb 1-2.1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 +Sep 17 17:49:59 fedora kernel: usb 1-2.1.1: Product: USB2.0 HUB +Sep 17 17:50:00 fedora kernel: hub 1-2.1.1:1.0: USB hub found +Sep 17 17:50:00 fedora kernel: hub 1-2.1.1:1.0: 4 ports detected +Sep 17 17:50:00 fedora kernel: usb 2-2.1.3: new SuperSpeed USB device number 5 using xhci_hcd +Sep 17 17:50:00 fedora kernel: usb 2-2.1.3: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.28 +Sep 17 17:50:00 fedora kernel: usb 2-2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:50:00 fedora kernel: usb 2-2.1.3: Product: 4-Port USB 3.1 Hub +Sep 17 17:50:00 fedora kernel: usb 2-2.1.3: Manufacturer: Generic +Sep 17 17:50:00 fedora kernel: hub 2-2.1.3:1.0: USB hub found +Sep 17 17:50:00 fedora kernel: hub 2-2.1.3:1.0: 4 ports detected +Sep 17 17:50:00 fedora kernel: usb 1-2.1.2: new full-speed USB device number 5 using xhci_hcd +Sep 17 17:50:00 fedora kernel: nouveau 0000:01:00.0: bios: version 94.07.3b.40.62 +Sep 17 17:50:00 fedora kernel: usb 2-2.1.4: new SuperSpeed USB device number 6 using xhci_hcd +Sep 17 17:50:00 fedora kernel: usb 2-2.1.4: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.28 +Sep 17 17:50:00 fedora kernel: usb 2-2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:50:00 fedora kernel: usb 2-2.1.4: Product: 4-Port USB 3.1 Hub +Sep 17 17:50:00 fedora kernel: usb 2-2.1.4: Manufacturer: Generic +Sep 17 17:50:00 fedora kernel: hub 2-2.1.4:1.0: USB hub found +Sep 17 17:50:00 fedora kernel: hub 2-2.1.4:1.0: 4 ports detected +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: new high-speed USB device number 6 using xhci_hcd +Sep 17 17:50:00 fedora kernel: usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=0a8f, bcdDevice= 0.14 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.2: New USB device strings: Mfr=3, Product=1, SerialNumber=0 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.2: Product: Logi USB Headset +Sep 17 17:50:00 fedora kernel: usb 1-2.1.2: Manufacturer: Logi USB Headset +Sep 17 17:50:00 fedora kernel: input: Logi USB Headset Logi USB Headset as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.3/0003:046D:0A8F.0003/input/input8 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: New USB device found, idVendor=0fe6, idProduct=9900, bcdDevice=20.00 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: Product: USB 10/100 LAN +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: Manufacturer: CoreChips +Sep 17 17:50:00 fedora kernel: usb 1-2.1.1.1: SerialNumber: 00E099002CCF +Sep 17 17:50:00 fedora kernel: hid-generic 0003:046D:0A8F.0003: input,hidraw2: USB HID v1.11 Device [Logi USB Headset Logi USB Headset] on usb-0000:04:00.3-2.1.2/input3 +Sep 17 17:50:00 fedora kernel: usb 1-2.1.3: new high-speed USB device number 7 using xhci_hcd +Sep 17 17:50:01 fedora kernel: usb 1-2.1.3: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.28 +Sep 17 17:50:01 fedora kernel: usb 1-2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:50:01 fedora kernel: usb 1-2.1.3: Product: 4-Port USB 2.1 Hub +Sep 17 17:50:01 fedora kernel: usb 1-2.1.3: Manufacturer: Generic +Sep 17 17:50:01 fedora kernel: hub 1-2.1.3:1.0: USB hub found +Sep 17 17:50:01 fedora kernel: hub 1-2.1.3:1.0: 4 ports detected +Sep 17 17:50:01 fedora kernel: usb 1-2.1.4: new high-speed USB device number 8 using xhci_hcd +Sep 17 17:50:01 fedora kernel: usb 1-2.1.4: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.28 +Sep 17 17:50:01 fedora kernel: usb 1-2.1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 +Sep 17 17:50:01 fedora kernel: usb 1-2.1.4: Product: 4-Port USB 2.1 Hub +Sep 17 17:50:01 fedora kernel: usb 1-2.1.4: Manufacturer: Generic +Sep 17 17:50:01 fedora kernel: hub 1-2.1.4:1.0: USB hub found +Sep 17 17:50:01 fedora kernel: hub 1-2.1.4:1.0: 4 ports detected +Sep 17 17:50:01 fedora systemd[1]: Mounting sysroot.mount - /sysroot... +Sep 17 17:50:01 fedora kernel: BTRFS: device label fedora devid 1 transid 8841 /dev/nvme0n1p3 (259:3) scanned by mount (606) +Sep 17 17:50:01 fedora kernel: BTRFS info (device nvme0n1p3): first mount of filesystem b3de6112-9a11-4d4e-91c9-4c7b11e7bfba +Sep 17 17:50:01 fedora kernel: BTRFS info (device nvme0n1p3): using crc32c (crc32c-intel) checksum algorithm +Sep 17 17:50:01 fedora kernel: BTRFS info (device nvme0n1p3): using free-space-tree +Sep 17 17:50:01 fedora kernel: [drm] amdgpu kernel modesetting enabled. +Sep 17 17:50:01 fedora systemd[1]: Mounted sysroot.mount - /sysroot. +Sep 17 17:50:01 fedora systemd[1]: Reached target initrd-root-fs.target - Initrd Root File System. +Sep 17 17:50:01 fedora systemd[1]: Starting initrd-parse-etc.service - Mountpoints Configured in the Real Root... +Sep 17 17:50:01 fedora kernel: amdgpu: Virtual CRAT table created for CPU +Sep 17 17:50:01 fedora kernel: amdgpu: Topology: Add CPU node +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: enabling device (0006 -> 0007) +Sep 17 17:50:01 fedora kernel: [drm] initializing kernel modesetting (RENOIR 0x1002:0x1638 0x1043:0x18DC 0xC5). +Sep 17 17:50:01 fedora kernel: [drm] register mmio base: 0xFC500000 +Sep 17 17:50:01 fedora kernel: [drm] register mmio size: 524288 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 0 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 1 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 2 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 3 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 4 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 5 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 6 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 7 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 8 +Sep 17 17:50:01 fedora kernel: [drm] add ip block number 9 +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: Fetched VBIOS from VFCT +Sep 17 17:50:01 fedora kernel: amdgpu: ATOM BIOS: 113-CEZANNE-021 +Sep 17 17:50:01 fedora systemd[1]: initrd-parse-etc.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Finished initrd-parse-etc.service - Mountpoints Configured in the Real Root. +Sep 17 17:50:01 fedora systemd[1]: Reached target initrd-fs.target - Initrd File Systems. +Sep 17 17:50:01 fedora systemd[1]: Reached target initrd.target - Initrd Default Target. +Sep 17 17:50:01 fedora systemd[1]: dracut-mount.service - dracut mount hook was skipped because no trigger condition checks were met. +Sep 17 17:50:01 fedora systemd[1]: Starting dracut-pre-pivot.service - dracut pre-pivot and cleanup hook... +Sep 17 17:50:01 fedora kernel: [drm] VCN decode is enabled in VM mode +Sep 17 17:50:01 fedora kernel: [drm] VCN encode is enabled in VM mode +Sep 17 17:50:01 fedora systemd[1]: Finished dracut-pre-pivot.service - dracut pre-pivot and cleanup hook. +Sep 17 17:50:01 fedora systemd[1]: Starting initrd-cleanup.service - Cleaning Up and Shutting Down Daemons... +Sep 17 17:50:01 fedora systemd[1]: Stopped target timers.target - Timer Units. +Sep 17 17:50:01 fedora systemd[1]: dracut-pre-pivot.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Stopped dracut-pre-pivot.service - dracut pre-pivot and cleanup hook. +Sep 17 17:50:01 fedora systemd[1]: Stopped target initrd.target - Initrd Default Target. +Sep 17 17:50:01 fedora systemd[1]: Stopped target basic.target - Basic System. +Sep 17 17:50:01 fedora systemd[1]: Stopped target initrd-root-device.target - Initrd Root Device. +Sep 17 17:50:01 fedora systemd[1]: Stopped target initrd-usr-fs.target - Initrd /usr File System. +Sep 17 17:50:01 fedora systemd[1]: Stopped target paths.target - Path Units. +Sep 17 17:50:01 fedora systemd[1]: Stopped target remote-fs.target - Remote File Systems. +Sep 17 17:50:01 fedora systemd[1]: Stopped target remote-fs-pre.target - Preparation for Remote File Systems. +Sep 17 17:50:01 fedora systemd[1]: Stopped target slices.target - Slice Units. +Sep 17 17:50:01 fedora systemd[1]: Stopped target sockets.target - Socket Units. +Sep 17 17:50:01 fedora systemd[1]: Stopped target sysinit.target - System Initialization. +Sep 17 17:50:01 fedora systemd[1]: Stopped target swap.target - Swaps. +Sep 17 17:50:01 fedora systemd[1]: Starting plymouth-switch-root.service - Plymouth switch root service... +Sep 17 17:50:01 fedora systemd[1]: systemd-sysctl.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Stopped systemd-sysctl.service - Apply Kernel Variables. +Sep 17 17:50:01 fedora systemd[1]: systemd-modules-load.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Stopped systemd-modules-load.service - Load Kernel Modules. +Sep 17 17:50:01 fedora systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Stopped systemd-tmpfiles-setup.service - Create System Files and Directories. +Sep 17 17:50:01 fedora systemd[1]: Stopped target local-fs.target - Local File Systems. +Sep 17 17:50:01 fedora systemd[1]: Stopped target local-fs-pre.target - Preparation for Local File Systems. +Sep 17 17:50:01 fedora systemd[1]: systemd-udev-trigger.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Stopped systemd-udev-trigger.service - Coldplug All udev Devices. +Sep 17 17:50:01 fedora systemd[1]: Stopping systemd-udevd.service - Rule-based Manager for Device Events and Files... +Sep 17 17:50:01 fedora kernel: [drm] JPEG decode is enabled in VM mode +Sep 17 17:50:01 fedora systemd[1]: initrd-cleanup.service: Deactivated successfully. +Sep 17 17:50:01 fedora systemd[1]: Finished initrd-cleanup.service - Cleaning Up and Shutting Down Daemons. +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: vgaarb: deactivate vga console +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: MODE2 reset +Sep 17 17:50:01 fedora kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used) +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF +Sep 17 17:50:01 fedora kernel: [drm] Detected VRAM RAM=512M, BAR=512M +Sep 17 17:50:01 fedora kernel: [drm] RAM width 128bits DDR4 +Sep 17 17:50:01 fedora kernel: [drm] amdgpu: 512M of VRAM memory ready +Sep 17 17:50:01 fedora kernel: [drm] amdgpu: 7690M of GTT memory ready. +Sep 17 17:50:01 fedora kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144 +Sep 17 17:50:01 fedora kernel: [drm] PCIE GART of 1024M enabled. +Sep 17 17:50:01 fedora kernel: [drm] PTB located at 0x000000F41FC00000 +Sep 17 17:50:01 fedora kernel: [drm] Loading DMUB firmware via PSP: version=0x0101002B +Sep 17 17:50:01 fedora kernel: [drm] Found VCN firmware Version ENC: 1.21 DEC: 7 VEP: 0 Revision: 3 +Sep 17 17:50:01 fedora kernel: amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware +Sep 17 17:50:01 fedora systemd[1]: Finished plymouth-switch-root.service - Plymouth switch root service. +Sep 17 17:50:02 fedora kernel: nouveau 0000:01:00.0: DRM: VRAM: 4096 MiB +Sep 17 17:50:02 fedora kernel: nouveau 0000:01:00.0: DRM: GART: 536870912 MiB +Sep 17 17:50:02 fedora kernel: nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies +Sep 17 17:50:02 fedora kernel: [drm] Initialized nouveau 1.4.0 20120801 for 0000:01:00.0 on minor 1 +Sep 17 17:50:02 fedora kernel: nouveau 0000:01:00.0: [drm] No compatible format found +Sep 17 17:50:02 fedora kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: reserve 0x400000 from 0xf41f400000 for PSP TMR +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: RAS: optional ras ta ucode is not available +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: RAP: optional rap ta ucode is not available +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: SMU is initialized successfully! +Sep 17 17:50:02 fedora kernel: [drm] Display Core v3.2.281 initialized on DCN 2.1 +Sep 17 17:50:02 fedora kernel: [drm] DP-HDMI FRL PCON supported +Sep 17 17:50:02 fedora kernel: [drm] DMUB hardware initialized: version=0x0101002B +Sep 17 17:50:02 fedora kernel: [drm] kiq ring mec 2 pipe 1 q 0 +Sep 17 17:50:02 fedora kernel: [drm] VCN decode and encode initialized successfully(under DPG Mode). +Sep 17 17:50:02 fedora kernel: [drm] JPEG decode initialized successfully. +Sep 17 17:50:02 fedora kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart +Sep 17 17:50:02 fedora kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1 +Sep 17 17:50:02 fedora kernel: amdgpu: Virtual CRAT table created for GPU +Sep 17 17:50:02 fedora kernel: amdgpu: Topology: Add dGPU node [0x1638:0x1002] +Sep 17 17:50:02 fedora kernel: kfd kfd: amdgpu: added device 1002:1638 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8 +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: amdgpu: Runtime PM not available +Sep 17 17:50:02 fedora kernel: [drm] Initialized amdgpu 3.57.0 20150101 for 0000:04:00.0 on minor 2 +Sep 17 17:50:02 fedora kernel: fbcon: amdgpudrmfb (fb0) is primary device +Sep 17 17:50:02 fedora kernel: fbcon: Deferring console take-over +Sep 17 17:50:02 fedora kernel: amdgpu 0000:04:00.0: [drm] fb0: amdgpudrmfb frame buffer device +Sep 17 17:50:02 fedora systemd[1]: systemd-udevd.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped systemd-udevd.service - Rule-based Manager for Device Events and Files. +Sep 17 17:50:02 fedora systemd[1]: systemd-udevd.service: Consumed 5.319s CPU time. +Sep 17 17:50:02 fedora systemd[1]: systemd-udevd-control.socket: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Closed systemd-udevd-control.socket - udev Control Socket. +Sep 17 17:50:02 fedora systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Closed systemd-udevd-kernel.socket - udev Kernel Socket. +Sep 17 17:50:02 fedora systemd[1]: dracut-pre-udev.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped dracut-pre-udev.service - dracut pre-udev hook. +Sep 17 17:50:02 fedora systemd[1]: dracut-cmdline.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped dracut-cmdline.service - dracut cmdline hook. +Sep 17 17:50:02 fedora systemd[1]: dracut-cmdline-ask.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped dracut-cmdline-ask.service - dracut ask for additional cmdline parameters. +Sep 17 17:50:02 fedora systemd[1]: Starting initrd-udevadm-cleanup-db.service - Cleanup udev Database... +Sep 17 17:50:02 fedora systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. +Sep 17 17:50:02 fedora systemd[1]: systemd-sysusers.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped systemd-sysusers.service - Create System Users. +Sep 17 17:50:02 fedora systemd[1]: systemd-tmpfiles-setup-dev-early.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. +Sep 17 17:50:02 fedora systemd[1]: kmod-static-nodes.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Stopped kmod-static-nodes.service - Create List of Static Device Nodes. +Sep 17 17:50:02 fedora systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully. +Sep 17 17:50:02 fedora systemd[1]: Finished initrd-udevadm-cleanup-db.service - Cleanup udev Database. +Sep 17 17:50:02 fedora systemd[1]: Reached target initrd-switch-root.target - Switch Root. +Sep 17 17:50:02 fedora systemd[1]: Starting initrd-switch-root.service - Switch Root... +Sep 17 17:50:02 fedora systemd[1]: Switching root. +Sep 17 17:50:02 fedora systemd-journald[361]: Journal stopped +Sep 17 17:50:03 fedora systemd-journald[361]: Received SIGTERM from PID 1 (systemd). +Sep 17 17:50:03 fedora kernel: audit: type=1404 audit(1726566602.856:5): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability network_peer_controls=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability open_perms=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability extended_socket_class=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability always_check_network=0 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability cgroup_seclabel=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability nnp_nosuid_transition=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability genfs_seclabel_symlinks=1 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability ioctl_skip_cloexec=0 +Sep 17 17:50:03 fedora kernel: SELinux: policy capability userspace_initial_context=0 +Sep 17 17:50:03 fedora kernel: audit: type=1403 audit(1726566602.952:6): auid=4294967295 ses=4294967295 lsm=selinux res=1 +Sep 17 17:50:03 fedora systemd[1]: Successfully loaded SELinux policy in 97.002ms. +Sep 17 17:50:03 fedora systemd[1]: Relabeled /dev, /dev/shm, /run, /sys/fs/cgroup in 20.756ms. +Sep 17 17:50:03 fedora systemd[1]: systemd 255.12-1.fc40 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP -GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) +Sep 17 17:50:03 fedora systemd[1]: Detected architecture x86-64. +Sep 17 17:50:03 fedora systemd[1]: bpf-lsm: LSM BPF program attached +Sep 17 17:50:03 fedora kernel: zram: Added device: zram0 +Sep 17 17:50:03 fedora systemd[1]: initrd-switch-root.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Stopped initrd-switch-root.service - Switch Root. +Sep 17 17:50:03 fedora systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. +Sep 17 17:50:03 fedora systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice. +Sep 17 17:50:03 fedora systemd[1]: Created slice system-getty.slice - Slice /system/getty. +Sep 17 17:50:03 fedora systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck. +Sep 17 17:50:03 fedora systemd[1]: Created slice system-systemd\x2dzram\x2dsetup.slice - Slice /system/systemd-zram-setup. +Sep 17 17:50:03 fedora systemd[1]: Created slice user.slice - User and Session Slice. +Sep 17 17:50:03 fedora systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). +Sep 17 17:50:03 fedora systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch. +Sep 17 17:50:03 fedora systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point. +Sep 17 17:50:03 fedora systemd[1]: Expecting device dev-disk-by\x2duuid-6015\x2dF5DF.device - /dev/disk/by-uuid/6015-F5DF... +Sep 17 17:50:03 fedora systemd[1]: Expecting device dev-disk-by\x2duuid-b3de6112\x2d9a11\x2d4d4e\x2d91c9\x2d4c7b11e7bfba.device - /dev/disk/by-uuid/b3de6112-9a11-4d4e-91c9-4c7b11e7bfba... +Sep 17 17:50:03 fedora systemd[1]: Expecting device dev-disk-by\x2duuid-db3dfbd9\x2dc3de\x2d4de4\x2dbcbb\x2df61e681c3b39.device - /dev/disk/by-uuid/db3dfbd9-c3de-4de4-bcbb-f61e681c3b39... +Sep 17 17:50:03 fedora systemd[1]: Expecting device dev-zram0.device - /dev/zram0... +Sep 17 17:50:03 fedora systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes. +Sep 17 17:50:03 fedora systemd[1]: Reached target getty.target - Login Prompts. +Sep 17 17:50:03 fedora systemd[1]: Stopped target initrd-switch-root.target - Switch Root. +Sep 17 17:50:03 fedora systemd[1]: Stopped target initrd-fs.target - Initrd File Systems. +Sep 17 17:50:03 fedora systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System. +Sep 17 17:50:03 fedora systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes. +Sep 17 17:50:03 fedora systemd[1]: Reached target slices.target - Slice Units. +Sep 17 17:50:03 fedora systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes. +Sep 17 17:50:03 fedora systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs. +Sep 17 17:50:03 fedora systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket. +Sep 17 17:50:03 fedora systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket. +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket. +Sep 17 17:50:03 fedora systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System... +Sep 17 17:50:03 fedora systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System... +Sep 17 17:50:03 fedora systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System... +Sep 17 17:50:03 fedora systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System... +Sep 17 17:50:03 fedora systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab). +Sep 17 17:50:03 fedora systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes). +Sep 17 17:50:03 fedora systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes... +Sep 17 17:50:03 fedora systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... +Sep 17 17:50:03 fedora systemd[1]: plymouth-switch-root.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Stopped plymouth-switch-root.service - Plymouth switch root service. +Sep 17 17:50:03 fedora systemd[1]: systemd-fsck-root.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device. +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-journald.service - Journal Service... +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules... +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line... +Sep 17 17:50:03 fedora systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems... +Sep 17 17:50:03 fedora systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices... +Sep 17 17:50:03 fedora kernel: loop: module loaded +Sep 17 17:50:03 fedora systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System. +Sep 17 17:50:03 fedora systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System. +Sep 17 17:50:03 fedora systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System. +Sep 17 17:50:03 fedora systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System. +Sep 17 17:50:03 fedora systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes. +Sep 17 17:50:03 fedora systemd[1]: modprobe@configfs.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. +Sep 17 17:50:03 fedora systemd[1]: modprobe@dm_mod.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. +Sep 17 17:50:03 fedora systemd[1]: modprobe@drm.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. +Sep 17 17:50:03 fedora systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. +Sep 17 17:50:03 fedora systemd[1]: modprobe@fuse.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. +Sep 17 17:50:03 fedora systemd[1]: modprobe@loop.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-network-generator.service - Generate network units from Kernel command line. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. +Sep 17 17:50:03 fedora kernel: BTRFS info (device nvme0n1p3 state M): use zstd compression, level 1 +Sep 17 17:50:03 fedora systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System... +Sep 17 17:50:03 fedora systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully... +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems. +Sep 17 17:50:03 fedora systemd-journald[723]: Collecting audit messages is enabled. +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.374:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: iscsi-onboot.service - Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session). +Sep 17 17:50:03 fedora systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc). +Sep 17 17:50:03 fedora systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed... +Sep 17 17:50:03 fedora systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:03 fedora systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. +Sep 17 17:50:03 fedora systemd-journald[723]: Journal started +Sep 17 17:50:03 fedora systemd-journald[723]: Runtime Journal (/run/log/journal/25329b71048846eda1b36bebcfc9160b) is 8.0M, max 307.6M, 299.6M free. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Queued start job for default target graphical.target. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: systemd-journald.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Started systemd-journald.service - Journal Service. +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.377:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd-modules-load[724]: Module 'msr' is built in +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage... +Sep 17 17:50:03 fedora systemd-journald[723]: Time spent on flushing to /var/log/journal/25329b71048846eda1b36bebcfc9160b is 93.694ms for 1403 entries. +Sep 17 17:50:03 fedora systemd-journald[723]: System Journal (/var/log/journal/25329b71048846eda1b36bebcfc9160b) is 199.2M, max 4.0G, 3.8G free. +Sep 17 17:50:03 fedora systemd-journald[723]: Received client request to flush runtime journal. +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.413:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.413:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora kernel: audit: type=1334 audit(1726566603.415:11): prog-id=36 op=LOAD +Sep 17 17:50:03 fedora kernel: audit: type=1334 audit(1726566603.415:12): prog-id=37 op=LOAD +Sep 17 17:50:03 fedora kernel: audit: type=1334 audit(1726566603.415:13): prog-id=38 op=LOAD +Sep 17 17:50:03 fedora systemd-journald[723]: /var/log/journal/25329b71048846eda1b36bebcfc9160b/system.journal: Journal file uses a different sequence number ID, rotating. +Sep 17 17:50:03 fedora systemd-journald[723]: Rotating system journal. +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.420:14): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.441:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-userdbd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora kernel: audit: type=1130 audit(1726566603.466:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup-dev-early comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit: BPF prog-id=36 op=LOAD +Sep 17 17:50:03 fedora audit: BPF prog-id=37 op=LOAD +Sep 17 17:50:03 fedora audit: BPF prog-id=38 op=LOAD +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-userdbd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup-dev-early comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit: BPF prog-id=39 op=LOAD +Sep 17 17:50:03 fedora audit: BPF prog-id=40 op=LOAD +Sep 17 17:50:03 fedora audit: BPF prog-id=8 op=UNLOAD +Sep 17 17:50:03 fedora audit: BPF prog-id=9 op=UNLOAD +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed. +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-userdbd.service - User Database Manager... +Sep 17 17:50:03 fedora systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling. +Sep 17 17:50:03 fedora systemd[1]: Started systemd-userdbd.service - User Database Manager. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. +Sep 17 17:50:03 fedora systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met. +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. +Sep 17 17:50:03 fedora systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems. +Sep 17 17:50:03 fedora systemd[1]: var-lib-machines.mount - Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw). +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files... +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd-udevd[767]: Using default interface naming scheme 'v255'. +Sep 17 17:50:03 fedora systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs... +Sep 17 17:50:03 fedora systemd[1]: Found device dev-zram0.device - /dev/zram0. +Sep 17 17:50:03 fedora systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse... +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-zram-setup@zram0.service - Create swap on /dev/zram0... +Sep 17 17:50:03 fedora systemd[1]: modprobe@configfs.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: modprobe@fuse.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse. +Sep 17 17:50:03 fedora kernel: zram0: detected capacity change from 0 to 16777216 +Sep 17 17:50:03 fedora systemd[1]: Condition check resulted in dev-disk-by\x2duuid-db3dfbd9\x2dc3de\x2d4de4\x2dbcbb\x2df61e681c3b39.device - HFM512GD3JX013N 2 being skipped. +Sep 17 17:50:03 fedora systemd[1]: Condition check resulted in dev-disk-by\x2duuid-6015\x2dF5DF.device - HFM512GD3JX013N EFI\x20System\x20Partition being skipped. +Sep 17 17:50:03 fedora systemd-makefs[827]: /dev/zram0 successfully formatted as swap (label "zram0", uuid b3d046e3-2932-4128-b0f3-8e991b7cbcf8) +Sep 17 17:50:03 fedora mtp-probe[830]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.2" +Sep 17 17:50:03 fedora mtp-probe[830]: bus: 1, device: 5 was not an MTP device +Sep 17 17:50:03 fedora mtp-probe[835]: checking bus 3, device 4: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-3" +Sep 17 17:50:03 fedora mtp-probe[837]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-1" +Sep 17 17:50:03 fedora mtp-probe[838]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-2" +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-6015\x2dF5DF.service - File System Check on /dev/disk/by-uuid/6015-F5DF... +Sep 17 17:50:03 fedora kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 +Sep 17 17:50:03 fedora kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection +Sep 17 17:50:03 fedora kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-zram-setup@zram0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-db3dfbd9\x2dc3de\x2d4de4\x2dbcbb\x2df61e681c3b39.service - File System Check on /dev/disk/by-uuid/db3dfbd9-c3de-4de4-bcbb-f61e681c3b39... +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-zram-setup@zram0.service - Create swap on /dev/zram0. +Sep 17 17:50:03 fedora kernel: snd_rn_pci_acp3x 0000:04:00.5: enabling device (0000 -> 0002) +Sep 17 17:50:03 fedora kernel: input: PC Speaker as /devices/platform/pcspkr/input/input9 +Sep 17 17:50:03 fedora mtp-probe[837]: bus: 3, device: 2 was not an MTP device +Sep 17 17:50:03 fedora systemd[1]: Found device dev-disk-by\x2duuid-b3de6112\x2d9a11\x2d4d4e\x2d91c9\x2d4c7b11e7bfba.device - HFM512GD3JX013N fedora. +Sep 17 17:50:03 fedora mtp-probe[835]: bus: 3, device: 4 was not an MTP device +Sep 17 17:50:03 fedora mtp-probe[863]: checking bus 2, device 4: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb2/2-2/2-2.2" +Sep 17 17:50:03 fedora mtp-probe[864]: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.1/1-2.1.1.1" +Sep 17 17:50:03 fedora mtp-probe[863]: bus: 2, device: 4 was not an MTP device +Sep 17 17:50:03 fedora systemd[1]: Created slice system-systemd\x2dbacklight.slice - Slice /system/systemd-backlight. +Sep 17 17:50:03 fedora mtp-probe[864]: bus: 1, device: 6 was not an MTP device +Sep 17 17:50:03 fedora systemd-fsck[866]: /dev/nvme0n1p2: clean, 37/65536 files, 116929/262144 blocks +Sep 17 17:50:03 fedora systemd-fsck[862]: fsck.fat 4.2 (2021-01-31) +Sep 17 17:50:03 fedora systemd-fsck[862]: /dev/nvme0n1p1: 24 files, 4873/153296 clusters +Sep 17 17:50:03 fedora systemd[1]: Activating swap dev-zram0.swap - Compressed Swap on /dev/zram0... +Sep 17 17:50:03 fedora kernel: mc: Linux media interface: v0.10 +Sep 17 17:50:03 fedora kernel: asus_wmi: ASUS WMI generic driver loaded +Sep 17 17:50:03 fedora kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer +Sep 17 17:50:03 fedora kernel: RAPL PMU: hw unit of domain package 2^-16 Joules +Sep 17 17:50:03 fedora systemd[1]: Mounting home.mount - /home... +Sep 17 17:50:03 fedora kernel: Adding 8388604k swap on /dev/zram0. Priority:100 extents:1 across:8388604k SSDsc +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-backlight@backlight:amdgpu_bl2.service - Load/Save Screen Backlight Brightness of backlight:amdgpu_bl2... +Sep 17 17:50:03 fedora systemd[1]: Activated swap dev-zram0.swap - Compressed Swap on /dev/zram0. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-6015\x2dF5DF.service - File System Check on /dev/disk/by-uuid/6015-F5DF. +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-db3dfbd9\x2dc3de\x2d4de4\x2dbcbb\x2df61e681c3b39.service - File System Check on /dev/disk/by-uuid/db3dfbd9-c3de-4de4-bcbb-f61e681c3b39. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-6015\x2dF5DF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-fsck@dev-disk-by\x2duuid-db3dfbd9\x2dc3de\x2d4de4\x2dbcbb\x2df61e681c3b39 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora kernel: asus_wmi: Initialization: 0x1 +Sep 17 17:50:03 fedora kernel: asus_wmi: BIOS WMI version: 9.0 +Sep 17 17:50:03 fedora kernel: asus_wmi: SFUN value: 0x21 +Sep 17 17:50:03 fedora kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS +Sep 17 17:50:03 fedora kernel: usbcore: registered new interface driver usb-storage +Sep 17 17:50:03 fedora kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database +Sep 17 17:50:03 fedora kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' +Sep 17 17:50:03 fedora kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' +Sep 17 17:50:03 fedora systemd[1]: Mounted home.mount - /home. +Sep 17 17:50:03 fedora systemd[1]: Reached target swap.target - Swaps. +Sep 17 17:50:03 fedora systemd[1]: Mounting boot.mount - /boot... +Sep 17 17:50:03 fedora kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input10 +Sep 17 17:50:03 fedora kernel: scsi host2: uas +Sep 17 17:50:03 fedora kernel: asus_wmi: fan_curve_get_factory_default (0x00110024) failed: -19 +Sep 17 17:50:03 fedora kernel: asus_wmi: fan_curve_get_factory_default (0x00110025) failed: -19 +Sep 17 17:50:03 fedora kernel: asus_wmi: fan_curve_get_factory_default (0x00110032) failed: -19 +Sep 17 17:50:03 fedora systemd[1]: Mounting tmp.mount - Temporary Directory /tmp... +Sep 17 17:50:03 fedora kernel: EXT4-fs (nvme0n1p2): mounted filesystem db3dfbd9-c3de-4de4-bcbb-f61e681c3b39 r/w with ordered data mode. Quota mode: none. +Sep 17 17:50:03 fedora kernel: cdc_ether 1-2.1.1.1:2.0 eth0: register 'cdc_ether' at usb-0000:04:00.3-2.1.1.1, CDC Ethernet Device, 00:e0:99:00:2c:cf +Sep 17 17:50:03 fedora kernel: usbcore: registered new interface driver cdc_ether +Sep 17 17:50:03 fedora kernel: scsi 2:0:0:0: Direct-Access Samsung PSSD T7 Shield 0 PQ: 0 ANSI: 6 +Sep 17 17:50:03 fedora systemd[1]: Mounted boot.mount - /boot. +Sep 17 17:50:03 fedora systemd[1]: Mounted tmp.mount - Temporary Directory /tmp. +Sep 17 17:50:03 fedora kernel: usbcore: registered new interface driver uas +Sep 17 17:50:03 fedora mtp-probe[838]: bus: 3, device: 3 was not an MTP device +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: Attached scsi generic sg0 type 0 +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Write Protect is off +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Mode Sense: 43 00 00 00 +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Preferred minimum I/O size 512 bytes +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Optimal transfer size 33553920 bytes +Sep 17 17:50:03 fedora systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch. +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-backlight@leds:asus::kbd_backlight.service - Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight... +Sep 17 17:50:03 fedora systemd[1]: systemd-vconsole-setup.service: Deactivated successfully. +Sep 17 17:50:03 fedora systemd[1]: Stopped systemd-vconsole-setup.service - Virtual Console Setup. +Sep 17 17:50:03 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Stopping systemd-vconsole-setup.service - Virtual Console Setup... +Sep 17 17:50:03 fedora kernel: sda: sda1 +Sep 17 17:50:03 fedora kernel: videodev: Linux video capture interface: v2.00 +Sep 17 17:50:03 fedora kernel: sd 2:0:0:0: [sda] Attached SCSI disk +Sep 17 17:50:03 fedora kernel: ACPI: battery: new extension: ASUS Battery Extension +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-backlight@backlight:amdgpu_bl2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-vconsole-setup.service - Virtual Console Setup... +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-backlight@backlight:amdgpu_bl2.service - Load/Save Screen Backlight Brightness of backlight:amdgpu_bl2. +Sep 17 17:50:03 fedora kernel: kvm_amd: TSC scaling supported +Sep 17 17:50:03 fedora kernel: kvm_amd: Nested Virtualization enabled +Sep 17 17:50:03 fedora kernel: kvm_amd: Nested Paging enabled +Sep 17 17:50:03 fedora kernel: kvm_amd: LBR virtualization supported +Sep 17 17:50:03 fedora kernel: kvm_amd: Virtual VMLOAD VMSAVE supported +Sep 17 17:50:03 fedora kernel: kvm_amd: Virtual GIF supported +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-backlight@leds:asus::kbd_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-backlight@leds:asus::kbd_backlight.service - Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight. +Sep 17 17:50:03 fedora kernel: MCE: In-kernel MCE decoding enabled. +Sep 17 17:50:03 fedora systemd-vconsole-setup[913]: setfont: ERROR kdfontop.c:183 put_font_kdfontop: Unable to load such font with such kernel version +Sep 17 17:50:03 fedora systemd-vconsole-setup[909]: /usr/bin/setfont failed with a "system error" (EX_OSERR), ignoring. +Sep 17 17:50:03 fedora kernel: Bluetooth: Core ver 2.22 +Sep 17 17:50:03 fedora kernel: NET: Registered PF_BLUETOOTH protocol family +Sep 17 17:50:03 fedora kernel: Bluetooth: HCI device and connection manager initialized +Sep 17 17:50:03 fedora kernel: Bluetooth: HCI socket layer initialized +Sep 17 17:50:03 fedora kernel: Bluetooth: L2CAP socket layer initialized +Sep 17 17:50:03 fedora kernel: Bluetooth: SCO socket layer initialized +Sep 17 17:50:03 fedora kernel: usb 3-3: Found UVC 1.10 device USB2.0 HD UVC WebCam (13d3:5458) +Sep 17 17:50:03 fedora systemd[1]: Starting systemd-rfkill.service - Load/Save RF Kill Switch Status... +Sep 17 17:50:03 fedora kernel: [drm] DSC precompute is not needed. +Sep 17 17:50:03 fedora systemd-vconsole-setup[909]: Setting source virtual console failed, ignoring remaining ones. +Sep 17 17:50:03 fedora kernel: usbcore: registered new interface driver uvcvideo +Sep 17 17:50:03 fedora kernel: intel_rapl_common: Found RAPL domain package +Sep 17 17:50:03 fedora kernel: intel_rapl_common: Found RAPL domain core +Sep 17 17:50:03 fedora systemd[1]: Finished systemd-vconsole-setup.service - Virtual Console Setup. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:03 fedora systemd[1]: Started systemd-rfkill.service - Load/Save RF Kill Switch Status. +Sep 17 17:50:03 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora kernel: AMD Address Translation Library initialized +Sep 17 17:50:04 fedora kernel: snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002) +Sep 17 17:50:04 fedora kernel: snd_hda_intel 0000:04:00.1: Handle vga_switcheroo audio client +Sep 17 17:50:04 fedora kernel: snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002) +Sep 17 17:50:04 fedora kernel: snd_hda_intel 0000:04:00.1: bound 0000:04:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu]) +Sep 17 17:50:04 fedora kernel: usbcore: registered new interface driver btusb +Sep 17 17:50:04 fedora kernel: input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:04:00.1/sound/card0/input11 +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC294: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: mono: mono_out=0x0 +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: inputs: +Sep 17 17:50:04 fedora kernel: snd_hda_codec_realtek hdaudioC2D0: Mic=0x12 +Sep 17 17:50:04 fedora kernel: Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20240826151221 +Sep 17 17:50:04 fedora systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). +Sep 17 17:50:04 fedora systemd[1]: iscsi-onboot.service - Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session). +Sep 17 17:50:04 fedora systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes). +Sep 17 17:50:04 fedora kernel: mt7921e 0000:02:00.0: enabling device (0000 -> 0002) +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... +Sep 17 17:50:04 fedora systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc). +Sep 17 17:50:04 fedora systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: modprobe@dm_mod.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: modprobe@loop.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. +Sep 17 17:50:04 fedora kernel: mt7921e 0000:02:00.0: ASIC revision: 79610010 +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). +Sep 17 17:50:04 fedora systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora kernel: mt7921e 0000:02:00.0: HW/SW Version: 0x8a108a10, Build Time: 20240826150948a +Sep 17 17:50:04 fedora kernel: Bluetooth: hci0: Device setup in 162738 usecs +Sep 17 17:50:04 fedora kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported. +Sep 17 17:50:04 fedora kernel: mt7921e 0000:02:00.0: WM Firmware Version: ____010000, Build Time: 20240826151030 +Sep 17 17:50:04 fedora kernel: Bluetooth: hci0: AOSP extensions version v1.00 +Sep 17 17:50:04 fedora kernel: Bluetooth: hci0: AOSP quality report is supported +Sep 17 17:50:04 fedora systemd[1]: Mounting boot-efi.mount - /boot/efi... +Sep 17 17:50:04 fedora systemd[1]: Mounted boot-efi.mount - /boot/efi. +Sep 17 17:50:04 fedora systemd[1]: Reached target local-fs.target - Local File Systems. +Sep 17 17:50:04 fedora systemd[1]: Listening on systemd-sysext.socket - System Extension Image Management (Varlink). +Sep 17 17:50:04 fedora systemd[1]: import-state.service - Import network configuration from initramfs was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/run/initramfs/state). +Sep 17 17:50:04 fedora systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: Starting plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data... +Sep 17 17:50:04 fedora systemd[1]: selinux-autorelabel-mark.service - Mark the need to relabel after reboot was skipped because of an unmet condition check (ConditionSecurity=!selinux). +Sep 17 17:50:04 fedora systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats... +Sep 17 17:50:04 fedora systemd[1]: systemd-boot-random-seed.service - Update Boot Loader Random Seed was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: systemd-confext.service - Merge System Configuration Images into /etc/ was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: systemd-sysext.service - Merge System Extension Images into /usr/ and /opt/ was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories... +Sep 17 17:50:04 fedora systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 978 (systemd-binfmt) +Sep 17 17:50:04 fedora systemd[1]: Mounting proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System... +Sep 17 17:50:04 fedora systemd[1]: Mounted proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System. +Sep 17 17:50:04 fedora systemd[1]: Finished systemd-binfmt.service - Set Up Additional Binary Formats. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-binfmt comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Mounting var-lib-nfs-rpc_pipefs.mount - RPC Pipe File System... +Sep 17 17:50:04 fedora systemd[1]: Starting audit-rules.service - Load Audit Rules... +Sep 17 17:50:04 fedora systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes). +Sep 17 17:50:04 fedora systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes). +Sep 17 17:50:04 fedora systemd[1]: systemd-journal-catalog-update.service - Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var). +Sep 17 17:50:04 fedora systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id). +Sep 17 17:50:04 fedora audit: BPF prog-id=41 op=LOAD +Sep 17 17:50:04 fedora audit: BPF prog-id=42 op=LOAD +Sep 17 17:50:04 fedora audit: BPF prog-id=43 op=LOAD +Sep 17 17:50:04 fedora systemd[1]: Starting systemd-oomd.service - Userspace Out-Of-Memory (OOM) Killer... +Sep 17 17:50:04 fedora audit: BPF prog-id=44 op=LOAD +Sep 17 17:50:04 fedora systemd[1]: Starting systemd-resolved.service - Network Name Resolution... +Sep 17 17:50:04 fedora systemd[1]: systemd-update-done.service - Update is Completed was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora augenrules[991]: /usr/sbin/augenrules: No change +Sep 17 17:50:04 fedora audit: CONFIG_CHANGE auid=4294967295 ses=4294967295 subj=system_u:system_r:unconfined_service_t:s0 op=add_rule key=(null) list=1 res=1 +Sep 17 17:50:04 fedora audit[1010]: SYSCALL arch=c000003e syscall=44 success=yes exit=1056 a0=3 a1=7ffda9672170 a2=420 a3=0 items=0 ppid=991 pid=1010 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm="auditctl" exe="/usr/sbin/auditctl" subj=system_u:system_r:unconfined_service_t:s0 key=(null) +Sep 17 17:50:04 fedora audit: PROCTITLE proctitle=2F7362696E2F617564697463746C002D52002F6574632F61756469742F61756469742E72756C6573 +Sep 17 17:50:04 fedora augenrules[1010]: No rules +Sep 17 17:50:04 fedora systemd[1]: audit-rules.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished audit-rules.service - Load Audit Rules. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=audit-rules comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=audit-rules comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Starting auditd.service - Security Audit Logging Service... +Sep 17 17:50:04 fedora kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:04:00.6/sound/card2/input12 +Sep 17 17:50:04 fedora systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid). +Sep 17 17:50:04 fedora systemd[1]: import-state.service - Import network configuration from initramfs was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/run/initramfs/state). +Sep 17 17:50:04 fedora systemd[1]: iscsi-onboot.service - Special handling of early boot iSCSI sessions was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/class/iscsi_session). +Sep 17 17:50:04 fedora systemd[1]: iscsi-starter.service was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/lib/iscsi/nodes). +Sep 17 17:50:04 fedora systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore... +Sep 17 17:50:04 fedora systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... +Sep 17 17:50:04 fedora systemd[1]: selinux-autorelabel-mark.service - Mark the need to relabel after reboot was skipped because of an unmet condition check (ConditionSecurity=!selinux). +Sep 17 17:50:04 fedora auditd[1020]: No plugins found, not dispatching events +Sep 17 17:50:04 fedora systemd[1]: systemd-boot-random-seed.service - Update Boot Loader Random Seed was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: systemd-confext.service - Merge System Configuration Images into /etc/ was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc). +Sep 17 17:50:04 fedora systemd[1]: systemd-journal-catalog-update.service - Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var). +Sep 17 17:50:04 fedora systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: systemd-sysext.service - Merge System Extension Images into /usr/ and /opt/ was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora audit: CONFIG_CHANGE op=set audit_enabled=1 old=1 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 +Sep 17 17:50:04 fedora audit: CONFIG_CHANGE op=set audit_pid=1020 old=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:auditd_t:s0 res=1 +Sep 17 17:50:04 fedora systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora auditd[1020]: Init complete, auditd 4.0.2 listening for events (startup state enable) +Sep 17 17:50:04 fedora systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes). +Sep 17 17:50:04 fedora systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes). +Sep 17 17:50:04 fedora systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id). +Sep 17 17:50:04 fedora systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:04 fedora systemd[1]: systemd-update-done.service - Update is Completed was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora systemd[1]: Started auditd.service - Security Audit Logging Service. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=auditd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Starting systemd-update-utmp.service - Record System Boot/Shutdown in UTMP... +Sep 17 17:50:04 fedora systemd[1]: modprobe@dm_mod.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: modprobe@loop.service: Deactivated successfully. +Sep 17 17:50:04 fedora systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). +Sep 17 17:50:04 fedora systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. +Sep 17 17:50:04 fedora audit[1025]: SYSTEM_BOOT pid=1025 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Finished systemd-update-utmp.service - Record System Boot/Shutdown in UTMP. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Started systemd-oomd.service - Userspace Out-Of-Memory (OOM) Killer. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-oomd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora kernel: RPC: Registered named UNIX socket transport module. +Sep 17 17:50:04 fedora kernel: RPC: Registered udp transport module. +Sep 17 17:50:04 fedora kernel: RPC: Registered tcp transport module. +Sep 17 17:50:04 fedora kernel: RPC: Registered tcp-with-tls transport module. +Sep 17 17:50:04 fedora kernel: RPC: Registered tcp NFSv4.1 backchannel transport module. +Sep 17 17:50:04 fedora systemd[1]: Mounted var-lib-nfs-rpc_pipefs.mount - RPC Pipe File System. +Sep 17 17:50:04 fedora systemd[1]: Reached target rpc_pipefs.target. +Sep 17 17:50:04 fedora systemd-resolved[994]: Positive Trust Anchors: +Sep 17 17:50:04 fedora systemd-resolved[994]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d +Sep 17 17:50:04 fedora systemd-resolved[994]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa resolver.arpa corp home internal intranet lan local private test +Sep 17 17:50:04 fedora systemd-resolved[994]: Using system hostname 'fedora'. +Sep 17 17:50:04 fedora systemd[1]: Started systemd-resolved.service - Network Name Resolution. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups. +Sep 17 17:50:04 fedora systemd[1]: Received SIGRTMIN+20 from PID 530 (plymouthd). +Sep 17 17:50:04 fedora systemd[1]: Finished plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data. +Sep 17 17:50:04 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-read-write comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:04 fedora systemd[1]: Reached target sysinit.target - System Initialization. +Sep 17 17:50:04 fedora systemd[1]: Started cups.path - CUPS Scheduler. +Sep 17 17:50:04 fedora systemd[1]: Started dnf-makecache.timer - dnf makecache --timer. +Sep 17 17:50:04 fedora systemd[1]: Started fstrim.timer - Discard unused filesystem blocks once a week. +Sep 17 17:50:04 fedora systemd[1]: Started logrotate.timer - Daily rotation of log files. +Sep 17 17:50:04 fedora systemd[1]: Started plocate-updatedb.timer - Update the plocate database daily. +Sep 17 17:50:04 fedora systemd[1]: Started raid-check.timer - Weekly RAID setup health check. +Sep 17 17:50:04 fedora systemd[1]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of Temporary Directories. +Sep 17 17:50:04 fedora systemd[1]: Started unbound-anchor.timer - daily update of the root trust anchor for DNSSEC. +Sep 17 17:50:04 fedora systemd[1]: Reached target paths.target - Path Units. +Sep 17 17:50:04 fedora systemd[1]: Reached target timers.target - Timer Units. +Sep 17 17:50:04 fedora systemd[1]: Listening on avahi-daemon.socket - Avahi mDNS/DNS-SD Stack Activation Socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on cups.socket - CUPS Scheduler. +Sep 17 17:50:04 fedora systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on iscsid.socket - Open-iSCSI iscsid Socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on iscsiuio.socket - Open-iSCSI iscsiuio Socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on pcscd.socket - PC/SC Smart Card Daemon Activation Socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on sssd-kcm.socket - SSSD Kerberos Cache Manager responder socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtinterfaced.socket - libvirt interface daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtinterfaced-admin.socket - libvirt interface daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtinterfaced-ro.socket - libvirt interface daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtlockd.socket - libvirt locking daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtlockd-admin.socket - libvirt locking daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtlogd.socket - libvirt logging daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtlogd-admin.socket - libvirt logging daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnetworkd.socket - libvirt network daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnetworkd-admin.socket - libvirt network daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnetworkd-ro.socket - libvirt network daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnodedevd.socket - libvirt nodedev daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnodedevd-admin.socket - libvirt nodedev daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnodedevd-ro.socket - libvirt nodedev daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnwfilterd.socket - libvirt nwfilter daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnwfilterd-admin.socket - libvirt nwfilter daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtnwfilterd-ro.socket - libvirt nwfilter daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtproxyd.socket - libvirt proxy daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtproxyd-admin.socket - libvirt proxy daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtproxyd-ro.socket - libvirt proxy daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtqemud.socket - libvirt QEMU daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtqemud-admin.socket - libvirt QEMU daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtqemud-ro.socket - libvirt QEMU daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtsecretd.socket - libvirt secret daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtsecretd-admin.socket - libvirt secret daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtsecretd-ro.socket - libvirt secret daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtstoraged.socket - libvirt storage daemon socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtstoraged-admin.socket - libvirt storage daemon admin socket. +Sep 17 17:50:04 fedora systemd[1]: Listening on virtstoraged-ro.socket - libvirt storage daemon read-only socket. +Sep 17 17:50:04 fedora systemd[1]: Reached target sockets.target - Socket Units. +Sep 17 17:50:04 fedora audit: BPF prog-id=45 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting dbus-broker.service - D-Bus System Message Bus... +Sep 17 17:50:05 fedora systemd[1]: systemd-pcrphase-sysinit.service - TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:05 fedora systemd[1]: Started dbus-broker.service - D-Bus System Message Bus. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dbus-broker comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Reached target basic.target - Basic System. +Sep 17 17:50:05 fedora audit: BPF prog-id=46 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting abrtd.service - ABRT Daemon... +Sep 17 17:50:05 fedora systemd[1]: Starting avahi-daemon.service - Avahi mDNS/DNS-SD Stack... +Sep 17 17:50:05 fedora systemd[1]: Starting bluetooth.service - Bluetooth service... +Sep 17 17:50:05 fedora wireless[1043]: setting regulatory domain to TW based on timezone (Asia/Taipei) +Sep 17 17:50:05 fedora systemd[1]: Starting dracut-shutdown.service - Restore /run/initramfs on shutdown... +Sep 17 17:50:05 fedora systemd[1]: flatpak-add-fedora-repos.service - Add Fedora flatpak repositories was skipped because of an unmet condition check (ConditionPathExists=!/var/lib/flatpak/.fedora-initialized). +Sep 17 17:50:05 fedora systemd[1]: livesys.service - Initialization for live environments was skipped because of an unmet condition check (ConditionKernelCommandLine=rd.live.image). +Sep 17 17:50:05 fedora systemd[1]: livesys-late.service - Late Initialization for live environments was skipped because of an unmet condition check (ConditionKernelCommandLine=rd.live.image). +Sep 17 17:50:05 fedora audit: BPF prog-id=47 op=LOAD +Sep 17 17:50:05 fedora kernel: mt7921e 0000:02:00.0 wlp2s0: renamed from wlan0 +Sep 17 17:50:05 fedora systemd[1]: Starting chronyd.service - NTP client/server... +Sep 17 17:50:05 fedora audit: BPF prog-id=48 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Started low-memory-monitor.service - Low Memory Monitor. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=low-memory-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: mcelog.service - Machine Check Exception Logging Daemon was skipped because of an unmet condition check (ConditionPathExists=!/sys/module/edac_mce_amd/initstate). +Sep 17 17:50:05 fedora systemd[1]: mdmonitor.service - Software RAID monitoring and management was skipped because of an unmet condition check (ConditionPathExists=/etc/mdadm.conf). +Sep 17 17:50:05 fedora audit: BPF prog-id=49 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting polkit.service - Authorization Manager... +Sep 17 17:50:05 fedora audit: BPF prog-id=50 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting power-profiles-daemon.service - Power Profiles daemon... +Sep 17 17:50:05 fedora systemd[1]: Starting rtkit-daemon.service - RealtimeKit Scheduling Policy Service... +Sep 17 17:50:05 fedora systemd[1]: sssd.service - System Security Services Daemon was skipped because no trigger condition checks were met. +Sep 17 17:50:05 fedora systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups. +Sep 17 17:50:05 fedora dbus-broker-launch[1036]: Ready +Sep 17 17:50:05 fedora audit: BPF prog-id=51 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting accounts-daemon.service - Accounts Service... +Sep 17 17:50:05 fedora systemd[1]: Starting switcheroo-control.service - Switcheroo Control Proxy service... +Sep 17 17:50:05 fedora audit: BPF prog-id=52 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting systemd-homed.service - Home Area Manager... +Sep 17 17:50:05 fedora audit: BPF prog-id=53 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=54 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=55 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting systemd-logind.service - User Login Management... +Sep 17 17:50:05 fedora audit: BPF prog-id=56 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=57 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting systemd-machined.service - Virtual Machine and Container Registration Service... +Sep 17 17:50:05 fedora systemd[1]: Starting thermald.service - Thermal Daemon Service... +Sep 17 17:50:05 fedora systemd[1]: Starting udisks2.service - Disk Manager... +Sep 17 17:50:05 fedora audit: BPF prog-id=58 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=59 op=LOAD +Sep 17 17:50:05 fedora systemd[1]: Starting upower.service - Daemon for power management... +Sep 17 17:50:05 fedora systemd[1]: vboxservice.service - VirtualBox guest services was skipped because no trigger condition checks were met. +Sep 17 17:50:05 fedora systemd[1]: vgauthd.service - VGAuth Service for open-vm-tools was skipped because of an unmet condition check (ConditionVirtualization=vmware). +Sep 17 17:50:05 fedora systemd[1]: vmtoolsd.service - Service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware). +Sep 17 17:50:05 fedora systemd[1]: Finished dracut-shutdown.service - Restore /run/initramfs on shutdown. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dracut-shutdown comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora avahi-daemon[1045]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70). +Sep 17 17:50:05 fedora avahi-daemon[1045]: Successfully dropped root privileges. +Sep 17 17:50:05 fedora avahi-daemon[1045]: avahi-daemon 0.8 starting up. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Successfully called chroot(). +Sep 17 17:50:05 fedora systemd[1]: Started avahi-daemon.service - Avahi mDNS/DNS-SD Stack. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Successfully dropped remaining capabilities. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=avahi-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora avahi-daemon[1045]: No service file found in /etc/avahi/services. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface lo.IPv6 with address ::1. +Sep 17 17:50:05 fedora avahi-daemon[1045]: New relevant interface lo.IPv6 for mDNS. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1. +Sep 17 17:50:05 fedora avahi-daemon[1045]: New relevant interface lo.IPv4 for mDNS. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Network interface enumeration completed. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Registering new address record for ::1 on lo.*. +Sep 17 17:50:05 fedora avahi-daemon[1045]: Registering new address record for 127.0.0.1 on lo.IPv4. +Sep 17 17:50:05 fedora systemd-homed[1059]: Watching /home. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Successfully called chroot. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Successfully dropped privileges. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Successfully limited resources. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Canary thread running. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Running. +Sep 17 17:50:05 fedora systemd[1]: Started systemd-machined.service - Virtual Machine and Container Registration Service. +Sep 17 17:50:05 fedora rtkit-daemon[1056]: Watchdog thread running. +Sep 17 17:50:05 fedora thermald[1062]: Unsupported cpu model or platform +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-machined comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora udisksd[1063]: udisks daemon version 2.10.1 starting +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started rtkit-daemon.service - RealtimeKit Scheduling Policy Service. +Sep 17 17:50:05 fedora systemd[1]: thermald.service: Deactivated successfully. +Sep 17 17:50:05 fedora systemd[1]: Started thermald.service - Thermal Daemon Service. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=thermald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=thermald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started systemd-homed.service - Home Area Manager. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-homed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Finished systemd-homed-activate.service - Home Area Activation. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-homed-activate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora bluetoothd[1046]: Bluetooth daemon 5.78 +Sep 17 17:50:05 fedora systemd[1]: Started bluetooth.service - Bluetooth service. +Sep 17 17:50:05 fedora bluetoothd[1046]: Starting SDP server +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=bluetooth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Reached target bluetooth.target - Bluetooth Support. +Sep 17 17:50:05 fedora audit: BPF prog-id=60 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=61 op=LOAD +Sep 17 17:50:05 fedora audit: BPF prog-id=62 op=LOAD +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support bap plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support bass plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support mcp plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support vcp plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support micp plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support ccp plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support csip plugin +Sep 17 17:50:05 fedora kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +Sep 17 17:50:05 fedora kernel: Bluetooth: BNEP filters: protocol multicast +Sep 17 17:50:05 fedora kernel: Bluetooth: BNEP socket layer initialized +Sep 17 17:50:05 fedora bluetoothd[1046]: src/plugin.c:init_plugin() System does not support asha plugin +Sep 17 17:50:05 fedora bluetoothd[1046]: Bluetooth management interface 1.22 initialized +Sep 17 17:50:05 fedora bluetoothd[1046]: Battery Provider Manager created +Sep 17 17:50:05 fedora systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 17:50:05 fedora kernel: Bluetooth: MGMT ver 1.22 +Sep 17 17:50:05 fedora systemd[1]: Started switcheroo-control.service - Switcheroo Control Proxy service. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=switcheroo-control comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: alsa-restore.service - Save/Restore Sound Card State was skipped because of an unmet condition check (ConditionPathExists=!/etc/alsa/state-daemon.conf). +Sep 17 17:50:05 fedora systemd[1]: Started alsa-state.service - Manage Sound Card State (restore and store). +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=alsa-state comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Reached target sound.target - Sound Card. +Sep 17 17:50:05 fedora bluetoothd[1046]: Failed to set mode: Failed (0x03) +Sep 17 17:50:05 fedora alsactl[1088]: alsactl 1.2.12 daemon started +Sep 17 17:50:05 fedora chronyd[1101]: chronyd version 4.6 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SIGND +ASYNCDNS +NTS +SECHASH +IPV6 +DEBUG) +Sep 17 17:50:05 fedora chronyd[1101]: Using right/UTC timezone to obtain leap second data +Sep 17 17:50:05 fedora chronyd[1101]: Frequency -11.501 +/- 0.330 ppm read from /var/lib/chrony/drift +Sep 17 17:50:05 fedora chronyd[1101]: Loaded seccomp filter (level 2) +Sep 17 17:50:05 fedora systemd[1]: Started chronyd.service - NTP client/server. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=chronyd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd-logind[1060]: New seat seat0. +Sep 17 17:50:05 fedora systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm... +Sep 17 17:50:05 fedora systemd-logind[1060]: Watching system buttons on /dev/input/event0 (Lid Switch) +Sep 17 17:50:05 fedora systemd-logind[1060]: Watching system buttons on /dev/input/event1 (Power Button) +Sep 17 17:50:05 fedora systemd-logind[1060]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard) +Sep 17 17:50:05 fedora systemd[1]: Started systemd-logind.service - User Login Management. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: modprobe@drm.service: Deactivated successfully. +Sep 17 17:50:05 fedora systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora polkitd[1053]: Started polkitd version 124 +Sep 17 17:50:05 fedora polkitd[1053]: Loading rules from directory /etc/polkit-1/rules.d +Sep 17 17:50:05 fedora polkitd[1053]: Loading rules from directory /usr/share/polkit-1/rules.d +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:05 fedora systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:05 fedora polkitd[1053]: Finished loading, compiling and executing 18 rules +Sep 17 17:50:05 fedora polkitd[1053]: Acquired the name org.freedesktop.PolicyKit1 on the system bus +Sep 17 17:50:05 fedora accounts-daemon[1057]: started daemon version 24.04.0 +Sep 17 17:50:05 fedora systemd[1]: Started polkit.service - Authorization Manager. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started accounts-daemon.service - Accounts Service. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=accounts-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started power-profiles-daemon.service - Power Profiles daemon. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=power-profiles-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Starting ModemManager.service - Modem Manager... +Sep 17 17:50:05 fedora systemd[1]: Starting firewalld.service - firewalld - dynamic firewall daemon... +Sep 17 17:50:05 fedora ModemManager[1151]: ModemManager (version 1.22.0-3.fc40) starting in system bus... +Sep 17 17:50:05 fedora systemd[1]: Started udisks2.service - Disk Manager. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora udisksd[1063]: Acquired the name org.freedesktop.UDisks2 on the system message bus +Sep 17 17:50:05 fedora systemd[1]: Started upower.service - Daemon for power management. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started abrtd.service - ABRT Daemon. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=abrtd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora kernel: NET: Registered PF_QIPCRTR protocol family +Sep 17 17:50:05 fedora systemd[1]: Started abrt-journal-core.service - ABRT coredumpctl message creator. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=abrt-journal-core comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started abrt-oops.service - ABRT kernel log watcher. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=abrt-oops comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: abrt-vmcore.service - ABRT kernel panic detection was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/var/crash). +Sep 17 17:50:05 fedora systemd[1]: Started abrt-xorg.service - ABRT Xorg log watcher. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=abrt-xorg comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started ModemManager.service - Modem Manager. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=ModemManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Started firewalld.service - firewalld - dynamic firewall daemon. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=firewalld comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora systemd[1]: Reached target network-pre.target - Preparation for Network. +Sep 17 17:50:05 fedora systemd[1]: Starting NetworkManager.service - Network Manager... +Sep 17 17:50:05 fedora kernel: usbcore: registered new interface driver snd-usb-audio +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4350] NetworkManager (version 1.46.2-1.fc40) is starting... (boot:0e8a98f9-ebf7-48ff-b3f6-6bbce2a74765) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4352] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity-fedora.conf, 22-wifi-mac-addr.conf) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4395] manager[0x55eddcdd10f0]: monitoring kernel firmware directory '/lib/firmware'. +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4415] hostname: hostname: using hostnamed +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4417] dns-mgr: init: dns=systemd-resolved rc-manager=unmanaged (auto), plugin=systemd-resolved +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4431] rfkill3: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.2/0000:02:00.0/ieee80211/phy0/rfkill3) (driver mt7921e) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4433] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/platform/asus-nb-wmi/rfkill/rfkill0) (platform driver asus-nb-wmi) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4438] manager[0x55eddcdd10f0]: rfkill: Wi-Fi hardware radio set enabled +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4438] manager[0x55eddcdd10f0]: rfkill: WWAN hardware radio set disabled +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4455] Loaded device plugin: NMAtmManager (/usr/lib64/NetworkManager/1.46.2-1.fc40/libnm-device-plugin-adsl.so) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4467] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/1.46.2-1.fc40/libnm-device-plugin-team.so) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4493] Loaded device plugin: NMBluezManager (/usr/lib64/NetworkManager/1.46.2-1.fc40/libnm-device-plugin-bluetooth.so) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4501] Loaded device plugin: NMWifiFactory (/usr/lib64/NetworkManager/1.46.2-1.fc40/libnm-device-plugin-wifi.so) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4504] Loaded device plugin: NMWwanFactory (/usr/lib64/NetworkManager/1.46.2-1.fc40/libnm-device-plugin-wwan.so) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4506] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4506] manager: rfkill: WWAN enabled by radio killswitch; disabled by state file +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4506] manager: Networking is enabled by state file +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4509] settings: Loaded settings plugin: keyfile (internal) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4513] dhcp: init: Using DHCP client 'internal' +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4515] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4523] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external') +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4525] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external') +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4529] device (lo): Activation: starting connection 'lo' (ae211a3b-0253-4bdb-bdbf-778c315945b9) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4536] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4542] settings: (eth0): created default wired connection 'Wired connection 1' +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4542] device (eth0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4550] device (wlp2s0): driver supports Access Point (AP) mode +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4554] manager: (wlp2s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3) +Sep 17 17:50:05 fedora NetworkManager[1169]: [1726566605.4555] device (wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 17 17:50:05 fedora systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service... +Sep 17 17:50:05 fedora systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service. +Sep 17 17:50:05 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:05 fedora audit[1152]: NETFILTER_CFG table=firewalld:2 family=1 entries=1 op=nft_register_table pid=1152 subj=system_u:system_r:firewalld_t:s0 comm="firewalld" +Sep 17 17:50:05 fedora audit[1152]: NETFILTER_CFG table=firewalld:2 family=1 entries=2 op=nft_unregister_table pid=1152 subj=system_u:system_r:firewalld_t:s0 comm="firewalld" +Sep 17 17:50:05 fedora audit[1152]: NETFILTER_CFG table=firewalld:3 family=1 entries=233 op=nft_register_chain pid=1152 subj=system_u:system_r:firewalld_t:s0 comm="firewalld" +Sep 17 17:50:05 fedora audit[1152]: NETFILTER_CFG table=firewalld_policy_drop:4 family=1 entries=2 op=nft_unregister_table pid=1152 subj=system_u:system_r:firewalld_t:s0 comm="firewalld" +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0211] device (wlp2s0): set-hw-addr: set MAC address to BE:D1:D7:07:EC:5E (scanning) +Sep 17 17:50:06 fedora avahi-daemon[1045]: Server startup complete. Host name is fedora.local. Local service cookie is 1813825542. +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0477] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager" +Sep 17 17:50:06 fedora systemd[1]: Started NetworkManager.service - Network Manager. +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0493] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0497] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0500] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0504] device (eth0): carrier: link connected +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0511] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0517] device (eth0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0522] modem-manager: ModemManager available +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0522] policy: auto-activating connection 'Wired connection 1' (83164864-257d-3e56-a4cb-bbf6e9f8e4d6) +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0526] device (eth0): Activation: starting connection 'Wired connection 1' (83164864-257d-3e56-a4cb-bbf6e9f8e4d6) +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0527] device (eth0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0529] manager: NetworkManager state is now CONNECTING +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0530] device (eth0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0536] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0538] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0542] device (lo): Activation: successful, device activated. +Sep 17 17:50:06 fedora systemd[1]: Starting NetworkManager-wait-online.service - Network Manager Wait Online... +Sep 17 17:50:06 fedora systemd[1]: Starting wpa_supplicant.service - WPA supplicant... +Sep 17 17:50:06 fedora wpa_supplicant[1240]: Successfully initialized wpa_supplicant +Sep 17 17:50:06 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=wpa_supplicant comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:06 fedora systemd[1]: Started wpa_supplicant.service - WPA supplicant. +Sep 17 17:50:06 fedora systemd[1]: Reached target network.target - Network. +Sep 17 17:50:06 fedora audit[1152]: NETFILTER_CFG table=firewalld:5 family=1 entries=26 op=nft_register_rule pid=1152 subj=system_u:system_r:firewalld_t:s0 comm="firewalld" +Sep 17 17:50:06 fedora systemd[1]: Starting cups.service - CUPS Scheduler... +Sep 17 17:50:06 fedora systemd[1]: Starting gssproxy.service - GSSAPI Proxy Daemon... +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0853] device (eth0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0856] dhcp4 (eth0): activation: beginning transaction (timeout in 45 seconds) +Sep 17 17:50:06 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::2a58:e8be:c554:ff6e. +Sep 17 17:50:06 fedora avahi-daemon[1045]: New relevant interface eth0.IPv6 for mDNS. +Sep 17 17:50:06 fedora avahi-daemon[1045]: Registering new address record for fe80::2a58:e8be:c554:ff6e on eth0.*. +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.0957] dhcp4 (eth0): state changed new lease, address=192.168.0.15, acd pending +Sep 17 17:50:06 fedora systemd[1]: Started cups.service - CUPS Scheduler. +Sep 17 17:50:06 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=cups comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:06 fedora systemd[1]: Started gssproxy.service - GSSAPI Proxy Daemon. +Sep 17 17:50:06 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=gssproxy comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:06 fedora systemd[1]: rpc-gssd.service - RPC security service for NFS client and server was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab). +Sep 17 17:50:06 fedora systemd[1]: Reached target nfs-client.target - NFS client services. +Sep 17 17:50:06 fedora systemd[1]: Reached target remote-fs-pre.target - Preparation for Remote File Systems. +Sep 17 17:50:06 fedora systemd[1]: Reached target remote-cryptsetup.target - Remote Encrypted Volumes. +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1115] device (wlp2s0): supplicant interface state: internal-starting -> disconnected +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1116] Wi-Fi P2P device controlled by interface wlp2s0 created +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1117] manager: (p2p-dev-wlp2s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4) +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1118] device (p2p-dev-wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1120] device (wlp2s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.1123] device (p2p-dev-wlp2s0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2250] dhcp4 (eth0): state changed new lease, address=192.168.0.15 +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2256] policy: set 'Wired connection 1' (eth0) as default for IPv4 routing and DNS +Sep 17 17:50:06 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.0.15. +Sep 17 17:50:06 fedora avahi-daemon[1045]: New relevant interface eth0.IPv4 for mDNS. +Sep 17 17:50:06 fedora avahi-daemon[1045]: Registering new address record for 192.168.0.15 on eth0.IPv4. +Sep 17 17:50:06 fedora systemd-resolved[994]: eth0: Bus client set search domain list to: hitronhub.home +Sep 17 17:50:06 fedora systemd-resolved[994]: eth0: Bus client set default route setting: yes +Sep 17 17:50:06 fedora systemd-resolved[994]: eth0: Bus client set DNS server list to: 192.168.0.1, 203.133.1.1, 203.187.1.1, 8.8.8.8, 8.8.4.4 +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2308] device (eth0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2326] device (eth0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2328] device (eth0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed') +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2332] manager: NetworkManager state is now CONNECTED_SITE +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2334] device (eth0): Activation: successful, device activated. +Sep 17 17:50:06 fedora NetworkManager[1169]: [1726566606.2363] policy: set-hostname: set hostname to 'localhost-live.hitronhub.home' (from address lookup) +Sep 17 17:50:06 localhost-live.hitronhub.home systemd-resolved[994]: System hostname changed to 'localhost-live.hitronhub.home'. +Sep 17 17:50:06 localhost-live.hitronhub.home systemd-hostnamed[1087]: Hostname set to (transient) +Sep 17 17:50:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726566606.7844] manager: NetworkManager state is now CONNECTED_GLOBAL +Sep 17 17:50:08 localhost-live.hitronhub.home NetworkManager[1169]: [1726566608.1597] manager: startup complete +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Finished NetworkManager-wait-online.service - Network Manager Wait Online. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-wait-online comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Reached target network-online.target - Network is Online. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: iscsi.service: Unit cannot be reloaded because it is inactive. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Reached target remote-fs.target - Remote File Systems. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting rpc-statd-notify.service - Notify NFS peers of a restart... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: systemd-pcrphase.service - TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting systemd-user-sessions.service - Permit User Sessions... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting virtqemud.service - libvirt QEMU daemon... +Sep 17 17:50:08 localhost-live.hitronhub.home sm-notify[1304]: Version 2.7.1 starting +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started rpc-statd-notify.service - Notify NFS peers of a restart. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=rpc-statd-notify comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Finished systemd-user-sessions.service - Permit User Sessions. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting gdm.service - GNOME Display Manager... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting plymouth-quit-wait.service - Hold until boot process finishes up... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started gdm.service - GNOME Display Manager. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=gdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started virtqemud.service - libvirt QEMU daemon. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=virtqemud comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Received SIGRTMIN+21 from PID 530 (plymouthd). +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1337]: USER_AUTH pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1337]: USER_ACCT pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1337]: CRED_ACQ pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Created slice user-42.slice - User Slice of UID 42. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting uresourced.service - User resource assignment daemon... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting user-runtime-dir@42.service - User Runtime Directory /run/user/42... +Sep 17 17:50:08 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:08 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: New session c1 of user gdm. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=uresourced comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started uresourced.service - User resource assignment daemon. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Finished user-runtime-dir@42.service - User Runtime Directory /run/user/42. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Starting user@42.service - User Manager for UID 42... +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1350]: USER_ACCT pid=1350 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1350]: CRED_ACQ pid=1350 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:setcred grantors=? acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=failed' +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1350]: USER_ROLE_CHANGE pid=1350 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home (systemd)[1350]: pam_unix(systemd-user:session): session opened for user gdm(uid=42) by gdm(uid=0) +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1350]: USER_START pid=1350 uid=0 auid=42 ses=1 subj=system_u:system_r:init_t:s0 msg='op=PAM:session_open grantors=pam_selinux,pam_selinux,pam_loginuid,pam_keyinit,pam_namespace,pam_systemd_home,pam_umask,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: -, IOWeight: -) +Sep 17 17:50:08 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 17:50:08 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Queued start job for default target default.target. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Created slice app.slice - User Application Slice. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: grub-boot-success.timer - Mark boot as successful after the user session has run 2 minutes was skipped because of an unmet condition check (ConditionUser=!@system). +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Reached target paths.target - Paths. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Reached target timers.target - Timers. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Starting dbus.socket - D-Bus User Message Bus Socket... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Listening on pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Listening on pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Starting systemd-tmpfiles-setup.service - Create User Files and Directories... +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Listening on dbus.socket - D-Bus User Message Bus Socket. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Finished systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Reached target sockets.target - Sockets. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Reached target basic.target - Basic System. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: gnome-initial-setup-copy-worker.service - GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionUser=!@system). +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Reached target default.target - Main User Target. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Startup finished in 130ms. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started user@42.service - User Manager for UID 42. +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1]: Started session-c1.scope - Session c1 of User gdm. +Sep 17 17:50:08 localhost-live.hitronhub.home gdm-launch-environment][1337]: pam_unix(gdm-launch-environment:session): session opened for user gdm(uid=42) by (uid=0) +Sep 17 17:50:08 localhost-live.hitronhub.home audit[1337]: USER_START pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Created slice session.slice - User Core Session Slice. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Starting dbus-broker.service - D-Bus User Message Bus... +Sep 17 17:50:08 localhost-live.hitronhub.home dbus-broker-launch[1372]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored +Sep 17 17:50:08 localhost-live.hitronhub.home dbus-broker-launch[1372]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored +Sep 17 17:50:08 localhost-live.hitronhub.home systemd[1350]: Started dbus-broker.service - D-Bus User Message Bus. +Sep 17 17:50:08 localhost-live.hitronhub.home dbus-broker-launch[1372]: Ready +Sep 17 17:50:08 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.freedesktop.systemd1' requested by ':1.2' (uid=42 pid=1377 comm="/usr/libexec/gnome-session-binary --autostart /usr" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:08 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-session[1377]: gnome-session-binary[1377]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-session-binary[1377]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Running GNOME Shell (using mutter 46.5) as a Wayland display server +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Thread 'KMS thread' will be using real time scheduling +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Device '/dev/dri/card1' prefers shadow buffer +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Added device '/dev/dri/card1' (nouveau) using non-atomic mode setting. +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Device '/dev/dri/card2' prefers shadow buffer +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Added device '/dev/dri/card2' (amdgpu) using atomic mode setting. +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Created gbm renderer for '/dev/dri/card1' +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Created gbm renderer for '/dev/dri/card2' +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Boot VGA GPU /dev/dri/card2 selected as primary +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Obtained a high priority EGL context +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Obtained a high priority EGL context +Sep 17 17:50:08 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:08 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.a11y.Bus' +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Using public X11 display :1024, (using :1025 for managed services) +Sep 17 17:50:08 localhost-live.hitronhub.home gnome-shell[1389]: Using Wayland display name 'wayland-0' +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1440]: dbus-daemon[1440]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1440]: dbus-daemon[1440]: Successfully activated service 'org.a11y.atspi.Registry' +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1445]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting colord.service - Manage, Install and Generate Color Profiles... +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started colord.service - Manage, Install and Generate Color Profiles. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=colord comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home ModemManager[1151]: [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:02.2/0000:02:00.0': not supported by any plugin +Sep 17 17:50:09 localhost-live.hitronhub.home ModemManager[1151]: [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.1/1-2.1.1.1': not supported by any plugin +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly. +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Will monitor session c1 +Sep 17 17:50:09 localhost-live.hitronhub.home audit: BPF prog-id=63 op=LOAD +Sep 17 17:50:09 localhost-live.hitronhub.home audit: BPF prog-id=64 op=LOAD +Sep 17 17:50:09 localhost-live.hitronhub.home audit: BPF prog-id=65 op=LOAD +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.gnome.Shell.Screencast' requested by ':1.3' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting systemd-localed.service - Locale Service... +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started systemd-localed.service - Locale Service. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Extension background-logo@fedorahosted.org already installed in /usr/share/gnome-shell/extensions/background-logo@fedorahosted.org. /usr/share/gnome-shell/extensions/background-logo@fedorahosted.org will not be loaded +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 17:50:09 localhost-live.hitronhub.home org.gnome.Shell.desktop[1389]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/106825be3aafb41c56172656660859450600000013770000.ms”: No such file or directory +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting packagekit.service - PackageKit Daemon... +Sep 17 17:50:09 localhost-live.hitronhub.home PackageKit[1478]: daemon start +Sep 17 17:50:09 localhost-live.hitronhub.home kernel: rfkill: input handler disabled +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.freedesktop.systemd1' requested by ':1.9' (uid=42 pid=1481 comm="/usr/libexec/gsd-sharing" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:09 localhost-live.hitronhub.home gsd-sharing[1481]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:09 localhost-live.hitronhub.home gsd-sharing[1481]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.gnome.Shell.Notifications' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started pcscd.service - PC/SC Smart Card Daemon. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=pcscd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home (pcscd)[1617]: pcscd.service: Referenced but unset environment variable evaluates to an empty string: PCSCD_ARGS +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-shell[1389]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.freedesktop.portal.IBus' requested by ':1.24' (uid=42 pid=1638 comm="ibus-daemon --panel disable" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.freedesktop.portal.IBus' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started packagekit.service - PackageKit Daemon. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=packagekit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home polkitd[1053]: Registered Authentication Agent for unix-session:c1 (system bus name :1.36 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) +Sep 17 17:50:09 localhost-live.hitronhub.home NetworkManager[1169]: [1726566609.6332] agent-manager: agent[4c0a1c524825b5d5,:1.36/org.gnome.Shell.NetworkAgent/42]: agent registered +Sep 17 17:50:09 localhost-live.hitronhub.home kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1350]: Started pipewire.service - PipeWire Multimedia Service. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1350]: Started wireplumber.service - Multimedia Service Session Manager. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting geoclue.service - Location Lookup Service... +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1350]: Started pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='ca.desrt.dconf' requested by ':1.3' (uid=42 pid=1389 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'ca.desrt.dconf' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started geoclue.service - Location Lookup Service. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=geoclue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.gnome.Shell.Screencast' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting realmd.service - Realm and Domain Configuration... +Sep 17 17:50:09 localhost-live.hitronhub.home audit: BPF prog-id=66 op=LOAD +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Starting fprintd.service - Fingerprint Authentication Daemon... +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: Loaded settings from: /usr/lib/realmd/realmd-defaults.conf /usr/lib/realmd/realmd-distro.conf +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: holding daemon: startup +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: starting service +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3) +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: connected to bus +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: GLib-GIO: _g_io_module_get_default: Found default implementation local (GLocalVfs) for ‘gio-vfs’ +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: released daemon: startup +Sep 17 17:50:09 localhost-live.hitronhub.home realmd[1835]: claimed name on bus: org.freedesktop.realmd +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started realmd.service - Realm and Domain Configuration. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=realmd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1782 of process 1782 (/usr/bin/pipewire) owned by '42' high priority at nice level -11. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd[1]: Started fprintd.service - Fingerprint Authentication Daemon. +Sep 17 17:50:09 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1793 of process 1782 (/usr/bin/pipewire) owned by '42' RT at priority 20. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:09 localhost-live.hitronhub.home spice-vdagent[1888]: vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 does not exist, exiting +Sep 17 17:50:09 localhost-live.hitronhub.home gnome-session-binary[1377]: Entering running state +Sep 17 17:50:09 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1788 of process 1788 (/usr/bin/pipewire) owned by '42' high priority at nice level -11. +Sep 17 17:50:09 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1786 of process 1786 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11. +Sep 17 17:50:09 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1801 of process 1788 (/usr/bin/pipewire) owned by '42' RT at priority 20. +Sep 17 17:50:10 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 1407 of process 1389 (/usr/bin/gnome-shell) owned by '42' RT at priority 20. +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: systemd-rfkill.service: Deactivated successfully. +Sep 17 17:50:10 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:10 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.gnome.ScreenSaver' requested by ':1.22' (uid=42 pid=1545 comm="/usr/libexec/gsd-power" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Failed to grab accelerator for keybinding settings:hibernate +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Failed to grab accelerator for keybinding settings:playback-repeat +Sep 17 17:50:10 localhost-live.hitronhub.home org.gnome.Shell.desktop[1952]: The XKEYBOARD keymap compiler (xkbcomp) reports: +Sep 17 17:50:10 localhost-live.hitronhub.home org.gnome.Shell.desktop[1952]: > Warning: Unsupported maximum keycode 708, clipping. +Sep 17 17:50:10 localhost-live.hitronhub.home org.gnome.Shell.desktop[1952]: > X11 cannot support keycodes above 255. +Sep 17 17:50:10 localhost-live.hitronhub.home org.gnome.Shell.desktop[1952]: Errors from xkbcomp are not fatal to the X server +Sep 17 17:50:10 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.gnome.ScreenSaver' +Sep 17 17:50:10 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Activating service name='org.freedesktop.portal.IBus' requested by ':1.35' (uid=42 pid=1941 comm="ibus-daemon --panel disable -r --xim" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 17:50:10 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[1376]: dbus-daemon[1376]: [session uid=42 pid=1376] Successfully activated service 'org.freedesktop.portal.IBus' +Sep 17 17:50:10 localhost-live.hitronhub.home gnome-shell[1389]: Registering session with GDM +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Received SIGRTMIN+21 from PID 530 (plymouthd). +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Finished plymouth-quit-wait.service - Hold until boot process finishes up. +Sep 17 17:50:10 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plymouth-quit-wait comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Reached target multi-user.target - Multi-User System. +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Reached target graphical.target - Graphical Interface. +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Starting systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP... +Sep 17 17:50:10 localhost-live.hitronhub.home audit[2005]: SYSTEM_RUNLEVEL pid=2005 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='old-level=N new-level=5 comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully. +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Finished systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP. +Sep 17 17:50:10 localhost-live.hitronhub.home systemd[1]: Startup finished in 7.002s (firmware) + 2.803s (loader) + 1.108s (kernel) + 4.000s (initrd) + 7.463s (userspace) = 22.378s. +Sep 17 17:50:10 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-update-utmp-runlevel comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:10 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-update-utmp-runlevel comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:10 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok +Sep 17 17:50:10 localhost-live.hitronhub.home wireplumber[1786]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed? +Sep 17 17:50:10 localhost-live.hitronhub.home wireplumber[1786]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported. +Sep 17 17:50:10 localhost-live.hitronhub.home kernel: Bluetooth: RFCOMM TTY layer initialized +Sep 17 17:50:10 localhost-live.hitronhub.home kernel: Bluetooth: RFCOMM socket layer initialized +Sep 17 17:50:10 localhost-live.hitronhub.home kernel: Bluetooth: RFCOMM ver 1.11 +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSink/aac +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/aac +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 17:50:10 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.71 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Unable to get default sink +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Unable to get default source +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Sync_devices: Failed to match stream id: 6, description: 'Headphones', origin: 'H390 headset with microphone Analog Stereo' +Sep 17 17:50:10 localhost-live.hitronhub.home gsd-media-keys[1509]: Sync_devices: Failed to match stream id: 7, description: 'Microphone', origin: 'H390 headset with microphone Mono' +Sep 17 17:50:11 localhost-live.hitronhub.home chronyd[1101]: Selected source 114.33.15.129 (2.fedora.pool.ntp.org) +Sep 17 17:50:11 localhost-live.hitronhub.home chronyd[1101]: System clock TAI offset set to 37 seconds +Sep 17 17:50:11 localhost-live.hitronhub.home systemd[1350]: Starting xdg-permission-store.service - sandboxed app permission store... +Sep 17 17:50:11 localhost-live.hitronhub.home systemd[1350]: Started xdg-permission-store.service - sandboxed app permission store. +Sep 17 17:50:13 localhost-live.hitronhub.home chronyd[1101]: Selected source 210.243.152.152 (2.fedora.pool.ntp.org) +Sep 17 17:50:16 localhost-live.hitronhub.home audit[2029]: USER_AUTH pid=2029 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=failed' +Sep 17 17:50:16 localhost-live.hitronhub.home systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully. +Sep 17 17:50:16 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home gdm-password][2028]: gkr-pam: unable to locate daemon control file +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2028]: USER_AUTH pid=2028 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix,pam_gnome_keyring acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home gdm-password][2028]: gkr-pam: stashed password to try later in open session +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2028]: USER_ACCT pid=2028 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2028]: CRED_ACQ pid=2028 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix,pam_gnome_keyring acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2028]: USER_ROLE_CHANGE pid=2028 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty2 res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home systemd-logind[1060]: New session 2 of user Thomas-Internet. +Sep 17 17:50:23 localhost-live.hitronhub.home systemd[1]: Created slice user-2003.slice - User Slice of UID 2003. +Sep 17 17:50:23 localhost-live.hitronhub.home systemd[1]: Starting user-runtime-dir@2003.service - User Runtime Directory /run/user/2003... +Sep 17 17:50:23 localhost-live.hitronhub.home systemd[1]: Finished user-runtime-dir@2003.service - User Runtime Directory /run/user/2003. +Sep 17 17:50:23 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@2003 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home systemd[1]: Starting user@2003.service - User Manager for UID 2003... +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2055]: USER_ACCT pid=2055 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix acct="Thomas-Internet" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2055]: CRED_ACQ pid=2055 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:setcred grantors=? acct="Thomas-Internet" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=failed' +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2055]: USER_ROLE_CHANGE pid=2055 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:23 localhost-live.hitronhub.home (systemd)[2055]: pam_unix(systemd-user:session): session opened for user Thomas-Internet(uid=2003) by Thomas-Internet(uid=0) +Sep 17 17:50:23 localhost-live.hitronhub.home audit[2055]: USER_START pid=2055 uid=0 auid=2003 ses=3 subj=system_u:system_r:init_t:s0 msg='op=PAM:session_open grantors=pam_selinux,pam_selinux,pam_loginuid,pam_keyinit,pam_namespace,pam_systemd_home,pam_umask,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas-Internet" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2003.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2003.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Queued start job for default target default.target. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-journald[723]: /var/log/journal/25329b71048846eda1b36bebcfc9160b/user-2003.journal: Journal file uses a different sequence number ID, rotating. +Sep 17 17:50:24 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@2003 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:24 localhost-live.hitronhub.home audit[2028]: USER_START pid=2028 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_selinux,pam_loginuid,pam_selinux,pam_keyinit,pam_namespace,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_gnome_keyring,pam_umask acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty2 res=success' +Sep 17 17:50:24 localhost-live.hitronhub.home gdm-password][2028]: pam_unix(gdm-password:session): session opened for user Thomas-Internet(uid=2003) by Thomas-Internet(uid=0) +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Created slice app.slice - User Application Slice. +Sep 17 17:50:24 localhost-live.hitronhub.home gdm-password][2028]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started grub-boot-success.timer - Mark boot as successful after the user session has run 2 minutes. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target paths.target - Paths. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target timers.target - Timers. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting dbus.socket - D-Bus User Message Bus Socket... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Listening on pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Listening on pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting systemd-tmpfiles-setup.service - Create User Files and Directories... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Listening on dbus.socket - D-Bus User Message Bus Socket. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Finished systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target sockets.target - Sockets. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target basic.target - Basic System. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: gnome-initial-setup-copy-worker.service - GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionPathExists=!/home/Thomas-Internet/.config/gnome-initial-setup-done). +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target default.target - Main User Target. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Startup finished in 119ms. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[1]: Started user@2003.service - User Manager for UID 2003. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[1]: Started session-2.scope - Session 2 of User Thomas-Internet. +Sep 17 17:50:24 localhost-live.hitronhub.home gdm[1309]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed +Sep 17 17:50:24 localhost-live.hitronhub.home kernel: rfkill: input handler enabled +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSink/aac +Sep 17 17:50:24 localhost-live.hitronhub.home gsd-media-keys[1509]: Unable to get default source +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/aac +Sep 17 17:50:24 localhost-live.hitronhub.home gsd-media-keys[1509]: Unable to get default sink +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 17:50:24 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.71 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Created slice session.slice - User Core Session Slice. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting dbus-broker.service - D-Bus User Message Bus... +Sep 17 17:50:24 localhost-live.hitronhub.home dbus-broker-launch[2132]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored +Sep 17 17:50:24 localhost-live.hitronhub.home dbus-broker-launch[2132]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started dbus-broker.service - D-Bus User Message Bus. +Sep 17 17:50:24 localhost-live.hitronhub.home dbus-broker-launch[2132]: Ready +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Created slice app-gnome\x2dsession\x2dmanager.slice - Slice /app/gnome-session-manager. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session-wayland.target - GNOME Wayland Session. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target graphical-session-pre.target - Session services which should run early before the graphical session is brought up. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.Shell.target - GNOME Shell. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting gnome-session-monitor.service - Monitor Session leader for GNOME Session... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting uresourced.service - User resource assignment daemon... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started gnome-session-monitor.service - Monitor Session leader for GNOME Session. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session-pre.target - Tasks to be run before GNOME Session starts. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting gnome-session-manager@gnome.service - GNOME Session Manager (session: gnome)... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-daemon.service - Virtual filesystem service... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started gvfs-daemon.service - Virtual filesystem service. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started uresourced.service - User resource assignment daemon. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started pipewire.service - PipeWire Multimedia Service. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started wireplumber.service - Multimedia Service Session Manager. +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-daemon[2274]: discover_other_daemon: 1 +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-gnome\x2dkeyring\x2dpkcs11-2270.scope - Application launched by gnome-session-binary. +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-secrets.desktop[2274]: discover_other_daemon: 1 +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-gnome\x2dkeyring\x2dsecrets-2265.scope - Application launched by gnome-session-binary. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-gnome\x2dkeyring\x2dssh-2267.scope - Application launched by gnome-session-binary. +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-daemon[2280]: discover_other_daemon: 1 +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-ssh.desktop[2280]: discover_other_daemon: 1SSH_AUTH_SOCK=/run/user/2003/keyring/ssh +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-pkcs11.desktop[2282]: discover_other_daemon: 1SSH_AUTH_SOCK=/run/user/2003/keyring/ssh +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-keyring-daemon[2282]: discover_other_daemon: 1 +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Started gnome-session-manager@gnome.service - GNOME Session Manager (session: gnome). +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session-manager.target - GNOME Session Manager is ready. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.Shell@wayland.service - GNOME Shell on Wayland... +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: org.gnome.Shell@x11.service - GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11). +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-session[2220]: gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2286: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2286: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: app-gnome-xdg\x2duser\x2ddirs-2290.scope: PID 2290 vanished before we could move it to target cgroup '/user.slice/user-2003.slice/user@2003.service/app.slice/app-gnome-xdg\x2duser\x2ddirs-2290.scope', skipping: No such process +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: app-gnome-xdg\x2duser\x2ddirs-2290.scope: No PIDs left to attach to the scope's control group, refusing. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: app-gnome-xdg\x2duser\x2ddirs-2290.scope: Failed with result 'resources'. +Sep 17 17:50:24 localhost-live.hitronhub.home systemd[2055]: Failed to start app-gnome-xdg\x2duser\x2ddirs-2290.scope - Application launched by gnome-session-binary. +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-shell[2288]: Running GNOME Shell (using mutter 46.5) as a Wayland display server +Sep 17 17:50:24 localhost-live.hitronhub.home gnome-shell[2288]: Thread 'KMS thread' will be using real time scheduling +Sep 17 17:50:24 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2249 of process 2249 (/usr/bin/pipewire) owned by '2003' high priority at nice level -11. +Sep 17 17:50:24 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2262 of process 2249 (/usr/bin/pipewire) owned by '2003' RT at priority 20. +Sep 17 17:50:24 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2252 of process 2252 (/usr/bin/wireplumber) owned by '2003' high priority at nice level -11. +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2003.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 17:50:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2003.service (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSink/aac +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/aac +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 17:50:25 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.89 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 17:50:25 localhost-live.hitronhub.home wireplumber[2252]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed? +Sep 17 17:50:25 localhost-live.hitronhub.home wireplumber[2252]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Device '/dev/dri/card1' prefers shadow buffer +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Added device '/dev/dri/card1' (nouveau) using non-atomic mode setting. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Device '/dev/dri/card2' prefers shadow buffer +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Added device '/dev/dri/card2' (amdgpu) using atomic mode setting. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Created gbm renderer for '/dev/dri/card1' +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Created gbm renderer for '/dev/dri/card2' +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Boot VGA GPU /dev/dri/card2 selected as primary +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Obtained a high priority EGL context +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Obtained a high priority EGL context +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting at-spi-dbus-bus.service - Accessibility services bus... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started at-spi-dbus-bus.service - Accessibility services bus. +Sep 17 17:50:26 localhost-live.hitronhub.home at-spi-bus-launcher[2419]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored +Sep 17 17:50:26 localhost-live.hitronhub.home at-spi-bus-launcher[2419]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored +Sep 17 17:50:26 localhost-live.hitronhub.home dbus-broker-launch[2419]: Ready +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Using public X11 display :0, (using :1 for managed services) +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Using Wayland display name 'wayland-0' +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.26-org.a11y.atspi.Registry@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home at-spi2-registryd[2423]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting xdg-permission-store.service - sandboxed app permission store... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started xdg-permission-store.service - sandboxed app permission store. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Will monitor session 2 +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting evolution-source-registry.service - Evolution source registry... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.Shell@wayland.service - GNOME Shell on Wayland. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session-initialized.target - GNOME Session is initialized. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: gnome-session-x11-services.target - GNOME session X11 services is inactive. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Dependency failed for org.gnome.SettingsDaemon.XSettings.service - GNOME XSettings service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: org.gnome.SettingsDaemon.XSettings.service: Job org.gnome.SettingsDaemon.XSettings.service/start failed with result 'dependency'. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: gnome-session-x11-services-ready.target: Job gnome-session-x11-services-ready.target/verify-active failed with result 'dependency'. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session@gnome.target - GNOME Session (session: gnome). +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.XSettings.target - GNOME XSettings target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gnome-session-signal-init.service - Signal initialization done to GNOME Session Manager... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.freedesktop.IBus.session.GNOME.service - IBus Daemon for GNOME... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.A11ySettings.service - GNOME accessibility service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Color.service - GNOME color management service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Datetime.service - GNOME date & time service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Housekeeping.service - GNOME maintenance of expirable data service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Keyboard.service - GNOME keyboard configuration service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.MediaKeys.service - GNOME keyboard shortcuts service... +Sep 17 17:50:26 localhost-live.hitronhub.home spice-vdagent[2480]: vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 does not exist, exiting +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Power.service - GNOME power management service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.PrintNotifications.service - GNOME printer notifications service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Rfkill.service - GNOME RFKill support service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.ScreensaverProxy.service - GNOME FreeDesktop screensaver service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Sharing.service - GNOME file sharing service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Smartcard.service - GNOME smartcard service... +Sep 17 17:50:26 localhost-live.hitronhub.home vmware-user.desktop[2534]: vmware-user: could not open /proc/fs/vmblock/dev +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session-binary[2220]: Entering running state +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Sound.service - GNOME sound sample caching service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.UsbProtection.service - GNOME USB protection service... +Sep 17 17:50:26 localhost-live.hitronhub.home kernel: rfkill: input handler disabled +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting org.gnome.SettingsDaemon.Wacom.service - GNOME Wacom tablet support service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Finished gnome-session-signal-init.service - Signal initialization done to GNOME Session Manager. +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session[2220]: gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2480: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2480: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-shell[2288]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session[2220]: gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2520: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2520: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session[2220]: gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2538: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2538: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session[2220]: gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2550: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home gnome-session-binary[2220]: GnomeDesktop-WARNING: Could not create transient scope for PID 2550: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.A11ySettings.service - GNOME accessibility service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.ScreensaverProxy.service - GNOME FreeDesktop screensaver service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Datetime.service - GNOME date & time service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Housekeeping.service - GNOME maintenance of expirable data service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Rfkill.service - GNOME RFKill support service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.freedesktop.IBus.session.GNOME.service - IBus Daemon for GNOME. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Sharing.service - GNOME file sharing service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Smartcard.service - GNOME smartcard service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.UsbProtection.service - GNOME USB protection service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Sound.service - GNOME sound sample caching service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-libcanberra\x2dlogin\x2dsound-2557.scope - Application launched by gnome-session-binary. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-org.gnome.Evolution\x2dalarm\x2dnotify-2529.scope - Application launched by gnome-session-binary. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-org.gnome.SettingsDaemon.DiskUtilityNotify-2504.scope - Application launched by gnome-session-binary. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-org.gnome.Software-2568.scope - Application launched by gnome-session-binary. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.A11ySettings.target - GNOME accessibility target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Datetime.target - GNOME date & time target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Housekeeping.target - GNOME maintenance of expirable data target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Rfkill.target - GNOME RFKill support target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.ScreensaverProxy.target - GNOME FreeDesktop screensaver target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Sharing.target - GNOME file sharing target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Smartcard.target - GNOME smartcard target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Sound.target - GNOME sound sample caching target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.UsbProtection.target - GNOME USB protection target. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.freedesktop.problems.applet@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home abrt-applet[2685]: Failed to rename ‘/home/Thomas-Internet/.abrt/spool’ to ‘/home/Thomas-Internet/.cache/abrt/spool’: No such file or directory +Sep 17 17:50:26 localhost-live.hitronhub.home abrt-applet[2685]: Failed to rename ‘/home/Thomas-Internet/.abrt/settings’ to ‘/home/Thomas-Internet/.config/abrt/settings’: No such file or directory +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started evolution-source-registry.service - Evolution source registry. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting evolution-calendar-factory.service - Evolution calendar service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor. +Sep 17 17:50:26 localhost-live.hitronhub.home goa-daemon[2720]: goa-daemon version 3.50.2 starting +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.Identity@0.service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[1]: Starting sssd-kcm.service - SSSD Kerberos Cache Manager... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started evolution-calendar-factory.service - Evolution calendar service. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting evolution-addressbook-factory.service - Evolution address book service... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[1]: Started sssd-kcm.service - SSSD Kerberos Cache Manager. +Sep 17 17:50:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sssd-kcm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor. +Sep 17 17:50:26 localhost-live.hitronhub.home sssd_kcm[2827]: Starting up +Sep 17 17:50:26 localhost-live.hitronhub.home goa-identity-se[2790]: GoaKerberosIdentityManager: Using polling for change notification for credential cache type 'KCM' +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor... +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor. +Sep 17 17:50:26 localhost-live.hitronhub.home systemd[2055]: Started evolution-addressbook-factory.service - Evolution address book service. +Sep 17 17:50:26 localhost-live.hitronhub.home gsd-usb-protect[2602]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable +Sep 17 17:50:26 localhost-live.hitronhub.home polkitd[1053]: Registered Authentication Agent for unix-session:2 (system bus name :1.88 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[2288]: Unable to mount volume 1.0 TB Encrypted: Gio.IOErrorEnum: A passphrase is required to access the volume +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[1]: Created slice system-dbus\x2d:1.3\x2dorg.freedesktop.problems.slice - Slice /system/dbus-:1.3-org.freedesktop.problems. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[1]: Started dbus-:1.3-org.freedesktop.problems@0.service. +Sep 17 17:50:27 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dbus-:1.3-org.freedesktop.problems@0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 17:50:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726566627.1197] agent-manager: agent[11f69a78ef79458c,:1.88/org.gnome.Shell.NetworkAgent/2003]: agent registered +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Starting dconf.service - User preferences database... +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started dconf.service - User preferences database. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Color.service - GNOME color management service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Color.target - GNOME color management target. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Keyboard.service - GNOME keyboard configuration service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Keyboard.target - GNOME keyboard configuration target. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Wacom.service - GNOME Wacom tablet support service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Wacom.target - GNOME Wacom tablet support target. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Starting xdg-desktop-portal.service - Portal service... +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.MediaKeys.service - GNOME keyboard shortcuts service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.Power.service - GNOME power management service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.MediaKeys.target - GNOME keyboard shortcuts target. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.Power.target - GNOME power management target. +Sep 17 17:50:27 localhost-live.hitronhub.home libcanberra-login-sound.desktop[2557]: Failed to play sound: File or data not found +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Starting xdg-document-portal.service - flatpak document portal service... +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started xdg-document-portal.service - flatpak document portal service. +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-media-keys[2482]: Failed to grab accelerator for keybinding settings:hibernate +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-media-keys[2482]: Failed to grab accelerator for keybinding settings:playback-repeat +Sep 17 17:50:27 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2896 of process 2896 (/usr/bin/pipewire) owned by '2003' high priority at nice level -11. +Sep 17 17:50:27 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2904 of process 2896 (/usr/bin/pipewire) owned by '2003' RT at priority 20. +Sep 17 17:50:27 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[2288]: GNOME Shell started at Tue Sep 17 2024 17:50:26 GMT+0800 (Taipei Standard Time) +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[2288]: Registering session with GDM +Sep 17 17:50:27 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription successful-ok +Sep 17 17:50:27 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription client-error-not-found +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[1389]: Connection to xwayland lost +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-sharing[1481]: Error releasing name org.gnome.SettingsDaemon.Sharing: The connection is closed +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[1389]: Xwayland terminated, exiting since it was mandatory +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-rfkill[1498]: Error releasing name org.gnome.SettingsDaemon.Rfkill: The connection is closed +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-smartcard[1500]: Error releasing name org.gnome.SettingsDaemon.Smartcard: The connection is closed +Sep 17 17:50:27 localhost-live.hitronhub.home gsd-print-notif[1494]: Error releasing name org.gnome.SettingsDaemon.PrintNotifications: The connection is closed +Sep 17 17:50:27 localhost-live.hitronhub.home gnome-shell[1389]: Lost or failed to acquire name org.gnome.Mutter.ServiceChannel +Sep 17 17:50:27 localhost-live.hitronhub.home gdm-launch-environment][1337]: pam_unix(gdm-launch-environment:session): session closed for user gdm +Sep 17 17:50:27 localhost-live.hitronhub.home audit[1337]: USER_END pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:27 localhost-live.hitronhub.home audit[1337]: CRED_DISP pid=1337 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: Session c1 logged out. Waiting for processes to exit. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[1]: session-c1.scope: Deactivated successfully. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[1]: session-c1.scope: Consumed 3.512s CPU time. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd-logind[1060]: Removed session c1. +Sep 17 17:50:27 localhost-live.hitronhub.home polkitd[1053]: Unregistered Authentication Agent for unix-session:c1 (system bus name :1.36, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus) +Sep 17 17:50:27 localhost-live.hitronhub.home gdm[1309]: Gdm: Child process -1369 was already dead. +Sep 17 17:50:27 localhost-live.hitronhub.home gdm[1309]: Gdm: on_display_removed: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed +Sep 17 17:50:27 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 371 Create-Printer-Subscriptions successful-ok +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started org.gnome.SettingsDaemon.PrintNotifications.service - GNOME printer notifications service. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target org.gnome.SettingsDaemon.PrintNotifications.target - GNOME printer notifications target. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session.target - GNOME Session. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target gnome-session-wayland@gnome.target - GNOME Wayland Session (session: gnome). +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Reached target graphical-session.target - Current graphical user session. +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: gnome-initial-setup-first-login.service - GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/Thomas-Internet/.config/gnome-initial-setup-done). +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Starting xdg-desktop-portal-gnome.service - Portal service (GNOME implementation)... +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Started xdg-desktop-portal-gnome.service - Portal service (GNOME implementation). +Sep 17 17:50:27 localhost-live.hitronhub.home systemd[2055]: Starting xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation)... +Sep 17 17:50:28 localhost-live.hitronhub.home systemd[2055]: Started xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation). +Sep 17 17:50:28 localhost-live.hitronhub.home systemd[2055]: Started xdg-desktop-portal.service - Portal service. +Sep 17 17:50:28 localhost-live.hitronhub.home systemd[2055]: Started dbus-:1.2-org.gnome.Epiphany.WebAppProvider@0.service. +Sep 17 17:50:28 localhost-live.hitronhub.home systemd[1]: Starting fwupd.service - Firmware update daemon... +Sep 17 17:50:29 localhost-live.hitronhub.home audit: BPF prog-id=67 op=LOAD +Sep 17 17:50:29 localhost-live.hitronhub.home systemd[1]: Starting passim.service - Local Caching Server... +Sep 17 17:50:29 localhost-live.hitronhub.home avahi-daemon[1045]: Missed message org.freedesktop.DBus.Properties::GetAll() +Sep 17 17:50:29 localhost-live.hitronhub.home avahi-daemon[1045]: Missed message org.freedesktop.DBus.Properties::GetAll() +Sep 17 17:50:29 localhost-live.hitronhub.home systemd[1]: Started passim.service - Local Caching Server. +Sep 17 17:50:29 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=passim comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:29 localhost-live.hitronhub.home fwupd[3160]: 09:50:29.207 FuMain Daemon ready for requests (locale en_US.UTF-8) +Sep 17 17:50:29 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fwupd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:29 localhost-live.hitronhub.home systemd[1]: Started fwupd.service - Firmware update daemon. +Sep 17 17:50:29 localhost-live.hitronhub.home PackageKit[1478]: uid 2003 is trying to obtain org.freedesktop.packagekit.system-sources-refresh auth (only_trusted:0) +Sep 17 17:50:29 localhost-live.hitronhub.home PackageKit[1478]: uid 2003 obtained auth for org.freedesktop.packagekit.system-sources-refresh +Sep 17 17:50:29 localhost-live.hitronhub.home PackageKit[1478]: refresh-cache transaction /1265_adbbadec from uid 2003 finished with success after 65ms +Sep 17 17:50:30 localhost-live.hitronhub.home systemd[2055]: Started app-gnome-org.mozilla.firefox-3204.scope - Application launched by gnome-shell. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 17:50:30 localhost-live.hitronhub.home audit: BPF prog-id=68 op=LOAD +Sep 17 17:50:30 localhost-live.hitronhub.home audit: BPF prog-id=69 op=LOAD +Sep 17 17:50:30 localhost-live.hitronhub.home audit: BPF prog-id=70 op=LOAD +Sep 17 17:50:30 localhost-live.hitronhub.home systemd[1]: Starting systemd-timedated.service - Time & Date Service... +Sep 17 17:50:30 localhost-live.hitronhub.home systemd[1]: Started systemd-timedated.service - Time & Date Service. +Sep 17 17:50:30 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:30 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 3360 of process 3204 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1266_aeddeebd from uid 2003 finished with success after 899ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1267_ceaaddaa from uid 2003 finished with success after 3ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1268_aacbcdba from uid 2003 finished with success after 2ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1269_ccadaeec from uid 2003 finished with success after 2ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1270_acacbbcd from uid 2003 finished with success after 1ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1271_becdcbab from uid 2003 finished with success after 2ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1272_cbeeaeda from uid 2003 finished with success after 3ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1273_aedecbea from uid 2003 finished with success after 5ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1274_daabeaeb from uid 2003 finished with success after 3ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1275_abbcacde from uid 2003 finished with success after 1ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1276_ceabbace from uid 2003 finished with success after 3ms +Sep 17 17:50:32 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1277_bdccdcdd from uid 2003 finished with success after 2ms +Sep 17 17:50:33 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1278_abddbdeb from uid 2003 finished with success after 3ms +Sep 17 17:50:33 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1279_aeceebbb from uid 2003 finished with success after 3ms +Sep 17 17:50:33 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1280_ddaaccdc from uid 2003 finished with success after 708ms +Sep 17 17:50:34 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1281_cacdcaba from uid 2003 finished with success after 144ms +Sep 17 17:50:34 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1282_ceabbced from uid 2003 finished with success after 16ms +Sep 17 17:50:36 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1283_acceaacd from uid 2003 finished with success after 143ms +Sep 17 17:50:36 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1284_ecbeeece from uid 2003 finished with success after 138ms +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1]: Stopping user@42.service - User Manager for UID 42... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Activating special unit exit.target... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped target default.target - Main User Target. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopping pipewire-pulse.service - PipeWire PulseAudio... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopping xdg-permission-store.service - sandboxed app permission store... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped xdg-permission-store.service - sandboxed app permission store. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopping wireplumber.service - Multimedia Service Session Manager... +Sep 17 17:50:37 localhost-live.hitronhub.home wireplumber[1786]: wireplumber: stopped by signal: Terminated +Sep 17 17:50:37 localhost-live.hitronhub.home wireplumber[1786]: wireplumber: disconnected from pipewire +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped wireplumber.service - Multimedia Service Session Manager. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopping pipewire.service - PipeWire Multimedia Service... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped pipewire.service - PipeWire Multimedia Service. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped target basic.target - Basic System. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped target paths.target - Paths. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped target sockets.target - Sockets. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped target timers.target - Timers. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Closed pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Closed pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 17:50:37 localhost-live.hitronhub.home dbus-broker[1373]: Dispatched 297 messages @ 7(±29)μs / message. +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopping dbus-broker.service - D-Bus User Message Bus... +Sep 17 17:50:37 localhost-live.hitronhub.home systemd[1350]: Stopped systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Stopped dbus-broker.service - D-Bus User Message Bus. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Removed slice session.slice - User Core Session Slice. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Closed dbus.socket - D-Bus User Message Bus Socket. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Removed slice app.slice - User Application Slice. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Reached target shutdown.target - Shutdown. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Finished systemd-exit.service - Exit the Session. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1350]: Reached target exit.target - Exit the Session. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: user@42.service: Deactivated successfully. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: Stopped user@42.service - User Manager for UID 42. +Sep 17 17:50:38 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: Stopping user-runtime-dir@42.service - User Runtime Directory /run/user/42... +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: run-user-42.mount: Deactivated successfully. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: user-runtime-dir@42.service: Deactivated successfully. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: Stopped user-runtime-dir@42.service - User Runtime Directory /run/user/42. +Sep 17 17:50:38 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: Removed slice user-42.slice - User Slice of UID 42. +Sep 17 17:50:38 localhost-live.hitronhub.home systemd[1]: user-42.slice: Consumed 4.031s CPU time. +Sep 17 17:50:40 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1285_bebceddb from uid 2003 finished with success after 153ms +Sep 17 17:50:40 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1286_bcbdadbc from uid 2003 finished with success after 2ms +Sep 17 17:50:40 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1287_bacdbdcc from uid 2003 finished with success after 1ms +Sep 17 17:50:40 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1288_dabaadcd from uid 2003 finished with success after 2ms +Sep 17 17:50:40 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1289_ecdbccea from uid 2003 finished with success after 5ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1290_ecebdeca from uid 2003 finished with success after 3ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1291_cbeaeebc from uid 2003 finished with success after 1ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1292_addebeba from uid 2003 finished with success after 3ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1293_aeedcddb from uid 2003 finished with success after 2ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1294_bbaeedce from uid 2003 finished with success after 3ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1295_adbdabdd from uid 2003 finished with success after 2ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1296_beabaced from uid 2003 finished with success after 3ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1297_ddcdbcbe from uid 2003 finished with success after 2ms +Sep 17 17:50:41 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1298_eccddead from uid 2003 finished with success after 3ms +Sep 17 17:50:42 localhost-live.hitronhub.home PackageKit[1478]: get-updates transaction /1299_abdceece from uid 2003 finished with success after 139ms +Sep 17 17:50:42 localhost-live.hitronhub.home PackageKit[1478]: resolve transaction /1300_eeecccba from uid 2003 finished with success after 3ms +Sep 17 17:50:42 localhost-live.hitronhub.home packagekitd[1478]: Failed to get cache filename for ibus-m17n +Sep 17 17:50:42 localhost-live.hitronhub.home PackageKit[1478]: get-details transaction /1301_bbadeabd from uid 2003 finished with success after 55ms +Sep 17 17:50:46 localhost-live.hitronhub.home systemd[1]: fprintd.service: Deactivated successfully. +Sep 17 17:50:46 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:46 localhost-live.hitronhub.home audit: BPF prog-id=66 op=UNLOAD +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: VA-API version 1.21.0 +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: Trying to open /usr/lib64/dri-nonfree/radeonsi_drv_video.so +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: Trying to open /usr/lib64/dri-freeworld/radeonsi_drv_video.so +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: Trying to open /usr/lib64/dri/radeonsi_drv_video.so +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: Found init function __vaDriverInit_1_21 +Sep 17 17:50:50 localhost-live.hitronhub.home org.mozilla.firefox.desktop[3853]: libva info: va_openDriver() returns 0 +Sep 17 17:50:57 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 17:50:57 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:50:57 localhost-live.hitronhub.home audit: BPF prog-id=62 op=UNLOAD +Sep 17 17:50:57 localhost-live.hitronhub.home audit: BPF prog-id=61 op=UNLOAD +Sep 17 17:50:57 localhost-live.hitronhub.home audit: BPF prog-id=60 op=UNLOAD +Sep 17 17:51:00 localhost-live.hitronhub.home systemd[1]: systemd-timedated.service: Deactivated successfully. +Sep 17 17:51:00 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:51:00 localhost-live.hitronhub.home audit: BPF prog-id=70 op=UNLOAD +Sep 17 17:51:00 localhost-live.hitronhub.home audit: BPF prog-id=69 op=UNLOAD +Sep 17 17:51:00 localhost-live.hitronhub.home audit: BPF prog-id=68 op=UNLOAD +Sep 17 17:51:04 localhost-live.hitronhub.home systemd[1]: systemd-localed.service: Deactivated successfully. +Sep 17 17:51:04 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:51:04 localhost-live.hitronhub.home audit: BPF prog-id=65 op=UNLOAD +Sep 17 17:51:04 localhost-live.hitronhub.home audit: BPF prog-id=64 op=UNLOAD +Sep 17 17:51:04 localhost-live.hitronhub.home audit: BPF prog-id=63 op=UNLOAD +Sep 17 17:51:09 localhost-live.hitronhub.home geoclue[1787]: Service not used for 60 seconds. Shutting down.. +Sep 17 17:51:09 localhost-live.hitronhub.home systemd[1]: geoclue.service: Deactivated successfully. +Sep 17 17:51:09 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=geoclue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:51:10 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 4180 of process 3479 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 17 17:51:10 localhost-live.hitronhub.home realmd[1835]: quitting realmd service after timeout +Sep 17 17:51:10 localhost-live.hitronhub.home realmd[1835]: stopping service +Sep 17 17:51:10 localhost-live.hitronhub.home systemd[1]: realmd.service: Deactivated successfully. +Sep 17 17:51:10 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=realmd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:51:17 localhost-live.hitronhub.home chronyd[1101]: Selected source 103.147.22.149 (2.fedora.pool.ntp.org) +Sep 17 17:51:27 localhost-live.hitronhub.home systemd[2055]: Starting gvfs-metadata.service - Virtual filesystem metadata service... +Sep 17 17:51:27 localhost-live.hitronhub.home systemd[2055]: Started gvfs-metadata.service - Virtual filesystem metadata service. +Sep 17 17:52:08 localhost-live.hitronhub.home systemd[1]: virtqemud.service: Deactivated successfully. +Sep 17 17:52:08 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=virtqemud comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:52:47 localhost-live.hitronhub.home systemd[2055]: Starting grub-boot-success.service - Mark boot as successful... +Sep 17 17:52:47 localhost-live.hitronhub.home systemd[2055]: Finished grub-boot-success.service - Mark boot as successful. +Sep 17 17:54:17 localhost-live.hitronhub.home org.mozilla.firefox.desktop[4272]: [GFX1-]: Managed to allocate after flush. +Sep 17 17:54:17 localhost-live.hitronhub.home org.mozilla.firefox.desktop[4272]: [GFX1-]: Managed to allocate after flush. +Sep 17 17:55:24 localhost-live.hitronhub.home systemd[2055]: Created slice background.slice - User Background Tasks Slice. +Sep 17 17:55:24 localhost-live.hitronhub.home systemd[2055]: Starting systemd-tmpfiles-clean.service - Cleanup of User's Temporary Files and Directories... +Sep 17 17:55:24 localhost-live.hitronhub.home systemd[2055]: Finished systemd-tmpfiles-clean.service - Cleanup of User's Temporary Files and Directories. +Sep 17 17:55:44 localhost-live.hitronhub.home PackageKit[1478]: daemon quit +Sep 17 17:55:44 localhost-live.hitronhub.home systemd[1]: packagekit.service: Deactivated successfully. +Sep 17 17:55:44 localhost-live.hitronhub.home systemd[1]: packagekit.service: Consumed 2.514s CPU time. +Sep 17 17:55:44 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=packagekit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 17:56:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726567017.7969] device (wlp2s0): set-hw-addr: set MAC address to BA:15:9D:63:9B:53 (scanning) +Sep 17 17:56:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726567017.8286] device (wlp2s0): supplicant interface state: disconnected -> interface_disabled +Sep 17 17:56:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726567017.8286] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> interface_disabled +Sep 17 17:56:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726567017.8477] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 17:56:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726567017.8477] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 17:57:46 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 5251 of process 4948 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 17 17:58:10 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 5468 of process 5155 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 17 18:01:00 localhost-live.hitronhub.home chronyd[1101]: Selected source 210.243.152.152 (2.fedora.pool.ntp.org) +Sep 17 18:03:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726567432.7917] device (wlp2s0): set-hw-addr: set MAC address to 3E:96:A2:D2:B6:86 (scanning) +Sep 17 18:03:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726567432.8239] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:03:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726567432.8240] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:03:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726567432.8312] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:03:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726567432.8313] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:05:47 localhost-live.hitronhub.home systemd[1]: Starting systemd-tmpfiles-clean.service - Cleanup of Temporary Directories... +Sep 17 18:05:47 localhost-live.hitronhub.home systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully. +Sep 17 18:05:47 localhost-live.hitronhub.home systemd[1]: Finished systemd-tmpfiles-clean.service - Cleanup of Temporary Directories. +Sep 17 18:05:47 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:05:47 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:10:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726567847.8034] device (wlp2s0): set-hw-addr: set MAC address to 32:CD:22:6B:EA:E0 (scanning) +Sep 17 18:10:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726567847.8350] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:10:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726567847.8351] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:10:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726567847.8523] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:10:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726567847.8524] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:17:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726568262.8001] device (wlp2s0): set-hw-addr: set MAC address to C2:FA:4F:7E:2C:25 (scanning) +Sep 17 18:17:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726568262.8269] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:17:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726568262.8269] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:17:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726568262.8274] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:17:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726568262.8274] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:24:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726568677.8101] device (wlp2s0): set-hw-addr: set MAC address to 9E:FF:6F:EE:DD:57 (scanning) +Sep 17 18:24:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726568677.8530] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 17 18:24:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726568677.8530] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 17 18:24:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726568677.8586] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 17 18:24:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726568677.8587] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 17 18:30:47 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 17 18:30:48 localhost-live.hitronhub.home dnf[6487]: Metadata cache refreshed recently. +Sep 17 18:30:48 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 17 18:30:48 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 17 18:30:48 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:30:48 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:31:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726569092.7900] device (wlp2s0): set-hw-addr: set MAC address to 1E:DC:4F:1B:84:39 (scanning) +Sep 17 18:31:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726569092.8216] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:31:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726569092.8217] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:31:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726569092.8293] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:31:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726569092.8294] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:38:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726569507.8062] device (wlp2s0): set-hw-addr: set MAC address to EA:6D:30:EC:AA:59 (scanning) +Sep 17 18:38:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726569507.8378] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:38:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726569507.8378] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:38:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726569507.8473] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:38:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726569507.8474] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:45:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726569922.8050] device (wlp2s0): set-hw-addr: set MAC address to 9E:94:AE:28:12:72 (scanning) +Sep 17 18:45:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726569922.8318] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:45:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726569922.8318] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:45:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726569922.8373] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:45:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726569922.8374] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:48:48 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription successful-ok +Sep 17 18:52:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726570337.7869] device (wlp2s0): set-hw-addr: set MAC address to 6A:67:80:DC:FA:FC (scanning) +Sep 17 18:52:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726570337.8137] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:52:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726570337.8137] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:52:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726570337.8324] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:52:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726570337.8325] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 18:55:23 localhost-live.hitronhub.home gdm[1309]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed +Sep 17 18:55:23 localhost-live.hitronhub.home kernel: rfkill: input handler enabled +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSink/aac +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/aac +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 18:55:23 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.89 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 18:55:23 localhost-live.hitronhub.home audit[7021]: USER_AUTH pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:23 localhost-live.hitronhub.home audit[7021]: USER_ACCT pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:23 localhost-live.hitronhub.home audit[7021]: CRED_ACQ pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:23 localhost-live.hitronhub.home systemd-logind[1060]: New session c2 of user gdm. +Sep 17 18:55:23 localhost-live.hitronhub.home systemd[1]: Created slice user-42.slice - User Slice of UID 42. +Sep 17 18:55:23 localhost-live.hitronhub.home gsd-media-keys[2482]: Unable to get default source +Sep 17 18:55:23 localhost-live.hitronhub.home gsd-media-keys[2482]: Unable to get default sink +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[1]: Starting user-runtime-dir@42.service - User Runtime Directory /run/user/42... +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[1]: Finished user-runtime-dir@42.service - User Runtime Directory /run/user/42. +Sep 17 18:55:24 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[1]: Starting user@42.service - User Manager for UID 42... +Sep 17 18:55:24 localhost-live.hitronhub.home audit[7043]: USER_ACCT pid=7043 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home audit[7043]: CRED_ACQ pid=7043 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:setcred grantors=? acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=failed' +Sep 17 18:55:24 localhost-live.hitronhub.home audit[7043]: USER_ROLE_CHANGE pid=7043 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home (systemd)[7043]: pam_unix(systemd-user:session): session opened for user gdm(uid=42) by gdm(uid=0) +Sep 17 18:55:24 localhost-live.hitronhub.home audit[7043]: USER_START pid=7043 uid=0 auid=42 ses=4 subj=system_u:system_r:init_t:s0 msg='op=PAM:session_open grantors=pam_selinux,pam_selinux,pam_loginuid,pam_keyinit,pam_namespace,pam_systemd_home,pam_umask,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="gdm" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Queued start job for default target default.target. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Created slice app.slice - User Application Slice. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: grub-boot-success.timer - Mark boot as successful after the user session has run 2 minutes was skipped because of an unmet condition check (ConditionUser=!@system). +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Reached target paths.target - Paths. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Reached target timers.target - Timers. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Starting dbus.socket - D-Bus User Message Bus Socket... +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Listening on pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Listening on pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Starting systemd-tmpfiles-setup.service - Create User Files and Directories... +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Listening on dbus.socket - D-Bus User Message Bus Socket. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Reached target sockets.target - Sockets. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Finished systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Reached target basic.target - Basic System. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: gnome-initial-setup-copy-worker.service - GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionUser=!@system). +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Reached target default.target - Main User Target. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Startup finished in 121ms. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[1]: Started user@42.service - User Manager for UID 42. +Sep 17 18:55:24 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[1]: Started session-c2.scope - Session c2 of User gdm. +Sep 17 18:55:24 localhost-live.hitronhub.home gdm-launch-environment][7021]: pam_unix(gdm-launch-environment:session): session opened for user gdm(uid=42) by (uid=0) +Sep 17 18:55:24 localhost-live.hitronhub.home audit[7021]: USER_START pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Created slice session.slice - User Core Session Slice. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Starting dbus-broker.service - D-Bus User Message Bus... +Sep 17 18:55:24 localhost-live.hitronhub.home dbus-broker-launch[7108]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored +Sep 17 18:55:24 localhost-live.hitronhub.home dbus-broker-launch[7108]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored +Sep 17 18:55:24 localhost-live.hitronhub.home systemd[7043]: Started dbus-broker.service - D-Bus User Message Bus. +Sep 17 18:55:24 localhost-live.hitronhub.home dbus-broker-launch[7108]: Ready +Sep 17 18:55:24 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.freedesktop.systemd1' requested by ':1.2' (uid=42 pid=7117 comm="/usr/libexec/gnome-session-binary --autostart /usr" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:24 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:24 localhost-live.hitronhub.home gnome-session[7117]: gnome-session-binary[7117]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:24 localhost-live.hitronhub.home gnome-session-binary[7117]: WARNING: Could not check if unit gnome-session-wayland@gnome-login.target is active: Error calling StartServiceByName for org.freedesktop.systemd1: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:24 localhost-live.hitronhub.home gnome-shell[7139]: Running GNOME Shell (using mutter 46.5) as a Wayland display server +Sep 17 18:55:24 localhost-live.hitronhub.home gnome-shell[7139]: Thread 'KMS thread' will be using real time scheduling +Sep 17 18:55:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2003.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2003.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 18:55:24 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Device '/dev/dri/card1' prefers shadow buffer +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Added device '/dev/dri/card1' (nouveau) using non-atomic mode setting. +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Device '/dev/dri/card2' prefers shadow buffer +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Added device '/dev/dri/card2' (amdgpu) using atomic mode setting. +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Created gbm renderer for '/dev/dri/card1' +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Created gbm renderer for '/dev/dri/card2' +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Boot VGA GPU /dev/dri/card2 selected as primary +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Obtained a high priority EGL context +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Obtained a high priority EGL context +Sep 17 18:55:25 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.a11y.Bus' requested by ':1.4' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:25 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.a11y.Bus' +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Using public X11 display :1024, (using :1025 for managed services) +Sep 17 18:55:25 localhost-live.hitronhub.home gnome-shell[7139]: Using Wayland display name 'wayland-0' +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7259]: dbus-daemon[7259]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7259]: dbus-daemon[7259]: Successfully activated service 'org.a11y.atspi.Registry' +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7277]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly. +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Will monitor session c2 +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=71 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=72 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=73 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.gnome.Shell.Screencast' requested by ':1.3' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting systemd-localed.service - Locale Service... +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore' +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.gnome.Shell.Notifications' requested by ':1.3' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Extension background-logo@fedorahosted.org already installed in /usr/share/gnome-shell/extensions/background-logo@fedorahosted.org. /usr/share/gnome-shell/extensions/background-logo@fedorahosted.org will not be loaded +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded +Sep 17 18:55:26 localhost-live.hitronhub.home org.gnome.Shell.desktop[7139]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/1036e5b1c6cbb7620a172657052422395300000071170000.ms”: No such file or directory +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting packagekit.service - PackageKit Daemon... +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started systemd-localed.service - Locale Service. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home PackageKit[7308]: daemon start +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.freedesktop.systemd1' requested by ':1.9' (uid=42 pid=7310 comm="/usr/libexec/gsd-sharing" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:26 localhost-live.hitronhub.home gsd-sharing[7310]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:26 localhost-live.hitronhub.home gsd-sharing[7310]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1 +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.gnome.Shell.Notifications' +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=74 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=75 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=76 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-shell[7139]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.freedesktop.portal.IBus' requested by ':1.24' (uid=42 pid=7447 comm="ibus-daemon --panel disable" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.freedesktop.portal.IBus' +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home kernel: rfkill: input handler disabled +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started packagekit.service - PackageKit Daemon. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=packagekit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home polkitd[1053]: Registered Authentication Agent for unix-session:c2 (system bus name :1.190 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) +Sep 17 18:55:26 localhost-live.hitronhub.home kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 18:55:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726570526.6512] agent-manager: agent[db35798eff985461,:1.190/org.gnome.Shell.NetworkAgent/42]: agent registered +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[7043]: Started pipewire.service - PipeWire Multimedia Service. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[7043]: Started wireplumber.service - Multimedia Service Session Manager. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting geoclue.service - Location Lookup Service... +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[7043]: Started pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='ca.desrt.dconf' requested by ':1.3' (uid=42 pid=7139 comm="/usr/bin/gnome-shell" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'ca.desrt.dconf' +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started geoclue.service - Location Lookup Service. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=geoclue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.gnome.Shell.Screencast' +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting realmd.service - Realm and Domain Configuration... +Sep 17 18:55:26 localhost-live.hitronhub.home audit: BPF prog-id=77 op=LOAD +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Starting fprintd.service - Fingerprint Authentication Daemon... +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: Loaded settings from: /usr/lib/realmd/realmd-defaults.conf /usr/lib/realmd/realmd-distro.conf +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: holding daemon: startup +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: starting service +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: GLib-GIO: Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3) +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: connected to bus +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: GLib-GIO: _g_io_module_get_default: Found default implementation local (GLocalVfs) for ‘gio-vfs’ +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: released daemon: startup +Sep 17 18:55:26 localhost-live.hitronhub.home realmd[7616]: claimed name on bus: org.freedesktop.realmd +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started realmd.service - Realm and Domain Configuration. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=realmd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7572 of process 7572 (/usr/bin/pipewire) owned by '42' high priority at nice level -11. +Sep 17 18:55:26 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:26 localhost-live.hitronhub.home systemd[1]: Started fprintd.service - Fingerprint Authentication Daemon. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7585 of process 7572 (/usr/bin/pipewire) owned by '42' RT at priority 20. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:26 localhost-live.hitronhub.home spice-vdagent[7682]: vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 does not exist, exiting +Sep 17 18:55:26 localhost-live.hitronhub.home gnome-session-binary[7117]: Entering running state +Sep 17 18:55:26 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7579 of process 7579 (/usr/bin/pipewire) owned by '42' high priority at nice level -11. +Sep 17 18:55:26 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7577 of process 7577 (/usr/bin/wireplumber) owned by '42' high priority at nice level -11. +Sep 17 18:55:27 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7595 of process 7579 (/usr/bin/pipewire) owned by '42' RT at priority 20. +Sep 17 18:55:27 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 7166 of process 7139 (/usr/bin/gnome-shell) owned by '42' RT at priority 20. +Sep 17 18:55:27 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.gnome.ScreenSaver' requested by ':1.23' (uid=42 pid=7391 comm="/usr/libexec/gsd-power" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Failed to grab accelerator for keybinding settings:playback-repeat +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Failed to grab accelerator for keybinding settings:hibernate +Sep 17 18:55:27 localhost-live.hitronhub.home org.gnome.Shell.desktop[7744]: The XKEYBOARD keymap compiler (xkbcomp) reports: +Sep 17 18:55:27 localhost-live.hitronhub.home org.gnome.Shell.desktop[7744]: > Warning: Unsupported maximum keycode 708, clipping. +Sep 17 18:55:27 localhost-live.hitronhub.home org.gnome.Shell.desktop[7744]: > X11 cannot support keycodes above 255. +Sep 17 18:55:27 localhost-live.hitronhub.home org.gnome.Shell.desktop[7744]: Errors from xkbcomp are not fatal to the X server +Sep 17 18:55:27 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.gnome.ScreenSaver' +Sep 17 18:55:27 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Activating service name='org.freedesktop.portal.IBus' requested by ':1.35' (uid=42 pid=7734 comm="ibus-daemon --panel disable -r --xim" label="system_u:system_r:xdm_t:s0-s0:c0.c1023") +Sep 17 18:55:27 localhost-live.hitronhub.home /usr/libexec/gdm-wayland-session[7116]: dbus-daemon[7116]: [session uid=42 pid=7116] Successfully activated service 'org.freedesktop.portal.IBus' +Sep 17 18:55:27 localhost-live.hitronhub.home gnome-shell[7139]: Registering session with GDM +Sep 17 18:55:27 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 359 Create-Printer-Subscriptions successful-ok +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSink/aac +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/aac +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 18:55:27 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.224 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 18:55:27 localhost-live.hitronhub.home wireplumber[7577]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed? +Sep 17 18:55:27 localhost-live.hitronhub.home wireplumber[7577]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported. +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Unable to get default sink +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Unable to get default source +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Sync_devices: Failed to match stream id: 6, description: 'Headphones', origin: 'H390 headset with microphone Analog Stereo' +Sep 17 18:55:27 localhost-live.hitronhub.home gsd-media-keys[7335]: Sync_devices: Failed to match stream id: 7, description: 'Microphone', origin: 'H390 headset with microphone Mono' +Sep 17 18:55:28 localhost-live.hitronhub.home systemd[7043]: Starting xdg-permission-store.service - sandboxed app permission store... +Sep 17 18:55:28 localhost-live.hitronhub.home systemd[7043]: Started xdg-permission-store.service - sandboxed app permission store. +Sep 17 18:55:28 localhost-live.hitronhub.home audit[7820]: USER_AUTH pid=7820 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=failed' +Sep 17 18:55:38 localhost-live.hitronhub.home gdm-password][7819]: gkr-pam: unable to locate daemon control file +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7819]: USER_AUTH pid=7819 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix,pam_gnome_keyring acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home gdm-password][7819]: gkr-pam: stashed password to try later in open session +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7819]: USER_ACCT pid=7819 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7819]: CRED_ACQ pid=7819 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix,pam_gnome_keyring acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7819]: USER_ROLE_CHANGE pid=7819 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty3 res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home systemd-logind[1060]: New session 5 of user Thomas. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Created slice user-2000.slice - User Slice of UID 2000. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Starting user-runtime-dir@2000.service - User Runtime Directory /run/user/2000... +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Finished user-runtime-dir@2000.service - User Runtime Directory /run/user/2000. +Sep 17 18:55:38 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@2000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Starting user@2000.service - User Manager for UID 2000... +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7851]: USER_ACCT pid=7851 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7851]: CRED_ACQ pid=7851 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=PAM:setcred grantors=? acct="Thomas" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=failed' +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7851]: USER_ROLE_CHANGE pid=7851 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='op=pam_selinux default-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 selected-context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home (systemd)[7851]: pam_unix(systemd-user:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7851]: USER_START pid=7851 uid=0 auid=2000 ses=6 subj=system_u:system_r:init_t:s0 msg='op=PAM:session_open grantors=pam_selinux,pam_selinux,pam_loginuid,pam_keyinit,pam_namespace,pam_systemd_home,pam_umask,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/lib/systemd/systemd-executor" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home systemd-xdg-autostart-generator[7872]: Exec binary '/opt/OnlyKey/nw' does not exist: Permission denied +Sep 17 18:55:38 localhost-live.hitronhub.home systemd-xdg-autostart-generator[7872]: /home/Thomas/.config/autostart/nw.desktop: not generating unit, error parsing Exec= line: Permission denied +Sep 17 18:55:38 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2000.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:38 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2000.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Queued start job for default target default.target. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Created slice app.slice - User Application Slice. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Started grub-boot-success.timer - Mark boot as successful after the user session has run 2 minutes. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Reached target paths.target - Paths. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Reached target timers.target - Timers. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Starting dbus.socket - D-Bus User Message Bus Socket... +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Listening on pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Listening on pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Starting systemd-tmpfiles-setup.service - Create User Files and Directories... +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Listening on dbus.socket - D-Bus User Message Bus Socket. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Reached target sockets.target - Sockets. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Finished systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Reached target basic.target - Basic System. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: gnome-initial-setup-copy-worker.service - GNOME Initial Setup Copy Worker was skipped because of an unmet condition check (ConditionPathExists=!/home/Thomas/.config/gnome-initial-setup-done). +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Reached target default.target - Main User Target. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[7851]: Startup finished in 127ms. +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Started user@2000.service - User Manager for UID 2000. +Sep 17 18:55:38 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@2000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:38 localhost-live.hitronhub.home systemd[1]: Started session-5.scope - Session 5 of User Thomas. +Sep 17 18:55:38 localhost-live.hitronhub.home gdm-password][7819]: pam_unix(gdm-password:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:55:38 localhost-live.hitronhub.home gdm-password][7819]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring +Sep 17 18:55:38 localhost-live.hitronhub.home audit[7819]: USER_START pid=7819 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_selinux,pam_loginuid,pam_selinux,pam_keyinit,pam_namespace,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_gnome_keyring,pam_umask acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty3 res=success' +Sep 17 18:55:39 localhost-live.hitronhub.home gdm[1309]: Gdm: on_display_added: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed +Sep 17 18:55:39 localhost-live.hitronhub.home kernel: rfkill: input handler enabled +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSink/aac +Sep 17 18:55:39 localhost-live.hitronhub.home gsd-media-keys[7335]: Unable to get default source +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/aac +Sep 17 18:55:39 localhost-live.hitronhub.home gsd-media-keys[7335]: Unable to get default sink +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 18:55:39 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.224 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Created slice session.slice - User Core Session Slice. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting dbus-broker.service - D-Bus User Message Bus... +Sep 17 18:55:39 localhost-live.hitronhub.home dbus-broker-launch[7972]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored +Sep 17 18:55:39 localhost-live.hitronhub.home dbus-broker-launch[7972]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started dbus-broker.service - D-Bus User Message Bus. +Sep 17 18:55:39 localhost-live.hitronhub.home dbus-broker-launch[7972]: Ready +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Created slice app-gnome\x2dsession\x2dmanager.slice - Slice /app/gnome-session-manager. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-wayland.target - GNOME Wayland Session. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Reached target graphical-session-pre.target - Session services which should run early before the graphical session is brought up. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.Shell.target - GNOME Shell. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting gnome-session-monitor.service - Monitor Session leader for GNOME Session... +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting uresourced.service - User resource assignment daemon... +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started gnome-session-monitor.service - Monitor Session leader for GNOME Session. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-pre.target - Tasks to be run before GNOME Session starts. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting gnome-session-manager@gnome.service - GNOME Session Manager (session: gnome)... +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-daemon.service - Virtual filesystem service... +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started gvfs-daemon.service - Virtual filesystem service. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started uresourced.service - User resource assignment daemon. +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started pipewire.service - PipeWire Multimedia Service. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started wireplumber.service - Multimedia Service Session Manager. +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: WARNING: Desktop file /home/Thomas/.config/autostart/nw.desktop for application nw.desktop could not be parsed or references a missing TryExec binary +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session-binary[8060]: WARNING: Desktop file /home/Thomas/.config/autostart/nw.desktop for application nw.desktop could not be parsed or references a missing TryExec binary +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-daemon[8118]: discover_other_daemon: 1 +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-pkcs11.desktop[8118]: discover_other_daemon: 1 +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-daemon[8122]: discover_other_daemon: 1 +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-secrets.desktop[8122]: discover_other_daemon: 1 +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-daemon[8123]: discover_other_daemon: 1 +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-keyring-ssh.desktop[8123]: discover_other_daemon: 1SSH_AUTH_SOCK=/run/user/2000/keyring/ssh +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dpkcs11-8109.scope: PID 8109 vanished before we could move it to target cgroup '/user.slice/user-2000.slice/user@2000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dpkcs11-8109.scope', skipping: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dpkcs11-8109.scope: No PIDs left to attach to the scope's control group, refusing. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dpkcs11-8109.scope: Failed with result 'resources'. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Failed to start app-gnome-gnome\x2dkeyring\x2dpkcs11-8109.scope - Application launched by gnome-session-binary. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dsecrets-8111.scope: PID 8111 vanished before we could move it to target cgroup '/user.slice/user-2000.slice/user@2000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dsecrets-8111.scope', skipping: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dsecrets-8111.scope: No PIDs left to attach to the scope's control group, refusing. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dsecrets-8111.scope: Failed with result 'resources'. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Failed to start app-gnome-gnome\x2dkeyring\x2dsecrets-8111.scope - Application launched by gnome-session-binary. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dssh-8115.scope: PID 8115 vanished before we could move it to target cgroup '/user.slice/user-2000.slice/user@2000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dssh-8115.scope', skipping: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dssh-8115.scope: No PIDs left to attach to the scope's control group, refusing. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: app-gnome-gnome\x2dkeyring\x2dssh-8115.scope: Failed with result 'resources'. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Failed to start app-gnome-gnome\x2dkeyring\x2dssh-8115.scope - Application launched by gnome-session-binary. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Started gnome-session-manager@gnome.service - GNOME Session Manager (session: gnome). +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-manager.target - GNOME Session Manager is ready. +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.Shell@wayland.service - GNOME Shell on Wayland... +Sep 17 18:55:39 localhost-live.hitronhub.home systemd[7851]: org.gnome.Shell@x11.service - GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11). +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8127: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8127: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8129: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8129: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-shell[8132]: Running GNOME Shell (using mutter 46.5) as a Wayland display server +Sep 17 18:55:39 localhost-live.hitronhub.home gnome-shell[8132]: Thread 'KMS thread' will be using real time scheduling +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-42.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@42.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2000.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 18:55:39 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2000.service (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 17 18:55:39 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8089 of process 8089 (/usr/bin/pipewire) owned by '2000' high priority at nice level -11. +Sep 17 18:55:39 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8101 of process 8089 (/usr/bin/pipewire) owned by '2000' RT at priority 20. +Sep 17 18:55:39 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8092 of process 8092 (/usr/bin/wireplumber) owned by '2000' high priority at nice level -11. +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/ldac +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSink/aac +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/aac +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSink/sbc +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/sbc +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/faststream +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 17 18:55:40 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.242 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 17 18:55:40 localhost-live.hitronhub.home wireplumber[8092]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed? +Sep 17 18:55:40 localhost-live.hitronhub.home wireplumber[8092]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported. +Sep 17 18:55:40 localhost-live.hitronhub.home gnome-shell[8132]: Device '/dev/dri/card1' prefers shadow buffer +Sep 17 18:55:40 localhost-live.hitronhub.home gnome-shell[8132]: Added device '/dev/dri/card1' (nouveau) using non-atomic mode setting. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Device '/dev/dri/card2' prefers shadow buffer +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Added device '/dev/dri/card2' (amdgpu) using atomic mode setting. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Created gbm renderer for '/dev/dri/card1' +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Created gbm renderer for '/dev/dri/card2' +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Boot VGA GPU /dev/dri/card2 selected as primary +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Obtained a high priority EGL context +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Obtained a high priority EGL context +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting at-spi-dbus-bus.service - Accessibility services bus... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started at-spi-dbus-bus.service - Accessibility services bus. +Sep 17 18:55:41 localhost-live.hitronhub.home at-spi-bus-launcher[8349]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +15: Eavesdropping is deprecated and ignored +Sep 17 18:55:41 localhost-live.hitronhub.home at-spi-bus-launcher[8349]: Policy to allow eavesdropping in /usr/share/defaults/at-spi2/accessibility.conf +17: Eavesdropping is deprecated and ignored +Sep 17 18:55:41 localhost-live.hitronhub.home dbus-broker-launch[8349]: Ready +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Using public X11 display :2, (using :3 for managed services) +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Using Wayland display name 'wayland-0' +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.26-org.a11y.atspi.Registry@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home at-spi2-registryd[8372]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting xdg-permission-store.service - sandboxed app permission store... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started xdg-permission-store.service - sandboxed app permission store. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Will monitor session 5 +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.Shell.Screencast@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.Shell.CalendarServer@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting evolution-source-registry.service - Evolution source registry... +Sep 17 18:55:41 localhost-live.hitronhub.home kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.Shell.Notifications@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.Shell@wayland.service - GNOME Shell on Wayland. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-initialized.target - GNOME Session is initialized. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: gnome-session-x11-services.target - GNOME session X11 services is inactive. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Dependency failed for org.gnome.SettingsDaemon.XSettings.service - GNOME XSettings service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: org.gnome.SettingsDaemon.XSettings.service: Job org.gnome.SettingsDaemon.XSettings.service/start failed with result 'dependency'. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: gnome-session-x11-services-ready.target: Job gnome-session-x11-services-ready.target/verify-active failed with result 'dependency'. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session@gnome.target - GNOME Session (session: gnome). +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.XSettings.target - GNOME XSettings target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gnome-session-signal-init.service - Signal initialization done to GNOME Session Manager... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.freedesktop.IBus.session.GNOME.service - IBus Daemon for GNOME... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.A11ySettings.service - GNOME accessibility service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Color.service - GNOME color management service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Datetime.service - GNOME date & time service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Housekeeping.service - GNOME maintenance of expirable data service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Keyboard.service - GNOME keyboard configuration service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.MediaKeys.service - GNOME keyboard shortcuts service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Power.service - GNOME power management service... +Sep 17 18:55:41 localhost-live.hitronhub.home spice-vdagent[8472]: vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 does not exist, exiting +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.PrintNotifications.service - GNOME printer notifications service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Rfkill.service - GNOME RFKill support service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.ScreensaverProxy.service - GNOME FreeDesktop screensaver service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Sharing.service - GNOME file sharing service... +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Smartcard.service - GNOME smartcard service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Sound.service - GNOME sound sample caching service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.UsbProtection.service - GNOME USB protection service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.Wacom.service - GNOME Wacom tablet support service... +Sep 17 18:55:41 localhost-live.hitronhub.home vmware-user.desktop[8565]: vmware-user: could not open /proc/fs/vmblock/dev +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Finished gnome-session-signal-init.service - Signal initialization done to GNOME Session Manager. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.A11ySettings.service - GNOME accessibility service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started evolution-source-registry.service - Evolution source registry. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.A11ySettings.target - GNOME accessibility target. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8472: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8472: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session-binary[8060]: Entering running state +Sep 17 18:55:41 localhost-live.hitronhub.home kernel: rfkill: input handler disabled +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.freedesktop.IBus.session.GNOME.service - IBus Daemon for GNOME. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.ScreensaverProxy.service - GNOME FreeDesktop screensaver service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Datetime.service - GNOME date & time service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Sharing.service - GNOME file sharing service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Smartcard.service - GNOME smartcard service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.UsbProtection.service - GNOME USB protection service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Sound.service - GNOME sound sample caching service. +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8524: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8524: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8568: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session[8060]: gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8578: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8568: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-session-binary[8060]: GnomeDesktop-WARNING: Could not create transient scope for PID 8578: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Failed to set unit properties: No such process +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Rfkill.service - GNOME RFKill support service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Housekeeping.service - GNOME maintenance of expirable data service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-libcanberra\x2dlogin\x2dsound-8587.scope - Application launched by gnome-session-binary. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.gnome.Evolution\x2dalarm\x2dnotify-8547.scope - Application launched by gnome-session-binary. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.gnome.SettingsDaemon.DiskUtilityNotify-8510.scope - Application launched by gnome-session-binary. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.gnome.Software-8504.scope - Application launched by gnome-session-binary. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Datetime.target - GNOME date & time target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Housekeeping.target - GNOME maintenance of expirable data target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Rfkill.target - GNOME RFKill support target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.ScreensaverProxy.target - GNOME FreeDesktop screensaver target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Sharing.target - GNOME file sharing target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Smartcard.target - GNOME smartcard target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Sound.target - GNOME sound sample caching target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.UsbProtection.target - GNOME USB protection target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.freedesktop.portal.IBus@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.freedesktop.problems.applet@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.OnlineAccounts@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.ScreenSaver@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting evolution-calendar-factory.service - Evolution calendar service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor. +Sep 17 18:55:41 localhost-live.hitronhub.home abrt-applet[8678]: Failed to rename ‘/home/Thomas/.abrt/spool’ to ‘/home/Thomas/.cache/abrt/spool’: No such file or directory +Sep 17 18:55:41 localhost-live.hitronhub.home abrt-applet[8678]: Failed to rename ‘/home/Thomas/.abrt/settings’ to ‘/home/Thomas/.config/abrt/settings’: No such file or directory +Sep 17 18:55:41 localhost-live.hitronhub.home goa-daemon[8679]: goa-daemon version 3.50.2 starting +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started evolution-calendar-factory.service - Evolution calendar service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.Identity@0.service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting evolution-addressbook-factory.service - Evolution address book service... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor. +Sep 17 18:55:41 localhost-live.hitronhub.home goa-identity-se[8772]: GoaKerberosIdentityManager: Using polling for change notification for credential cache type 'KCM' +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started evolution-addressbook-factory.service - Evolution address book service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor. +Sep 17 18:55:41 localhost-live.hitronhub.home gsd-usb-protect[8552]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable +Sep 17 18:55:41 localhost-live.hitronhub.home polkitd[1053]: Registered Authentication Agent for unix-session:5 (system bus name :1.241 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) +Sep 17 18:55:41 localhost-live.hitronhub.home gnome-shell[8132]: Unable to mount volume 1.0 TB Encrypted: Gio.IOErrorEnum: A passphrase is required to access the volume +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 18:55:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726570541.9542] agent-manager: agent[76dd07475a9ead24,:1.241/org.gnome.Shell.NetworkAgent/2000]: agent registered +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Starting dconf.service - User preferences database... +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Color.service - GNOME color management service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Keyboard.service - GNOME keyboard configuration service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Color.target - GNOME color management target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Keyboard.target - GNOME keyboard configuration target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started dconf.service - User preferences database. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Wacom.service - GNOME Wacom tablet support service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Wacom.target - GNOME Wacom tablet support target. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.MediaKeys.service - GNOME keyboard shortcuts service. +Sep 17 18:55:41 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.MediaKeys.target - GNOME keyboard shortcuts target. +Sep 17 18:55:42 localhost-live.hitronhub.home libcanberra-login-sound.desktop[8587]: Failed to play sound: File or data not found +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Starting xdg-desktop-portal.service - Portal service... +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.Power.service - GNOME power management service. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.Power.target - GNOME power management target. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Starting xdg-document-portal.service - flatpak document portal service... +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-media-keys[8477]: Failed to grab accelerator for keybinding settings:playback-repeat +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-media-keys[8477]: Failed to grab accelerator for keybinding settings:hibernate +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started xdg-document-portal.service - flatpak document portal service. +Sep 17 18:55:42 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8887 of process 8887 (/usr/bin/pipewire) owned by '2000' high priority at nice level -11. +Sep 17 18:55:42 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8897 of process 8887 (/usr/bin/pipewire) owned by '2000' RT at priority 20. +Sep 17 18:55:42 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 17 18:55:42 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 362 Create-Printer-Subscriptions successful-ok +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.PrintNotifications.service - GNOME printer notifications service. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Reached target org.gnome.SettingsDaemon.PrintNotifications.target - GNOME printer notifications target. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session.target - GNOME Session. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-wayland@gnome.target - GNOME Wayland Session (session: gnome). +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Reached target graphical-session.target - Current graphical user session. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: gnome-initial-setup-first-login.service - GNOME Initial Setup was skipped because of an unmet condition check (ConditionPathExists=!/home/Thomas/.config/gnome-initial-setup-done). +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Starting xdg-desktop-portal-gnome.service - Portal service (GNOME implementation)... +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started xdg-desktop-portal-gnome.service - Portal service (GNOME implementation). +Sep 17 18:55:42 localhost-live.hitronhub.home gnome-shell[8132]: GNOME Shell started at Tue Sep 17 2024 18:55:41 GMT+0800 (Taipei Standard Time) +Sep 17 18:55:42 localhost-live.hitronhub.home gnome-shell[8132]: Registering session with GDM +Sep 17 18:55:42 localhost-live.hitronhub.home gnome-shell[7139]: Shutting down GNOME Shell +Sep 17 18:55:42 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription successful-ok +Sep 17 18:55:42 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 151 Cancel-Subscription client-error-not-found +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-sharing[7310]: Error releasing name org.gnome.SettingsDaemon.Sharing: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-smartcard[7330]: Error releasing name org.gnome.SettingsDaemon.Smartcard: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-datetime[7333]: Error releasing name org.gnome.SettingsDaemon.Datetime: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-a11y-settin[7375]: Error releasing name org.gnome.SettingsDaemon.A11ySettings: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-print-notif[7325]: Error releasing name org.gnome.SettingsDaemon.PrintNotifications: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-housekeepin[7382]: Error releasing name org.gnome.SettingsDaemon.Housekeeping: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-power[7391]: Error releasing name org.gnome.SettingsDaemon.Power: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-color[7314]: Error releasing name org.gnome.SettingsDaemon.Color: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-screensaver[7349]: Error releasing name org.freedesktop.ScreenSaver: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-sound[7361]: Error releasing name org.gnome.SettingsDaemon.Sound: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-rfkill[7328]: Error releasing name org.gnome.SettingsDaemon.Rfkill: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gsd-keyboard[7323]: Error releasing name org.gnome.SettingsDaemon.Keyboard: The connection is closed +Sep 17 18:55:42 localhost-live.hitronhub.home gdm-launch-environment][7021]: pam_unix(gdm-launch-environment:session): session closed for user gdm +Sep 17 18:55:42 localhost-live.hitronhub.home audit[7021]: USER_END pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:42 localhost-live.hitronhub.home audit[7021]: CRED_DISP pid=7021 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_permit acct="gdm" exe="/usr/libexec/gdm-session-worker" hostname=localhost-live.hitronhub.home addr=? terminal=/dev/tty1 res=success' +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Starting xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation)... +Sep 17 18:55:42 localhost-live.hitronhub.home systemd-logind[1060]: Session c2 logged out. Waiting for processes to exit. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[1]: session-c2.scope: Deactivated successfully. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[1]: session-c2.scope: Consumed 2.820s CPU time. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd-logind[1060]: Removed session c2. +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation). +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started xdg-desktop-portal.service - Portal service. +Sep 17 18:55:42 localhost-live.hitronhub.home gdm[1309]: Gdm: Child process -7103 was already dead. +Sep 17 18:55:42 localhost-live.hitronhub.home gdm[1309]: Gdm: on_display_removed: assertion 'GDM_IS_REMOTE_DISPLAY (display)' failed +Sep 17 18:55:42 localhost-live.hitronhub.home polkitd[1053]: Unregistered Authentication Agent for unix-session:c2 (system bus name :1.190, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus) +Sep 17 18:55:42 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.Epiphany.WebAppProvider@0.service. +Sep 17 18:55:43 localhost-live.hitronhub.home PackageKit[7308]: uid 2000 is trying to obtain org.freedesktop.packagekit.system-sources-refresh auth (only_trusted:0) +Sep 17 18:55:43 localhost-live.hitronhub.home PackageKit[7308]: uid 2000 obtained auth for org.freedesktop.packagekit.system-sources-refresh +Sep 17 18:55:43 localhost-live.hitronhub.home PackageKit[7308]: refresh-cache transaction /1302_dddaaaed from uid 2000 finished with success after 49ms +Sep 17 18:55:45 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.gnome.Terminal-9221.scope - Application launched by gnome-shell. +Sep 17 18:55:45 localhost-live.hitronhub.home systemd[7851]: Created slice app-org.gnome.Terminal.slice - Slice /app/org.gnome.Terminal. +Sep 17 18:55:45 localhost-live.hitronhub.home systemd[7851]: Starting gnome-terminal-server.service - GNOME Terminal Server... +Sep 17 18:55:45 localhost-live.hitronhub.home systemd[7851]: Started gnome-terminal-server.service - GNOME Terminal Server. +Sep 17 18:55:45 localhost-live.hitronhub.home systemd[7851]: Started vte-spawn-548e277e-02e1-4b0b-ab22-c9f6192b18a4.scope - VTE child process 9237 launched by gnome-terminal-server process 9229. +Sep 17 18:55:45 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1303_dcdeebcd from uid 2000 finished with success after 457ms +Sep 17 18:55:45 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1304_cadacabe from uid 2000 finished with success after 3ms +Sep 17 18:55:45 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1305_ebeebabc from uid 2000 finished with success after 2ms +Sep 17 18:55:45 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1306_dceecbbc from uid 2000 finished with success after 1ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1307_cabbaebd from uid 2000 finished with success after 3ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1308_aaaadeec from uid 2000 finished with success after 3ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1309_bcadbcdb from uid 2000 finished with success after 2ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1310_ceacdddc from uid 2000 finished with success after 5ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1311_acbcbddb from uid 2000 finished with success after 3ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1312_abaedaba from uid 2000 finished with success after 1ms +Sep 17 18:55:46 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1313_aebebdde from uid 2000 finished with success after 3ms +Sep 17 18:55:47 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1314_bdcedebd from uid 2000 finished with success after 2ms +Sep 17 18:55:47 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1315_ccbdecec from uid 2000 finished with success after 3ms +Sep 17 18:55:47 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1316_eeeaacea from uid 2000 finished with success after 3ms +Sep 17 18:55:48 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1317_ebbcdedd from uid 2000 finished with success after 720ms +Sep 17 18:55:48 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1318_aceacedd from uid 2000 finished with success after 7ms +Sep 17 18:55:48 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1319_aaadbebc from uid 2000 finished with success after 134ms +Sep 17 18:55:50 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1320_addabccc from uid 2000 finished with success after 143ms +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9308]: USER_ACCT pid=9308 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home sudo[9308]: Thomas : TTY=pts/0 ; PWD=/home/Thomas ; USER=root ; COMMAND=/usr/bin/su +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9308]: USER_CMD pid=9308 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/home/Thomas" cmd="su" exe="/usr/bin/sudo" terminal=pts/0 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9308]: CRED_REFR pid=9308 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home sudo[9308]: pam_unix(sudo:session): session opened for user root(uid=0) by Thomas(uid=2000) +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9308]: USER_START pid=9308 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9312]: USER_AUTH pid=9312 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_rootok acct="root" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9312]: USER_ACCT pid=9312 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_succeed_if acct="root" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home su[9312]: (to root) root on pts/1 +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9312]: CRED_ACQ pid=9312 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="root" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:55:50 localhost-live.hitronhub.home su[9312]: pam_unix(su:session): session opened for user root(uid=0) by Thomas(uid=0) +Sep 17 18:55:50 localhost-live.hitronhub.home audit[9312]: USER_START pid=9312 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask,pam_xauth acct="root" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:55:51 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1321_eaadccbd from uid 2000 finished with success after 133ms +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: Stopping user@42.service - User Manager for UID 42... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Activating special unit exit.target... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped target default.target - Main User Target. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopping pipewire-pulse.service - PipeWire PulseAudio... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopping xdg-permission-store.service - sandboxed app permission store... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped xdg-permission-store.service - sandboxed app permission store. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped pipewire-pulse.service - PipeWire PulseAudio. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopping wireplumber.service - Multimedia Service Session Manager... +Sep 17 18:55:52 localhost-live.hitronhub.home wireplumber[7577]: wireplumber: stopped by signal: Terminated +Sep 17 18:55:52 localhost-live.hitronhub.home wireplumber[7577]: wireplumber: disconnected from pipewire +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped wireplumber.service - Multimedia Service Session Manager. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopping pipewire.service - PipeWire Multimedia Service... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped pipewire.service - PipeWire Multimedia Service. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped target basic.target - Basic System. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped target paths.target - Paths. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped target sockets.target - Sockets. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped target timers.target - Timers. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped systemd-tmpfiles-clean.timer - Daily Cleanup of User's Temporary Directories. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Closed pipewire-pulse.socket - PipeWire PulseAudio. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Closed pipewire.socket - PipeWire Multimedia System Sockets. +Sep 17 18:55:52 localhost-live.hitronhub.home dbus-broker[7110]: Dispatched 297 messages @ 7(±39)μs / message. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopping dbus-broker.service - D-Bus User Message Bus... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped systemd-tmpfiles-setup.service - Create User Files and Directories. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Stopped dbus-broker.service - D-Bus User Message Bus. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Removed slice session.slice - User Core Session Slice. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Closed dbus.socket - D-Bus User Message Bus Socket. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Removed slice app.slice - User Application Slice. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Reached target shutdown.target - Shutdown. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Finished systemd-exit.service - Exit the Session. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[7043]: Reached target exit.target - Exit the Session. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: user@42.service: Deactivated successfully. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: Stopped user@42.service - User Manager for UID 42. +Sep 17 18:55:52 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: Stopping user-runtime-dir@42.service - User Runtime Directory /run/user/42... +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: run-user-42.mount: Deactivated successfully. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: user-runtime-dir@42.service: Deactivated successfully. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: Stopped user-runtime-dir@42.service - User Runtime Directory /run/user/42. +Sep 17 18:55:52 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@42 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: Removed slice user-42.slice - User Slice of UID 42. +Sep 17 18:55:52 localhost-live.hitronhub.home systemd[1]: user-42.slice: Consumed 3.317s CPU time. +Sep 17 18:55:55 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1322_bdaabacb from uid 2000 finished with success after 145ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1323_abcbdcbc from uid 2000 finished with success after 2ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1324_bebdedca from uid 2000 finished with success after 2ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1325_cebbbceb from uid 2000 finished with success after 3ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1326_adcaaaaa from uid 2000 finished with success after 3ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1327_ccebdecc from uid 2000 finished with success after 2ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1328_eecdeebe from uid 2003 finished with success after 153ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1329_eadeedba from uid 2000 finished with success after 3ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1330_ddeaceda from uid 2000 finished with success after 2ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1331_ccebeedd from uid 2000 finished with success after 5ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1332_acedaeca from uid 2000 finished with success after 3ms +Sep 17 18:55:56 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1333_ddbacedc from uid 2000 finished with success after 1ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1334_eadedddb from uid 2000 finished with success after 3ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1335_cbddbccb from uid 2000 finished with success after 2ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1336_dcaaeada from uid 2003 finished with success after 2ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1337_bdbdcadc from uid 2000 finished with success after 3ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1338_ceaceeda from uid 2000 finished with success after 145ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1339_dccbdabb from uid 2000 finished with success after 3ms +Sep 17 18:55:57 localhost-live.hitronhub.home packagekitd[7308]: Failed to get cache filename for ibus-m17n +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: get-details transaction /1340_eabbdacb from uid 2000 finished with success after 55ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1341_cdeadebc from uid 2003 finished with success after 2ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: get-updates transaction /1342_dabcbbbe from uid 2003 finished with success after 146ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1343_bdacbecd from uid 2003 finished with success after 3ms +Sep 17 18:55:57 localhost-live.hitronhub.home packagekitd[7308]: Failed to get cache filename for ibus-m17n +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: get-details transaction /1344_ecdaebbd from uid 2003 finished with success after 54ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1345_ceacbccd from uid 2003 finished with success after 2ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1346_bdbedbbc from uid 2003 finished with success after 3ms +Sep 17 18:55:57 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1347_cbeadead from uid 2003 finished with success after 1ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1348_bdaeeebc from uid 2003 finished with success after 6ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1349_ddacabae from uid 2003 finished with success after 3ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1350_ceaeddae from uid 2003 finished with success after 2ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1351_cbdeaacc from uid 2003 finished with success after 2ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1352_eaeccaeb from uid 2003 finished with success after 3ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1353_ebdadaed from uid 2003 finished with success after 1ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1354_bddeeabe from uid 2003 finished with success after 3ms +Sep 17 18:55:58 localhost-live.hitronhub.home PackageKit[7308]: resolve transaction /1355_eaebddca from uid 2003 finished with success after 3ms +Sep 17 18:55:58 localhost-live.hitronhub.home systemd[1]: fprintd.service: Deactivated successfully. +Sep 17 18:55:58 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:55:58 localhost-live.hitronhub.home audit: BPF prog-id=77 op=UNLOAD +Sep 17 18:56:07 localhost-live.hitronhub.home audit[9458]: DM_CTRL module=crypt op=ctr ppid=9315 pid=9458 auid=2000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts1 ses=6 comm="cryptsetup" exe="/usr/sbin/cryptsetup" subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 dev=253:0 error_msg='success' res=1 +Sep 17 18:56:12 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 18:56:12 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:56:12 localhost-live.hitronhub.home audit: BPF prog-id=76 op=UNLOAD +Sep 17 18:56:12 localhost-live.hitronhub.home audit: BPF prog-id=75 op=UNLOAD +Sep 17 18:56:12 localhost-live.hitronhub.home audit: BPF prog-id=74 op=UNLOAD +Sep 17 18:56:17 localhost-live.hitronhub.home systemd[1]: systemd-localed.service: Deactivated successfully. +Sep 17 18:56:17 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:56:17 localhost-live.hitronhub.home audit: BPF prog-id=73 op=UNLOAD +Sep 17 18:56:17 localhost-live.hitronhub.home audit: BPF prog-id=72 op=UNLOAD +Sep 17 18:56:17 localhost-live.hitronhub.home audit: BPF prog-id=71 op=UNLOAD +Sep 17 18:56:23 localhost-live.hitronhub.home kernel: BTRFS: device fsid 6871f727-ca6a-4a04-a337-72c35bc39324 devid 1 transid 63075 /dev/mapper/Eagle (253:0) scanned by mount (9620) +Sep 17 18:56:23 localhost-live.hitronhub.home kernel: BTRFS info (device dm-0): first mount of filesystem 6871f727-ca6a-4a04-a337-72c35bc39324 +Sep 17 18:56:23 localhost-live.hitronhub.home kernel: BTRFS info (device dm-0): using crc32c (crc32c-intel) checksum algorithm +Sep 17 18:56:23 localhost-live.hitronhub.home kernel: BTRFS info (device dm-0): using free-space-tree +Sep 17 18:56:26 localhost-live.hitronhub.home geoclue[7578]: Service not used for 60 seconds. Shutting down.. +Sep 17 18:56:26 localhost-live.hitronhub.home systemd[1]: geoclue.service: Deactivated successfully. +Sep 17 18:56:26 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=geoclue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:56:27 localhost-live.hitronhub.home realmd[7616]: quitting realmd service after timeout +Sep 17 18:56:27 localhost-live.hitronhub.home realmd[7616]: stopping service +Sep 17 18:56:27 localhost-live.hitronhub.home systemd[1]: realmd.service: Deactivated successfully. +Sep 17 18:56:27 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=realmd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:56:41 localhost-live.hitronhub.home systemd[7851]: Starting gvfs-metadata.service - Virtual filesystem metadata service... +Sep 17 18:56:41 localhost-live.hitronhub.home systemd[7851]: Started gvfs-metadata.service - Virtual filesystem metadata service. +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: USER_ACCT pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9654]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/ +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: USER_CMD pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: CRED_REFR pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9654]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: USER_START pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9654]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: USER_END pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9654]: CRED_DISP pid=9654 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: USER_ACCT pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9658]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-archive +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: USER_CMD pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D61726368697665 exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: CRED_REFR pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9658]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: USER_START pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9658]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: USER_END pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9658]: CRED_DISP pid=9658 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: USER_ACCT pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9667]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-archive-RT +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: USER_CMD pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D617263686976652D5254 exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: CRED_REFR pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9667]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: USER_START pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9667]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: USER_END pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9667]: CRED_DISP pid=9667 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: USER_ACCT pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9678]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-Internet +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: USER_CMD pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D496E7465726E6574 exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: CRED_REFR pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9678]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: USER_START pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9678]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: USER_END pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9678]: CRED_DISP pid=9678 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: USER_ACCT pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9685]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-developer +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: USER_CMD pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D646576656C6F706572 exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: CRED_REFR pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9685]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: USER_START pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9685]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: USER_END pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9685]: CRED_DISP pid=9685 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: USER_ACCT pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9692]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-incommon +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: USER_CMD pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D696E636F6D6D6F6E exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: CRED_REFR pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9692]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: USER_START pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9692]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: USER_END pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9692]: CRED_DISP pid=9692 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: USER_ACCT pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9702]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas-email +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: USER_CMD pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D61732D656D61696C exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: CRED_REFR pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9702]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: USER_START pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9702]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: USER_END pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9702]: CRED_DISP pid=9702 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: USER_ACCT pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9709]: root : TTY=pts/1 ; PWD=/var/user_data/Thomas/iseq_privileged/developer ; USER=Thomas ; COMMAND=/usr/bin/mkdir -p /home/Thomas/subu/Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: USER_CMD pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas/iseq_privileged/developer" cmd=6D6B646972202D70202F686F6D652F54686F6D61732F737562752F54686F6D6173 exe="/usr/bin/sudo" terminal=pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: CRED_REFR pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9709]: pam_unix(sudo:session): session opened for user Thomas(uid=2000) by Thomas(uid=0) +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: USER_START pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home sudo[9709]: pam_unix(sudo:session): session closed for user Thomas +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: USER_END pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:42 localhost-live.hitronhub.home audit[9709]: CRED_DISP pid=9709 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success' +Sep 17 18:56:49 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-emacs-9756.scope - Application launched by gnome-shell. +Sep 17 18:56:49 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-x11-services.target - GNOME session X11 services. +Sep 17 18:56:49 localhost-live.hitronhub.home gnome-shell[9770]: The XKEYBOARD keymap compiler (xkbcomp) reports: +Sep 17 18:56:49 localhost-live.hitronhub.home gnome-shell[9770]: > Warning: Unsupported maximum keycode 708, clipping. +Sep 17 18:56:49 localhost-live.hitronhub.home gnome-shell[9770]: > X11 cannot support keycodes above 255. +Sep 17 18:56:49 localhost-live.hitronhub.home gnome-shell[9770]: Errors from xkbcomp are not fatal to the X server +Sep 17 18:56:49 localhost-live.hitronhub.home systemd[7851]: Starting org.gnome.SettingsDaemon.XSettings.service - GNOME XSettings service... +Sep 17 18:56:49 localhost-live.hitronhub.home systemd[7851]: Started org.gnome.SettingsDaemon.XSettings.service - GNOME XSettings service. +Sep 17 18:56:49 localhost-live.hitronhub.home systemd[7851]: Reached target gnome-session-x11-services-ready.target - GNOME session X11 services. +Sep 17 18:56:49 localhost-live.hitronhub.home gnome-terminal-[9229]: Failed to load module "pk-gtk-module" +Sep 17 18:56:56 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.gnome.Terminal-9880.scope - Application launched by gnome-shell. +Sep 17 18:56:56 localhost-live.hitronhub.home gnome-shell[8132]: meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed +Sep 17 18:56:56 localhost-live.hitronhub.home systemd[7851]: Started vte-spawn-20c9ab71-c8af-4c80-a512-85857502d87b.scope - VTE child process 9887 launched by gnome-terminal-server process 9229. +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9916]: USER_ACCT pid=9916 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home sudo[9916]: Thomas : TTY=pts/2 ; PWD=/var/user_data/Thomas ; USER=root ; COMMAND=/usr/bin/su -l -w SUBU_SHARE_DIR,DISPLAY,PULSE_SERVER -c 'export NO_AT_BRIDGE=1 ;touch .Xauthority ;xauth add ":2" . "33b48418d72d52aa9239f8c4ad8d158c" ;emacs --title developer' Thomas-developer +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9916]: USER_CMD pid=9916 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas" cmd=7375202D6C202D7720535542555F53484152455F4449522C444953504C41592C50554C53455F534552564552202D63206578706F7274204E4F5F41545F4252494447453D312020203B746F756368202E58617574686F726974792020203B78617574682061646420223A3222202E20223333623438343138643732643532616139323339663863346164386431353863222020203B656D616373202D2D7469746C6520646576656C6F7065722054686F6D61732D646576656C6F706572 exe="/usr/bin/sudo" terminal=pts/2 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9916]: CRED_REFR pid=9916 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home sudo[9916]: pam_unix(sudo:session): session opened for user root(uid=0) by Thomas(uid=2000) +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9916]: USER_START pid=9916 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9919]: USER_AUTH pid=9919 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_rootok acct="Thomas-developer" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/3 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9919]: USER_ACCT pid=9919 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_succeed_if acct="Thomas-developer" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/3 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home su[9919]: (to Thomas-developer) root on pts/3 +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9919]: CRED_ACQ pid=9919 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="Thomas-developer" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/3 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home su[9919]: pam_unix(su-l:session): session opened for user Thomas-developer(uid=2005) by Thomas(uid=0) +Sep 17 18:57:05 localhost-live.hitronhub.home audit[9919]: USER_START pid=9919 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="Thomas-developer" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/3 res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home audit: BPF prog-id=78 op=LOAD +Sep 17 18:57:05 localhost-live.hitronhub.home audit: BPF prog-id=79 op=LOAD +Sep 17 18:57:05 localhost-live.hitronhub.home audit: BPF prog-id=80 op=LOAD +Sep 17 18:57:05 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 18:57:05 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 18:57:05 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:57:05 localhost-live.hitronhub.home dbus-daemon[9957]: [session uid=2005 pid=9955] SELinux support is enabled +Sep 17 18:57:35 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 18:57:35 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 18:57:35 localhost-live.hitronhub.home audit: BPF prog-id=80 op=UNLOAD +Sep 17 18:57:35 localhost-live.hitronhub.home audit: BPF prog-id=79 op=UNLOAD +Sep 17 18:57:35 localhost-live.hitronhub.home audit: BPF prog-id=78 op=UNLOAD +Sep 17 18:57:47 localhost-live.hitronhub.home systemd[7851]: Starting grub-boot-success.service - Mark boot as successful... +Sep 17 18:57:47 localhost-live.hitronhub.home systemd[7851]: Finished grub-boot-success.service - Mark boot as successful. +Sep 17 18:59:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726570752.8145] device (wlp2s0): set-hw-addr: set MAC address to BE:0E:EF:0C:FF:CF (scanning) +Sep 17 18:59:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726570752.8465] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 18:59:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726570752.8466] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 18:59:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726570752.8475] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 18:59:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726570752.8476] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:00:47 localhost-live.hitronhub.home systemd[7851]: Created slice background.slice - User Background Tasks Slice. +Sep 17 19:00:47 localhost-live.hitronhub.home systemd[7851]: Starting systemd-tmpfiles-clean.service - Cleanup of User's Temporary Files and Directories... +Sep 17 19:00:47 localhost-live.hitronhub.home systemd[7851]: Finished systemd-tmpfiles-clean.service - Cleanup of User's Temporary Files and Directories. +Sep 17 19:01:01 localhost-live.hitronhub.home PackageKit[7308]: daemon quit +Sep 17 19:01:01 localhost-live.hitronhub.home systemd[1]: packagekit.service: Deactivated successfully. +Sep 17 19:01:01 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=packagekit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 19:01:01 localhost-live.hitronhub.home systemd[1]: packagekit.service: Consumed 2.781s CPU time. +Sep 17 19:03:30 localhost-live.hitronhub.home gnome-shell[8132]: libinput error: event5 - ASUE1A01:00 04F3:31D4 Touchpad: libinput bug: invalid gesture event GESTURE_EVENT_HOLD_TIMEOUT in state GESTURE_STATE_HOLD +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-com.microsoft.Edge-10131.scope - Application launched by gnome-shell. +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Starting flatpak-session-helper.service - flatpak session helper... +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Started flatpak-session-helper.service - flatpak session helper. +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-10131.scope. +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Starting flatpak-portal.service - flatpak portal... +Sep 17 19:03:38 localhost-live.hitronhub.home systemd[7851]: Started flatpak-portal.service - flatpak portal. +Sep 17 19:03:39 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-10193.scope. +Sep 17 19:03:39 localhost-live.hitronhub.home msedge[10156]: Failed to load module "canberra-gtk-module" +Sep 17 19:03:39 localhost-live.hitronhub.home msedge[10156]: Failed to load module "pk-gtk-module" +Sep 17 19:03:39 localhost-live.hitronhub.home msedge[10156]: Failed to load module "canberra-gtk-module" +Sep 17 19:03:39 localhost-live.hitronhub.home msedge[10156]: Failed to load module "pk-gtk-module" +Sep 17 19:03:39 localhost-live.hitronhub.home gnome-keyring-daemon[7914]: asked to register item /org/freedesktop/secrets/collection/login/1, but it's already registered +Sep 17 19:03:47 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-10460.scope. +Sep 17 19:03:48 localhost-live.hitronhub.home com.microsoft.Edge.desktop[10156]: [2:2:0917/190348.359317:ERROR:object_proxy.cc(576)] Failed to call method: org.freedesktop.ScreenSaver.GetActive: object_path= /org/freedesktop/ScreenSaver: org.freedesktop.DBus.Error.NotSupported: This method is not part of the idle inhibition specification: https://specifications.freedesktop.org/idle-inhibit-spec/latest/ +Sep 17 19:04:06 localhost-live.hitronhub.home com.microsoft.Edge.desktop[10236]: [59:59:0917/190406.076339:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 1 times! +Sep 17 19:04:06 localhost-live.hitronhub.home com.microsoft.Edge.desktop[10236]: [59:59:0917/190406.088716:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 2 times! +Sep 17 19:06:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726571167.7944] device (wlp2s0): set-hw-addr: set MAC address to EA:42:39:72:79:92 (scanning) +Sep 17 19:06:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726571167.8267] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:06:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726571167.8268] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:06:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726571167.8374] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:06:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726571167.8375] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:13:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726571582.8002] device (wlp2s0): set-hw-addr: set MAC address to 8E:53:5C:60:BE:E3 (scanning) +Sep 17 19:13:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726571582.8322] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:13:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726571582.8323] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:13:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726571582.8503] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:13:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726571582.8503] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:19:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726571997.8290] device (wlp2s0): set-hw-addr: set MAC address to 72:D5:65:AB:DF:7A (scanning) +Sep 17 19:19:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726571997.8611] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:19:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726571997.8612] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:19:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726571997.8622] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:19:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726571997.8622] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:26:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726572412.7931] device (wlp2s0): set-hw-addr: set MAC address to EE:E5:1D:68:DE:43 (scanning) +Sep 17 19:26:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726572412.8252] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:26:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726572412.8253] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:26:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726572412.8427] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:26:52 localhost-live.hitronhub.home NetworkManager[1169]: [1726572412.8428] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:33:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726572827.8032] device (wlp2s0): set-hw-addr: set MAC address to A2:37:7C:3B:94:61 (scanning) +Sep 17 19:33:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726572827.8345] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:33:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726572827.8346] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:33:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726572827.8453] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:33:47 localhost-live.hitronhub.home NetworkManager[1169]: [1726572827.8453] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:37:47 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 17 19:37:47 localhost-live.hitronhub.home dnf[11176]: Metadata cache refreshed recently. +Sep 17 19:37:48 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 17 19:37:48 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 17 19:37:48 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 19:37:48 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 19:40:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726573242.8080] device (wlp2s0): set-hw-addr: set MAC address to DA:61:9A:61:CB:1F (scanning) +Sep 17 19:40:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726573242.8400] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:40:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726573242.8401] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:40:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726573242.8501] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:40:42 localhost-live.hitronhub.home NetworkManager[1169]: [1726573242.8501] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:47:08 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription successful-ok +Sep 17 19:47:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726573657.7963] device (wlp2s0): set-hw-addr: set MAC address to 62:04:C9:4B:D7:0E (scanning) +Sep 17 19:47:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726573657.8273] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:47:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726573657.8274] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:47:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726573657.8342] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:47:37 localhost-live.hitronhub.home NetworkManager[1169]: [1726573657.8343] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 19:54:02 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription successful-ok +Sep 17 19:54:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726574072.8483] device (wlp2s0): set-hw-addr: set MAC address to 16:91:B0:39:69:00 (scanning) +Sep 17 19:54:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726574072.8796] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 19:54:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726574072.8797] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 19:54:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726574072.8902] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 19:54:32 localhost-live.hitronhub.home NetworkManager[1169]: [1726574072.8903] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:01:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726574487.8176] device (wlp2s0): set-hw-addr: set MAC address to BA:1D:CA:BD:75:6D (scanning) +Sep 17 20:01:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726574487.8488] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:01:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726574487.8489] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:01:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726574487.8589] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:01:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726574487.8590] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:07:21 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 17 20:08:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726574902.8105] device (wlp2s0): set-hw-addr: set MAC address to D6:48:69:A6:96:2A (scanning) +Sep 17 20:08:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726574902.8423] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:08:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726574902.8424] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:08:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726574902.8533] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:08:22 localhost-live.hitronhub.home NetworkManager[1169]: [1726574902.8534] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:11:42 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-emacs-11839.scope - Application launched by gnome-shell. +Sep 17 20:11:55 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 17 20:11:56 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 17 20:11:57 localhost-live.hitronhub.home com.microsoft.Edge.desktop[10236]: [59:59:0917/201157.775448:ERROR:gl_surface_presentation_helper.cc(260)] GetVSyncParametersIfAvailable() failed for 3 times! +Sep 17 20:12:04 localhost-live.hitronhub.home systemd[7851]: Started app-gnome-org.mozilla.firefox-11899.scope - Application launched by gnome-shell. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 17 20:12:05 localhost-live.hitronhub.home audit: BPF prog-id=81 op=LOAD +Sep 17 20:12:05 localhost-live.hitronhub.home audit: BPF prog-id=82 op=LOAD +Sep 17 20:12:05 localhost-live.hitronhub.home audit: BPF prog-id=83 op=LOAD +Sep 17 20:12:05 localhost-live.hitronhub.home systemd[1]: Starting systemd-timedated.service - Time & Date Service... +Sep 17 20:12:05 localhost-live.hitronhub.home systemd[1]: Started systemd-timedated.service - Time & Date Service. +Sep 17 20:12:05 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:12:05 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 12053 of process 11899 (/usr/lib64/firefox/firefox) owned by '2000' RT at priority 10. +Sep 17 20:12:05 localhost-live.hitronhub.home gnome-shell[8132]: meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed +Sep 17 20:12:35 localhost-live.hitronhub.home systemd[1]: systemd-timedated.service: Deactivated successfully. +Sep 17 20:12:35 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:12:35 localhost-live.hitronhub.home audit: BPF prog-id=83 op=UNLOAD +Sep 17 20:12:35 localhost-live.hitronhub.home audit: BPF prog-id=82 op=UNLOAD +Sep 17 20:12:35 localhost-live.hitronhub.home audit: BPF prog-id=81 op=UNLOAD +Sep 17 20:14:02 localhost-live.hitronhub.home audit: BPF prog-id=84 op=LOAD +Sep 17 20:14:02 localhost-live.hitronhub.home audit: BPF prog-id=85 op=LOAD +Sep 17 20:14:02 localhost-live.hitronhub.home audit: BPF prog-id=86 op=LOAD +Sep 17 20:14:03 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 20:14:03 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 20:14:03 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:14:03 localhost-live.hitronhub.home gvfsd[12411]: 2024-09-17 20:14:03,142:wsdd WARNING(pid 12411): no interface given, using all interfaces +Sep 17 20:14:33 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 20:14:33 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:14:33 localhost-live.hitronhub.home audit: BPF prog-id=86 op=UNLOAD +Sep 17 20:14:33 localhost-live.hitronhub.home audit: BPF prog-id=85 op=UNLOAD +Sep 17 20:14:33 localhost-live.hitronhub.home audit: BPF prog-id=84 op=UNLOAD +Sep 17 20:15:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726575317.8035] device (wlp2s0): set-hw-addr: set MAC address to A6:6B:4B:EE:14:A4 (scanning) +Sep 17 20:15:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726575317.8355] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:15:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726575317.8355] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:15:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726575317.8420] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:15:17 localhost-live.hitronhub.home NetworkManager[1169]: [1726575317.8421] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:20:48 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 17 20:20:49 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.freedesktop.FileManager1@0.service. +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Connecting to org.freedesktop.Tracker3.Miner.Files +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[7851]: Starting tracker-miner-fs-3.service - Tracker file system data miner... +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[7851]: Started tracker-miner-fs-3.service - Tracker file system data miner. +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym multi_key +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: No delimiter ':': +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym = +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Can't handle >16bit keyvals +Sep 17 20:21:30 localhost-live.hitronhub.home nautilus[12708]: Could not get code point of keysym = +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[7851]: Started dbus-:1.2-org.gnome.NautilusPreviewer@0.service. +Sep 17 20:21:30 localhost-live.hitronhub.home audit: BPF prog-id=87 op=LOAD +Sep 17 20:21:30 localhost-live.hitronhub.home audit: BPF prog-id=88 op=LOAD +Sep 17 20:21:30 localhost-live.hitronhub.home audit: BPF prog-id=89 op=LOAD +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 20:21:30 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 20:21:30 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:22:00 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 20:22:00 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:22:00 localhost-live.hitronhub.home audit: BPF prog-id=89 op=UNLOAD +Sep 17 20:22:00 localhost-live.hitronhub.home audit: BPF prog-id=88 op=UNLOAD +Sep 17 20:22:00 localhost-live.hitronhub.home audit: BPF prog-id=87 op=UNLOAD +Sep 17 20:22:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726575732.8027] device (wlp2s0): set-hw-addr: set MAC address to BE:16:4B:10:F5:BC (scanning) +Sep 17 20:22:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726575732.8462] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 17 20:22:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726575732.8463] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 17 20:22:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726575732.8513] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 17 20:22:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726575732.8514] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 17 20:22:25 localhost-live.hitronhub.home gnome-shell[8132]: meta_window_set_stack_position_no_sync: assertion 'window->stack_position >= 0' failed +Sep 17 20:26:19 localhost-live.hitronhub.home gnome-shell[8132]: libinput error: event5 - ASUE1A01:00 04F3:31D4 Touchpad: kernel bug: Touch jump detected and discarded. +Sep 17 20:26:19 localhost-live.hitronhub.home gnome-shell[8132]: See https://wayland.freedesktop.org/libinput/doc/1.26.2/touchpad-jumping-cursors.html for details +Sep 17 20:29:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726576147.7912] device (wlp2s0): set-hw-addr: set MAC address to 92:12:A1:71:C7:A5 (scanning) +Sep 17 20:29:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726576147.8239] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:29:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726576147.8239] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:29:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726576147.8357] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:29:07 localhost-live.hitronhub.home NetworkManager[1169]: [1726576147.8358] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:36:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726576562.8046] device (wlp2s0): set-hw-addr: set MAC address to 52:B2:66:56:3E:3C (scanning) +Sep 17 20:36:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726576562.8361] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:36:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726576562.8361] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:36:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726576562.8461] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:36:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726576562.8462] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:42:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726576977.8107] device (wlp2s0): set-hw-addr: set MAC address to 06:E8:9B:CF:9B:88 (scanning) +Sep 17 20:42:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726576977.8425] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:42:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726576977.8425] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:42:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726576977.8532] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:42:57 localhost-live.hitronhub.home NetworkManager[1169]: [1726576977.8533] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:45:13 localhost-live.hitronhub.home kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 20:45:16 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 17 20:45:16 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 17 20:45:19 localhost-live.hitronhub.home kernel: usb 1-2.1.1: USB disconnect, device number 4 +Sep 17 20:45:19 localhost-live.hitronhub.home kernel: usb 1-2.1.1.1: USB disconnect, device number 6 +Sep 17 20:45:19 localhost-live.hitronhub.home kernel: cdc_ether 1-2.1.1.1:2.0 eth0: unregister 'cdc_ether' usb-0000:04:00.3-2.1.1.1, CDC Ethernet Device +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Interface eth0.IPv6 no longer relevant for mDNS. +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::2a58:e8be:c554:ff6e. +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5018] platform-linux: do-add-ip4-address[2: 192.168.0.15/24]: failure 19 (No such device - ipv4: Device not found) +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Interface eth0.IPv4 no longer relevant for mDNS. +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5020] platform-linux: do-add-ip6-address[2: fe80::2a58:e8be:c554:ff6e]: failure 19 (No such device - ipv6: Unable to find the interface) +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.0.15. +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5020] l3cfg[4f3286beaea7237f,ifindex=2]: unable to configure IPv6 route: type unicast fe80::/64 dev 2 metric 1024 mss 0 rt-src ipv6ll +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Withdrawing address record for fe80::2a58:e8be:c554:ff6e on eth0. +Sep 17 20:45:19 localhost-live.hitronhub.home avahi-daemon[1045]: Withdrawing address record for 192.168.0.15 on eth0. +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5254] policy: set-hostname: set hostname to 'fedora' (from system startup) +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5255] device (eth0): state change: activated -> unmanaged (reason 'removed', sys-iface-state: 'removed') +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5256] dhcp4 (eth0): canceled DHCP transaction +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5256] dhcp4 (eth0): activation: beginning transaction (timeout in 45 seconds) +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5256] dhcp4 (eth0): state changed no lease +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5263] manager: NetworkManager state is now DISCONNECTED +Sep 17 20:45:19 localhost-live.hitronhub.home NetworkManager[1169]: [1726577119.5479] dns-sd-resolved[9787d4ffbe7cbcc9]: send-updates SetLinkDomains@2 failed: GDBus.Error:org.freedesktop.resolve1.NoSuchLink: Link 2 not known +Sep 17 20:45:19 localhost-live.hitronhub.home systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service... +Sep 17 20:45:19 localhost-live.hitronhub.home audit: BPF prog-id=90 op=LOAD +Sep 17 20:45:19 localhost-live.hitronhub.home audit: BPF prog-id=91 op=LOAD +Sep 17 20:45:19 localhost-live.hitronhub.home audit: BPF prog-id=92 op=LOAD +Sep 17 20:45:19 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 17 20:45:19 localhost-live.hitronhub.home systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service. +Sep 17 20:45:19 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:45:19 localhost-live.hitronhub.home chronyd[1101]: Source 114.33.15.129 offline +Sep 17 20:45:19 localhost-live.hitronhub.home chronyd[1101]: Source 114.35.131.27 offline +Sep 17 20:45:19 localhost-live.hitronhub.home chronyd[1101]: Source 103.147.22.149 offline +Sep 17 20:45:19 localhost-live.hitronhub.home chronyd[1101]: Can't synchronise: no selectable sources +Sep 17 20:45:19 localhost-live.hitronhub.home chronyd[1101]: Source 210.243.152.152 offline +Sep 17 20:45:19 fedora systemd-hostnamed[13544]: Hostname set to (transient) +Sep 17 20:45:19 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:45:19 fedora systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 17 20:45:19 fedora systemd-resolved[994]: System hostname changed to 'fedora'. +Sep 17 20:45:28 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription successful-ok +Sep 17 20:45:29 fedora systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully. +Sep 17 20:45:29 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:45:49 fedora systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 17 20:45:49 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 20:45:49 fedora audit: BPF prog-id=92 op=UNLOAD +Sep 17 20:45:49 fedora audit: BPF prog-id=91 op=UNLOAD +Sep 17 20:45:49 fedora audit: BPF prog-id=90 op=UNLOAD +Sep 17 20:49:52 fedora NetworkManager[1169]: [1726577392.8454] device (wlp2s0): set-hw-addr: set MAC address to AA:60:86:8E:CD:FA (scanning) +Sep 17 20:49:52 fedora NetworkManager[1169]: [1726577392.8767] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:49:52 fedora NetworkManager[1169]: [1726577392.8767] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:49:52 fedora NetworkManager[1169]: [1726577392.8869] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:49:52 fedora NetworkManager[1169]: [1726577392.8870] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 20:52:22 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription successful-ok +Sep 17 20:56:47 fedora NetworkManager[1169]: [1726577807.8927] device (wlp2s0): set-hw-addr: set MAC address to DA:57:39:0E:8F:BE (scanning) +Sep 17 20:56:47 fedora NetworkManager[1169]: [1726577807.9238] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 20:56:47 fedora NetworkManager[1169]: [1726577807.9239] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 20:56:47 fedora NetworkManager[1169]: [1726577807.9341] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 20:56:47 fedora NetworkManager[1169]: [1726577807.9341] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:03:42 fedora NetworkManager[1169]: [1726578222.7973] device (wlp2s0): set-hw-addr: set MAC address to 66:07:61:2A:BA:5A (scanning) +Sep 17 21:03:42 fedora NetworkManager[1169]: [1726578222.8296] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:03:42 fedora NetworkManager[1169]: [1726578222.8296] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:03:42 fedora NetworkManager[1169]: [1726578222.8395] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:03:42 fedora NetworkManager[1169]: [1726578222.8395] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:03:47 fedora systemd[7851]: Started app-flatpak-com.microsoft.Edge-13992.scope. +Sep 17 21:10:37 fedora NetworkManager[1169]: [1726578637.7973] device (wlp2s0): set-hw-addr: set MAC address to D2:59:75:1E:0B:EE (scanning) +Sep 17 21:10:37 fedora NetworkManager[1169]: [1726578637.8287] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:10:37 fedora NetworkManager[1169]: [1726578637.8287] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:10:37 fedora NetworkManager[1169]: [1726578637.8390] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:10:37 fedora NetworkManager[1169]: [1726578637.8391] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:17:32 fedora NetworkManager[1169]: [1726579052.8886] device (wlp2s0): set-hw-addr: set MAC address to 2A:3F:18:34:D8:84 (scanning) +Sep 17 21:17:32 fedora NetworkManager[1169]: [1726579052.9195] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:17:32 fedora NetworkManager[1169]: [1726579052.9195] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:17:32 fedora NetworkManager[1169]: [1726579052.9312] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:17:32 fedora NetworkManager[1169]: [1726579052.9312] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:24:27 fedora NetworkManager[1169]: [1726579467.8436] device (wlp2s0): set-hw-addr: set MAC address to 0A:BE:2E:2B:46:ED (scanning) +Sep 17 21:24:27 fedora NetworkManager[1169]: [1726579467.8753] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:24:27 fedora NetworkManager[1169]: [1726579467.8753] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:24:27 fedora NetworkManager[1169]: [1726579467.8762] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:24:27 fedora NetworkManager[1169]: [1726579467.8763] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:24:47 fedora systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 17 21:24:48 fedora dnf[14479]: Copr repo for PyCharm owned by phracek 0.0 B/s | 0 B 00:00 +Sep 17 21:24:48 fedora dnf[14479]: Errors during downloading metadata for repository 'copr:copr.fedorainfracloud.org:phracek:PyCharm': +Sep 17 21:24:48 fedora dnf[14479]: - Curl error (6): Couldn't resolve host name for https://download.copr.fedorainfracloud.org/results/phracek/PyCharm/fedora-40-x86_64/repodata/repomd.xml [Could not resolve host: download.copr.fedorainfracloud.org] +Sep 17 21:24:48 fedora dnf[14479]: Error: Failed to download metadata for repo 'copr:copr.fedorainfracloud.org:phracek:PyCharm': Cannot download repomd.xml: Curl error (6): Couldn't resolve host name for https://download.copr.fedorainfracloud.org/results/phracek/PyCharm/fedora-40-x86_64/repodata/repomd.xml [Could not resolve host: download.copr.fedorainfracloud.org] +Sep 17 21:24:48 fedora dnf[14479]: Fedora 40 - x86_64 0.0 B/s | 0 B 00:00 +Sep 17 21:24:48 fedora dnf[14479]: Errors during downloading metadata for repository 'fedora': +Sep 17 21:24:48 fedora dnf[14479]: - Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=fedora-40&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org] +Sep 17 21:24:48 fedora dnf[14479]: Error: Failed to download metadata for repo 'fedora': Cannot prepare internal mirrorlist: Curl error (6): Couldn't resolve host name for https://mirrors.fedoraproject.org/metalink?repo=fedora-40&arch=x86_64 [Could not resolve host: mirrors.fedoraproject.org] +Sep 17 21:24:48 fedora systemd[1]: dnf-makecache.service: Main process exited, code=exited, status=1/FAILURE +Sep 17 21:24:48 fedora systemd[1]: dnf-makecache.service: Failed with result 'exit-code'. +Sep 17 21:24:48 fedora systemd[1]: Failed to start dnf-makecache.service - dnf makecache. +Sep 17 21:24:48 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed' +Sep 17 21:31:22 fedora NetworkManager[1169]: [1726579882.8436] device (wlp2s0): set-hw-addr: set MAC address to 1E:C3:82:ED:39:85 (scanning) +Sep 17 21:31:22 fedora NetworkManager[1169]: [1726579882.8755] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:31:22 fedora NetworkManager[1169]: [1726579882.8756] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:31:22 fedora NetworkManager[1169]: [1726579882.8764] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:31:22 fedora NetworkManager[1169]: [1726579882.8764] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:38:17 fedora NetworkManager[1169]: [1726580297.8807] device (wlp2s0): set-hw-addr: set MAC address to 7E:45:64:8E:EC:0D (scanning) +Sep 17 21:38:17 fedora NetworkManager[1169]: [1726580297.9119] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:38:17 fedora NetworkManager[1169]: [1726580297.9119] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:38:17 fedora NetworkManager[1169]: [1726580297.9126] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:38:17 fedora NetworkManager[1169]: [1726580297.9127] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:43:48 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription successful-ok +Sep 17 21:45:12 fedora NetworkManager[1169]: [1726580712.8642] device (wlp2s0): set-hw-addr: set MAC address to 5A:D0:27:9F:C9:C1 (scanning) +Sep 17 21:45:12 fedora NetworkManager[1169]: [1726580712.8956] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:45:12 fedora NetworkManager[1169]: [1726580712.8956] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:45:12 fedora NetworkManager[1169]: [1726580712.8966] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:45:12 fedora NetworkManager[1169]: [1726580712.8967] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:45:15 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 17 21:45:15 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 17 21:45:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 17 21:45:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 17 21:50:42 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription successful-ok +Sep 17 21:52:07 fedora NetworkManager[1169]: [1726581127.8557] device (wlp2s0): set-hw-addr: set MAC address to 4A:02:C4:13:51:DD (scanning) +Sep 17 21:52:07 fedora NetworkManager[1169]: [1726581127.8873] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:52:07 fedora NetworkManager[1169]: [1726581127.8874] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:52:07 fedora NetworkManager[1169]: [1726581127.8882] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:52:07 fedora NetworkManager[1169]: [1726581127.8882] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 21:59:02 fedora NetworkManager[1169]: [1726581542.8185] device (wlp2s0): set-hw-addr: set MAC address to CE:99:AB:2C:D4:44 (scanning) +Sep 17 21:59:02 fedora NetworkManager[1169]: [1726581542.8500] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 21:59:02 fedora NetworkManager[1169]: [1726581542.8500] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 21:59:02 fedora NetworkManager[1169]: [1726581542.8594] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 21:59:02 fedora NetworkManager[1169]: [1726581542.8594] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:05:57 fedora NetworkManager[1169]: [1726581957.8925] device (wlp2s0): set-hw-addr: set MAC address to A6:B0:E0:CB:47:28 (scanning) +Sep 17 22:05:57 fedora NetworkManager[1169]: [1726581957.9237] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:05:57 fedora NetworkManager[1169]: [1726581957.9238] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:05:57 fedora NetworkManager[1169]: [1726581957.9341] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:05:57 fedora NetworkManager[1169]: [1726581957.9342] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:12:52 fedora NetworkManager[1169]: [1726582372.8796] device (wlp2s0): set-hw-addr: set MAC address to 46:26:07:D1:7D:85 (scanning) +Sep 17 22:12:52 fedora NetworkManager[1169]: [1726582372.9113] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:12:52 fedora NetworkManager[1169]: [1726582372.9114] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:12:52 fedora NetworkManager[1169]: [1726582372.9291] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:12:52 fedora NetworkManager[1169]: [1726582372.9292] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:19:47 fedora NetworkManager[1169]: [1726582787.8567] device (wlp2s0): set-hw-addr: set MAC address to A6:A2:9B:38:D9:58 (scanning) +Sep 17 22:19:47 fedora NetworkManager[1169]: [1726582787.8875] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:19:47 fedora NetworkManager[1169]: [1726582787.8875] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:19:47 fedora NetworkManager[1169]: [1726582787.8974] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:19:47 fedora NetworkManager[1169]: [1726582787.8975] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:26:42 fedora NetworkManager[1169]: [1726583202.8927] device (wlp2s0): set-hw-addr: set MAC address to FE:BB:B0:82:31:52 (scanning) +Sep 17 22:26:42 fedora NetworkManager[1169]: [1726583202.9240] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:26:42 fedora NetworkManager[1169]: [1726583202.9240] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:26:42 fedora NetworkManager[1169]: [1726583202.9248] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:26:42 fedora NetworkManager[1169]: [1726583202.9249] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:33:37 fedora NetworkManager[1169]: [1726583617.7945] device (wlp2s0): set-hw-addr: set MAC address to 3A:E4:62:C9:18:16 (scanning) +Sep 17 22:33:37 fedora NetworkManager[1169]: [1726583617.8254] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:33:37 fedora NetworkManager[1169]: [1726583617.8255] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:33:37 fedora NetworkManager[1169]: [1726583617.8353] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:33:37 fedora NetworkManager[1169]: [1726583617.8354] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:35:47 fedora systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 17 22:35:47 fedora dnf[16016]: Metadata cache refreshed recently. +Sep 17 22:35:47 fedora systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 17 22:35:47 fedora systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 17 22:35:47 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 22:35:47 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 17 22:40:32 fedora NetworkManager[1169]: [1726584032.8747] device (wlp2s0): set-hw-addr: set MAC address to 16:03:FE:13:28:51 (scanning) +Sep 17 22:40:32 fedora NetworkManager[1169]: [1726584032.9060] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 17 22:40:32 fedora NetworkManager[1169]: [1726584032.9061] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 17 22:40:32 fedora NetworkManager[1169]: [1726584032.9168] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 17 22:40:32 fedora NetworkManager[1169]: [1726584032.9169] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 17 22:42:08 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription successful-ok +Sep 17 22:45:15 fedora kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 22:45:15 fedora kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +Sep 17 22:45:15 fedora systemd-logind[1060]: The system will suspend now! +Sep 17 22:45:15 fedora NetworkManager[1169]: [1726584315.2961] manager: sleep: sleep requested (sleeping: no enabled: yes) +Sep 17 22:45:15 fedora NetworkManager[1169]: [1726584315.2963] device (wlp2s0): state change: disconnected -> unmanaged (reason 'sleeping', sys-iface-state: 'managed') +Sep 17 22:45:15 fedora ModemManager[1151]: [sleep-monitor-systemd] system is about to suspend +Sep 17 22:45:15 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 17 22:45:15 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 17 22:45:15 fedora NetworkManager[1169]: [1726584315.3327] device (wlp2s0): set-hw-addr: reset MAC address to 48:E7:DA:5D:99:E7 (unmanage) +Sep 17 22:45:15 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' high priority at nice level 0. +Sep 17 22:45:15 fedora gnome-shell[2288]: [atomic] Failed to disable device '/dev/dri/card2': drmModeAtomicCommit: Permission denied +Sep 17 22:45:15 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 17 22:45:15 fedora NetworkManager[1169]: [1726584315.3608] device (p2p-dev-wlp2s0): state change: disconnected -> unmanaged (reason 'sleeping', sys-iface-state: 'managed') +Sep 17 22:45:15 fedora NetworkManager[1169]: [1726584315.3609] manager: NetworkManager state is now ASLEEP +Sep 17 22:45:15 fedora systemd[1]: Reached target sleep.target - Sleep. +Sep 17 22:45:15 fedora wpa_supplicant[1240]: wlp2s0: CTRL-EVENT-DSCP-POLICY clear_all +Sep 17 22:45:15 fedora systemd[1]: Starting systemd-suspend.service - System Suspend... +Sep 17 22:45:15 fedora systemd-sleep[16254]: Performing sleep operation 'suspend'... +Sep 17 22:45:15 fedora kernel: PM: suspend entry (s2idle) +Sep 17 22:45:15 fedora kernel: Filesystems sync: 0.008 seconds +Sep 17 22:45:15 fedora wpa_supplicant[1240]: wlp2s0: CTRL-EVENT-DSCP-POLICY clear_all +Sep 17 22:45:15 fedora wpa_supplicant[1240]: nl80211: deinit ifname=wlp2s0 disabled_11b_rates=0 +Sep 18 03:54:29 fedora kernel: Freezing user space processes +Sep 18 03:54:29 fedora kernel: Freezing user space processes completed (elapsed 0.002 seconds) +Sep 18 03:54:29 fedora kernel: OOM killer disabled. +Sep 18 03:54:29 fedora kernel: Freezing remaining freezable tasks +Sep 18 03:54:29 fedora kernel: Freezing remaining freezable tasks completed (elapsed 0.000 seconds) +Sep 18 03:54:29 fedora kernel: printk: Suspending console(s) (use no_console_suspend to debug) +Sep 18 03:54:29 fedora kernel: sd 2:0:0:0: [sda] Synchronizing SCSI cache +Sep 18 03:54:29 fedora kernel: queueing ieee80211 work while going to suspend +Sep 18 03:54:29 fedora kernel: atkbd serio0: Disabling IRQ1 wakeup source to avoid platform firmware bug +Sep 18 03:54:29 fedora kernel: PM: suspend devices took 0.230 seconds +Sep 18 03:54:29 fedora kernel: ACPI: EC: interrupt blocked +Sep 18 03:54:29 fedora kernel: ACPI: EC: interrupt unblocked +Sep 18 03:54:29 fedora kernel: [drm] PCIE GART of 1024M enabled. +Sep 18 03:54:29 fedora kernel: [drm] PTB located at 0x000000F41FC00000 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resuming... +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: dpm has been disabled +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: SMU is resumed successfully! +Sep 18 03:54:29 fedora kernel: nvme nvme0: 16/0/0 default/read/poll queues +Sep 18 03:54:29 fedora kernel: nvme nvme0: Ignoring bogus Namespace Identifiers +Sep 18 03:54:29 fedora kernel: [drm] VCN decode and encode initialized successfully(under DPG Mode). +Sep 18 03:54:29 fedora kernel: [drm] JPEG decode initialized successfully. +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 8 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 8 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 8 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 8 +Sep 18 03:54:29 fedora kernel: amdgpu 0000:04:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 8 +Sep 18 03:54:29 fedora kernel: usb 1-2.1: reset high-speed USB device number 3 using xhci_hcd +Sep 18 03:54:29 fedora kernel: ata1: SATA link down (SStatus 0 SControl 300) +Sep 18 03:54:29 fedora kernel: ata2: SATA link down (SStatus 0 SControl 300) +Sep 18 03:54:29 fedora kernel: usb 1-2.1.4: reset high-speed USB device number 8 using xhci_hcd +Sep 18 03:54:29 fedora kernel: usb 1-2.1.3: reset high-speed USB device number 7 using xhci_hcd +Sep 18 03:54:29 fedora kernel: usb 1-2.1.2: reset full-speed USB device number 5 using xhci_hcd +Sep 18 03:54:29 fedora kernel: PM: resume devices took 1.596 seconds +Sep 18 03:54:29 fedora kernel: OOM killer enabled. +Sep 18 03:54:29 fedora kernel: Restarting tasks ... done. +Sep 18 03:54:29 fedora kernel: random: crng reseeded on system resumption +Sep 18 03:54:29 fedora kernel: PM: suspend exit +Sep 18 03:54:29 fedora systemd-resolved[994]: Clock change detected. Flushing caches. +Sep 18 03:54:29 fedora sssd_kcm[2827]: Shutting down (status = 0) +Sep 18 03:54:29 fedora systemd-sleep[16254]: System returned from sleep operation 'suspend'. +Sep 18 03:54:29 fedora audit: BPF prog-id=93 op=LOAD +Sep 18 03:54:29 fedora systemd[1]: Starting plocate-updatedb.service - Update the plocate database... +Sep 18 03:54:29 fedora systemd[1]: Starting unbound-anchor.service - update of the root trust anchor for DNSSEC validation in unbound... +Sep 18 03:54:29 fedora audit: BPF prog-id=94 op=LOAD +Sep 18 03:54:29 fedora systemd[1]: Starting logrotate.service - Rotate log files... +Sep 18 03:54:29 fedora systemd[1]: sssd-kcm.service: Deactivated successfully. +Sep 18 03:54:29 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sssd-kcm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora systemd[1]: sssd-kcm.service: Consumed 3.544s CPU time. +Sep 18 03:54:29 fedora systemd[1]: systemd-suspend.service: Deactivated successfully. +Sep 18 03:54:29 fedora systemd[1]: Finished systemd-suspend.service - System Suspend. +Sep 18 03:54:29 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-suspend comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora systemd[1]: Stopped target sleep.target - Sleep. +Sep 18 03:54:29 fedora systemd[1]: Reached target suspend.target - Suspend. +Sep 18 03:54:29 fedora systemd-logind[1060]: Operation 'suspend' finished. +Sep 18 03:54:29 fedora ModemManager[1151]: [sleep-monitor-systemd] system is resuming +Sep 18 03:54:29 fedora NetworkManager[1169]: [1726602869.9270] manager: sleep: wake requested (sleeping: yes enabled: yes) +Sep 18 03:54:29 fedora systemd-resolved[994]: Closing all remaining TCP connections. +Sep 18 03:54:29 fedora systemd-resolved[994]: Resetting learnt feature levels on all servers. +Sep 18 03:54:29 fedora NetworkManager[1169]: [1726602869.9277] device (wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 18 03:54:29 fedora systemd[1]: Starting sssd-kcm.service - SSSD Kerberos Cache Manager... +Sep 18 03:54:29 fedora systemd[1]: Stopped target suspend.target - Suspend. +Sep 18 03:54:29 fedora systemd[1]: unbound-anchor.service: Deactivated successfully. +Sep 18 03:54:29 fedora systemd[1]: Finished unbound-anchor.service - update of the root trust anchor for DNSSEC validation in unbound. +Sep 18 03:54:29 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=unbound-anchor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora NetworkManager[1169]: [1726602869.9659] device (wlp2s0): set-hw-addr: set MAC address to 92:73:79:34:F4:B9 (scanning) +Sep 18 03:54:29 fedora systemd[1]: logrotate.service: Deactivated successfully. +Sep 18 03:54:29 fedora systemd[1]: Finished logrotate.service - Rotate log files. +Sep 18 03:54:29 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=logrotate comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:29 fedora NetworkManager[1169]: [1726602869.9909] device (p2p-dev-wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 18 03:54:29 fedora NetworkManager[1169]: [1726602869.9914] manager: NetworkManager state is now DISCONNECTED +Sep 18 03:54:29 fedora audit: BPF prog-id=94 op=UNLOAD +Sep 18 03:54:29 fedora systemd[1]: Started sssd-kcm.service - SSSD Kerberos Cache Manager. +Sep 18 03:54:29 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sssd-kcm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0020] device (wlp2s0): supplicant interface state: internal-starting -> disconnected +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0021] device (p2p-dev-wlp2s0): state change: unavailable -> unmanaged (reason 'removed', sys-iface-state: 'removed') +Sep 18 03:54:30 fedora sssd_kcm[16389]: Starting up +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0024] Wi-Fi P2P device controlled by interface wlp2s0 created +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0026] manager: (p2p-dev-wlp2s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/5) +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0028] device (p2p-dev-wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0031] device (wlp2s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed') +Sep 18 03:54:30 fedora NetworkManager[1169]: [1726602870.0034] device (p2p-dev-wlp2s0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed') +Sep 18 03:54:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 18 03:54:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 18 03:54:30 fedora audit: BPF prog-id=95 op=LOAD +Sep 18 03:54:30 fedora systemd[1]: Starting fprintd.service - Fingerprint Authentication Daemon... +Sep 18 03:54:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 18 03:54:30 fedora systemd[1]: Started fprintd.service - Fingerprint Authentication Daemon. +Sep 18 03:54:30 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:30 fedora rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 18 03:54:30 fedora audit[16426]: USER_AUTH pid=16426 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=failed' +Sep 18 03:54:33 fedora ModemManager[1151]: [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:02.2/0000:02:00.0': not supported by any plugin +Sep 18 03:54:44 fedora systemd[1]: plocate-updatedb.service: Deactivated successfully. +Sep 18 03:54:44 fedora systemd[1]: Finished plocate-updatedb.service - Update the plocate database. +Sep 18 03:54:44 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plocate-updatedb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:44 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=plocate-updatedb comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:54:44 fedora systemd[1]: plocate-updatedb.service: Consumed 6.180s CPU time. +Sep 18 03:54:44 fedora audit: BPF prog-id=93 op=UNLOAD +Sep 18 03:54:51 fedora gdm-password][16425]: gkr-pam: unlocked login keyring +Sep 18 03:54:51 fedora audit[16425]: USER_AUTH pid=16425 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix,pam_gnome_keyring acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 03:54:51 fedora audit[16425]: USER_ACCT pid=16425 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 03:54:51 fedora audit[16425]: CRED_REFR pid=16425 uid=0 auid=2000 ses=5 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix,pam_gnome_keyring acct="Thomas" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 03:54:51 fedora NetworkManager[1169]: [1726602891.5784] agent-manager: agent[d3f0d05fd96d45c7,:1.241/org.gnome.Shell.NetworkAgent/2000]: agent registered +Sep 18 03:55:00 fedora gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 03:55:00 fedora systemd[1]: fprintd.service: Deactivated successfully. +Sep 18 03:55:00 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:55:00 fedora audit: BPF prog-id=95 op=UNLOAD +Sep 18 03:55:10 fedora audit[16514]: USER_ACCT pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 03:55:10 fedora sudo[16514]: Thomas : TTY=pts/2 ; PWD=/var/user_data/Thomas ; USER=root ; COMMAND=/usr/bin/su -l -w SUBU_SHARE_DIR,DISPLAY,PULSE_SERVER -c 'export NO_AT_BRIDGE=1 ;touch .Xauthority ;xauth add ":2" . "33b48418d72d52aa9239f8c4ad8d158c" ;emacs --title archive' Thomas-archive +Sep 18 03:55:10 fedora audit[16514]: USER_CMD pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas" cmd=7375202D6C202D7720535542555F53484152455F4449522C444953504C41592C50554C53455F534552564552202D63206578706F7274204E4F5F41545F4252494447453D312020203B746F756368202E58617574686F726974792020203B78617574682061646420223A3222202E20223333623438343138643732643532616139323339663863346164386431353863222020203B656D616373202D2D7469746C6520617263686976652054686F6D61732D61726368697665 exe="/usr/bin/sudo" terminal=pts/2 res=success' +Sep 18 03:55:10 fedora audit[16514]: CRED_REFR pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 03:55:10 fedora sudo[16514]: pam_unix(sudo:session): session opened for user root(uid=0) by Thomas(uid=2000) +Sep 18 03:55:10 fedora audit[16514]: USER_START pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 03:55:10 fedora audit[16517]: USER_AUTH pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_rootok acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 03:55:10 fedora audit[16517]: USER_ACCT pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_succeed_if acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 03:55:10 fedora su[16517]: (to Thomas-archive) root on pts/5 +Sep 18 03:55:10 fedora audit[16517]: CRED_ACQ pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 03:55:10 fedora su[16517]: pam_unix(su-l:session): session opened for user Thomas-archive(uid=2001) by Thomas(uid=0) +Sep 18 03:55:10 fedora audit[16517]: USER_START pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 03:55:10 fedora audit: BPF prog-id=96 op=LOAD +Sep 18 03:55:10 fedora audit: BPF prog-id=97 op=LOAD +Sep 18 03:55:10 fedora audit: BPF prog-id=98 op=LOAD +Sep 18 03:55:10 fedora systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 18 03:55:10 fedora systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 18 03:55:10 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:55:11 fedora dbus-daemon[16552]: [session uid=2001 pid=16550] SELinux support is enabled +Sep 18 03:55:40 fedora systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 18 03:55:40 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 03:55:41 fedora audit: BPF prog-id=98 op=UNLOAD +Sep 18 03:55:41 fedora audit: BPF prog-id=97 op=UNLOAD +Sep 18 03:55:41 fedora audit: BPF prog-id=96 op=UNLOAD +Sep 18 03:58:14 fedora cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 04:01:21 fedora NetworkManager[1169]: [1726603281.7385] device (wlp2s0): set-hw-addr: set MAC address to 4A:C2:01:71:C6:A3 (scanning) +Sep 18 04:01:21 fedora NetworkManager[1169]: [1726603281.7699] device (wlp2s0): supplicant interface state: disconnected -> interface_disabled +Sep 18 04:01:21 fedora NetworkManager[1169]: [1726603281.7700] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> interface_disabled +Sep 18 04:01:21 fedora NetworkManager[1169]: [1726603281.7710] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:01:21 fedora NetworkManager[1169]: [1726603281.7710] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:07:19 fedora su[16517]: pam_unix(su-l:session): session closed for user Thomas-archive +Sep 18 04:07:19 fedora audit[16517]: USER_END pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 04:07:19 fedora audit[16517]: CRED_DISP pid=16517 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="Thomas-archive" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/5 res=success' +Sep 18 04:07:19 fedora sudo[16514]: pam_unix(sudo:session): session closed for user root +Sep 18 04:07:19 fedora audit[16514]: USER_END pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_close grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 04:07:19 fedora audit[16514]: CRED_DISP pid=16514 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 04:07:27 fedora gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/ldac +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSink/aac +Sep 18 04:07:39 fedora gsd-media-keys[8477]: Unable to get default source +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/aac +Sep 18 04:07:39 fedora gsd-media-keys[8477]: Unable to get default sink +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSink/sbc +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/sbc +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/faststream +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 18 04:07:39 fedora bluetoothd[1046]: Endpoint unregistered: sender=:1.242 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 18 04:07:39 fedora uresourced[1342]: Setting resources on user-2000.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 18 04:07:39 fedora uresourced[1342]: Setting resources on user@2000.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 18 04:07:39 fedora uresourced[1342]: Setting resources on user-2003.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 18 04:07:39 fedora uresourced[1342]: Setting resources on user@2003.service (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 18 04:07:40 fedora wireplumber[2252]: spa.bluez5.midi: org.bluez.GattManager1.RegisterApplication() failed: GDBus.Error:org.bluez.Error.AlreadyExists: Already Exists +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/ldac +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSink/aac +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/aac +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSink/sbc +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/sbc +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/faststream +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 18 04:07:40 fedora bluetoothd[1046]: Endpoint registered: sender=:1.349 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 18 04:07:40 fedora gsd-media-keys[2482]: Unable to get default sink +Sep 18 04:07:40 fedora gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:07:40 fedora gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:07:40 fedora gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:07:40 fedora gsd-media-keys[2482]: Unable to get default sink +Sep 18 04:07:40 fedora gsd-media-keys[2482]: Unable to get default source +Sep 18 04:07:40 fedora gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:07:40 fedora gsd-media-keys[2482]: Sync_devices: Failed to match stream id: 24, description: 'Microphone', origin: 'H390 headset with microphone Mono' +Sep 18 04:07:40 fedora gsd-media-keys[2482]: gvc_mixer_ui_device_get_id: assertion 'GVC_IS_MIXER_UI_DEVICE (device)' failed +Sep 18 04:07:41 fedora gnome-shell[2288]: Failed to reopen '/dev/dri/card1': GDBus.Error:System.Error.EBUSY: Device or resource busy +Sep 18 04:07:41 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' high priority at nice level 0. +Sep 18 04:07:41 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 18 04:07:41 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' high priority at nice level 0. +Sep 18 04:07:42 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 18 04:07:42 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' high priority at nice level 0. +Sep 18 04:07:43 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 18 04:07:43 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' high priority at nice level 0. +Sep 18 04:07:43 fedora rtkit-daemon[1056]: Successfully made thread 2325 of process 2288 (/usr/bin/gnome-shell) owned by '2003' RT at priority 20. +Sep 18 04:07:48 fedora audit: BPF prog-id=99 op=LOAD +Sep 18 04:07:48 fedora systemd[1]: Starting fprintd.service - Fingerprint Authentication Daemon... +Sep 18 04:07:48 fedora systemd[1]: Started fprintd.service - Fingerprint Authentication Daemon. +Sep 18 04:07:48 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:07:48 fedora audit[17232]: USER_AUTH pid=17232 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=failed' +Sep 18 04:07:57 fedora gdm-password][17221]: gkr-pam: unlocked login keyring +Sep 18 04:07:57 fedora audit[17221]: USER_AUTH pid=17221 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_unix,pam_gnome_keyring acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 04:07:57 fedora audit[17221]: USER_ACCT pid=17221 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 04:07:57 fedora audit[17221]: CRED_REFR pid=17221 uid=0 auid=2003 ses=2 subj=system_u:system_r:xdm_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_unix,pam_gnome_keyring acct="Thomas-Internet" exe="/usr/libexec/gdm-session-worker" hostname=fedora addr=? terminal=/dev/tty1 res=success' +Sep 18 04:07:57 fedora NetworkManager[1169]: [1726603677.5506] agent-manager: agent[857ad466f65b391c,:1.88/org.gnome.Shell.NetworkAgent/2003]: agent registered +Sep 18 04:08:16 fedora NetworkManager[1169]: [1726603696.6746] device (wlp2s0): set-hw-addr: set MAC address to E2:DE:E6:38:AA:6D (scanning) +Sep 18 04:08:16 fedora NetworkManager[1169]: [1726603696.7068] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:08:16 fedora NetworkManager[1169]: [1726603696.7069] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:08:16 fedora NetworkManager[1169]: [1726603696.7175] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:08:16 fedora NetworkManager[1169]: [1726603696.7176] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:08:18 fedora systemd[1]: fprintd.service: Deactivated successfully. +Sep 18 04:08:18 fedora audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fprintd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:08:18 fedora audit: BPF prog-id=99 op=UNLOAD +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1: new high-speed USB device number 9 using xhci_hcd +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.00 +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1: Product: USB2.0 HUB +Sep 18 04:08:24 fedora kernel: hub 1-2.1.1:1.0: USB hub found +Sep 18 04:08:24 fedora kernel: hub 1-2.1.1:1.0: 4 ports detected +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: new high-speed USB device number 10 using xhci_hcd +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: New USB device found, idVendor=0fe6, idProduct=9900, bcdDevice=20.00 +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: Product: USB 10/100 LAN +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: Manufacturer: CoreChips +Sep 18 04:08:24 fedora kernel: usb 1-2.1.1.1: SerialNumber: 00E099002CCF +Sep 18 04:08:24 fedora kernel: cdc_ether 1-2.1.1.1:2.0 eth0: register 'cdc_ether' at usb-0000:04:00.3-2.1.1.1, CDC Ethernet Device, 00:e0:99:00:2c:cf +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8324] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/6) +Sep 18 04:08:24 fedora mtp-probe[17354]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.1/1-2.1.1.1" +Sep 18 04:08:24 fedora mtp-probe[17354]: bus: 1, device: 10 was not an MTP device +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8553] device (eth0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external') +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8569] settings: (eth0): created default wired connection 'Wired connection 1' +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8571] device (eth0): carrier: link connected +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8581] device (eth0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed') +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8587] policy: auto-activating connection 'Wired connection 1' (83164864-257d-3e56-a4cb-bbf6e9f8e4d6) +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8589] device (eth0): Activation: starting connection 'Wired connection 1' (83164864-257d-3e56-a4cb-bbf6e9f8e4d6) +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8590] device (eth0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8591] manager: NetworkManager state is now CONNECTING +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8592] device (eth0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:24 fedora mtp-probe[17374]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.1/1-2.1.1.1" +Sep 18 04:08:24 fedora mtp-probe[17374]: bus: 1, device: 10 was not an MTP device +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8613] device (eth0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:24 fedora NetworkManager[1169]: [1726603704.8619] dhcp4 (eth0): activation: beginning transaction (timeout in 45 seconds) +Sep 18 04:08:24 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::2a58:e8be:c554:ff6e. +Sep 18 04:08:24 fedora avahi-daemon[1045]: New relevant interface eth0.IPv6 for mDNS. +Sep 18 04:08:24 fedora avahi-daemon[1045]: Registering new address record for fe80::2a58:e8be:c554:ff6e on eth0.*. +Sep 18 04:08:25 fedora NetworkManager[1169]: [1726603705.4203] device (eth0): carrier: link connected +Sep 18 04:08:26 fedora NetworkManager[1169]: [1726603706.8738] dhcp4 (eth0): state changed new lease, address=192.168.0.15, acd pending +Sep 18 04:08:26 fedora systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service... +Sep 18 04:08:26 fedora systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service. +Sep 18 04:08:26 fedora audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:08:26 fedora chronyd[1101]: Forward time jump detected! +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0312] dhcp4 (eth0): state changed new lease, address=192.168.0.15 +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0319] policy: set 'Wired connection 1' (eth0) as default for IPv4 routing and DNS +Sep 18 04:08:27 fedora avahi-daemon[1045]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.0.15. +Sep 18 04:08:27 fedora avahi-daemon[1045]: New relevant interface eth0.IPv4 for mDNS. +Sep 18 04:08:27 fedora avahi-daemon[1045]: Registering new address record for 192.168.0.15 on eth0.IPv4. +Sep 18 04:08:27 fedora systemd-resolved[994]: eth0: Bus client set search domain list to: hitronhub.home +Sep 18 04:08:27 fedora systemd-resolved[994]: eth0: Bus client set default route setting: yes +Sep 18 04:08:27 fedora systemd-resolved[994]: eth0: Bus client set DNS server list to: 192.168.0.1, 203.133.1.1, 203.187.1.1, 8.8.8.8, 8.8.4.4 +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0399] device (eth0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0415] device (eth0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0416] device (eth0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed') +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0420] manager: NetworkManager state is now CONNECTED_SITE +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0423] device (eth0): Activation: successful, device activated. +Sep 18 04:08:27 fedora NetworkManager[1169]: [1726603707.0458] policy: set-hostname: set hostname to 'localhost-live.hitronhub.home' (from address lookup) +Sep 18 04:08:27 fedora audit: BPF prog-id=100 op=LOAD +Sep 18 04:08:27 fedora audit: BPF prog-id=101 op=LOAD +Sep 18 04:08:27 fedora audit: BPF prog-id=102 op=LOAD +Sep 18 04:08:27 fedora chronyd[1101]: Source 114.33.15.129 online +Sep 18 04:08:27 fedora chronyd[1101]: Source 114.35.131.27 online +Sep 18 04:08:27 fedora chronyd[1101]: Source 103.147.22.149 online +Sep 18 04:08:27 fedora chronyd[1101]: Source 210.243.152.152 online +Sep 18 04:08:27 fedora systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 18 04:08:27 fedora systemd[1]: iscsi.service: Unit cannot be reloaded because it is inactive. +Sep 18 04:08:27 localhost-live.hitronhub.home systemd-hostnamed[17426]: Hostname set to (transient) +Sep 18 04:08:27 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:08:27 localhost-live.hitronhub.home systemd-resolved[994]: System hostname changed to 'localhost-live.hitronhub.home'. +Sep 18 04:08:27 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 18 04:08:27 localhost-live.hitronhub.home NetworkManager[1169]: [1726603707.1864] manager: NetworkManager state is now CONNECTED_GLOBAL +Sep 18 04:08:28 localhost-live.hitronhub.home ModemManager[1151]: [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-2/1-2.1/1-2.1.1/1-2.1.1.1': not supported by any plugin +Sep 18 04:08:31 localhost-live.hitronhub.home chronyd[1101]: Selected source 210.243.152.152 (2.fedora.pool.ntp.org) +Sep 18 04:08:31 localhost-live.hitronhub.home chronyd[1101]: System clock wrong by 1.172576 seconds +Sep 18 04:08:37 localhost-live.hitronhub.home systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully. +Sep 18 04:08:37 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:08:57 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 18 04:08:57 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 04:08:57 localhost-live.hitronhub.home audit: BPF prog-id=102 op=UNLOAD +Sep 18 04:08:57 localhost-live.hitronhub.home audit: BPF prog-id=101 op=UNLOAD +Sep 18 04:08:57 localhost-live.hitronhub.home audit: BPF prog-id=100 op=UNLOAD +Sep 18 04:09:36 localhost-live.hitronhub.home org.mozilla.firefox.desktop[17321]: Missing chrome or resource URL: chrome://browser/skin/aboutSessionRestore-window-icon.png +Sep 18 04:09:36 localhost-live.hitronhub.home org.mozilla.firefox.desktop[17321]: Missing chrome or resource URL: chrome://browser/skin/abyss/img/waterfox-abyss-preview.svg +Sep 18 04:09:36 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 17694 of process 17321 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 18 04:09:36 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 17714 of process 6084 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 18 04:09:37 localhost-live.hitronhub.home chronyd[1101]: Selected source 114.33.15.129 (2.fedora.pool.ntp.org) +Sep 18 04:11:26 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 18287 of process 17655 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 18 04:12:59 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-18788.scope. +Sep 18 04:13:55 localhost-live.hitronhub.home chronyd[1101]: Selected source 210.243.152.152 (2.fedora.pool.ntp.org) +Sep 18 04:15:00 localhost-live.hitronhub.home org.mozilla.firefox.desktop[17321]: Missing chrome or resource URL: chrome://browser/skin/aboutSessionRestore-window-icon.png +Sep 18 04:15:00 localhost-live.hitronhub.home org.mozilla.firefox.desktop[17321]: Missing chrome or resource URL: chrome://browser/skin/abyss/img/waterfox-abyss-preview.svg +Sep 18 04:15:00 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 18989 of process 17868 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 18 04:15:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726604111.6902] device (wlp2s0): set-hw-addr: set MAC address to 6A:16:01:A1:50:93 (scanning) +Sep 18 04:15:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726604111.7218] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:15:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726604111.7219] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:15:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726604111.7383] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:15:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726604111.7383] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:15:11 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 19449 of process 18151 (/usr/lib64/firefox/firefox) owned by '2003' RT at priority 10. +Sep 18 04:22:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726604526.6641] device (wlp2s0): set-hw-addr: set MAC address to FE:2F:34:A3:AD:66 (scanning) +Sep 18 04:22:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726604526.6811] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:22:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726604526.6812] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:22:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726604526.6993] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:22:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726604526.6994] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:22:46 localhost-live.hitronhub.home gdm[1309]: GLib: Source ID 182 was not found when attempting to remove it +Sep 18 04:22:46 localhost-live.hitronhub.home kernel: rfkill: input handler enabled +Sep 18 04:22:46 localhost-live.hitronhub.home kernel: rfkill: input handler disabled +Sep 18 04:22:46 localhost-live.hitronhub.home gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:46 localhost-live.hitronhub.home gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/ldac +Sep 18 04:22:46 localhost-live.hitronhub.home gsd-media-keys[2482]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSink/aac +Sep 18 04:22:46 localhost-live.hitronhub.home gsd-media-keys[2482]: Unable to get default source +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/aac +Sep 18 04:22:46 localhost-live.hitronhub.home gsd-media-keys[2482]: Unable to get default sink +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSink/sbc +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/sbc +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/faststream +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 18 04:22:46 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint unregistered: sender=:1.349 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 18 04:22:47 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2003.slice (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 18 04:22:47 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2003.service (MemoryMin: 0, MemoryLow: 0, CPUWeight: 100, IOWeight: 100) +Sep 18 04:22:47 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user-2000.slice (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 18 04:22:47 localhost-live.hitronhub.home uresourced[1342]: Setting resources on user@2000.service (MemoryMin: 262144000, MemoryLow: 0, CPUWeight: 500, IOWeight: 500) +Sep 18 04:22:47 localhost-live.hitronhub.home wireplumber[8092]: spa.bluez5.midi: org.bluez.GattManager1.RegisterApplication() failed: GDBus.Error:org.bluez.Error.AlreadyExists: Already Exists +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/ldac +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSink/aac +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/aac +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSink/sbc +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/sbc +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSink/sbc_xq +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/sbc_xq +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/faststream +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/faststream_duplex +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSink/opus_05 +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/opus_05 +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSink/opus_05_duplex +Sep 18 04:22:47 localhost-live.hitronhub.home bluetoothd[1046]: Endpoint registered: sender=:1.376 path=/MediaEndpoint/A2DPSource/opus_05_duplex +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: Unable to get default sink +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: Unable to get default sink +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: Unable to get default source +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: gvc_mixer_card_get_index: assertion 'GVC_IS_MIXER_CARD (card)' failed +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: Sync_devices: Failed to match stream id: 11, description: 'Digital Output (S/PDIF)', origin: 'H390 headset with microphone Digital Stereo (IEC958)' +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: Sync_devices: Failed to match stream id: 12, description: 'Microphone', origin: 'H390 headset with microphone Mono' +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: gvc_mixer_ui_device_get_id: assertion 'GVC_IS_MIXER_UI_DEVICE (device)' failed +Sep 18 04:22:47 localhost-live.hitronhub.home gsd-media-keys[8477]: gvc_mixer_ui_device_get_id: assertion 'GVC_IS_MIXER_UI_DEVICE (device)' failed +Sep 18 04:22:48 localhost-live.hitronhub.home gnome-shell[8132]: Failed to reopen '/dev/dri/card1': GDBus.Error:System.Error.EBUSY: Device or resource busy +Sep 18 04:22:48 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 18 04:22:48 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 18 04:22:49 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' high priority at nice level 0. +Sep 18 04:22:49 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 8175 of process 8132 (/usr/bin/gnome-shell) owned by '2000' RT at priority 20. +Sep 18 04:22:49 localhost-live.hitronhub.home gnome-shell[20410]: The XKEYBOARD keymap compiler (xkbcomp) reports: +Sep 18 04:22:49 localhost-live.hitronhub.home gnome-shell[20410]: > Warning: Unsupported maximum keycode 708, clipping. +Sep 18 04:22:49 localhost-live.hitronhub.home gnome-shell[20410]: > X11 cannot support keycodes above 255. +Sep 18 04:22:49 localhost-live.hitronhub.home gnome-shell[20410]: Errors from xkbcomp are not fatal to the X server +Sep 18 04:29:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726604941.6595] device (wlp2s0): set-hw-addr: set MAC address to FE:E3:DF:CC:75:E0 (scanning) +Sep 18 04:29:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726604941.6909] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:29:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726604941.6909] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:29:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726604941.6964] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:29:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726604941.6965] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:35:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726605356.6769] device (wlp2s0): set-hw-addr: set MAC address to B2:3F:64:4F:4B:5F (scanning) +Sep 18 04:35:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726605356.7093] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:35:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726605356.7093] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:35:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726605356.7191] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:35:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726605356.7192] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:42:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726605771.6701] device (wlp2s0): set-hw-addr: set MAC address to 8A:53:AE:0A:F8:D6 (scanning) +Sep 18 04:42:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726605771.7022] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:42:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726605771.7023] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:42:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726605771.7032] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:42:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726605771.7033] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:49:39 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 04:49:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726606186.6613] device (wlp2s0): set-hw-addr: set MAC address to 82:54:44:75:E9:B4 (scanning) +Sep 18 04:49:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726606186.6930] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 04:49:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726606186.6930] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 04:49:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726606186.6976] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 04:49:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726606186.6976] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 04:56:34 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 04:56:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726606601.6744] device (wlp2s0): set-hw-addr: set MAC address to 0E:2B:45:EB:F9:BB (scanning) +Sep 18 04:56:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726606601.7170] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 04:56:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726606601.7171] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 04:56:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726606601.7221] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 04:56:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726606601.7221] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 05:03:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726607016.6652] device (wlp2s0): set-hw-addr: set MAC address to B2:B1:B8:E3:16:17 (scanning) +Sep 18 05:03:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726607016.6969] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:03:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726607016.6969] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:03:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726607016.7148] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:03:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726607016.7149] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:10:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726607431.6676] device (wlp2s0): set-hw-addr: set MAC address to 6A:3E:51:71:AD:4F (scanning) +Sep 18 05:10:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726607431.7003] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:10:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726607431.7003] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:10:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726607431.7107] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:10:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726607431.7107] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:17:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726607846.6786] device (wlp2s0): set-hw-addr: set MAC address to 16:11:EA:BB:9F:3C (scanning) +Sep 18 05:17:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726607846.7106] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:17:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726607846.7107] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:17:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726607846.7112] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:17:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726607846.7113] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22240]: USER_ACCT pid=22240 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix acct="Thomas" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home sudo[22240]: Thomas : TTY=pts/2 ; PWD=/var/user_data/Thomas ; USER=root ; COMMAND=/usr/bin/su -l -w SUBU_SHARE_DIR,DISPLAY,PULSE_SERVER -c 'export NO_AT_BRIDGE=1 ;touch .Xauthority ;xauth add ":2" . "33b48418d72d52aa9239f8c4ad8d158c" ;thunderbird' Thomas-email +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22240]: USER_CMD pid=22240 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='cwd="/var/user_data/Thomas" cmd=7375202D6C202D7720535542555F53484152455F4449522C444953504C41592C50554C53455F534552564552202D63206578706F7274204E4F5F41545F4252494447453D312020203B746F756368202E58617574686F726974792020203B78617574682061646420223A3222202E20223333623438343138643732643532616139323339663863346164386431353863222020203B7468756E646572626972642054686F6D61732D656D61696C exe="/usr/bin/sudo" terminal=pts/2 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22240]: CRED_REFR pid=22240 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_fprintd acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home sudo[22240]: pam_unix(sudo:session): session opened for user root(uid=0) by Thomas(uid=2000) +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22240]: USER_START pid=22240 uid=2000 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_limits,pam_keyinit,pam_limits,pam_systemd,pam_unix acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22243]: USER_AUTH pid=22243 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=pam_rootok acct="Thomas-email" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/8 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22243]: USER_ACCT pid=22243 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_succeed_if acct="Thomas-email" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/8 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home su[22243]: (to Thomas-email) root on pts/8 +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22243]: CRED_ACQ pid=22243 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_rootok acct="Thomas-email" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/8 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home su[22243]: pam_unix(su-l:session): session opened for user Thomas-email(uid=2016) by Thomas(uid=0) +Sep 18 05:18:32 localhost-live.hitronhub.home audit[22243]: USER_START pid=22243 uid=0 auid=2000 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 msg='op=PAM:session_open grantors=pam_keyinit,pam_keyinit,pam_limits,pam_systemd,pam_unix,pam_umask acct="Thomas-email" exe="/usr/bin/su" hostname=? addr=? terminal=/dev/pts/8 res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home audit: BPF prog-id=103 op=LOAD +Sep 18 05:18:32 localhost-live.hitronhub.home audit: BPF prog-id=104 op=LOAD +Sep 18 05:18:32 localhost-live.hitronhub.home audit: BPF prog-id=105 op=LOAD +Sep 18 05:18:32 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 18 05:18:32 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 18 05:18:32 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:18:32 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] SELinux support is enabled +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Activating service name='org.freedesktop.portal.Desktop' requested by ':1.1' (uid=2016 pid=22244 comm="/usr/lib64/thunderbird/thunderbird" label="unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023") +Sep 18 05:18:33 localhost-live.hitronhub.home audit: BPF prog-id=106 op=LOAD +Sep 18 05:18:33 localhost-live.hitronhub.home audit: BPF prog-id=107 op=LOAD +Sep 18 05:18:33 localhost-live.hitronhub.home audit: BPF prog-id=108 op=LOAD +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:7: Unknown line 'grub_users', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:8: Unknown line 'grub_arg', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-0-rescue.conf:9: Unknown line 'grub_class', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.10.9-200.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:7: Unknown line 'grub_users', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:8: Unknown line 'grub_arg', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home systemd-logind[1060]: /boot/loader/entries/25329b71048846eda1b36bebcfc9160b-6.8.5-301.fc40.x86_64.conf:9: Unknown line 'grub_class', ignoring. +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Activating service name='org.freedesktop.portal.Documents' requested by ':1.2' (uid=2016 pid=22371 comm="/usr/libexec/xdg-desktop-portal" label="unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023") +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.3' (uid=2016 pid=22379 comm="/usr/libexec/xdg-document-portal" label="unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023") +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore' +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Successfully activated service 'org.freedesktop.portal.Documents' +Sep 18 05:18:33 localhost-live.hitronhub.home systemd[1]: Starting systemd-timedated.service - Time & Date Service... +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: No skeleton to export +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.FileChooser as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: The preferred method to match portal implementations to desktop environments is to use the portals.conf(5) configuration file +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Activating service name='org.freedesktop.impl.portal.desktop.gtk' requested by ':1.2' (uid=2016 pid=22371 comm="/usr/libexec/xdg-desktop-portal" label="unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023") +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Activating service name='org.gtk.vfs.Daemon' requested by ':1.5' (uid=2016 pid=22399 comm="/usr/libexec/xdg-desktop-portal-gtk" label="unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023") +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Successfully activated service 'org.gtk.vfs.Daemon' +Sep 18 05:18:33 localhost-live.hitronhub.home systemd[1]: Started systemd-timedated.service - Time & Date Service. +Sep 18 05:18:33 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk' +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.AppChooser as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Print as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Notification as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Inhibit as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Access as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Failed connect to PipeWire: Couldn't connect to PipeWire +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Account as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.Email as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home xdg-desktop-por[22371]: Choosing gtk.portal for org.freedesktop.impl.portal.DynamicLauncher as a last-resort fallback +Sep 18 05:18:33 localhost-live.hitronhub.home dbus-daemon[22291]: [session uid=2016 pid=22289] Successfully activated service 'org.freedesktop.portal.Desktop' +Sep 18 05:18:34 localhost-live.hitronhub.home rtkit-daemon[1056]: Successfully made thread 22471 of process 22244 (/usr/lib64/thunderbird/thunderbird) owned by '2016' RT at priority 10. +Sep 18 05:19:02 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 18 05:19:02 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:19:02 localhost-live.hitronhub.home audit: BPF prog-id=105 op=UNLOAD +Sep 18 05:19:02 localhost-live.hitronhub.home audit: BPF prog-id=104 op=UNLOAD +Sep 18 05:19:02 localhost-live.hitronhub.home audit: BPF prog-id=103 op=UNLOAD +Sep 18 05:19:03 localhost-live.hitronhub.home systemd[1]: systemd-timedated.service: Deactivated successfully. +Sep 18 05:19:03 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-timedated comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:19:03 localhost-live.hitronhub.home audit: BPF prog-id=108 op=UNLOAD +Sep 18 05:19:03 localhost-live.hitronhub.home audit: BPF prog-id=107 op=UNLOAD +Sep 18 05:19:03 localhost-live.hitronhub.home audit: BPF prog-id=106 op=UNLOAD +Sep 18 05:19:47 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 05:19:47 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 05:19:49 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:19:49 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:19:50 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:23:51 localhost-live.hitronhub.home systemd[1]: fwupd.service: Deactivated successfully. +Sep 18 05:23:51 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=fwupd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:23:51 localhost-live.hitronhub.home systemd[1]: fwupd.service: Consumed 1.335s CPU time. +Sep 18 05:24:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726608261.6893] device (wlp2s0): set-hw-addr: set MAC address to 4A:5D:62:D5:45:84 (scanning) +Sep 18 05:24:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726608261.7161] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:24:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726608261.7162] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:24:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726608261.7304] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:24:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726608261.7305] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:31:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726608676.6734] device (wlp2s0): set-hw-addr: set MAC address to 1E:21:D9:60:C3:32 (scanning) +Sep 18 05:31:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726608676.7048] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:31:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726608676.7048] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:31:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726608676.7051] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:31:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726608676.7051] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:36:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 05:37:00 localhost-live.hitronhub.home dnf[23290]: Copr repo for PyCharm owned by phracek 1.9 kB/s | 1.8 kB 00:00 +Sep 18 05:37:01 localhost-live.hitronhub.home dnf[23290]: Fedora 40 - x86_64 13 kB/s | 10 kB 00:00 +Sep 18 05:37:02 localhost-live.hitronhub.home dnf[23290]: Fedora 40 openh264 (From Cisco) - x86_64 1.3 kB/s | 989 B 00:00 +Sep 18 05:37:03 localhost-live.hitronhub.home dnf[23290]: Fedora 40 - x86_64 - Updates 11 kB/s | 7.4 kB 00:00 +Sep 18 05:37:03 localhost-live.hitronhub.home dnf[23290]: google-chrome 18 kB/s | 1.3 kB 00:00 +Sep 18 05:37:03 localhost-live.hitronhub.home dnf[23290]: google-chrome 15 kB/s | 1.7 kB 00:00 +Sep 18 05:37:05 localhost-live.hitronhub.home dnf[23290]: RPM Fusion for Fedora 40 - Nonfree - NVIDIA Dri 12 kB/s | 16 kB 00:01 +Sep 18 05:37:05 localhost-live.hitronhub.home dnf[23290]: RPM Fusion for Fedora 40 - Nonfree - Steam 16 kB/s | 14 kB 00:00 +Sep 18 05:37:06 localhost-live.hitronhub.home dnf[23290]: Metadata cache created. +Sep 18 05:37:06 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 05:37:06 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 05:37:06 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:37:06 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 05:37:06 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Consumed 1.211s CPU time. +Sep 18 05:38:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726609091.6683] device (wlp2s0): set-hw-addr: set MAC address to 7E:F6:26:9A:7B:E0 (scanning) +Sep 18 05:38:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726609091.7151] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 05:38:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726609091.7152] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 05:38:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726609091.7205] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 05:38:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726609091.7206] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 05:45:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726609506.6660] device (wlp2s0): set-hw-addr: set MAC address to 12:48:CE:58:87:78 (scanning) +Sep 18 05:45:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726609506.6981] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:45:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726609506.6982] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:45:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726609506.7163] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:45:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726609506.7164] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:47:59 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 05:52:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726609921.6627] device (wlp2s0): set-hw-addr: set MAC address to B6:B0:0E:A7:DB:41 (scanning) +Sep 18 05:52:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726609921.6944] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:52:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726609921.6945] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:52:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726609921.6952] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:52:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726609921.6953] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 05:53:38 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:54:45 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:54:46 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: META_CURRENT_TIME used to choose focus window; focus window may not be correct. +Sep 18 05:54:54 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 05:58:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726610336.6865] device (wlp2s0): set-hw-addr: set MAC address to 3E:4E:AC:C8:9F:18 (scanning) +Sep 18 05:58:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726610336.7181] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 05:58:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726610336.7182] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 05:58:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726610336.7237] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 05:58:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726610336.7238] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:05:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726610751.6582] device (wlp2s0): set-hw-addr: set MAC address to 32:68:9C:0A:02:53 (scanning) +Sep 18 06:05:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726610751.6903] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:05:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726610751.6903] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:05:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726610751.6912] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:05:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726610751.6913] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:12:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726611166.6738] device (wlp2s0): set-hw-addr: set MAC address to 7E:EC:A9:F8:23:18 (scanning) +Sep 18 06:12:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726611166.7051] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:12:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726611166.7052] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:12:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726611166.7149] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:12:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726611166.7150] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:12:59 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-24629.scope. +Sep 18 06:19:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726611581.6642] device (wlp2s0): set-hw-addr: set MAC address to 52:D5:32:19:34:B9 (scanning) +Sep 18 06:19:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726611581.6963] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:19:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726611581.6963] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:19:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726611581.7064] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:19:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726611581.7065] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:22:09 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (26579961) is greater than comparison timestamp (26579951). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 06:22:09 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 26579961. Working around... +Sep 18 06:22:52 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (26622579) is greater than comparison timestamp (26622570). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 06:22:52 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 26622579. Working around... +Sep 18 06:26:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726611996.6795] device (wlp2s0): set-hw-addr: set MAC address to 02:04:96:D6:5F:EB (scanning) +Sep 18 06:26:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726611996.7108] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:26:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726611996.7108] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:26:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726611996.7117] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:26:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726611996.7117] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:33:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726612411.6604] device (wlp2s0): set-hw-addr: set MAC address to 02:C3:C3:00:77:D0 (scanning) +Sep 18 06:33:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726612411.6926] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:33:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726612411.6927] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:33:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726612411.7038] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:33:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726612411.7039] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:40:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726612826.6735] device (wlp2s0): set-hw-addr: set MAC address to 0A:F3:6A:52:F8:55 (scanning) +Sep 18 06:40:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726612826.7048] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:40:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726612826.7048] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:40:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726612826.7137] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:40:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726612826.7137] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:46:19 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 06:47:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726613241.6653] device (wlp2s0): set-hw-addr: set MAC address to 5E:52:F3:F5:81:09 (scanning) +Sep 18 06:47:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726613241.6971] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:47:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726613241.6972] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:47:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726613241.7070] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:47:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726613241.7071] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 06:53:14 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 06:54:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726613656.6694] device (wlp2s0): set-hw-addr: set MAC address to 42:C7:1F:7F:D4:78 (scanning) +Sep 18 06:54:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726613656.7008] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 06:54:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726613656.7009] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 06:54:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726613656.7130] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 06:54:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726613656.7131] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:01:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726614071.6616] device (wlp2s0): set-hw-addr: set MAC address to 0E:7D:D6:0F:A7:DA (scanning) +Sep 18 07:01:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726614071.6937] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:01:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726614071.6937] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:01:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726614071.7080] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:01:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726614071.7081] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:08:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726614486.6614] device (wlp2s0): set-hw-addr: set MAC address to 4A:CF:35:3E:9C:08 (scanning) +Sep 18 07:08:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726614486.6932] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:08:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726614486.6933] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:08:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726614486.6940] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:08:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726614486.6941] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:15:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726614901.7056] device (wlp2s0): set-hw-addr: set MAC address to 2E:56:EF:5D:C2:36 (scanning) +Sep 18 07:15:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726614901.7373] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:15:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726614901.7374] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:15:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726614901.7540] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:15:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726614901.7540] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:21:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726615316.6916] device (wlp2s0): set-hw-addr: set MAC address to AA:6B:11:5F:8C:45 (scanning) +Sep 18 07:21:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726615316.7231] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:21:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726615316.7232] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:21:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726615316.7235] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:21:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726615316.7236] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:28:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726615731.6594] device (wlp2s0): set-hw-addr: set MAC address to CA:D0:9E:B0:4B:58 (scanning) +Sep 18 07:28:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726615731.6910] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:28:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726615731.6911] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:28:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726615731.7020] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:28:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726615731.7021] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:30:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 07:30:59 localhost-live.hitronhub.home dnf[27301]: Metadata cache refreshed recently. +Sep 18 07:30:59 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 07:30:59 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 07:30:59 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 07:30:59 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 07:35:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726616146.6626] device (wlp2s0): set-hw-addr: set MAC address to AE:1E:17:1E:FA:92 (scanning) +Sep 18 07:35:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726616146.6931] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:35:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726616146.6932] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:35:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726616146.7054] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:35:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726616146.7055] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:42:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726616561.6655] device (wlp2s0): set-hw-addr: set MAC address to B2:FF:EE:9D:1F:74 (scanning) +Sep 18 07:42:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726616561.6969] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:42:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726616561.6970] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:42:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726616561.7069] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:42:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726616561.7070] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:44:39 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 07:49:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726616976.6660] device (wlp2s0): set-hw-addr: set MAC address to 96:A8:0E:82:78:FF (scanning) +Sep 18 07:49:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726616976.6936] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:49:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726616976.6937] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:49:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726616976.7041] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:49:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726616976.7042] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:51:34 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 07:52:49 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:52:49 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:56:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726617391.6772] device (wlp2s0): set-hw-addr: set MAC address to 7E:E0:DD:5A:E3:2F (scanning) +Sep 18 07:56:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726617391.7090] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 07:56:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726617391.7091] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 07:56:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726617391.7268] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 07:56:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726617391.7269] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 07:57:00 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:57:00 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:57:41 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:57:41 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:19 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:19 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:21 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:21 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:22 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 07:58:22 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:00:45 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (32495539) is greater than comparison timestamp (32495465). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 08:00:45 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 32495539. Working around... +Sep 18 08:01:27 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:01:27 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:01:53 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:01:53 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:03:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726617806.6762] device (wlp2s0): set-hw-addr: set MAC address to CA:15:43:95:B3:21 (scanning) +Sep 18 08:03:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726617806.7084] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:03:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726617806.7085] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:03:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726617806.7281] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:03:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726617806.7282] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:04:09 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:04:09 localhost-live.hitronhub.home gnome-shell[8132]: g_closure_unref: assertion 'closure->ref_count > 0' failed +Sep 18 08:10:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726618221.6903] device (wlp2s0): set-hw-addr: set MAC address to 4A:6A:E9:CD:0E:14 (scanning) +Sep 18 08:10:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726618221.7219] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:10:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726618221.7221] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:10:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726618221.7227] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:10:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726618221.7227] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:13:00 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-28748.scope. +Sep 18 08:17:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726618636.6574] device (wlp2s0): set-hw-addr: set MAC address to F2:3E:10:B0:51:6F (scanning) +Sep 18 08:17:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726618636.6892] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:17:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726618636.6893] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:17:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726618636.6944] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:17:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726618636.6944] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:24:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726619051.6644] device (wlp2s0): set-hw-addr: set MAC address to D2:FF:31:D4:F7:FA (scanning) +Sep 18 08:24:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726619051.6963] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:24:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726619051.6964] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:24:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726619051.7079] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:24:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726619051.7080] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:29:53 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (34243329) is greater than comparison timestamp (34243326). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 08:29:53 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 34243329. Working around... +Sep 18 08:31:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726619466.6850] device (wlp2s0): set-hw-addr: set MAC address to 4E:F6:3B:AA:CC:48 (scanning) +Sep 18 08:31:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726619466.7224] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 08:31:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726619466.7224] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 08:31:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726619466.7279] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 08:31:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726619466.7280] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 08:38:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726619881.6614] device (wlp2s0): set-hw-addr: set MAC address to CE:25:61:4D:1A:49 (scanning) +Sep 18 08:38:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726619881.6933] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:38:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726619881.6934] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:38:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726619881.7110] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:38:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726619881.7110] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:42:59 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 08:44:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726620296.6723] device (wlp2s0): set-hw-addr: set MAC address to F6:EC:84:96:26:0D (scanning) +Sep 18 08:44:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726620296.7042] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:44:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726620296.7042] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:44:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726620296.7219] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:44:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726620296.7221] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:45:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 08:46:00 localhost-live.hitronhub.home dnf[29884]: Copr repo for PyCharm owned by phracek 2.7 kB/s | 1.8 kB 00:00 +Sep 18 08:46:01 localhost-live.hitronhub.home dnf[29884]: Fedora 40 - x86_64 11 kB/s | 10 kB 00:00 +Sep 18 08:46:02 localhost-live.hitronhub.home dnf[29884]: Fedora 40 openh264 (From Cisco) - x86_64 1.7 kB/s | 989 B 00:00 +Sep 18 08:46:02 localhost-live.hitronhub.home dnf[29884]: Fedora 40 - x86_64 - Updates 11 kB/s | 7.4 kB 00:00 +Sep 18 08:46:03 localhost-live.hitronhub.home dnf[29884]: google-chrome 17 kB/s | 1.3 kB 00:00 +Sep 18 08:46:04 localhost-live.hitronhub.home dnf[29884]: RPM Fusion for Fedora 40 - Nonfree - NVIDIA Dri 15 kB/s | 16 kB 00:01 +Sep 18 08:46:05 localhost-live.hitronhub.home dnf[29884]: RPM Fusion for Fedora 40 - Nonfree - Steam 17 kB/s | 14 kB 00:00 +Sep 18 08:46:05 localhost-live.hitronhub.home dnf[29884]: Metadata cache created. +Sep 18 08:46:05 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 08:46:05 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 08:46:05 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 08:46:05 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 08:49:54 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 08:51:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726620711.6591] device (wlp2s0): set-hw-addr: set MAC address to 62:C0:1D:BF:63:77 (scanning) +Sep 18 08:51:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726620711.6905] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:51:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726620711.6906] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:51:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726620711.7013] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:51:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726620711.7013] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 08:57:04 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (35874818) is greater than comparison timestamp (35874777). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 08:57:04 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 35874818. Working around... +Sep 18 08:58:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726621126.6646] device (wlp2s0): set-hw-addr: set MAC address to 42:9B:1D:64:04:39 (scanning) +Sep 18 08:58:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726621126.6956] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 08:58:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726621126.6956] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 08:58:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726621126.7073] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 08:58:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726621126.7074] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:05:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726621541.6709] device (wlp2s0): set-hw-addr: set MAC address to 3E:91:FF:73:2D:21 (scanning) +Sep 18 09:05:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726621541.7028] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:05:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726621541.7028] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:05:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726621541.7033] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:05:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726621541.7034] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:12:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726621956.6805] device (wlp2s0): set-hw-addr: set MAC address to 52:D2:5A:35:06:BE (scanning) +Sep 18 09:12:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726621956.7120] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:12:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726621956.7120] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:12:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726621956.7214] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:12:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726621956.7214] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:19:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726622371.6637] device (wlp2s0): set-hw-addr: set MAC address to CA:63:78:F8:1D:D1 (scanning) +Sep 18 09:19:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726622371.6949] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:19:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726622371.6950] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:19:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726622371.7045] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:19:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726622371.7045] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:26:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726622786.6704] device (wlp2s0): set-hw-addr: set MAC address to 2E:5D:C3:EF:B7:8F (scanning) +Sep 18 09:26:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726622786.7023] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:26:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726622786.7023] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:26:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726622786.7201] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:26:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726622786.7202] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:33:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726623201.6624] device (wlp2s0): set-hw-addr: set MAC address to 06:DA:7B:87:BD:9C (scanning) +Sep 18 09:33:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726623201.6943] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:33:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726623201.6944] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:33:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726623201.6949] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:33:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726623201.6950] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:40:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726623616.6603] device (wlp2s0): set-hw-addr: set MAC address to FA:2A:17:D2:B0:74 (scanning) +Sep 18 09:40:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726623616.6914] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:40:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726623616.6914] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:40:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726623616.7020] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:40:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726623616.7020] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:41:19 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 09:47:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726624031.6611] device (wlp2s0): set-hw-addr: set MAC address to F6:90:C7:99:D2:BF (scanning) +Sep 18 09:47:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726624031.6879] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:47:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726624031.6880] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:47:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726624031.6974] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:47:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726624031.6975] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 09:48:14 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 09:54:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726624446.6660] device (wlp2s0): set-hw-addr: set MAC address to 02:74:69:A5:DA:7F (scanning) +Sep 18 09:54:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726624446.6970] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 09:54:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726624446.6970] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 09:54:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726624446.7063] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 09:54:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726624446.7064] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:01:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726624861.6633] device (wlp2s0): set-hw-addr: set MAC address to DE:DC:76:6B:F3:7B (scanning) +Sep 18 10:01:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726624861.6951] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:01:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726624861.6952] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:01:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726624861.7059] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:01:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726624861.7060] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:01:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 10:01:59 localhost-live.hitronhub.home dnf[32344]: Metadata cache refreshed recently. +Sep 18 10:01:59 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 10:01:59 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 10:01:59 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 10:01:59 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 10:07:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726625276.6530] device (wlp2s0): set-hw-addr: set MAC address to AE:31:37:4D:8F:C3 (scanning) +Sep 18 10:07:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726625276.6746] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:07:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726625276.6746] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:07:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726625276.6943] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:07:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726625276.6944] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:13:00 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-32704.scope. +Sep 18 10:14:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726625691.6834] device (wlp2s0): set-hw-addr: set MAC address to 2A:3C:02:0C:AB:5D (scanning) +Sep 18 10:14:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726625691.7092] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:14:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726625691.7092] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:14:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726625691.7196] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:14:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726625691.7196] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:21:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726626106.6586] device (wlp2s0): set-hw-addr: set MAC address to 32:34:9F:85:E2:C3 (scanning) +Sep 18 10:21:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726626106.6900] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:21:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726626106.6900] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:21:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726626106.7083] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:21:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726626106.7084] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:21:55 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (40965851) is greater than comparison timestamp (40965782). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 10:21:55 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 40965851. Working around... +Sep 18 10:21:55 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (40966041) is greater than comparison timestamp (40965997). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 10:21:55 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 40966041. Working around... +Sep 18 10:28:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726626521.6726] device (wlp2s0): set-hw-addr: set MAC address to 02:D6:56:86:80:10 (scanning) +Sep 18 10:28:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726626521.7038] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:28:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726626521.7039] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:28:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726626521.7046] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:28:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726626521.7046] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:35:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726626936.6617] device (wlp2s0): set-hw-addr: set MAC address to 32:51:C8:AD:44:AD (scanning) +Sep 18 10:35:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726626936.6933] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:35:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726626936.6933] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:35:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726626936.7032] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:35:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726626936.7033] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:39:39 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 10:42:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726627351.6665] device (wlp2s0): set-hw-addr: set MAC address to 82:3A:28:39:05:79 (scanning) +Sep 18 10:42:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726627351.6982] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:42:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726627351.6983] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:42:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726627351.7074] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:42:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726627351.7074] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:46:34 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 10:49:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726627766.6905] device (wlp2s0): set-hw-addr: set MAC address to E6:6A:A1:98:FC:47 (scanning) +Sep 18 10:49:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726627766.7223] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:49:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726627766.7223] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:49:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726627766.7232] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:49:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726627766.7232] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 10:56:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726628181.6871] device (wlp2s0): set-hw-addr: set MAC address to 4E:A1:14:A4:03:FC (scanning) +Sep 18 10:56:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726628181.7190] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 10:56:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726628181.7190] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 10:56:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726628181.7377] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 10:56:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726628181.7377] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:03:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726628596.6736] device (wlp2s0): set-hw-addr: set MAC address to 4A:EC:A2:DD:ED:15 (scanning) +Sep 18 11:03:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726628596.7053] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:03:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726628596.7054] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:03:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726628596.7132] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:03:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726628596.7133] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:10:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726629011.6702] device (wlp2s0): set-hw-addr: set MAC address to BA:86:86:4F:1E:5E (scanning) +Sep 18 11:10:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726629011.7021] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:10:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726629011.7022] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:10:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726629011.7029] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:10:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726629011.7030] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:17:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726629426.6593] device (wlp2s0): set-hw-addr: set MAC address to 0E:E1:52:A2:98:4C (scanning) +Sep 18 11:17:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726629426.6912] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:17:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726629426.6912] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:17:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726629426.6922] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:17:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726629426.6923] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:24:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726629841.6576] device (wlp2s0): set-hw-addr: set MAC address to C6:59:56:72:EE:39 (scanning) +Sep 18 11:24:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726629841.6894] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:24:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726629841.6895] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:24:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726629841.6999] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:24:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726629841.6999] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:30:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726630256.6628] device (wlp2s0): set-hw-addr: set MAC address to 3E:49:64:D7:AC:2E (scanning) +Sep 18 11:30:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726630256.6937] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:30:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726630256.6938] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:30:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726630256.6947] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:30:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726630256.6947] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:31:00 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: last_user_time (45111089) is greater than comparison timestamp (45111085). This most likely represents a buggy client sending inaccurate timestamps in messages such as _NET_ACTIVE_WINDOW. Trying to work around... +Sep 18 11:31:00 localhost-live.hitronhub.home gnome-shell[8132]: Window manager warning: 0xa0014b appears to be one of the offending windows with a timestamp of 45111089. Working around... +Sep 18 11:34:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 11:34:59 localhost-live.hitronhub.home dnf[35447]: Metadata cache refreshed recently. +Sep 18 11:34:59 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 11:34:59 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 11:34:59 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 11:34:59 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 11:37:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726630671.6591] device (wlp2s0): set-hw-addr: set MAC address to 5A:4B:07:BC:35:40 (scanning) +Sep 18 11:37:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726630671.6907] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:37:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726630671.6908] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:37:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726630671.6916] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:37:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726630671.6917] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:37:59 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 11:44:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726631086.6921] device (wlp2s0): set-hw-addr: set MAC address to 26:A1:D1:3F:D0:06 (scanning) +Sep 18 11:44:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726631086.7236] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:44:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726631086.7236] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:44:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726631086.7344] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:44:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726631086.7344] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:44:54 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 11:51:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726631501.6711] device (wlp2s0): set-hw-addr: set MAC address to 32:B2:2B:DB:D4:D2 (scanning) +Sep 18 11:51:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726631501.6978] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:51:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726631501.6978] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:51:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726631501.7094] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:51:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726631501.7094] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 11:58:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726631916.6673] device (wlp2s0): set-hw-addr: set MAC address to 7A:18:8F:D5:3D:00 (scanning) +Sep 18 11:58:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726631916.6986] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 11:58:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726631916.6987] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 11:58:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726631916.7154] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 11:58:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726631916.7154] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:05:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726632331.6623] device (wlp2s0): set-hw-addr: set MAC address to 06:20:E8:DD:51:C2 (scanning) +Sep 18 12:05:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726632331.6941] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:05:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726632331.6941] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:05:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726632331.6950] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:05:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726632331.6950] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:12:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726632746.6873] device (wlp2s0): set-hw-addr: set MAC address to DE:07:1B:27:5C:BF (scanning) +Sep 18 12:12:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726632746.7194] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:12:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726632746.7195] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:12:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726632746.7302] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:12:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726632746.7303] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:13:00 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-36675.scope. +Sep 18 12:19:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726633161.6863] device (wlp2s0): set-hw-addr: set MAC address to F6:22:65:CF:D1:F6 (scanning) +Sep 18 12:19:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726633161.7180] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:19:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726633161.7180] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:19:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726633161.7222] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:19:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726633161.7222] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:26:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726633576.6708] device (wlp2s0): set-hw-addr: set MAC address to 1A:0B:50:F9:CB:FD (scanning) +Sep 18 12:26:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726633576.7027] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:26:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726633576.7027] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:26:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726633576.7139] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:26:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726633576.7141] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:33:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726633991.6594] device (wlp2s0): set-hw-addr: set MAC address to 62:97:0A:4C:DF:AA (scanning) +Sep 18 12:33:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726633991.6914] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:33:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726633991.6914] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:33:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726633991.6921] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:33:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726633991.6921] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:36:19 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 12:40:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726634406.6510] device (wlp2s0): set-hw-addr: set MAC address to CE:09:35:B8:A6:F2 (scanning) +Sep 18 12:40:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726634406.6884] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 12:40:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726634406.6884] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 12:40:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726634406.6938] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 12:40:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726634406.6938] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 12:43:14 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 12:47:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726634821.6558] device (wlp2s0): set-hw-addr: set MAC address to D6:20:4A:19:F5:63 (scanning) +Sep 18 12:47:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726634821.6776] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:47:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726634821.6776] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:47:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726634821.7003] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:47:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726634821.7003] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 12:53:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726635236.6552] device (wlp2s0): set-hw-addr: set MAC address to 36:32:6F:94:96:AA (scanning) +Sep 18 12:53:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726635236.6866] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 12:53:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726635236.6866] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 12:53:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726635236.6972] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 12:53:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726635236.6973] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:00:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726635651.6682] device (wlp2s0): set-hw-addr: set MAC address to DE:D7:E7:C6:19:BF (scanning) +Sep 18 13:00:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726635651.6950] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:00:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726635651.6951] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:00:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726635651.7049] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:00:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726635651.7050] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:07:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726636066.6606] device (wlp2s0): set-hw-addr: set MAC address to 56:3E:9F:01:93:AD (scanning) +Sep 18 13:07:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726636066.6876] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:07:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726636066.6876] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:07:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726636066.6984] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:07:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726636066.6984] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:14:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726636481.6617] device (wlp2s0): set-hw-addr: set MAC address to 36:17:3F:23:76:45 (scanning) +Sep 18 13:14:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726636481.6929] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:14:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726636481.6929] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:14:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726636481.7024] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:14:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726636481.7025] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:17:05 localhost-live.hitronhub.home audit: BPF prog-id=109 op=LOAD +Sep 18 13:17:05 localhost-live.hitronhub.home audit: BPF prog-id=110 op=LOAD +Sep 18 13:17:05 localhost-live.hitronhub.home audit: BPF prog-id=111 op=LOAD +Sep 18 13:17:05 localhost-live.hitronhub.home systemd[1]: Starting systemd-hostnamed.service - Hostname Service... +Sep 18 13:17:05 localhost-live.hitronhub.home systemd[1]: Started systemd-hostnamed.service - Hostname Service. +Sep 18 13:17:05 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 13:17:35 localhost-live.hitronhub.home systemd[1]: systemd-hostnamed.service: Deactivated successfully. +Sep 18 13:17:35 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 13:17:35 localhost-live.hitronhub.home audit: BPF prog-id=111 op=UNLOAD +Sep 18 13:17:35 localhost-live.hitronhub.home audit: BPF prog-id=110 op=UNLOAD +Sep 18 13:17:35 localhost-live.hitronhub.home audit: BPF prog-id=109 op=UNLOAD +Sep 18 13:21:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726636896.6616] device (wlp2s0): set-hw-addr: set MAC address to 32:69:F0:8A:C2:AD (scanning) +Sep 18 13:21:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726636896.6941] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:21:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726636896.6942] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:21:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726636896.7003] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:21:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726636896.7004] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:25:59 localhost-live.hitronhub.home systemd[1]: Starting dnf-makecache.service - dnf makecache... +Sep 18 13:26:00 localhost-live.hitronhub.home dnf[39157]: Copr repo for PyCharm owned by phracek 2.3 kB/s | 1.8 kB 00:00 +Sep 18 13:26:01 localhost-live.hitronhub.home dnf[39157]: Fedora 40 - x86_64 12 kB/s | 10 kB 00:00 +Sep 18 13:26:02 localhost-live.hitronhub.home dnf[39157]: Fedora 40 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00 +Sep 18 13:26:02 localhost-live.hitronhub.home dnf[39157]: Fedora 40 - x86_64 - Updates 15 kB/s | 7.7 kB 00:00 +Sep 18 13:26:03 localhost-live.hitronhub.home dnf[39157]: google-chrome 16 kB/s | 1.3 kB 00:00 +Sep 18 13:26:04 localhost-live.hitronhub.home dnf[39157]: RPM Fusion for Fedora 40 - Nonfree - NVIDIA Dri 15 kB/s | 16 kB 00:01 +Sep 18 13:26:05 localhost-live.hitronhub.home dnf[39157]: RPM Fusion for Fedora 40 - Nonfree - Steam 15 kB/s | 14 kB 00:00 +Sep 18 13:26:05 localhost-live.hitronhub.home dnf[39157]: Metadata cache created. +Sep 18 13:26:05 localhost-live.hitronhub.home systemd[1]: dnf-makecache.service: Deactivated successfully. +Sep 18 13:26:05 localhost-live.hitronhub.home systemd[1]: Finished dnf-makecache.service - dnf makecache. +Sep 18 13:26:05 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 13:26:05 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=dnf-makecache comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 13:28:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726637311.6607] device (wlp2s0): set-hw-addr: set MAC address to 26:33:EA:6C:CD:8B (scanning) +Sep 18 13:28:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726637311.6920] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:28:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726637311.6920] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:28:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726637311.7101] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:28:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726637311.7102] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:34:39 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 13:35:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726637726.6595] device (wlp2s0): set-hw-addr: set MAC address to B2:5D:96:6E:92:F9 (scanning) +Sep 18 13:35:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726637726.6914] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:35:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726637726.6914] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:35:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726637726.7022] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:35:26 localhost-live.hitronhub.home NetworkManager[1169]: [1726637726.7023] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:40:41 localhost-live.hitronhub.home gnome-shell[8132]: meta_wayland_buffer_process_damage: assertion 'buffer->resource' failed +Sep 18 13:40:41 localhost-live.hitronhub.home gnome-shell[8132]: (../src/wayland/meta-wayland-buffer.c:710):meta_wayland_buffer_inc_use_count: runtime check failed: (buffer->resource) +Sep 18 13:41:34 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 13:42:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726638141.6827] device (wlp2s0): set-hw-addr: set MAC address to CE:3C:8C:51:EE:5B (scanning) +Sep 18 13:42:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726638141.7143] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:42:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726638141.7144] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:42:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726638141.7330] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:42:21 localhost-live.hitronhub.home NetworkManager[1169]: [1726638141.7330] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:49:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726638556.6574] device (wlp2s0): set-hw-addr: set MAC address to 76:9E:BB:93:52:CC (scanning) +Sep 18 13:49:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726638556.6899] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:49:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726638556.6899] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:49:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726638556.6957] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:49:16 localhost-live.hitronhub.home NetworkManager[1169]: [1726638556.6958] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 13:56:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726638971.6792] device (wlp2s0): set-hw-addr: set MAC address to 4A:72:3A:D8:4C:69 (scanning) +Sep 18 13:56:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726638971.7114] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 13:56:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726638971.7115] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 13:56:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726638971.7344] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 13:56:11 localhost-live.hitronhub.home NetworkManager[1169]: [1726638971.7344] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 14:03:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726639386.6626] device (wlp2s0): set-hw-addr: set MAC address to E2:55:18:FB:0D:78 (scanning) +Sep 18 14:03:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726639386.6935] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:03:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726639386.6936] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:03:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726639386.7128] device (wlp2s0): supplicant interface state: interface_disabled -> disconnected +Sep 18 14:03:06 localhost-live.hitronhub.home NetworkManager[1169]: [1726639386.7129] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> disconnected +Sep 18 14:03:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726639392.7203] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 14:03:12 localhost-live.hitronhub.home NetworkManager[1169]: [1726639392.7204] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 14:10:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726639801.6977] device (wlp2s0): set-hw-addr: set MAC address to 56:C2:4B:71:DA:77 (scanning) +Sep 18 14:10:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726639801.7283] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:10:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726639801.7283] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:10:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726639801.7388] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 14:10:01 localhost-live.hitronhub.home NetworkManager[1169]: [1726639801.7388] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 14:13:00 localhost-live.hitronhub.home systemd[7851]: Started app-flatpak-com.microsoft.Edge-41130.scope. +Sep 18 14:16:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726640216.6612] device (wlp2s0): set-hw-addr: set MAC address to C6:CC:08:02:30:98 (scanning) +Sep 18 14:16:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726640216.6921] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:16:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726640216.6921] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:16:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726640216.7119] device (wlp2s0): supplicant interface state: interface_disabled -> disconnected +Sep 18 14:16:56 localhost-live.hitronhub.home NetworkManager[1169]: [1726640216.7120] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> disconnected +Sep 18 14:17:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726640222.7182] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 14:17:02 localhost-live.hitronhub.home NetworkManager[1169]: [1726640222.7183] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 14:23:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726640631.6655] device (wlp2s0): set-hw-addr: set MAC address to 6A:72:E7:9D:BE:01 (scanning) +Sep 18 14:23:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726640631.6967] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:23:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726640631.6967] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:23:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726640631.7044] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 14:23:51 localhost-live.hitronhub.home NetworkManager[1169]: [1726640631.7044] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 14:30:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726641046.6661] device (wlp2s0): set-hw-addr: set MAC address to E2:19:C1:15:FD:73 (scanning) +Sep 18 14:30:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726641046.7110] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 14:30:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726641046.7111] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 14:30:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726641046.7166] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 14:30:46 localhost-live.hitronhub.home NetworkManager[1169]: [1726641046.7167] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 14:32:59 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 194 Renew-Subscription client-error-not-found +Sep 18 14:37:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726641461.6582] device (wlp2s0): set-hw-addr: set MAC address to 5E:E7:07:3E:C8:06 (scanning) +Sep 18 14:37:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726641461.7037] device (wlp2s0): supplicant interface state: inactive -> disconnected +Sep 18 14:37:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726641461.7038] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> disconnected +Sep 18 14:37:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726641461.7087] device (wlp2s0): supplicant interface state: disconnected -> inactive +Sep 18 14:37:41 localhost-live.hitronhub.home NetworkManager[1169]: [1726641461.7087] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> inactive +Sep 18 14:39:54 localhost-live.hitronhub.home cupsd[1251]: REQUEST localhost - - "POST / HTTP/1.1" 200 185 Renew-Subscription client-error-not-found +Sep 18 14:44:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726641876.6921] device (wlp2s0): set-hw-addr: set MAC address to 8A:23:E9:F9:C2:DC (scanning) +Sep 18 14:44:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726641876.7235] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:44:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726641876.7235] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:44:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726641876.7348] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 14:44:36 localhost-live.hitronhub.home NetworkManager[1169]: [1726641876.7349] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive +Sep 18 14:46:42 localhost-live.hitronhub.home kernel: show_signal_msg: 38 callbacks suppressed +Sep 18 14:46:42 localhost-live.hitronhub.home kernel: echo_frames[43030]: segfault at 0 ip 00007f94d8ae810d sp 00007ffcf8ae1428 error 4 in libc.so.6[16d10d,7f94d89a3000+16d000] likely on CPU 14 (core 7, socket 0) +Sep 18 14:46:42 localhost-live.hitronhub.home kernel: Code: 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 66 90 f3 0f 1e fa 48 89 f8 48 83 fa 20 72 23 fe 6f 06 48 83 fa 40 0f 87 a5 00 00 00 c5 fe 6f 4c 16 e0 c5 fe +Sep 18 14:46:42 localhost-live.hitronhub.home audit[43030]: ANOM_ABEND auid=2000 uid=0 gid=0 ses=6 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 pid=43030 comm="echo_frames" exe="/var/user_data/Thomas-developer/noflash/developer/cc/echo_frames" sig=11 res=1 +Sep 18 14:46:42 localhost-live.hitronhub.home systemd[1]: Created slice system-systemd\x2dcoredump.slice - Slice /system/systemd-coredump. +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=112 op=LOAD +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=113 op=LOAD +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=114 op=LOAD +Sep 18 14:46:42 localhost-live.hitronhub.home systemd[1]: Started systemd-coredump@0-43031-0.service - Process Core Dump (PID 43031/UID 0). +Sep 18 14:46:42 localhost-live.hitronhub.home audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-coredump@0-43031-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 14:46:42 localhost-live.hitronhub.home systemd-coredump[43032]: Resource limits disable core dumping for process 43030 (echo_frames). +Sep 18 14:46:42 localhost-live.hitronhub.home systemd-coredump[43032]: Process 43030 (echo_frames) of user 0 terminated abnormally without generating a coredump. +Sep 18 14:46:42 localhost-live.hitronhub.home systemd[1]: systemd-coredump@0-43031-0.service: Deactivated successfully. +Sep 18 14:46:42 localhost-live.hitronhub.home audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-coredump@0-43031-0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=114 op=UNLOAD +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=113 op=UNLOAD +Sep 18 14:46:42 localhost-live.hitronhub.home audit: BPF prog-id=112 op=UNLOAD +Sep 18 14:46:42 localhost-live.hitronhub.home abrt-dump-journal-core[1165]: Failed to obtain all required information from journald +Sep 18 14:46:42 localhost-live.hitronhub.home abrt-dump-journal-core[1165]: Failed to save detect problem data in abrt database +Sep 18 14:47:18 localhost-live.hitronhub.home gnome-shell[8132]: libinput error: event5 - ASUE1A01:00 04F3:31D4 Touchpad: kernel bug: Touch jump detected and discarded. +Sep 18 14:47:18 localhost-live.hitronhub.home gnome-shell[8132]: See https://wayland.freedesktop.org/libinput/doc/1.26.2/touchpad-jumping-cursors.html for details +Sep 18 14:51:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726642291.6591] device (wlp2s0): set-hw-addr: set MAC address to 42:B5:33:2E:4D:27 (scanning) +Sep 18 14:51:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726642291.6912] device (wlp2s0): supplicant interface state: inactive -> interface_disabled +Sep 18 14:51:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726642291.6912] device (p2p-dev-wlp2s0): supplicant management interface state: inactive -> interface_disabled +Sep 18 14:51:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726642291.7019] device (wlp2s0): supplicant interface state: interface_disabled -> inactive +Sep 18 14:51:31 localhost-live.hitronhub.home NetworkManager[1169]: [1726642291.7020] device (p2p-dev-wlp2s0): supplicant management interface state: interface_disabled -> inactive diff --git a/developer/cc/test.c b/developer/cc/test.c new file mode 100644 index 0000000..eaf744e --- /dev/null +++ b/developer/cc/test.c @@ -0,0 +1,95 @@ +gcc -I/usr/include/libdrm test.c -o test -ldrm + +#include +#include +#include +#include +#include +#include +#include +#include + +typedef struct { + uint32_t width; + uint32_t height; + uint32_t *data; +} FrameRGBA; + +FrameRGBA *FrameRGBA·alloc_capture_drm(int fd ,int width ,int height ,int buffer_id) { + FrameRGBA *frame = malloc(sizeof(FrameRGBA)); + if( !frame ){ + perror("Failed to allocate FrameRGBA"); + return NULL; + } + + frame->width = width; + frame->height = height; + + // Create a dumb buffer + struct drm_mode_create_dumb create_dumb = {0}; + create_dumb.width = width; + create_dumb.height = height; + create_dumb.bpp = 32; // 32 bits per pixel (RGBA) + if( drmIoctl(fd ,DRM_IOCTL_MODE_CREATE_DUMB ,&create_dumb) ){ + perror("drmIoctl(DRM_IOCTL_MODE_CREATE_DUMB) failed"); + free(frame); + return NULL; + } + + // Add framebuffer + uint32_t handles[4] = { create_dumb.handle }; + uint32_t pitches[4] = { create_dumb.pitch }; + uint32_t offsets[4] = { 0 }; + if( drmModeAddFB2(fd ,width ,height ,DRM_FORMAT_XRGB8888 ,handles ,pitches ,offsets ,&buffer_id ,0) ){ + perror("drmModeAddFB2 failed"); + drmIoctl(fd ,DRM_IOCTL_MODE_DESTROY_DUMB ,&create_dumb.handle); + free(frame); + return NULL; + } + + // Map the dumb buffer + struct drm_mode_map_dumb map_dumb = {0}; + map_dumb.handle = create_dumb.handle; + if( drmIoctl(fd ,DRM_IOCTL_MODE_MAP_DUMB ,&map_dumb) ){ + perror("drmIoctl(DRM_IOCTL_MODE_MAP_DUMB) failed"); + drmModeRmFB(fd ,buffer_id); + drmIoctl(fd ,DRM_IOCTL_MODE_DESTROY_DUMB ,&create_dumb.handle); + free(frame); + return NULL; + } + + frame->data = mmap(NULL ,create_dumb.size ,PROT_READ | PROT_WRITE ,MAP_SHARED ,fd ,map_dumb.offset); + if( frame->data == MAP_FAILED ){ + perror("FrameRGBA·alloc_capture_drm:: mmap failed"); + drmModeRmFB(fd ,buffer_id); + drmIoctl(fd ,DRM_IOCTL_MODE_DESTROY_DUMB ,&create_dumb.handle); + free(frame); + return NULL; + } + + return frame; +} + +int main() { + int fd = open("/dev/dri/card0", O_RDWR | O_CLOEXEC); + if (fd < 0) { + perror("Cannot open DRM device"); + return -1; + } + + FrameRGBA *frame = FrameRGBA·alloc_capture_drm(fd, 3840, 2400, 0); + if (!frame) { + printf("Failed to allocate DRM frame\n"); + close(fd); + return -1; + } + + // Use the frame data... + + // Clean up + munmap(frame->data, frame->width * frame->height * 4); + free(frame); + close(fd); + + return 0; +} diff --git a/developer/cc/weston.c b/developer/cc/weston.c new file mode 100644 index 0000000..ebb7e99 --- /dev/null +++ b/developer/cc/weston.c @@ -0,0 +1,46 @@ +#include +#include +#include + +// Function to manipulate pixels +void manipulate_pixels(struct weston_compositor *compositor) { + struct weston_output *output; + wl_list_for_each(output, &compositor->output_list, link) { + struct gbm_bo *bo = output->gbm_bo; + void *map_data; + uint32_t *pixels = gbm_bo_map(bo, 0, 0, output->width, output->height, GBM_BO_TRANSFER_READ_WRITE, &map_data); + + // Manipulate individual pixels + for (int y = 0; y < output->height; y++) { + for (int x = 0; x < output->width; x++) { + uint32_t *pixel = pixels + y * output->width + x; + // Apply some filter or effect + *pixel = (*pixel & 0xFF00FF00) | ((*pixel & 0x00FF0000) >> 16) | ((*pixel & 0x000000FF) << 16); + } + } + + gbm_bo_unmap(bo, map_data); + } +} + +// Main function +int main(int argc, char *argv[]) { + struct weston_compositor *compositor = weston_compositor_create(); + if (!compositor) { + fprintf(stderr, "Failed to create Weston compositor\n"); + return 1; + } + + // Initialize the compositor (this is a simplified example) + if (weston_compositor_init(compositor) < 0) { + fprintf(stderr, "Failed to initialize Weston compositor\n"); + return 1; + } + + // Manipulate pixels in the display buffer + manipulate_pixels(compositor); + + // Clean up and exit + weston_compositor_destroy(compositor); + return 0; +}