system corrupted without apparent reason  [Solved]

Help for Current Versions of MX
When asking for help, use Quick System Info from MX Tools. It will be properly formatted using the following steps.
1. Click on Quick System Info in MX Tools
2. Right click in your post and paste.
Message
Author
User avatar
CharlesV
Administrator
Posts: 8031
Joined: Sun Jul 07, 2019 5:11 pm

Re: system corrupted without apparent reason

#21 Post by CharlesV »

Good job and glad you got it!
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

User avatar
j2mcgreg
Global Moderator
Posts: 7190
Joined: Tue Oct 23, 2007 12:04 pm

Re: system corrupted without apparent reason

#22 Post by j2mcgreg »

Please mark the topic as 'solved' by clicking on the check mark beside the post that gave the solution.
HP 15; ryzen 3 5300U APU; 500 Gb SSD; 8GB ram
HP 17; ryzen 3 3200; 500 GB SSD; 12 GB ram
Idea Center 3; 12 gen i5; 256 GB ssd;

In Linux, newer isn't always better. The best solution is the one that works.

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason  [Solved]

#23 Post by harrykar »

Finally Home Sweet Home ;) :))
What I did:
  • First thing first an integral copy(as near in the original as possible) of my home in a USB stick' The -a option did the trick
    (same as -dR --preserve=all) ->
    (-d: same as --no-dereference --preserve=links,
    -R, -r, --recursive: copy directories recursively,
    --preserve=all:
    --preserve[=ATTR_LIST] preserve the specified attributes,
    -p same as --preserve=mode,ownership,timestamps,
    --no-dereference --preserve=link
    )

    Code: Select all

    sudo cp -a /home /media/harrykar
    • But before copy let's prepare the storage device. My brother borrow me a 0.5TB stick identified in linux as sda with a partition sda1 of type c W95 FAT32(LBA).
      A first try to cp my home notifies me that stick's file system(i.e. FS fat32) was not capable to treat soft links so had to transform the sda1's FS's type to linux(i.e. from c to 83) trough t(i.e. type) fdisk's internal option. That's the so called "low level format":

      Code: Select all

      fdisk /dev/sda
    • Create an ext4 FS(ext4 unlike MS Windows's FAT is obviously aware of soft links) in sda1 partition trough mkfs (t is for type of FS). That's the so called "high level format" or simply "format":

      Code: Select all

      sudo mkfs -t ext4 /dev/sda1
  • Copy in home the entire skeleton structure did the trick

    Code: Select all

    cp  -rb  /etc/skel/.??*  ~/
    
I would thank all you guys that contributed to solve that issue. Hoping that can help the next misadventure comrade to feel a bit better.

PS:
1) For more info about the meaning(there's a caveat regard globbing :P) of the aforementioned cmd see in the tips & tricks section here
2) Pic is pixelated because was heavy(~800KB) and was obliged to use gimp to lighten it up. Anyway that's the pixelated screen I got when used nomodeset in boot options as a workaround on system freeze issue on machine's restart . For more look in that thread
You do not have the required permissions to view the files attached to this post.
Last edited by harrykar on Tue Jan 30, 2024 5:13 pm, edited 3 times in total.
*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason

#24 Post by harrykar »

CharlesV wrote: Tue Jan 30, 2024 10:15 am Good job and glad you got it!
@CharlesV
Thanks mate indeed the mess was heavy(Actually I haven't more machines other than that notebook) so that initially I was ready to a system complete reinstall.
Now with calm I'm wondered what was that caused all that brothel, the first suspect(in order of timing coincidence and nothing more) is ActivityWatch as they also advertise(as would be in general for every application) that AW can't broken an entire system.
Now on I refer here everything related on that inconvenience
Last edited by harrykar on Tue Jan 30, 2024 4:34 pm, edited 1 time in total.
*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason

#25 Post by harrykar »

j2mcgreg wrote: Tue Jan 30, 2024 11:30 am Please mark the topic as 'solved' by clicking on the check mark beside the post that gave the solution.
Just did it thanks for have reminded me
*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
CharlesV
Administrator
Posts: 8031
Joined: Sun Jul 07, 2019 5:11 pm

Re: system corrupted without apparent reason

#26 Post by CharlesV »

harrykar wrote: Tue Jan 30, 2024 12:41 pm
CharlesV wrote: Tue Jan 30, 2024 10:15 am Good job and glad you got it!
@CharlesV
Thanks mate indeed the mess was heavy(Actually I haven't more machines other than that notebook) so that initially I was ready to a system complete reinstall.
Now with calm I'm wondered what was that caused all that brothel, the first suspect(in order of coincidence and nothing more) is ActivityWatch as they also advertise(as would be in general for every application) that AW can't broken an entire system.
Now on I refer here everything related on that inconvenience
Not convinced it was ActivityWatch as I have seen this same result a couple of times now, but it is indeed interesting and as I said I am not too hot on believing a coincidence :-)
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason

#27 Post by harrykar »

dolphin_oracle wrote: Mon Jan 29, 2024 11:15 am possbily removing any saved sessions as well. sometimes it can stupidly remember that things like the desktop or the panel are not running, and so they won't be later on session restore.
After have restored the system I would try to analyze(at a lazy pace) the inconvenience.
So here's the session 2 available logs(x-session.errors) of today IIRC system's restore with few errors, early morning when booted up the system I saw one log(x-session.errors) full of errors unfortunatelly not copy/pasted
@dolphin_oracle If you can devise something interesting let me know
TIA

Code: Select all

 
Xsession: X session started for harrykar at Tue Jan 30 11:28:36 AM EET 2024
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting XAUTHORITY=/home/harrykar/.Xauthority
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=XFCE
localuser:harrykar being added to access control list
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting GTK_MODULES=canberra-gtk-module:gail:atk-bridge
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting QT_SCALE_FACTOR=1
dbus-update-activation-environment: setting USER=harrykar
dbus-update-activation-environment: setting XDG_SESSION_TYPE=x11
dbus-update-activation-environment: setting QT_PLATFORMTHEME=gtk2
dbus-update-activation-environment: setting HOME=/home/harrykar
dbus-update-activation-environment: setting DESKTOP_SESSION=xfce
dbus-update-activation-environment: setting XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
dbus-update-activation-environment: setting GTK_MODULES=canberra-gtk-module:gail:atk-bridge
dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/tmp/dbus-6Q7y8viUKl,guid=f2d4e4d450863bf3c03921f165b8c145
dbus-update-activation-environment: setting QT_QPA_PLATFORMTHEME=gtk2
dbus-update-activation-environment: setting LOGNAME=harrykar
dbus-update-activation-environment: setting XDG_SESSION_CLASS=user
dbus-update-activation-environment: setting PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
dbus-update-activation-environment: setting GDM_LANG=en_US.utf8
dbus-update-activation-environment: setting XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
dbus-update-activation-environment: setting XDG_RUNTIME_DIR=/run/user/1000
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting LANG=en_US.UTF-8
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=XFCE
dbus-update-activation-environment: setting XDG_SESSION_DESKTOP=xfce
dbus-update-activation-environment: setting XAUTHORITY=/home/harrykar/.Xauthority
dbus-update-activation-environment: setting XDG_GREETER_DATA_DIR=/var/lib/lightdm/data/harrykar
dbus-update-activation-environment: setting SHELL=/bin/bash
dbus-update-activation-environment: setting GDMSESSION=xfce
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting QT_LOGGING_RULES=qt.qpa.xcb.warning=false
dbus-update-activation-environment: setting GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1
dbus-update-activation-environment: setting PWD=/home/harrykar
dbus-update-activation-environment: setting XDG_DATA_DIRS=/usr/share/xfce4:/home/harrykar/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share
dbus-update-activation-environment: setting QT_PLATFORM_PLUGIN=gtk2
VirtualBox Additions disabled, not in a Virtual Machine
/usr/bin/startxfce4: X server already running on display :0
/usr/bin/iceauth:  creating new authority file /run/user/1000/ICEauthority
xfce4-session-Message: 11:28:37.703: SSH authentication agent is already running
xfsettingsd: Another instance took over. Leaving...
xfsettingsd: No window manager registered on screen 0.

(xfsettingsd:2710): xfsettingsd-WARNING **: 11:28:42.878: Failed to get the _NET_NUMBER_OF_DESKTOPS property.
xfce4-panel: No window manager registered on screen 0. To start the panel without this check, run with --disable-wm-check.
No window manager registered on screen 0. To start the xfdesktop without this check, run with --disable-wm-check.

** (wrapper-2.0:9736): WARNING **: 11:28:43.276: No outputs have backlight property

(xfce4-session:2502): xfce4-session-WARNING **: 11:28:43.495: Unable to launch "/usr/lib/apt-notifier/modules/apt-notifier.py": Failed to execute child process “/usr/lib/apt-notifier/modules/apt-notifier.py” (Permission denied)
Xfce power manager is not running

(xfce4-power-manager:9786): xfce4-power-manager-WARNING **: 11:28:43.611: could not map keysym 1008ffa8 to keycode


** (xfce4-power-manager:9786): WARNING **: 11:28:43.618: No outputs have backlight property

(xfce4-power-manager:9786): xfce4-power-manager-WARNING **: 11:28:43.622: It seems the kernel brightness switch handling value was not restored properly on exit last time, xfce4-power-manager will try to restore it this time.
xfce4-power-manager-Message: 11:28:43.636: Set kernel brightness switch to 0

(xfce4-power-manager:9786): xfce4-power-manager-WARNING **: 11:28:43.640: Failed to get keyboard max brightness level : GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Object does not exist at path “/org/freedesktop/UPower/KbdBacklight”

(xfce4-power-manager:9786): xfconf-WARNING **: 11:28:43.640: Failed to set property "xfce4-power-manager::/xfce4-power-manager/brightness-switch": Operation was cancelled
xfce4-power-manager-Message: 11:28:43.654: Set kernel brightness switch to 0
** Message: 11:28:43.686: couldn't access control socket: /run/user/1000/keyring/control: No such file or directory
discover_other_daemon: 0No keyboard layout specified on the command line
Trailing -layout option ignored
only one keyboard

(xfce4-session:2502): xfce4-session-WARNING **: 11:28:43.752: Unable to launch "xfce4-screensaver" (specified by autostart/xfce4-screensaver.desktop): Failed to execute child process “xfce4-screensaver” (No such file or directory)
arguement is:  

init [5]
start pipewire

(xfce4-session:2502): Wnck-CRITICAL **: 11:28:43.823: wnck_workspace_activate: assertion 'WNCK_IS_WORKSPACE (space)' failed
[W][00040.351227] mod.jackdbus-detect | [module-jackdbus-:  216 on_is_started_received()] Failed to receive jackdbus reply: org.freedesktop.DBus.Error.ServiceUnknown: The name org.jackaudio.service was not provided by any .service files

** (xfce4-clipman:9842): WARNING **: 11:28:43.879: Unable to register GApplication: An object is already exported for the interface org.gtk.Application at /org/xfce/clipman

(xfce4-clipman:9842): GLib-GIO-CRITICAL **: 11:28:43.879: g_application_get_is_remote: assertion 'application->priv->is_registered' failed

(xfce4-clipman:9842): GLib-WARNING **: 11:28:43.879: g_set_application_name() called multiple times
Xfce Power Manager: Another power manager is already running
Another notification daemon is running, exiting
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.
ls: cannot access '/home/harrykar/.config/MX-Linux/MX-Tweak/brightness': No such file or directory
[0:00:42.500115460] [10620] [1;33m WARN [1;37mIPAManager [1;34mipa_manager.cpp:154 [0mNo IPA found in '/usr/lib/x86_64-linux-gnu/libcamera'
[0:00:42.500224524] [10620] [1;32m INFO [1;37mCamera [1;34mcamera_manager.cpp:299 [0mlibcamera v0.0.3
libva info: VA-API version 1.18.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_17
libva info: va_openDriver() returns 0
[0:00:42.882771884] [9978] [1;33m WARN [1;37mIPAManager [1;34mipa_manager.cpp:154 [0mNo IPA found in '/usr/lib/x86_64-linux-gnu/libcamera'
[0:00:42.882828821] [9978] [1;32m INFO [1;37mCamera [1;34mcamera_manager.cpp:299 [0mlibcamera v0.0.3
W 11:28:46.421677 m-portal-permissio ../modules/module-portal-permissionstore.c:63:wp_portal_permissionstore_plugin_lookup: <WpPortalPermissionStorePlugin:0x55791c73fa00> Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera
W 11:28:46.422437 m-portal-permissio ../modules/module-portal-permissionstore.c:63:wp_portal_permissionstore_plugin_lookup: <WpPortalPermissionStorePlugin:0x55791c73fa00> Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera
ATTENTION: default value of option mesa_glthread overridden by environment.
Cleanup-notifier: available space at '/boot' 577 MiB
conky: no process found
conky: desktop window (79c) is root window
conky: window type - normal
conky: drawing to created window (0x4c00002)
conky: drawing to double buffer

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.970: invalid unclassed pointer in cast to 'GtkMenu'

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkContainer'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_container_foreach: assertion 'GTK_IS_CONTAINER (container)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): libxfce4ui-CRITICAL **: 12:48:33.971: IA__xfce_gtk_menu_append_seperator: assertion 'GTK_IS_MENU_SHELL (menu)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkMenuShell'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_menu_shell_insert: assertion 'GTK_IS_MENU_SHELL (menu_shell)' failed

(xfce4-terminal:14159): GLib-GObject-WARNING **: 12:48:33.971: invalid unclassed pointer in cast to 'GtkWidget'

(xfce4-terminal:14159): Gtk-CRITICAL **: 12:48:33.971: gtk_widget_show_all: assertion 'GTK_IS_WIDGET (widget)' failed
xfce4-power-manager-Message: 12:48:34.006: Restored brightness switch value to: 1

(xfce4-session:2502): GLib-GObject-WARNING **: 12:48:34.516: invalid unclassed pointer in cast to 'XfsmManager'
X connection to :0.0 broken (explicit kill or server shutdown).
xscreensaver-systemd: 12:48:34: X connection closed
M 12:48:34.536063        wireplumber ../src/main.c:372:signal_handler: stopped by signal: Terminated
M 12:48:34.540508        wireplumber ../src/main.c:364:on_disconnected: disconnected from pipewire
conky: X Error: Display 55a0e226d750

[1:25:04.679356245] [9978] [1;33m WARN [1;37mIPAManager [1;34mipa_manager.cpp:154 [0mNo IPA found in '/usr/lib/x86_64-linux-gnu/libcamera'
[1:25:04.679426043] [9978] [1;32m INFO [1;37mCamera [1;34mcamera_manager.cpp:299 [0mlibcamera v0.0.3
 
 
Here's certainly after system's restored I guess

Code: Select all

Xsession: X session started for harrykar at Tue Jan 30 12:53:04 PM EET 2024
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting XAUTHORITY=/home/harrykar/.Xauthority
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=XFCE
localuser:harrykar being added to access control list
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting GTK_MODULES=canberra-gtk-module:gail:atk-bridge
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: systemd --user not found, ignoring --systemd argument
dbus-update-activation-environment: setting QT_SCALE_FACTOR=1
dbus-update-activation-environment: setting USER=harrykar
dbus-update-activation-environment: setting XDG_SESSION_TYPE=x11
dbus-update-activation-environment: setting QT_PLATFORMTHEME=gtk2
dbus-update-activation-environment: setting HOME=/home/harrykar
dbus-update-activation-environment: setting DESKTOP_SESSION=xfce
dbus-update-activation-environment: setting XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
dbus-update-activation-environment: setting GTK_MODULES=canberra-gtk-module:gail:atk-bridge
dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/tmp/dbus-USZONG6jGu,guid=1872fe0d7a1f129afc3851e065b8d510
dbus-update-activation-environment: setting QT_QPA_PLATFORMTHEME=gtk2
dbus-update-activation-environment: setting LOGNAME=harrykar
dbus-update-activation-environment: setting XDG_SESSION_CLASS=user
dbus-update-activation-environment: setting PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
dbus-update-activation-environment: setting GDM_LANG=en_US.utf8
dbus-update-activation-environment: setting XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session1
dbus-update-activation-environment: setting XDG_RUNTIME_DIR=/run/user/1000
dbus-update-activation-environment: setting DISPLAY=:0
dbus-update-activation-environment: setting LANG=en_US.UTF-8
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=XFCE
dbus-update-activation-environment: setting XDG_SESSION_DESKTOP=xfce
dbus-update-activation-environment: setting XAUTHORITY=/home/harrykar/.Xauthority
dbus-update-activation-environment: setting XDG_GREETER_DATA_DIR=/var/lib/lightdm/data/harrykar
dbus-update-activation-environment: setting SHELL=/bin/bash
dbus-update-activation-environment: setting GDMSESSION=xfce
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting QT_LOGGING_RULES=qt.qpa.xcb.warning=false
dbus-update-activation-environment: setting GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1
dbus-update-activation-environment: setting PWD=/home/harrykar
dbus-update-activation-environment: setting XDG_DATA_DIRS=/usr/share/xfce4:/home/harrykar/.local/share/flatpak/exports/share:/var/lib/flatpak/exports/share:/usr/local/share:/usr/share
dbus-update-activation-environment: setting QT_PLATFORM_PLUGIN=gtk2
VirtualBox Additions disabled, not in a Virtual Machine
/usr/bin/startxfce4: X server already running on display :0

(xfce4-session:28615): dbind-WARNING **: 12:53:05.014: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied
xfce4-session-Message: 12:53:05.021: SSH authentication agent is already running

(xfwm4:28773): dbind-WARNING **: 12:53:05.051: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(xfsettingsd:28793): dbind-WARNING **: 12:53:05.183: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(xfce4-panel:28797): dbind-WARNING **: 12:53:05.337: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(Thunar:28801): dbind-WARNING **: 12:53:05.387: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28807): dbind-WARNING **: 12:53:05.495: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(xfdesktop:28806): dbind-WARNING **: 12:53:05.496: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28809): dbind-WARNING **: 12:53:05.499: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28808): dbind-WARNING **: 12:53:05.510: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28810): dbind-WARNING **: 12:53:05.517: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28811): dbind-WARNING **: 12:53:05.519: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

** (wrapper-2.0:28811): WARNING **: 12:53:05.522: No outputs have backlight property

(wrapper-2.0:28816): dbind-WARNING **: 12:53:05.523: Couldn't connect to accessibility bus: Failed to connect to socket /run/user/108/at-spi/bus_0: Permission denied

(wrapper-2.0:28811): xfce4-power-manager-plugin-WARNING **: 12:53:05.553: Xfce4-power-manager: The panel plugin is present, so the tray icon gets disabled.
bluetooth found
discover_other_daemon: 1
(xfce4-session:28615): xfce4-session-WARNING **: 12:53:05.792: Unable to launch "xfce4-screensaver" (specified by autostart/xfce4-screensaver.desktop): Failed to execute child process “xfce4-screensaver” (No such file or directory)
No keyboard layout specified on the command line
Trailing -layout option ignored

only one keyboard
init [5]
start pipewire

** (xfce4-clipman:28868): WARNING **: 12:53:05.919: Unable to register GApplication: An object is already exported for the interface org.gtk.Application at /org/xfce/clipman

(xfce4-clipman:28868): GLib-GIO-CRITICAL **: 12:53:05.919: g_application_get_is_remote: assertion 'application->priv->is_registered' failed

(xfce4-clipman:28868): GLib-WARNING **: 12:53:05.919: g_set_application_name() called multiple times
dbus-daemon[28939]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=1000 pid=28893 comm="/usr/lib/policykit-1-gnome/polkit-gnome-authentica")
Another notification daemon is running, exiting
dbus-daemon[28939]: Successfully activated service 'org.a11y.atspi.Registry'
SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry

(xfce4-power-manager:28914): xfce4-power-manager-WARNING **: 12:53:05.959: could not map keysym 1008ffa8 to keycode


** (xfce4-power-manager:28914): WARNING **: 12:53:05.970: No outputs have backlight property

(xfce4-power-manager:28914): xfce4-power-manager-WARNING **: 12:53:05.975: It seems the kernel brightness switch handling value was not restored properly on exit last time, xfce4-power-manager will try to restore it this time.
xfce4-power-manager-Message: 12:53:05.997: Set kernel brightness switch to 0

(xfce4-power-manager:28914): xfce4-power-manager-WARNING **: 12:53:06.003: Failed to get keyboard max brightness level : GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: Object does not exist at path “/org/freedesktop/UPower/KbdBacklight”

(xfce4-power-manager:28914): xfconf-WARNING **: 12:53:06.003: Failed to set property "xfce4-power-manager::/xfce4-power-manager/brightness-switch": Operation was cancelled
xfce4-power-manager-Message: 12:53:06.023: Set kernel brightness switch to 0
blueman-applet 12.53.06 WARNING  PluginManager:151 __load_plugin: Not loading DhcpClient because its conflict has higher priority
blueman-applet 12.53.06 WARNING  PluginManager:151 __load_plugin: Not loading PPPSupport because its conflict has higher priority
ls: cannot access '/home/harrykar/.config/MX-Linux/MX-Tweak/brightness': No such file or directory
[1:25:04.436435266] [29216] [1;33m WARN [1;37mIPAManager [1;34mipa_manager.cpp:154 [0mNo IPA found in '/usr/lib/x86_64-linux-gnu/libcamera'
[1:25:04.436465410] [29216] [1;32m INFO [1;37mCamera [1;34mcamera_manager.cpp:299 [0mlibcamera v0.0.3
W 12:53:08.206262 m-portal-permissio ../modules/module-portal-permissionstore.c:63:wp_portal_permissionstore_plugin_lookup: <WpPortalPermissionStorePlugin:0x5647dfba7240> Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera
W 12:53:08.206782 m-portal-permissio ../modules/module-portal-permissionstore.c:63:wp_portal_permissionstore_plugin_lookup: <WpPortalPermissionStorePlugin:0x5647dfba7240> Failed to call Lookup: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for camera

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 12:53:08.225: Unable to replace properties on 0: Error getting properties for ID
mx-welcome version: 21.08mx21
desktop is  "Xfce v: 4.18.1"
Cleanup-notifier: available space at '/boot' 577 MiB
conky: no process found
conky: desktop window (1a0002b) is subwindow of root window (79c)
conky: window type - normal
conky: drawing to created window (0x5400002)
conky: drawing to double buffer

** (xfce4-screenshooter:29413): WARNING **: 12:53:54.688: Failed to query file info: file:~/Pictures

** (xfce4-screenshooter:29413): WARNING **: 12:53:54.688: Invalid directory or permissions: file:~/Pictures
mx-welcome version: 21.08mx21
desktop is  "Xfce v: 4.18.1"
ATTENTION: default value of option mesa_glthread overridden by environment.
ATTENTION: default value of option mesa_glthread overridden by environment.

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 13:12:41.414: Unable to replace properties on 0: Error getting properties for ID
nm-applet-Message: 13:13:23.941: No keyring secrets found for WIND_789AB4/802-11-wireless-security; asking user.
libva info: VA-API version 1.18.0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/iHD_drv_video.so
libva info: Found init function __vaDriverInit_1_17
libva info: va_openDriver() returns 0
ATTENTION: default value of option mesa_glthread overridden by environment.

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 13:29:58.108: Unable to replace properties on 0: Error getting properties for ID

(polkit-gnome-authentication-agent-1:28893): polkit-gnome-1-WARNING **: 13:41:22.872: Couldn't open user icon: Failed to open file “/home/harrykar/.face”: No such file or directory

(polkit-gnome-authentication-agent-1:28893): polkit-gnome-1-WARNING **: 13:41:22.874: Couldn't open user icon: Failed to open file “/home/harry/.face”: Permission denied

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 13:42:30.247: Unable to replace properties on 0: Error getting properties for ID
mxpi-launcher version: 24.1
+++ void MainWindow::setProgressDialog() +++
+++ void MainWindow::setup() +++
dpkg-query -f '${Version}' -W flatpak
apt-get update --print-uris | grep -m1 -qE '/mx/testrepo/dists/bookworm/test/'
+++ void MainWindow::loadPmFiles() +++
+++ void MainWindow::refreshPopularApps() +++
+++ QStringList MainWindow::listInstalled() const +++
+++ void MainWindow::displayPopularApps() const +++
+++ void MainWindow::displayPackages() +++
+++ QHash<QString, VersionNumber> MainWindow::listInstalledVersions() +++
test -n "$(apt-get --dry-run autoremove |grep -Po '^Remv \K[^ ]+' )"
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::displayFlatpaks(bool) +++
+++ void MainWindow::listFlatpakRemotes() const +++
flatpak remote-list --system | cut -f1
+++ QStringList MainWindow::listFlatpaks(const QString&, const QString&) const +++
flatpak update --appstream
flatpak remote-ls --system flathub --arch=x86_64 --app --columns=ver,ref,installed-size 2>/dev/null
flatpak remote-ls --system flathub --arch=x86_64 --runtime --columns=branch,ref,installed-size 2>/dev/null
flatpak list --system 2>/dev/null --app --columns=ref
flatpak list --system 2>/dev/null --runtime --columns=ref
+++ void MainWindow::listSizeInstalledFP() +++
flatpak list --system --columns app,size
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::displayWarning(const QString&) +++
+++ void MainWindow::filterChanged(const QString&) +++
+++ QStringList MainWindow::listFlatpaks(const QString&, const QString&) const +++
flatpak remote-ls --system flathub --arch=x86_64 --app --columns=ver,ref,installed-size 2>/dev/null
+++ void MainWindow::displayFilteredFP(QStringList, bool) +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::on_pushInstall_clicked() +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ bool MainWindow::installPopularApps() +++
+++ bool MainWindow::updateApt() +++
pid=$(fuser /var/lib/dpkg/lock 2>/dev/null); [[ -n "$pid" ]] && ps --no-headers -o comm -p $pid

(polkit-gnome-authentication-agent-1:28893): polkit-gnome-1-WARNING **: 13:50:11.777: Couldn't open user icon: Failed to open file “/home/harrykar/.face”: No such file or directory

(polkit-gnome-authentication-agent-1:28893): polkit-gnome-1-WARNING **: 13:50:11.778: Couldn't open user icon: Failed to open file “/home/harry/.face”: Permission denied
apt-get update -o=Dpkg::Use-Pty=0 -o Acquire::http:Timeout=10 -o Acquire::https:Timeout=10 -o Acquire::ftp:Timeout=10
"Hit:1 http://deb.debian.org/debian bookworm-updates InRelease"
"Hit:2 http://deb.debian.org/debian bookworm InRelease"
"Hit:4 http://ftp.cc.uoc.gr/mirrors/linux/mx/mx/repo bookworm InRelease"
"Hit:5 https://deb.debian.org/debian bookworm-backports InRelease"
"Hit:3 https://deb.librewolf.net bookworm InRelease"
"Hit:6 http://security.debian.org/debian-security bookworm-security InRelease"
"Hit:7 https://fasttrack.debian.net/debian bookworm-fasttrack InRelease"
"Reading package lists..."
""
sources updated OK
+++ bool MainWindow::installBatch(const QStringList&) +++
+++ bool MainWindow::install(const QString&) +++
+++ bool MainWindow::confirmActions(const QString&, const QString&) +++
names "gimp gimp-data gimp-data-extras gimp-cbmplugs gimp-gluas gimp-gmic gimp-lensfun gimp-plugin-registry gimp-texturize " and ()
DEBIAN_FRONTEND=$(dpkg -l debconf-kde-helper 2>/dev/null | grep -sq ^i && echo kde || echo gnome) LANG=C apt-get -s -V -o=Dpkg::Use-Pty=0 install --reinstall gimp gimp-data gimp-data-extras gimp-cbmplugs gimp-gluas gimp-gmic gimp-lensfun gimp-plugin-registry gimp-texturize |grep 'Inst\|Remv'| awk '{V=""; P="";}; $3 ~ /^\[/ { V=$3 }; $3 ~ /^\(/ { P=$3 ")"}; $4 ~ /^\(/ {P=" => " $4 ")"};  {print $2 ";" V  P ";" $1}'
"gdal-data;(3.6.2+dfsg-1);Inst\ngdal-plugins;(3.6.2+dfsg-1+b2);Inst\nlibbabl-0.1-0;(1:0.1.98-1+b1);Inst\nlibamd2;(1:5.12.0+dfsg-2);Inst\nlibcamd2;(1:5.12.0+dfsg-2);Inst\nlibccolamd2;(1:5.12.0+dfsg-2);Inst\nlibmetis5;(5.1.0.dfsg-7);Inst\nlibcholmod3;(1:5.12.0+dfsg-2);Inst\nlibumfpack5;(1:5.12.0+dfsg-2);Inst\nlibgegl-common;(1:0.4.42-2);Inst\nlibgegl-0.4-0;(1:0.4.42-2);Inst\nlibgexiv2-2;(0.14.0-1+b1);Inst\nlibgimp2.0;(2.10.34-1+deb12u2);Inst\ngimp-data;(2.10.34-1+deb12u2);Inst\nlibann0;(1.1.2+doc-9+b1);Inst\nlibcdt5;(2.42.2-7+b3);Inst\nlibcgraph6;(2.42.2-7+b3);Inst\nlibgts-0.7-5;(0.7.6+darcs121130-5+b1);Inst\nlibpathplan4;(2.42.2-7+b3);Inst\nlibgvc6;(2.42.2-7+b3);Inst\nlibgvpr2;(2.42.2-7+b3);Inst\nliblab-gamut1;(2.42.2-7+b3);Inst\ngraphviz;(2.42.2-7+b3);Inst\nlibmypaint-common;(1.6.0-2);Inst\nlibmypaint-1.5-1;(1.6.0-2);Inst\nlibwmflite-0.2-7;(0.2.12-5.1);Inst\nlibwmf-0.2-7;(0.2.12-5.1);Inst\ngimp;(2.10.34-1+deb12u2);Inst\ngimp-cbmplugs;(1.2.2-1.2);Inst\ngimp-data-extras;(1:2.0.2-1.1);Inst\ngimp-gluas;(0.1.20-2);Inst\nlibgraphicsmagick-q16-3;(1.4+really1.3.40-4);Inst\nlibgraphicsmagick++-q16-12;(1.4+really1.3.40-4);Inst\nlibarpack2;(3.8.0-3);Inst\nlibsuperlu5;(5.3.0+dfsg1-2+b1);Inst\nlibarmadillo11;(1:11.4.2+dfsg-1);Inst\nlibblosc1;(1.21.3+ds-1);Inst\nlibcfitsio10;(4.2.0-3);Inst\nlibfreexl1;(1.0.6-2);Inst\nlibfyba0;(4.1.1-8);Inst\nlibgeos3.11.1;(3.11.1-1);Inst\nlibgeos-c1v5;(3.11.1-1);Inst\nproj-data;(9.1.1-1);Inst\nlibproj25;(9.1.1-1+b1);Inst\nlibgeotiff5;(1.7.1-2+b1);Inst\nlibhdf4-0-alt;(4.2.15-5);Inst\nlibaec0;(1.0.6-1+b1);Inst\nlibsz2;(1.0.6-1+b1);Inst\nlibhdf5-103-1;(1.10.8+repack1-1);Inst\nliburiparser1;(0.9.7+dfsg-2);Inst\nlibkmlbase1;(1.3.0-10);Inst\nlibkmldom1;(1.3.0-10);Inst\nlibkmlengine1;(1.3.0-10);Inst\nmysql-common;(5.8+1.1.0);Inst\nmariadb-common;(1:10.11.4-1~deb12u1);Inst\nlibmariadb3;(1:10.11.4-1~deb12u1);Inst\nlibhdf5-hl-100;(1.10.8+repack1-1);Inst\nlibnetcdf19;(1:4.9.0-3+b1);Inst\nlibodbc2;(2.3.11-2+deb12u1);Inst\nunixodbc-common;(2.3.11-2+deb12u1);Inst\nlibodbcinst2;(2.3.11-2+deb12u1);Inst\nlibogdi4.1;(4.1.0+ds-6);Inst\nlibpq5;(15.5-0+deb12u1);Inst\nlibqhull-r8.0;(2020.2-5);Inst\nlibrttopo1;(1.1.0-3);Inst\nlibspatialite7;(5.0.1-3);Inst\nlibxerces-c3.2;(3.2.4+debian-1);Inst\nlibgdal32;(3.6.2+dfsg-1+b2);Inst\nlibcharls2;(2.4.1-1);Inst\nlibsocket++1;(1.12.13+git20131030.5d039ba-1+b1);Inst\nlibgdcm3.0;(3.0.21-1);Inst\nlibopencv-imgcodecs406;(4.6.0+dfsg-12);Inst\nlibopencv-videoio406;(4.6.0+dfsg-12);Inst\nlibgmic1;(2.9.4-4+b4);Inst\ngimp-gmic;(2.9.4-4+b4);Inst\nliblensfun-data-v1;(0.3.3-1);Inst\nliblensfun1;(0.3.3-1);Inst\ngimp-lensfun;(0.2.4-1.1);Inst\nlibtiff-tools;(4.5.0-6+deb12u1);Inst\ngimp-plugin-registry;(9.20200928+b1);Inst\ngimp-texturize;(2.2-3);Inst"
DEBIAN_FRONTEND=$(dpkg -l debconf-kde-helper 2>/dev/null | grep -sq ^i && echo kde || echo gnome) LANG=C aptitude -sy -V -o=Dpkg::Use-Pty=0 install --without-recommends gimp gimp-data gimp-data-extras gimp-cbmplugs gimp-gluas gimp-gmic gimp-lensfun gimp-plugin-registry gimp-texturize  |tail -2 |head -1
"Need to get 64.3 MB of archives. After unpacking 279 MB will be used."
detailed installed names sorted  ("gdal-data;(3.6.2+dfsg-1);Inst", "gdal-plugins;(3.6.2+dfsg-1+b2);Inst", "gimp-cbmplugs;(1.2.2-1.2);Inst", "gimp-data-extras;(1:2.0.2-1.1);Inst", "gimp-data;(2.10.34-1+deb12u2);Inst", "gimp-gluas;(0.1.20-2);Inst", "gimp-gmic;(2.9.4-4+b4);Inst", "gimp-lensfun;(0.2.4-1.1);Inst", "gimp-plugin-registry;(9.20200928+b1);Inst", "gimp-texturize;(2.2-3);Inst", "gimp;(2.10.34-1+deb12u2);Inst", "graphviz;(2.42.2-7+b3);Inst", "libaec0;(1.0.6-1+b1);Inst", "libamd2;(1:5.12.0+dfsg-2);Inst", "libann0;(1.1.2+doc-9+b1);Inst", "libarmadillo11;(1:11.4.2+dfsg-1);Inst", "libarpack2;(3.8.0-3);Inst", "libbabl-0.1-0;(1:0.1.98-1+b1);Inst", "libblosc1;(1.21.3+ds-1);Inst", "libcamd2;(1:5.12.0+dfsg-2);Inst", "libccolamd2;(1:5.12.0+dfsg-2);Inst", "libcdt5;(2.42.2-7+b3);Inst", "libcfitsio10;(4.2.0-3);Inst", "libcgraph6;(2.42.2-7+b3);Inst", "libcharls2;(2.4.1-1);Inst", "libcholmod3;(1:5.12.0+dfsg-2);Inst", "libfreexl1;(1.0.6-2);Inst", "libfyba0;(4.1.1-8);Inst", "libgdal32;(3.6.2+dfsg-1+b2);Inst", "libgdcm3.0;(3.0.21-1);Inst", "libgegl-0.4-0;(1:0.4.42-2);Inst", "libgegl-common;(1:0.4.42-2);Inst", "libgeos-c1v5;(3.11.1-1);Inst", "libgeos3.11.1;(3.11.1-1);Inst", "libgeotiff5;(1.7.1-2+b1);Inst", "libgexiv2-2;(0.14.0-1+b1);Inst", "libgimp2.0;(2.10.34-1+deb12u2);Inst", "libgmic1;(2.9.4-4+b4);Inst", "libgraphicsmagick++-q16-12;(1.4+really1.3.40-4);Inst", "libgraphicsmagick-q16-3;(1.4+really1.3.40-4);Inst", "libgts-0.7-5;(0.7.6+darcs121130-5+b1);Inst", "libgvc6;(2.42.2-7+b3);Inst", "libgvpr2;(2.42.2-7+b3);Inst", "libhdf4-0-alt;(4.2.15-5);Inst", "libhdf5-103-1;(1.10.8+repack1-1);Inst", "libhdf5-hl-100;(1.10.8+repack1-1);Inst", "libkmlbase1;(1.3.0-10);Inst", "libkmldom1;(1.3.0-10);Inst", "libkmlengine1;(1.3.0-10);Inst", "liblab-gamut1;(2.42.2-7+b3);Inst", "liblensfun-data-v1;(0.3.3-1);Inst", "liblensfun1;(0.3.3-1);Inst", "libmariadb3;(1:10.11.4-1~deb12u1);Inst", "libmetis5;(5.1.0.dfsg-7);Inst", "libmypaint-1.5-1;(1.6.0-2);Inst", "libmypaint-common;(1.6.0-2);Inst", "libnetcdf19;(1:4.9.0-3+b1);Inst", "libodbc2;(2.3.11-2+deb12u1);Inst", "libodbcinst2;(2.3.11-2+deb12u1);Inst", "libogdi4.1;(4.1.0+ds-6);Inst", "libopencv-imgcodecs406;(4.6.0+dfsg-12);Inst", "libopencv-videoio406;(4.6.0+dfsg-12);Inst", "libpathplan4;(2.42.2-7+b3);Inst", "libpq5;(15.5-0+deb12u1);Inst", "libproj25;(9.1.1-1+b1);Inst", "libqhull-r8.0;(2020.2-5);Inst", "librttopo1;(1.1.0-3);Inst", "libsocket++1;(1.12.13+git20131030.5d039ba-1+b1);Inst", "libspatialite7;(5.0.1-3);Inst", "libsuperlu5;(5.3.0+dfsg1-2+b1);Inst", "libsz2;(1.0.6-1+b1);Inst", "libtiff-tools;(4.5.0-6+deb12u1);Inst", "libumfpack5;(1:5.12.0+dfsg-2);Inst", "liburiparser1;(0.9.7+dfsg-2);Inst", "libwmf-0.2-7;(0.2.12-5.1);Inst", "libwmflite-0.2-7;(0.2.12-5.1);Inst", "libxerces-c3.2;(3.2.4+debian-1);Inst", "mariadb-common;(1:10.11.4-1~deb12u1);Inst", "mysql-common;(5.8+1.1.0);Inst", "proj-data;(9.1.1-1);Inst", "unixodbc-common;(2.3.11-2+deb12u1);Inst")
+++ bool MainWindow::buildPackageLists(bool) +++
+++ void MainWindow::clearUi() +++
+++ bool MainWindow::downloadPackageList(bool) +++
+++ bool MainWindow::readPackageList(bool) +++
+++ void MainWindow::displayPackages() +++
+++ QHash<QString, VersionNumber> MainWindow::listInstalledVersions() +++
test -n "$(apt-get --dry-run autoremove |grep -Po '^Remv \K[^ ]+' )"
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::refreshPopularApps() +++
+++ QStringList MainWindow::listInstalled() const +++
+++ void MainWindow::displayPopularApps() const +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::on_pushInstall_clicked() +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ bool MainWindow::installPopularApps() +++
+++ bool MainWindow::installBatch(const QStringList&) +++
+++ bool MainWindow::install(const QString&) +++
+++ bool MainWindow::confirmActions(const QString&, const QString&) +++
names "gimp " and ()
DEBIAN_FRONTEND=$(dpkg -l debconf-kde-helper 2>/dev/null | grep -sq ^i && echo kde || echo gnome) LANG=C apt-get -s -V -o=Dpkg::Use-Pty=0 install --reinstall gimp |grep 'Inst\|Remv'| awk '{V=""; P="";}; $3 ~ /^\[/ { V=$3 }; $3 ~ /^\(/ { P=$3 ")"}; $4 ~ /^\(/ {P=" => " $4 ")"};  {print $2 ";" V  P ";" $1}'
"libbabl-0.1-0;(1:0.1.98-1+b1);Inst\nlibamd2;(1:5.12.0+dfsg-2);Inst\nlibcamd2;(1:5.12.0+dfsg-2);Inst\nlibccolamd2;(1:5.12.0+dfsg-2);Inst\nlibmetis5;(5.1.0.dfsg-7);Inst\nlibcholmod3;(1:5.12.0+dfsg-2);Inst\nlibumfpack5;(1:5.12.0+dfsg-2);Inst\nlibgegl-common;(1:0.4.42-2);Inst\nlibgegl-0.4-0;(1:0.4.42-2);Inst\nlibgexiv2-2;(0.14.0-1+b1);Inst\nlibgimp2.0;(2.10.34-1+deb12u2);Inst\ngimp-data;(2.10.34-1+deb12u2);Inst\nlibann0;(1.1.2+doc-9+b1);Inst\nlibcdt5;(2.42.2-7+b3);Inst\nlibcgraph6;(2.42.2-7+b3);Inst\nlibgts-0.7-5;(0.7.6+darcs121130-5+b1);Inst\nlibpathplan4;(2.42.2-7+b3);Inst\nlibgvc6;(2.42.2-7+b3);Inst\nlibgvpr2;(2.42.2-7+b3);Inst\nliblab-gamut1;(2.42.2-7+b3);Inst\ngraphviz;(2.42.2-7+b3);Inst\nlibmypaint-common;(1.6.0-2);Inst\nlibmypaint-1.5-1;(1.6.0-2);Inst\nlibwmflite-0.2-7;(0.2.12-5.1);Inst\nlibwmf-0.2-7;(0.2.12-5.1);Inst\ngimp;(2.10.34-1+deb12u2);Inst"
DEBIAN_FRONTEND=$(dpkg -l debconf-kde-helper 2>/dev/null | grep -sq ^i && echo kde || echo gnome) LANG=C aptitude -sy -V -o=Dpkg::Use-Pty=0 install --without-recommends gimp  |tail -2 |head -1
"Need to get 26.2 MB of archives. After unpacking 143 MB will be used."
detailed installed names sorted  ("gimp-data;(2.10.34-1+deb12u2);Inst", "gimp;(2.10.34-1+deb12u2);Inst", "graphviz;(2.42.2-7+b3);Inst", "libamd2;(1:5.12.0+dfsg-2);Inst", "libann0;(1.1.2+doc-9+b1);Inst", "libbabl-0.1-0;(1:0.1.98-1+b1);Inst", "libcamd2;(1:5.12.0+dfsg-2);Inst", "libccolamd2;(1:5.12.0+dfsg-2);Inst", "libcdt5;(2.42.2-7+b3);Inst", "libcgraph6;(2.42.2-7+b3);Inst", "libcholmod3;(1:5.12.0+dfsg-2);Inst", "libgegl-0.4-0;(1:0.4.42-2);Inst", "libgegl-common;(1:0.4.42-2);Inst", "libgexiv2-2;(0.14.0-1+b1);Inst", "libgimp2.0;(2.10.34-1+deb12u2);Inst", "libgts-0.7-5;(0.7.6+darcs121130-5+b1);Inst", "libgvc6;(2.42.2-7+b3);Inst", "libgvpr2;(2.42.2-7+b3);Inst", "liblab-gamut1;(2.42.2-7+b3);Inst", "libmetis5;(5.1.0.dfsg-7);Inst", "libmypaint-1.5-1;(1.6.0-2);Inst", "libmypaint-common;(1.6.0-2);Inst", "libpathplan4;(2.42.2-7+b3);Inst", "libumfpack5;(1:5.12.0+dfsg-2);Inst", "libwmf-0.2-7;(0.2.12-5.1);Inst", "libwmflite-0.2-7;(0.2.12-5.1);Inst")
+++ bool MainWindow::buildPackageLists(bool) +++
+++ void MainWindow::clearUi() +++
+++ bool MainWindow::downloadPackageList(bool) +++
+++ bool MainWindow::readPackageList(bool) +++
+++ void MainWindow::displayPackages() +++
+++ QHash<QString, VersionNumber> MainWindow::listInstalledVersions() +++
test -n "$(apt-get --dry-run autoremove |grep -Po '^Remv \K[^ ]+' )"
+++ void MainWindow::updateInterface() const +++
+++ void MainWindow::refreshPopularApps() +++
+++ QStringList MainWindow::listInstalled() const +++
+++ void MainWindow::displayPopularApps() const +++
+++ void MainWindow::on_tabWidget_currentChanged(int) +++
+++ void MainWindow::setCurrentTree() +++
+++ void MainWindow::updateInterface() const +++
I could not find the default settings file:  "/usr/bin/default.ini"
defaults loaded from "/usr/bin/default.ini"
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  2 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  12 sec
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  0 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52.png" loaded in 36 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 11 ms
[INFO] Initialization takes:  52 sec
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  0 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 12 ms
[WARNING] illegal zoom levels when loading from settings: ""
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52.png" loaded in 37 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 11 ms
"Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”"
blueman-applet 15.45.14 WARNING  DiscvManager:119 update_menuitems: warning: Adapter is None

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 15:45:14.833: Unable to replace properties on 0: Error getting properties for ID

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 15:45:14.894: Unable to replace properties on 0: Error getting properties for ID

(wrapper-2.0:28810): LIBDBUSMENU-GLIB-WARNING **: 15:45:15.092: Unable to replace properties on 0: Error getting properties for ID
"Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”"
"Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”"
"Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”"
[Child 32013, MediaDecoderStateMachine #1] WARNING: Decoder=7f0f9745a500 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:166
[Child 49750, MediaDecoderStateMachine #1] WARNING: Decoder=7f6d60d7a000 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:166
[Child 49750, MediaDecoderStateMachine #1] WARNING: Decoder=7f6d60d7a000 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:166
[Child 49829, MediaDecoderStateMachine #1] WARNING: Decoder=7fc4dcdba100 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:166
[Child 49829, MediaDecoderStateMachine #1] WARNING: Decoder=7fc4dcdba100 Decode error: NS_ERROR_DOM_MEDIA_FATAL_ERR (0x806e0005): file /builds/worker/checkouts/gecko/dom/media/MediaDecoderStateMachineBase.cpp:166
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  2 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  131 ms
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  0 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-29_16-01-28.png" loaded in 27 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-29_16-02-36.png" loaded in 2 ms
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  54 ms
[INFO] [DkImageLoader] 57 containers created in 1 ms
[INFO] [DkImageLoader] after sorting:  1 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-29_16-02-36.png" loaded in 2 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_11-24-42.png" loaded in 12 ms
[WARNING] DkImageStorage::computeIntern was called without a need...
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  55 ms
[INFO] [DkImageLoader] 57 containers created in 1 ms
[INFO] [DkImageLoader] after sorting:  1 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_11-24-42.png" loaded in 13 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52.png" loaded in 30 ms
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  52 ms
[INFO] [DkImageLoader] 57 containers created in 1 ms
[INFO] [DkImageLoader] after sorting:  1 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52.png" loaded in 30 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 11 ms
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  2 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  60 ms
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  0 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 12 ms
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  52 ms
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  1 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52.png" loaded in 31 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-30_13-08-52_small.png" loaded in 11 ms
[INFO] Hi there
[INFO] Metadata support for BMFF formats is active.
[INFO] local client created in:  1 ms
[INFO] theme loaded from "/usr/share/nomacs/Image Lounge/themes/Light-Theme.css"
[INFO] CSS loaded from:  ":/nomacs/stylesheet.css"
[INFO] Initialization takes:  58 ms
[INFO] [DkImageLoader] 57 containers created in 0 ms
[INFO] [DkImageLoader] after sorting:  0 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-29_16-01-28.png" loaded in 29 ms
[INFO] [Basic Loader] "/home/harrykar/Pictures/here/blog/Screenshot_2024-01-29_16-02-36.png" loaded in 2 ms
"Object does not exist at path “/org/freedesktop/NetworkManager/ActiveConnection/4”"

*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason

#28 Post by harrykar »

CharlesV wrote: Tue Jan 30, 2024 1:55 pm
harrykar wrote: Tue Jan 30, 2024 12:41 pm
CharlesV wrote: Tue Jan 30, 2024 10:15 am Good job and glad you got it!
@CharlesV
Thanks mate indeed the mess was heavy(Actually I haven't more machines other than that notebook) so that initially I was ready to a system complete reinstall.
Now with calm I'm wondered what was that caused all that brothel, the first suspect(in order of coincidence and nothing more) is ActivityWatch as they also advertise(as would be in general for every application) that AW can't broken an entire system.
Now on I refer here everything related on that inconvenience
Not convinced it was ActivityWatch as I have seen this same result a couple of times now, but it is indeed interesting and as I said I am not too hot on believing a coincidence :-)
@CharlesV Where? only in MX's boxes or in other Linux distros too?
*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
harrykar
Posts: 164
Joined: Fri Dec 22, 2023 6:49 pm

Re: system corrupted without apparent reason

#29 Post by harrykar »

Why the $PATH in VT is different than that on pseudoterminal?(for now --after system's recover I used only suspend the system not shutdown,restart-- is empty )

Why in VT $PATH include those paths to kernel? I'm sure in pst(after a little I rename the new /etc/skel/ .profile and .bashrc and use my original and verify) those kernel paths are absent

$PATH in VT:

Code: Select all

/home/harrykar/bin:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/x86/x86_energy_perf_policy:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/x86/turbostat:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/cpupower:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/perf:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/sbin:/usr/sbin
=========================================================================

Update 1:
After have renamed the /etc/skel and did the first logout login after recover .local, .config, .bashrc, .profile now are in use my old dotties seems all good so far
(is lost only the windows focus catch on touchpad cursor,
the terminal I had in panel,
the keybord languages in panel,
xscreensaver show a black screen --was enough CTRL+ALT+delete and password to recover xscreensaver's multicolor screens -- and
some files icons I had on desktop is now shuffled not big deal)

I last .conky and .cache for a next time. because my .conky seems the same as that of /etc/skel (I really not touched it after system install) and .cache is not important and moreover is often source of problems

Regard $PATH:
$PATH in pst

Code: Select all

harrykar@mx:~
$ echo $PATH
/home/harrykar/bin:/usr/local/lib/nodejs/node-v20.11.0-linux-x64/bin:/home/harrykar/go/bin:/usr/local/go/bin:/home/harrykar/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/sbin:/usr/sbin
$PATH in VT

Code: Select all

/home/harrykar/bin:/home/harrykar/bin:/usr/local/lib/nodejs/node-v20.11.0-linux-x64/bin:/home/harrykar/go/bin:/usr/local/go/bin:/home/harrykar/.cargo/bin:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/x86/x86_energy_perf_policy:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/x86/turbostat:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/power/cpupower:/usr/src/linux-headers-6.6.12-1-liquorix-amd64/tools/perf:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/sbin:/usr/sbin
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Update 2:
I renamed .cache to my old folder and I saw all the mess I experienced 2 days ago. Moreover now for some reason pseudoterminal not get focus at all so I had to rename it again trough VT. If someone more experienced want investigate further I can send it.

Result:
Something in .cache been corrupted. If I knew that in time before do anything else probably would enough remove only that dir to return in normality.
You do not have the required permissions to view the files attached to this post.
Last edited by harrykar on Wed Jan 31, 2024 8:16 pm, edited 2 times in total.
*Hardware and software are logically equivalent:K.Panetta's dicit: ‘‘Hardware is just petrified software’’
*Remember: the beauty of CS lies not in the diversity of its details but in the unity of its concepts

User avatar
CharlesV
Administrator
Posts: 8031
Joined: Sun Jul 07, 2019 5:11 pm

Re: system corrupted without apparent reason

#30 Post by CharlesV »

harrykar wrote: Wed Jan 31, 2024 4:23 am
CharlesV wrote: Tue Jan 30, 2024 1:55 pm
Not convinced it was ActivityWatch as I have seen this same result a couple of times now, but it is indeed interesting and as I said I am not too hot on believing a coincidence :-)
@CharlesV Where? only in MX's boxes or in other Linux distros too?
I have seen this in two mx21 xfce machines, one of mine (which has done it twice) and then in one machine I support.
*QSI = Quick System Info from menu (Copy for Forum)
*MXPI = MX Package Installer
*Please check the solved checkbox on the post that solved it.
*Linux -This is the way!

Post Reply

Return to “MX Help”