Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 09/08/2021, à 11:36

DZ

Connexion automatique avec Lightdm

Bonjour,

je m'arrache les cheveux depuis 15 jours :
j'ai de temps en temps au démarrage besoin de lancer la session utilisateur graphiquement, ce que je ne souhaite pas.

Ce que j'ai fais :
J'ai installé lightdm-autologin-greeter

Dans /etc/lightdm/lightdm.conf j'ai :
autologin-user=MON_USER
autologin-user-timeout=0
pam-autologin-service=lightdm-autologin
autologin-session=lightdm-autologin
greeter-session=lightdm-gtk-greeter
user-session=xubuntu

j'ai ajouté l'utilisateur dans le groupe autologin
groupadd -r autologin
gpasswd -a MON_USER autologin

Point positif : avant si je changeais l'heure du bios, j'avais systématiquement la demande au démarrage. Cela n'est plus le cas.
Point négatif : je n'arrive que rarement à reproduire le problème, mais il apparaît bel et bien de temps en temps.

Hors ligne

#2 Le 09/08/2021, à 14:38

Tawal

Re : Connexion automatique avec Lightdm

Hello,

Personnellement, j'ai fait comme ceci :

$ cat /etc/lightdm/lightdm.conf | grep "autologin" | grep -v "#"
autologin-user=tawal
autologin-user-timeout=15
autologin-session=xfce

Il faut un timeout pour que l'auto-login fonctionne car il me semble que la valeur 0 désactive l'auto-login !
De plus la valeur du timeout doit être supérieure au temps de lancement de lightdm.

Au plaisir.

Edit:
Je n'ai modifié que ces 3 variables de configuration et rien d'autre wink

Dernière modification par Tawal (Le 09/08/2021, à 14:41)


Le savoir n'a d’intérêt que si on le transmet.
Useless Use of Cat Award
Filenames and Pathnames in Shell: How to do it Correctly
À chaque problème sa solution, à chaque solution son moyen, si pas de moyen, toujours le problème !

Hors ligne

#3 Le 09/08/2021, à 22:30

kamaris

Re : Connexion automatique avec Lightdm

Perso j'ai suivi ça et ça a toujours bien marché mais je suis sous Arch: https://wiki.archlinux.fr/LightDM#D.C3. … tilisateur
Rq : j'ai le timeout à 0 et aucun souci, mais encore une fois, je ne suis pas sous Ubuntu.

Hors ligne

#4 Le 10/08/2021, à 00:35

DZ

Re : Connexion automatique avec Lightdm

Merci pour vos retours.
Je me suis basé sur le lien archlinux à la base. D'où les éléments cités dans mon premier message.

Je vais tester de jouer sur le timeout merci !

Hors ligne

#5 Le 10/08/2021, à 04:06

MicP

Re : Connexion automatique avec Lightdm

Bonjour

Pour que le compte utilisateur michel de mon système Xubuntu
ait, sans avoir à donner son mot de passe, sa session automatiquement ouverte dès le démarrage de la machine
j'ai créé le fichier /etc/lightdm/lightdm.conf
ne contenant que les 4 directives ci-dessous :

EDIT : Ajout des commentaires décrivant les directives utilisées.

# [Seat:*] matches all seats and is applied first.
[Seat:*]

# autologin-user = User to log in with by default (overrides autologin-guest)
autologin-user=michel

# autologin-user-timeout = Number of seconds to wait before loading default user
autologin-user-timeout=0

# pam-autologin-service = PAM service to use for autologin
pam-autologin-service=lightdm-autologin

=======
Ensuite, quand je veux désactiver l'auto-login,
je renomme le fichier /etc/lightdm/lightdm.conf
en lançant la ligne de commandes suivante :

sudo mv /etc/lightdm/lightdm.conf{,.désactivé}

Et quand je veux ensuite activer à nouveau l'auto-login,
je renomme le fichier /etc/lightdm/lightdm.conf.désactivé
en lançant la ligne de commandes suivante :

sudo mv /etc/lightdm/lightdm.conf{.désactivé,}

Dernière modification par MicP (Le 10/08/2021, à 16:50)

Hors ligne

#6 Le 10/08/2021, à 08:12

Tawal

Re : Connexion automatique avec Lightdm

kamaris a écrit :

Rq : j'ai le timeout à 0 et aucun souci

MicP a écrit :

j'ai créé le fichier /etc/lightdm/lightdm.conf
ne contenant que les 4 lignes ci-dessous :

[Seat:*]
autologin-user=michel
autologin-user-timeout=0
pam-autologin-service=lightdm-autologin

Peut-être que mon "souci" avec le timeout vient du fait que je n'ai pas configuré le "pam-autologin-service".
Ça me donne l'envie d'essayer.
Mais dans tous les cas, je mettrais quand même un timeout pour avoir le temps de me connecter sur un autre utilisateur (choix de l'utilisateur + mot-de-passe).


Le savoir n'a d’intérêt que si on le transmet.
Useless Use of Cat Award
Filenames and Pathnames in Shell: How to do it Correctly
À chaque problème sa solution, à chaque solution son moyen, si pas de moyen, toujours le problème !

Hors ligne

#7 Le 10/08/2021, à 08:13

DZ

Re : Connexion automatique avec Lightdm

Avec ces seules lignes, si je modifie la date dans le bios j'ai de suite la demande de login.
Idem (souvent) après 24h sans allumage.

Hors ligne

#8 Le 10/08/2021, à 08:15

Tawal

Re : Connexion automatique avec Lightdm

Je trouve ça étrange !
Car je ne vois pas le rapport entre la date du BIOS et l'autologin ...
Mais je suis loin de tout maîtriser wink


Le savoir n'a d’intérêt que si on le transmet.
Useless Use of Cat Award
Filenames and Pathnames in Shell: How to do it Correctly
À chaque problème sa solution, à chaque solution son moyen, si pas de moyen, toujours le problème !

Hors ligne

#9 Le 10/08/2021, à 09:28

DZ

Re : Connexion automatique avec Lightdm

Tawal a écrit :

Hello,

Personnellement, j'ai fait comme ceci :

$ cat /etc/lightdm/lightdm.conf | grep "autologin" | grep -v "#"
autologin-user=tawal
autologin-user-timeout=15
autologin-session=xfce

Il faut un timeout pour que l'auto-login fonctionne car il me semble que la valeur 0 désactive l'auto-login !
De plus la valeur du timeout doit être supérieure au temps de lancement de lightdm.

Au plaisir.

Edit:
Je n'ai modifié que ces 3 variables de configuration et rien d'autre wink

And the winner is !

Merci, un timeout de 5 secondes me laisse la demande de login, puis il charge systématiquement la session. Je vais surveiller ça, mais il semblerait que cela soit OK désormais.

Dernière modification par DZ (Le 10/08/2021, à 09:29)

Hors ligne

#10 Le 10/08/2021, à 14:41

Tawal

Re : Connexion automatique avec Lightdm

DZ a écrit :

And the winner is !

Oh no !
Car @kamaris dit le contraire et c'est une personne de confiance wink


Le savoir n'a d’intérêt que si on le transmet.
Useless Use of Cat Award
Filenames and Pathnames in Shell: How to do it Correctly
À chaque problème sa solution, à chaque solution son moyen, si pas de moyen, toujours le problème !

Hors ligne

#11 Le 10/08/2021, à 15:32

kamaris

Re : Connexion automatique avec Lightdm

Il est tout à fait possible que ce soit nécessaire sous Ubuntu wink (au moins pour certaines configurations, car le cas de MicP est un contre-exemple)
D'ailleurs ça n'est pas la première fois que je vois une discussion de ce type, ici ou ailleurs, où la config Arch de l'autologin lightdm n'a pas l'air de bien marcher sous Ubuntu, d'où ma précision plus haut.

Dernière modification par kamaris (Le 10/08/2021, à 17:29)

Hors ligne

#12 Le 10/08/2021, à 16:02

MicP

Re : Connexion automatique avec Lightdm

Par défaut, le fichier /etc/lightdm/lightdm.conf n'existe pas sur un système Xubuntu 20.04.2 LTS récemment installé
Donc il faudra créer ce fichier.

=======
En ce qui concerne ma proposition de solution dans mon message #5,
elle a été testée sur un système Xubuntu 20.04.2 LTS nouvellement installé (et non bricolé <=> rien de plus que l'installation standard)

Je précise aussi qu'il ne faut surtout pas oublier de spécifier la première directive :

[Seat:*]

qui doit impérativement précéder les trois autres.

=======
Voir aussi dans la documentation Ubuntu concernant le fichier de configuration de lightdm
le paragraphe 6.7.2 Édition manuelle du fichier de configuration

=======
On trouvera aussi des commentaires pour chaque directive utilisable dans le fichier de configuration /etc/lightdm/lightdm.conf
qui est dans la page web suivante : https://github.com/canonical/lightdm/bl … ghtdm.conf

Comme toutes les directives de ce fichier sont commentées,
il sera plus simple de copier directement son contenu sur votre système
dans un fichier de configuration nommé /etc/lightdm/lightdm.conf que vous créerez
et il vous suffira ensuite de dé-commenter les directives que vous voulez activer.
Comme ça, vous aurez la description de chaque directive à portée de main

=======
Un autre lien : https://www.freedesktop.org/wiki/Softwa … iguration/

=======
Les fichiers de configuration de lightdm sont lus dans cet ordre :

/usr/share/lightdm/lightdm.conf.d/*.conf
/etc/lightdm/lightdm.conf.d/*.conf
/etc/lightdm/lightdm.conf

les valeurs des directives du dernier fichier lu
prendront la priorité sur les précédentes.

Dernière modification par MicP (Le 10/08/2021, à 21:40)

Hors ligne

#13 Le 13/06/2022, à 10:40

DZ

Re : Connexion automatique avec Lightdm

Bonjour,

j'ai de nouveau le problème, de manière aléatoire.

Ce que j'ai :

/etc/lightdm$ more lightdm.conf

[Seat:*]
autologin-user=MON_USER
autologin-user-timeout=5
autologin-session=lightdm-autologin
user-session=xubuntu

more lightdm-autologin-greeter.conf

[Seat:*]
# you really have to configure the below, otherwise
# LightDM auto-login will fail...
autologin-user=MON_USER
# put any session from /usr/share/xsessions (strip .desktop from the file names there)
# here, if you want to run any other session than x-session-manager
#autologin-session=x-session-manager

Le problème est aléatoire et pas tout à fait le même partout :
parfois il faut juste appuyer sur entrée pour valider une session, sinon mise en veille de l'écran
parfois il faut login mot de passe, et la session était bien déjà en train de tourner correctement en arrière plan

(je me demande même si je n'ai pas 2 sessions qui tournent parfois, il faudrait que j'arrive à reproduire le problème mais évidemment, je n'y arrive pas).

Hors ligne

#14 Le 13/06/2022, à 11:06

DZ

Re : Connexion automatique avec Lightdm

lightdm --show-config

[Seat:*]
A  allow-guest=false
C  greeter-wrapper=/usr/lib/lightdm/lightdm-greeter-session
D  guest-wrapper=/usr/lib/lightdm/lightdm-guest-session
E  xserver-command=X -core
F  greeter-setup-script=xubuntu-numlockx
H  greeter-session=lightdm-gtk-greeter
K  user-session=xubuntu
K  autologin-user-timeout=5
K  autologin-user=MON_USER
K  autologin-session=lightdm-autologin

   [LightDM]
B  backup-logs=false

Sources:
A  /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf
B  /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf
C  /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf
D  /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf
E  /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf
F  /usr/share/lightdm/lightdm.conf.d/50-xubuntu-numlock.conf
G  /usr/share/lightdm/lightdm.conf.d/60-lightdm-autologin-greeter.conf
H  /usr/share/lightdm/lightdm.conf.d/60-lightdm-gtk-greeter.conf
I  /usr/share/lightdm/lightdm.conf.d/60-xubuntu.conf
J  /etc/lightdm/lightdm.conf.d/lightdm-autologin-greeter.conf
K  /etc/lightdm/lightdm.conf

Hors ligne

#15 Le 13/06/2022, à 12:49

MicP

Re : Connexion automatique avec Lightdm

Bonjour DZ

Je pense que l'autologin du compte MON_USER fonctionne,
et que c'est peut-être l'authentification en sortie de veille d'écran qui t'impose de t'identifier et entrer ton mot de passe.

Essaye de désactiver complètement la mise en veille pour voir ce que ça donne,
tu pourras toujours la réactiver plus tard ou, si besoin, en modifier les paramètres.

Dernière modification par MicP (Le 13/06/2022, à 13:00)

Hors ligne

#16 Le 13/06/2022, à 13:23

DZ

Re : Connexion automatique avec Lightdm

Merci du coup de main.

Malheureusement la mise en veille est désactivée dans le système. La mise en veille semble se faire uniquement lorsque le bug se produit (si on ne clique pas sur se connecter, alors l'écran n'affiche pas le bureau et finit par se mettre en veille).

Dernière modification par DZ (Le 13/06/2022, à 13:28)

Hors ligne

#17 Le 28/06/2022, à 09:21

DZ

Re : Connexion automatique avec Lightdm

Bonjour,

en fait ce qui est surprenant, c'est que pour les machines qui posent problème, il semblerait que ça ne le fasse que le lundi, ou après 24heures sans être allumées.

Hors ligne

#18 Le 04/07/2022, à 07:42

DZ

Re : Connexion automatique avec Lightdm

Voici le contenu d'un syslog d'une des machines n'ayant pas démarré ce matin. Depuis j'ai installé le paquet acpi pour nettoyer quelques logs, mais d'autres machines ne démarrent pas le lundi malgré sa présence.

Jul  4 06:31:34 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.2001.0" x-pid="532" x-info="https://www.rsyslog.com"] rsyslogd was HUPed
Jul  4 06:31:35 localhost systemd[1]: logrotate.service: Main process exited, code=exited, status=1/FAILURE
Jul  4 06:31:35 localhost systemd[1]: logrotate.service: Failed with result 'exit-code'.
Jul  4 06:31:35 localhost systemd[1]: Failed to start Rotate log files.
Jul  4 06:31:35 localhost udisksd[539]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jul  4 06:31:35 localhost systemd[1]: Started Disk Manager.
Jul  4 06:31:37 localhost systemd[1]: man-db.service: Succeeded.
Jul  4 06:31:37 localhost systemd[1]: Finished Daily man-db regeneration.
Jul  4 06:31:38 localhost systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Jul  4 06:31:38 localhost systemd[1]: Started MySQL Community Server.
Jul  4 06:31:38 localhost systemd[1]: Reached target Multi-User System.
Jul  4 06:31:38 localhost systemd[1]: Reached target Graphical Interface.
Jul  4 06:31:38 localhost systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
Jul  4 06:31:38 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Jul  4 06:31:38 localhost systemd[1]: systemd-update-utmp-runlevel.service: Succeeded.
Jul  4 06:31:38 localhost systemd[1]: Finished Update UTMP about System Runlevel Changes.
Jul  4 06:31:40 localhost at-spi-bus-launcher[1226]: dbus-daemon[1226]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=110 pid=1001 comm="/usr/sbin/lightdm-gtk-greeter " label="unconfined")
Jul  4 06:31:40 localhost at-spi-bus-launcher[1226]: dbus-daemon[1226]: Successfully activated service 'org.a11y.atspi.Registry'
Jul  4 06:31:40 localhost at-spi-bus-launcher[1295]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul  4 06:31:51 localhost systemd[1]: systemd-fsckd.service: Succeeded.
Jul  4 06:31:51 localhost systemd-timesyncd[441]: Initial synchronization to time server 185.125.190.57:123 (ntp.ubuntu.com).
Jul  4 06:31:53 localhost systemd[1]: systemd-hostnamed.service: Succeeded.
Jul  4 06:31:54 localhost systemd[1]: systemd-timedated.service: Succeeded.
Jul  4 06:31:55 localhost systemd[1]: blueman-mechanism.service: Succeeded.
Jul  4 06:32:23 localhost systemd[1]: Starting Stop ureadahead data collection...
Jul  4 06:32:23 localhost systemd[1]: ureadahead-stop.service: Succeeded.
Jul  4 06:32:23 localhost systemd[1]: Finished Stop ureadahead data collection.
Jul  4 06:36:17 localhost fstrim[508]: /boot/efi: 246 MiB (257884672 bytes) trimmed on /dev/nvme0n1p1
Jul  4 06:36:17 localhost fstrim[508]: /: 182,6 GiB (196073570304 bytes) trimmed on /dev/nvme0n1p2
Jul  4 06:36:17 localhost systemd[1]: fstrim.service: Succeeded.
Jul  4 06:36:17 localhost systemd[1]: Finished Discard unused blocks on filesystems from /etc/fstab.
Jul  4 06:36:17 localhost systemd[1]: Startup finished in 8.732s (firmware) + 6.113s (loader) + 1.385s (kernel) + 4min 57.636s (userspace) = 5min 13.867s.
Jul  4 06:36:21 localhost anacron[495]: Job `cron.daily' started
Jul  4 06:36:21 localhost anacron[1325]: Updated timestamp for job `cron.daily' to 2022-07-04
Jul  4 06:36:21 localhost cracklib: no dictionary update necessary.
Jul  4 06:36:21 localhost anacron[495]: Job `cron.daily' terminated
Jul  4 06:36:21 localhost anacron[495]: Normal exit (1 job run)
Jul  4 06:36:21 localhost systemd[1]: anacron.service: Succeeded.
Jul  4 06:39:01 localhost CRON[1549]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Jul  4 06:39:19 localhost systemd[1]: Starting Clean php session files...
Jul  4 06:39:19 localhost systemd[1]: phpsessionclean.service: Succeeded.
Jul  4 06:39:19 localhost systemd[1]: Finished Clean php session files.
Jul  4 06:41:27 localhost kernel: [  608.728625] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GLAN.GPEH], AE_NOT_FOUND (20210604/psargs-330)
Jul  4 06:41:27 localhost kernel: [  608.728649] 
Jul  4 06:41:27 localhost kernel: [  608.728652] No Local Variables are initialized for Method [_L6D]
Jul  4 06:41:27 localhost kernel: [  608.728654] 
Jul  4 06:41:27 localhost kernel: [  608.728657] No Arguments are initialized for method [_L6D]
Jul  4 06:41:27 localhost kernel: [  608.728658] 
Jul  4 06:41:27 localhost kernel: [  608.728661] ACPI Error: Aborting method \_GPE._L6D due to previous error (AE_NOT_FOUND) (20210604/psparse-529)
Jul  4 06:41:27 localhost kernel: [  608.728677] ACPI Error: AE_NOT_FOUND, while evaluating GPE method [_L6D] (20210604/evgpe-511)
Jul  4 06:41:27 localhost rtkit-daemon[1002]: Supervising 2 threads of 1 processes of 1 users.
Jul  4 06:41:27 localhost rtkit-daemon[1002]: Successfully made thread 1606 of process 994 owned by '110' RT at priority 5.
Jul  4 06:41:27 localhost rtkit-daemon[1002]: Supervising 3 threads of 1 processes of 1 users.
Jul  4 06:46:32 localhost systemd[1]: Starting Cleanup of Temporary Directories...
Jul  4 06:46:32 localhost systemd[1]: systemd-tmpfiles-clean.service: Succeeded.
Jul  4 06:46:32 localhost systemd[1]: Finished Cleanup of Temporary Directories.
Jul  4 07:09:01 localhost CRON[1653]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Jul  4 07:09:16 localhost systemd[1]: Starting Clean php session files...
Jul  4 07:09:16 localhost systemd[1]: phpsessionclean.service: Succeeded.
Jul  4 07:09:16 localhost systemd[1]: Finished Clean php session files.
Jul  4 07:17:01 localhost CRON[1721]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jul  4 07:20:38 localhost systemd[1]: Starting Ubuntu Advantage Timer for running repeated jobs...
Jul  4 07:20:38 localhost systemd[1]: ua-timer.service: Succeeded.
Jul  4 07:20:38 localhost systemd[1]: Finished Ubuntu Advantage Timer for running repeated jobs.
Jul  4 07:29:38 localhost systemd[1]: Starting Daily apt upgrade and clean activities...
Jul  4 07:29:38 localhost systemd[1]: apt-daily-upgrade.service: Succeeded.
Jul  4 07:29:38 localhost systemd[1]: Finished Daily apt upgrade and clean activities.
Jul  4 07:30:01 localhost CRON[1814]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
Jul  4 07:31:19 localhost systemd[1]: Started Run anacron jobs.
Jul  4 07:31:19 localhost anacron[1817]: Anacron 2.3 started on 2022-07-04
Jul  4 07:31:19 localhost anacron[1817]: Normal exit (0 jobs run)
Jul  4 07:31:19 localhost systemd[1]: anacron.service: Succeeded.
Jul  4 07:39:01 localhost CRON[1833]: (root) CMD (  [ -x /usr/lib/php/sessionclean ] && if [ ! -d /run/systemd/system ]; then /usr/lib/php/sessionclean; fi)
Jul  4 07:39:19 localhost systemd[1]: Starting Clean php session files...
Jul  4 07:39:19 localhost systemd[1]: phpsessionclean.service: Succeeded.
Jul  4 07:39:19 localhost systemd[1]: Finished Clean php session files.
Jul  4 07:56:17 localhost systemd[1]: Stopping Session c1 of user lightdm.
Jul  4 07:56:17 localhost systemd[1]: Removed slice system-modprobe.slice.
Jul  4 07:56:17 localhost systemd[1]: ureadahead-stop.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Stop ureadahead data collection 45s after completed startup.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Bluetooth.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Graphical Interface.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Multi-User System.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Login Prompts.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Printer.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Sound Card.
Jul  4 07:56:17 localhost systemd[1]: Stopped target Timers.
Jul  4 07:56:17 localhost systemd[1]: anacron.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Trigger anacron every hour.
Jul  4 07:56:17 localhost systemd[1]: apt-daily-upgrade.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Daily apt upgrade and clean activities.
Jul  4 07:56:17 localhost systemd[1]: apt-daily.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Daily apt download activities.
Jul  4 07:56:17 localhost systemd[1]: e2scrub_all.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Periodic ext4 Online Metadata Check for All Filesystems.
Jul  4 07:56:17 localhost systemd[1]: fstrim.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Discard unused blocks once a week.
Jul  4 07:56:17 localhost systemd[1]: fwupd-refresh.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Refresh fwupd metadata regularly.
Jul  4 07:56:17 localhost systemd[1]: logrotate.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Daily rotation of log files.
Jul  4 07:56:17 localhost systemd[1]: man-db.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Daily man-db regeneration.
Jul  4 07:56:17 localhost systemd[1]: motd-news.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Message of the Day.
Jul  4 07:56:17 localhost systemd[1]: phpsessionclean.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Clean PHP session files every 30 mins.
Jul  4 07:56:17 localhost systemd[1]: systemd-tmpfiles-clean.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Jul  4 07:56:17 localhost systemd[1]: ua-timer.timer: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Ubuntu Advantage Timer for running repeated jobs.
Jul  4 07:56:17 localhost systemd[1]: systemd-rfkill.socket: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jul  4 07:56:17 localhost ModemManager[682]: <info>  caught signal, shutting down...
Jul  4 07:56:17 localhost systemd[1]: Stopping Modem Manager...
Jul  4 07:56:17 localhost systemd[1]: Stopping Accounts Service...
Jul  4 07:56:17 localhost systemd[1]: Stopping ACPI event daemon...
Jul  4 07:56:17 localhost NetworkManager[505]: <info>  [1656914177.0142] modem-manager: ModemManager no longer available
Jul  4 07:56:17 localhost systemd[1]: Stopping Save/Restore Sound Card State...
Jul  4 07:56:17 localhost ModemManager[682]: <info>  ModemManager is shut down
Jul  4 07:56:17 localhost systemd[1]: Stopping The Apache HTTP Server...
Jul  4 07:56:17 localhost bluetoothd[499]: Terminating
Jul  4 07:56:17 localhost systemd[1]: Stopping Bluetooth service...
Jul  4 07:56:17 localhost systemd[1]: Stopping Manage, Install and Generate Color Profiles...
Jul  4 07:56:17 localhost systemd[1]: Stopping Regular background program processing daemon...
Jul  4 07:56:17 localhost systemd[1]: Stopping Make remote CUPS printers available locally...
Jul  4 07:56:17 localhost systemd[1]: Stopping Getty on tty1...
Jul  4 07:56:17 localhost systemd[1]: Stopping irqbalance daemon...
Jul  4 07:56:17 localhost systemd[1]: Stopping Tool to automatically collect and submit kernel crash signatures...
Jul  4 07:56:17 localhost systemd[1]: Stopping Light Display Manager...
Jul  4 07:56:17 localhost systemd[1]: lm-sensors.service: Succeeded.
Jul  4 07:56:17 localhost systemd[1]: Stopped Initialize hardware monitoring sensors.
Jul  4 07:56:17 localhost systemd[1]: Stopping MySQL Community Server...
Jul  4 07:56:39 localhost systemd-modules-load[271]: Inserted module 'lp'
Jul  4 07:56:39 localhost systemd-modules-load[271]: Inserted module 'ppdev'
Jul  4 07:56:39 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
Jul  4 07:56:39 localhost systemd[1]: Finished Load/Save Random Seed.
Jul  4 07:56:39 localhost systemd[1]: Finished Create System Users.
Jul  4 07:56:39 localhost ureadahead[278]: ureadahead: Error while tracing: Aucun fichier ou dossier de ce type
Jul  4 07:56:39 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Jul  4 07:56:39 localhost systemd[1]: ureadahead.service: Main process exited, code=exited, status=5/NOTINSTALLED
Jul  4 07:56:39 localhost systemd[1]: ureadahead.service: Failed with result 'exit-code'.
Jul  4 07:56:39 localhost systemd[1]: Finished udev Coldplug all Devices.
Jul  4 07:56:39 localhost systemd[1]: Starting Helper to synchronize boot up for ifupdown...
Jul  4 07:56:39 localhost systemd[1]: Finished Helper to synchronize boot up for ifupdown.
Jul  4 07:56:39 localhost systemd[1]: Finished Create Static Device Nodes in /dev.
Jul  4 07:56:39 localhost systemd[1]: Starting udev Kernel Device Manager...
Jul  4 07:56:39 localhost systemd[1]: Finished Set the console keyboard layout.
Jul  4 07:56:39 localhost kernel: [    0.000000] microcode: microcode updated early to revision 0xea, date = 2021-01-05
Jul  4 07:56:39 localhost systemd[1]: Reached target Local File Systems (Pre).
Jul  4 07:56:39 localhost kernel: [    0.000000] Linux version 5.14.0-1042-oem (buildd@lcy02-amd64-044) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #47-Ubuntu SMP Fri Jun 3 18:17:11 UTC 2022 (Ubuntu 5.14.0-1042.47-oem 5.14.21)
Jul  4 07:56:39 localhost kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.14.0-1042-oem root=UUID=3f101ab2-1e83-478a-a6de-50083471a7a3 ro quiet splash, pci=noaer
Jul  4 07:56:39 localhost kernel: [    0.000000] KERNEL supported cpus:
Jul  4 07:56:39 localhost kernel: [    0.000000]   Intel GenuineIntel
Jul  4 07:56:39 localhost systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
Jul  4 07:56:39 localhost kernel: [    0.000000]   AMD AuthenticAMD
Jul  4 07:56:39 localhost kernel: [    0.000000]   Hygon HygonGenuine
Jul  4 07:56:39 localhost kernel: [    0.000000]   Centaur CentaurHauls
Jul  4 07:56:39 localhost systemd[1]: Mounting /tmp...
Jul  4 07:56:39 localhost kernel: [    0.000000]   zhaoxin   Shanghai  
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jul  4 07:56:39 localhost systemd[1]: Mounted /tmp.
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Jul  4 07:56:39 localhost kernel: [    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jul  4 07:56:39 localhost kernel: [    0.000000] signal: max sigframe size: 2032
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-provided physical RAM map:
Jul  4 07:56:39 localhost systemd-udevd[295]: Configuration file /etc/udev/rules.d/59-smfp_samsung.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000005efff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000000005f000-0x000000000005ffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000000060000-0x000000000009ffff] usable
Jul  4 07:56:39 localhost systemd[1]: Finished Flush Journal to Persistent Storage.
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
Jul  4 07:56:39 localhost systemd[1]: Started udev Kernel Device Manager.
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000040400000-0x00000000834a2fff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000834a3000-0x00000000834a3fff] ACPI NVS
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000834a4000-0x00000000834a4fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000834a5000-0x0000000089fa4fff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000089fa5000-0x000000008c329fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000008c32a000-0x000000008c4cafff] usable
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped.
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000008c4cb000-0x000000008c86dfff] ACPI NVS
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000008c86e000-0x000000008cefefff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000008ceff000-0x000000008cefffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x000000008cf00000-0x000000008fffffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000016dffffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] NX (Execute Disable) protection: active
Jul  4 07:56:39 localhost kernel: [    0.000000] e820: update [mem 0x81697018-0x816a7057] usable ==> usable
Jul  4 07:56:39 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jul  4 07:56:39 localhost kernel: [    0.000000] e820: update [mem 0x81697018-0x816a7057] usable ==> usable
Jul  4 07:56:39 localhost kernel: [    0.000000] extended physical RAM map:
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000005efff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000000005f000-0x000000000005ffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000000060000-0x000000000009ffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000003fffffff] usable
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped.
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000040000000-0x00000000403fffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000040400000-0x0000000081697017] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000081697018-0x00000000816a7057] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000816a7058-0x00000000834a2fff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000834a3000-0x00000000834a3fff] ACPI NVS
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000834a4000-0x00000000834a4fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000834a5000-0x0000000089fa4fff] usable
Jul  4 07:56:39 localhost systemd[1]: Reached target Local Encrypted Volumes.
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000089fa5000-0x000000008c329fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000008c32a000-0x000000008c4cafff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000008c4cb000-0x000000008c86dfff] ACPI NVS
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000008c86e000-0x000000008cefefff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000008ceff000-0x000000008cefffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x000000008cf00000-0x000000008fffffff] reserved
Jul  4 07:56:39 localhost systemd-modules-load[271]: Inserted module 'parport_pc'
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jul  4 07:56:39 localhost kernel: [    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000016dffffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000000] efi: EFI v2.70 by American Megatrends
Jul  4 07:56:39 localhost systemd-modules-load[271]: Inserted module 'msr'
Jul  4 07:56:39 localhost kernel: [    0.000000] efi: ACPI 2.0=0x8c7de000 ACPI=0x8c7de000 SMBIOS=0x8ccb8000 SMBIOS 3.0=0x8ccb7000 MEMATTR=0x88ba8018 ESRT=0x88bbff98 MOKvar=0x88bac000 RNG=0x8cce1798 
Jul  4 07:56:39 localhost kernel: [    0.000000] efi: seeding entropy pool
Jul  4 07:56:39 localhost kernel: [    0.000000] random: fast init done
Jul  4 07:56:39 localhost kernel: [    0.000000] secureboot: Secure boot disabled
Jul  4 07:56:39 localhost systemd[1]: Finished Load Kernel Modules.
Jul  4 07:56:39 localhost kernel: [    0.000000] SMBIOS 3.2.0 present.
Jul  4 07:56:39 localhost kernel: [    0.000000] DMI: Giada Coffee Lake/Coffee Lake, BIOS 5.13 12/16/2021
Jul  4 07:56:39 localhost kernel: [    0.000000] tsc: Detected 3100.000 MHz processor
Jul  4 07:56:39 localhost kernel: [    0.000000] tsc: Detected 3099.999 MHz TSC
Jul  4 07:56:39 localhost kernel: [    0.000589] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jul  4 07:56:39 localhost systemd[1]: Mounting FUSE Control File System...
Jul  4 07:56:39 localhost kernel: [    0.000592] e820: remove [mem 0x000a0000-0x000fffff] usable
Jul  4 07:56:39 localhost kernel: [    0.000598] last_pfn = 0x16e000 max_arch_pfn = 0x400000000
Jul  4 07:56:39 localhost kernel: [    0.000694] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jul  4 07:56:39 localhost systemd[1]: Mounting Kernel Configuration File System...
Jul  4 07:56:39 localhost kernel: [    0.001307] last_pfn = 0x8cf00 max_arch_pfn = 0x400000000
Jul  4 07:56:39 localhost kernel: [    0.008008] found SMP MP-table at [mem 0x000fcde0-0x000fcdef]
Jul  4 07:56:39 localhost kernel: [    0.008018] esrt: Reserving ESRT space from 0x0000000088bbff98 to 0x0000000088bbffd0.
Jul  4 07:56:39 localhost kernel: [    0.008023] e820: update [mem 0x88bbf000-0x88bbffff] usable ==> reserved
Jul  4 07:56:39 localhost kernel: [    0.008033] e820: update [mem 0x88bac000-0x88bacfff] usable ==> reserved
Jul  4 07:56:39 localhost kernel: [    0.008049] Using GB pages for direct mapping
Jul  4 07:56:39 localhost kernel: [    0.008652] secureboot: Secure boot disabled
Jul  4 07:56:39 localhost systemd[1]: Starting Apply Kernel Variables...
Jul  4 07:56:39 localhost kernel: [    0.008653] RAMDISK: [mem 0x1c6ad000-0x1fae1fff]
Jul  4 07:56:39 localhost kernel: [    0.008657] ACPI: Early table checksum verification disabled
Jul  4 07:56:39 localhost kernel: [    0.008660] ACPI: RSDP 0x000000008C7DE000 000024 (v02 ALASKA)
Jul  4 07:56:39 localhost kernel: [    0.008663] ACPI: XSDT 0x000000008C7DE0A8 0000CC (v01 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008668] ACPI: FACP 0x000000008C81D1B0 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008673] ACPI: DSDT 0x000000008C7DE208 03EFA1 (v02 ALASKA A M I    01072009 INTL 20160527)
Jul  4 07:56:39 localhost systemd[1]: Mounted FUSE Control File System.
Jul  4 07:56:39 localhost kernel: [    0.008676] ACPI: FACS 0x000000008C86D080 000040
Jul  4 07:56:39 localhost kernel: [    0.008679] ACPI: APIC 0x000000008C81D2C8 000084 (v04 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008682] ACPI: FPDT 0x000000008C81D350 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008684] ACPI: FIDT 0x000000008C81D398 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008687] ACPI: MCFG 0x000000008C81D438 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
Jul  4 07:56:39 localhost systemd[1]: Mounted Kernel Configuration File System.
Jul  4 07:56:39 localhost systemd-sysctl[324]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jul  4 07:56:39 localhost systemd-sysctl[324]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jul  4 07:56:39 localhost systemd[1]: Finished Apply Kernel Variables.
Jul  4 07:56:39 localhost systemd-udevd[305]: Using default interface naming scheme 'v245'.
Jul  4 07:56:39 localhost systemd-udevd[305]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jul  4 07:56:39 localhost mtp-probe: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8"
Jul  4 07:56:39 localhost mtp-probe: bus: 1, device: 3 was not an MTP device
Jul  4 07:56:39 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jul  4 07:56:39 localhost systemd-udevd[311]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jul  4 07:56:39 localhost systemd[1]: Starting Load/Save RF Kill Switch Status...
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped.
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped.
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008690] ACPI: SSDT 0x000000008C81D478 001B5F (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.008693] ACPI: SSDT 0x000000008C81EFD8 0031C6 (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008696] ACPI: HPET 0x000000008C8221A0 000038 (v01 ALASKA A M I    00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008699] ACPI: SSDT 0x000000008C8221D8 000FAE (v02 ALASKA Ther_Rvp 00001000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.008702] ACPI: SSDT 0x000000008C823188 002FCE (v02 INTEL  xh_cfsd4 00000000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.008705] ACPI: UEFI 0x000000008C826158 000042 (v01 ALASKA A M I    00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008708] ACPI: LPIT 0x000000008C8261A0 000094 (v01 ALASKA A M I    00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008711] ACPI: SSDT 0x000000008C826238 0027DE (v02 ALASKA PtidDevc 00001000 INTL 20160527)
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008714] ACPI: SSDT 0x000000008C828A18 0014E2 (v02 ALASKA TbtTypeC 00000000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.008716] ACPI: DBGP 0x000000008C829F00 000034 (v01 ALASKA A M I    00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008719] ACPI: DBG2 0x000000008C829F38 000054 (v00 ALASKA A M I    00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008722] ACPI: SSDT 0x000000008C829F90 001B67 (v02 ALASKA UsbCTabl 00001000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.008725] ACPI: DMAR 0x000000008C82BAF8 0000A8 (v01 INTEL  EDK2     00000002      01000013)
Jul  4 07:56:39 localhost kernel: [    0.008728] ACPI: SSDT 0x000000008C82BBA0 000144 (v02 Intel  ADebTabl 00001000 INTL 20160527)
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008731] ACPI: BGRT 0x000000008C82BCE8 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008734] ACPI: WSMT 0x000000008C82BD20 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
Jul  4 07:56:39 localhost kernel: [    0.008736] ACPI: Reserving FACP table memory at [mem 0x8c81d1b0-0x8c81d2c3]
Jul  4 07:56:39 localhost kernel: [    0.008738] ACPI: Reserving DSDT table memory at [mem 0x8c7de208-0x8c81d1a8]
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008739] ACPI: Reserving FACS table memory at [mem 0x8c86d080-0x8c86d0bf]
Jul  4 07:56:39 localhost kernel: [    0.008740] ACPI: Reserving APIC table memory at [mem 0x8c81d2c8-0x8c81d34b]
Jul  4 07:56:39 localhost kernel: [    0.008740] ACPI: Reserving FPDT table memory at [mem 0x8c81d350-0x8c81d393]
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008741] ACPI: Reserving FIDT table memory at [mem 0x8c81d398-0x8c81d433]
Jul  4 07:56:39 localhost kernel: [    0.008742] ACPI: Reserving MCFG table memory at [mem 0x8c81d438-0x8c81d473]
Jul  4 07:56:39 localhost kernel: [    0.008743] ACPI: Reserving SSDT table memory at [mem 0x8c81d478-0x8c81efd6]
Jul  4 07:56:39 localhost kernel: [    0.008744] ACPI: Reserving SSDT table memory at [mem 0x8c81efd8-0x8c82219d]
Jul  4 07:56:39 localhost kernel: [    0.008745] ACPI: Reserving HPET table memory at [mem 0x8c8221a0-0x8c8221d7]
Jul  4 07:56:39 localhost kernel: [    0.008746] ACPI: Reserving SSDT table memory at [mem 0x8c8221d8-0x8c823185]
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008747] ACPI: Reserving SSDT table memory at [mem 0x8c823188-0x8c826155]
Jul  4 07:56:39 localhost kernel: [    0.008748] ACPI: Reserving UEFI table memory at [mem 0x8c826158-0x8c826199]
Jul  4 07:56:39 localhost kernel: [    0.008749] ACPI: Reserving LPIT table memory at [mem 0x8c8261a0-0x8c826233]
Jul  4 07:56:39 localhost kernel: [    0.008750] ACPI: Reserving SSDT table memory at [mem 0x8c826238-0x8c828a15]
Jul  4 07:56:39 localhost kernel: [    0.008751] ACPI: Reserving SSDT table memory at [mem 0x8c828a18-0x8c829ef9]
Jul  4 07:56:39 localhost kernel: [    0.008751] ACPI: Reserving DBGP table memory at [mem 0x8c829f00-0x8c829f33]
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008752] ACPI: Reserving DBG2 table memory at [mem 0x8c829f38-0x8c829f8b]
Jul  4 07:56:39 localhost kernel: [    0.008753] ACPI: Reserving SSDT table memory at [mem 0x8c829f90-0x8c82baf6]
Jul  4 07:56:39 localhost kernel: [    0.008754] ACPI: Reserving DMAR table memory at [mem 0x8c82baf8-0x8c82bb9f]
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jul  4 07:56:39 localhost kernel: [    0.008755] ACPI: Reserving SSDT table memory at [mem 0x8c82bba0-0x8c82bce3]
Jul  4 07:56:39 localhost kernel: [    0.008756] ACPI: Reserving BGRT table memory at [mem 0x8c82bce8-0x8c82bd1f]
Jul  4 07:56:39 localhost kernel: [    0.008757] ACPI: Reserving WSMT table memory at [mem 0x8c82bd20-0x8c82bd47]
Jul  4 07:56:39 localhost kernel: [    0.009008] No NUMA configuration found
Jul  4 07:56:39 localhost kernel: [    0.009009] Faking a node at [mem 0x0000000000000000-0x000000016dffffff]
Jul  4 07:56:39 localhost kernel: [    0.009017] NODE_DATA(0) allocated [mem 0x16dfd6000-0x16dffffff]
Jul  4 07:56:39 localhost kernel: [    0.009292] Zone ranges:
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jul  4 07:56:39 localhost kernel: [    0.009292]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jul  4 07:56:39 localhost kernel: [    0.009294]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jul  4 07:56:39 localhost kernel: [    0.009296]   Normal   [mem 0x0000000100000000-0x000000016dffffff]
Jul  4 07:56:39 localhost systemd[1]: Found device CT250P2SSD8 1.
Jul  4 07:56:39 localhost kernel: [    0.009297]   Device   empty
Jul  4 07:56:39 localhost kernel: [    0.009298] Movable zone start for each node
Jul  4 07:56:39 localhost kernel: [    0.009301] Early memory node ranges
Jul  4 07:56:39 localhost kernel: [    0.009302]   node   0: [mem 0x0000000000001000-0x000000000005efff]
Jul  4 07:56:39 localhost kernel: [    0.009303]   node   0: [mem 0x0000000000060000-0x000000000009ffff]
Jul  4 07:56:39 localhost kernel: [    0.009304]   node   0: [mem 0x0000000000100000-0x000000003fffffff]
Jul  4 07:56:39 localhost systemd[1]: Started Load/Save RF Kill Switch Status.
Jul  4 07:56:39 localhost kernel: [    0.009305]   node   0: [mem 0x0000000040400000-0x00000000834a2fff]
Jul  4 07:56:39 localhost kernel: [    0.009306]   node   0: [mem 0x00000000834a5000-0x0000000089fa4fff]
Jul  4 07:56:39 localhost systemd[1]: Starting File System Check on /dev/disk/by-uuid/FA0A-A701...
Jul  4 07:56:39 localhost kernel: [    0.009307]   node   0: [mem 0x000000008c32a000-0x000000008c4cafff]
Jul  4 07:56:39 localhost kernel: [    0.009308]   node   0: [mem 0x000000008ceff000-0x000000008cefffff]
Jul  4 07:56:39 localhost kernel: [    0.009309]   node   0: [mem 0x0000000100000000-0x000000016dffffff]
Jul  4 07:56:39 localhost kernel: [    0.009310] Initmem setup node 0 [mem 0x0000000000001000-0x000000016dffffff]
Jul  4 07:56:39 localhost kernel: [    0.009313] On node 0, zone DMA: 1 pages in unavailable ranges
Jul  4 07:56:39 localhost systemd[1]: Started File System Check Daemon to report status.
Jul  4 07:56:39 localhost kernel: [    0.009315] On node 0, zone DMA: 1 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.009333] On node 0, zone DMA: 96 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.013874] On node 0, zone DMA32: 1024 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.014117] On node 0, zone DMA32: 2 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.014209] On node 0, zone DMA32: 9093 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.014237] On node 0, zone DMA32: 2612 pages in unavailable ranges
Jul  4 07:56:39 localhost systemd-udevd[302]: Using default interface naming scheme 'v245'.
Jul  4 07:56:39 localhost kernel: [    0.018488] On node 0, zone Normal: 12544 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.018566] On node 0, zone Normal: 8192 pages in unavailable ranges
Jul  4 07:56:39 localhost kernel: [    0.018580] Reserving Intel graphics memory at [mem 0x8e000000-0x8fffffff]
Jul  4 07:56:39 localhost kernel: [    0.018889] ACPI: PM-Timer IO Port: 0x1808
Jul  4 07:56:39 localhost kernel: [    0.018894] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jul  4 07:56:39 localhost kernel: [    0.018896] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jul  4 07:56:39 localhost kernel: [    0.018896] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jul  4 07:56:39 localhost systemd-udevd[302]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jul  4 07:56:39 localhost kernel: [    0.018897] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jul  4 07:56:39 localhost kernel: [    0.018954] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Jul  4 07:56:39 localhost kernel: [    0.018956] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jul  4 07:56:39 localhost kernel: [    0.018958] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jul  4 07:56:39 localhost kernel: [    0.018961] ACPI: Using ACPI (MADT) for SMP configuration information
Jul  4 07:56:39 localhost kernel: [    0.018962] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jul  4 07:56:39 localhost systemd-fsck[424]: fsck.fat 4.1 (2017-01-24)
Jul  4 07:56:39 localhost kernel: [    0.018968] e820: update [mem 0x855f0000-0x85bdefff] usable ==> reserved
Jul  4 07:56:39 localhost kernel: [    0.018977] TSC deadline timer available
Jul  4 07:56:39 localhost kernel: [    0.018978] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Jul  4 07:56:39 localhost kernel: [    0.018997] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jul  4 07:56:39 localhost kernel: [    0.018999] PM: hibernation: Registered nosave memory: [mem 0x0005f000-0x0005ffff]
Jul  4 07:56:39 localhost kernel: [    0.019001] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jul  4 07:56:39 localhost kernel: [    0.019002] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
Jul  4 07:56:39 localhost systemd-fsck[424]: /dev/nvme0n1p1: 12 files, 12509/516190 clusters
Jul  4 07:56:39 localhost kernel: [    0.019004] PM: hibernation: Registered nosave memory: [mem 0x81697000-0x81697fff]
Jul  4 07:56:39 localhost kernel: [    0.019006] PM: hibernation: Registered nosave memory: [mem 0x816a7000-0x816a7fff]
Jul  4 07:56:39 localhost kernel: [    0.019007] PM: hibernation: Registered nosave memory: [mem 0x834a3000-0x834a3fff]
Jul  4 07:56:39 localhost kernel: [    0.019008] PM: hibernation: Registered nosave memory: [mem 0x834a4000-0x834a4fff]
Jul  4 07:56:39 localhost kernel: [    0.019010] PM: hibernation: Registered nosave memory: [mem 0x855f0000-0x85bdefff]
Jul  4 07:56:39 localhost kernel: [    0.019011] PM: hibernation: Registered nosave memory: [mem 0x88bac000-0x88bacfff]
Jul  4 07:56:39 localhost systemd[1]: Finished File System Check on /dev/disk/by-uuid/FA0A-A701.
Jul  4 07:56:39 localhost kernel: [    0.019013] PM: hibernation: Registered nosave memory: [mem 0x88bbf000-0x88bbffff]
Jul  4 07:56:39 localhost kernel: [    0.019015] PM: hibernation: Registered nosave memory: [mem 0x89fa5000-0x8c329fff]
Jul  4 07:56:39 localhost kernel: [    0.019016] PM: hibernation: Registered nosave memory: [mem 0x8c4cb000-0x8c86dfff]
Jul  4 07:56:39 localhost kernel: [    0.019017] PM: hibernation: Registered nosave memory: [mem 0x8c86e000-0x8cefefff]
Jul  4 07:56:39 localhost kernel: [    0.019019] PM: hibernation: Registered nosave memory: [mem 0x8cf00000-0x8fffffff]
Jul  4 07:56:39 localhost systemd[1]: Mounting /boot/efi...
Jul  4 07:56:39 localhost kernel: [    0.019020] PM: hibernation: Registered nosave memory: [mem 0x90000000-0xdfffffff]
Jul  4 07:56:39 localhost kernel: [    0.019020] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jul  4 07:56:39 localhost kernel: [    0.019021] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
Jul  4 07:56:39 localhost kernel: [    0.019022] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Jul  4 07:56:39 localhost systemd[1]: Mounted /boot/efi.
Jul  4 07:56:39 localhost systemd[1]: Reached target Local File Systems.
Jul  4 07:56:39 localhost systemd[1]: Starting Load AppArmor profiles...
Jul  4 07:56:39 localhost systemd[1]: Starting Enable support for additional executable binary formats...
Jul  4 07:56:39 localhost systemd[1]: Starting Set console font and keymap...
Jul  4 07:56:39 localhost systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jul  4 07:56:39 localhost systemd[1]: Starting Create Volatile Files and Directories...
Jul  4 07:56:39 localhost systemd[1]: Finished Set console font and keymap.
Jul  4 07:56:39 localhost systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 429 (update-binfmts)
Jul  4 07:56:39 localhost systemd[1]: Mounting Arbitrary Executable File Formats File System...
Jul  4 07:56:39 localhost apparmor.systemd[428]: Restarting AppArmor
Jul  4 07:56:39 localhost apparmor.systemd[428]: Reloading AppArmor profiles
Jul  4 07:56:39 localhost systemd-udevd[320]: Using default interface naming scheme 'v245'.
Jul  4 07:56:39 localhost kernel: [    0.019022] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Jul  4 07:56:39 localhost kernel: [    0.019023] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jul  4 07:56:39 localhost kernel: [    0.019024] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Jul  4 07:56:39 localhost kernel: [    0.019024] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jul  4 07:56:39 localhost systemd-udevd[320]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jul  4 07:56:39 localhost systemd[1]: plymouth-read-write.service: Succeeded.
Jul  4 07:56:39 localhost kernel: [    0.019025] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Jul  4 07:56:39 localhost kernel: [    0.019026] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Jul  4 07:56:39 localhost kernel: [    0.019027] [mem 0x90000000-0xdfffffff] available for PCI devices
Jul  4 07:56:39 localhost kernel: [    0.019028] Booting paravirtualized kernel on bare hardware
Jul  4 07:56:39 localhost kernel: [    0.019031] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jul  4 07:56:39 localhost systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jul  4 07:56:39 localhost kernel: [    0.019037] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Jul  4 07:56:39 localhost systemd[1]: Finished Create Volatile Files and Directories.
Jul  4 07:56:39 localhost kernel: [    0.019204] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
Jul  4 07:56:39 localhost kernel: [    0.019211] pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
Jul  4 07:56:39 localhost kernel: [    0.019213] pcpu-alloc: [0] 0 1 2 3 
Jul  4 07:56:39 localhost kernel: [    0.019239] Built 1 zonelists, mobility grouping on.  Total pages: 998991
Jul  4 07:56:39 localhost kernel: [    0.019241] Policy zone: Normal
Jul  4 07:56:39 localhost kernel: [    0.019242] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.14.0-1042-oem root=UUID=3f101ab2-1e83-478a-a6de-50083471a7a3 ro quiet splash, pci=noaer
Jul  4 07:56:39 localhost systemd[1]: Starting Network Name Resolution...
Jul  4 07:56:39 localhost kernel: [    0.019324] Unknown command line parameters: splash, BOOT_IMAGE=/boot/vmlinuz-5.14.0-1042-oem
Jul  4 07:56:39 localhost kernel: [    0.019537] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.019649] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.019691] mem auto-init: stack:off, heap alloc:on, heap free:off
Jul  4 07:56:39 localhost kernel: [    0.034338] Memory: 3776764K/4060044K available (16393K kernel code, 3521K rwdata, 5520K rodata, 2932K init, 5684K bss, 283020K reserved, 0K cma-reserved)
Jul  4 07:56:39 localhost kernel: [    0.034344] random: get_random_u64 called from __kmem_cache_create+0x2d/0x450 with crng_init=1
Jul  4 07:56:39 localhost apparmor.systemd[451]: Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
Jul  4 07:56:39 localhost kernel: [    0.034465] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jul  4 07:56:39 localhost systemd[1]: Starting Network Time Synchronization...
Jul  4 07:56:39 localhost kernel: [    0.034479] Kernel/User page tables isolation: enabled
Jul  4 07:56:39 localhost kernel: [    0.034495] ftrace: allocating 49608 entries in 194 pages
Jul  4 07:56:39 localhost kernel: [    0.048996] ftrace: allocated 194 pages with 3 groups
Jul  4 07:56:39 localhost kernel: [    0.049083] rcu: Hierarchical RCU implementation.
Jul  4 07:56:39 localhost kernel: [    0.049084] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
Jul  4 07:56:39 localhost kernel: [    0.049085] 	Rude variant of Tasks RCU enabled.
Jul  4 07:56:39 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Jul  4 07:56:39 localhost kernel: [    0.049085] 	Tracing variant of Tasks RCU enabled.
Jul  4 07:56:39 localhost kernel: [    0.049086] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Jul  4 07:56:39 localhost kernel: [    0.049087] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jul  4 07:56:39 localhost systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Jul  4 07:56:39 localhost kernel: [    0.052707] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
Jul  4 07:56:39 localhost kernel: [    0.053284] random: crng done (trusting CPU's manufacturer)
Jul  4 07:56:39 localhost kernel: [    0.053308] Console: colour dummy device 80x25
Jul  4 07:56:39 localhost systemd[1]: Mounted Arbitrary Executable File Formats File System.
Jul  4 07:56:39 localhost kernel: [    0.053323] printk: console [tty0] enabled
Jul  4 07:56:39 localhost kernel: [    0.053341] ACPI: Core revision 20210604
Jul  4 07:56:39 localhost kernel: [    0.053732] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jul  4 07:56:39 localhost kernel: [    0.053867] APIC: Switch to symmetric I/O mode setup
Jul  4 07:56:39 localhost kernel: [    0.053869] DMAR: Host address width 39
Jul  4 07:56:39 localhost kernel: [    0.053870] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jul  4 07:56:39 localhost systemd[1]: Finished Enable support for additional executable binary formats.
Jul  4 07:56:39 localhost kernel: [    0.053874] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
Jul  4 07:56:39 localhost kernel: [    0.053876] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jul  4 07:56:39 localhost kernel: [    0.053879] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Jul  4 07:56:39 localhost kernel: [    0.053881] DMAR: RMRR base: 0x0000008ca49000 end: 0x0000008cc92fff
Jul  4 07:56:39 localhost kernel: [    0.053882] DMAR: RMRR base: 0x0000008d800000 end: 0x0000008fffffff
Jul  4 07:56:39 localhost kernel: [    0.053884] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Jul  4 07:56:39 localhost kernel: [    0.053885] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jul  4 07:56:39 localhost apparmor.systemd[466]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Jul  4 07:56:39 localhost kernel: [    0.053886] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jul  4 07:56:39 localhost systemd[1]: Started Network Time Synchronization.
Jul  4 07:56:39 localhost kernel: [    0.056851] DMAR-IR: Enabled IRQ remapping in x2apic mode
Jul  4 07:56:39 localhost kernel: [    0.056853] x2apic enabled
Jul  4 07:56:39 localhost kernel: [    0.056877] Switched APIC routing to cluster x2apic.
Jul  4 07:56:39 localhost kernel: [    0.064315] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jul  4 07:56:39 localhost kernel: [    0.081776] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2caf46e03c8, max_idle_ns: 440795329092 ns
Jul  4 07:56:39 localhost systemd[1]: Reached target System Time Set.
Jul  4 07:56:39 localhost kernel: [    0.081782] Calibrating delay loop (skipped), value calculated using timer frequency.. 6199.99 BogoMIPS (lpj=12399996)
Jul  4 07:56:39 localhost kernel: [    0.081784] pid_max: default: 32768 minimum: 301
Jul  4 07:56:39 localhost kernel: [    0.083639] LSM: Security Framework initializing
Jul  4 07:56:39 localhost systemd[1]: Reached target System Time Synchronized.
Jul  4 07:56:39 localhost kernel: [    0.083649] Yama: becoming mindful.
Jul  4 07:56:39 localhost kernel: [    0.083669] AppArmor: AppArmor initialized
Jul  4 07:56:39 localhost kernel: [    0.083707] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jul  4 07:56:39 localhost systemd-resolved[447]: Positive Trust Anchors:
Jul  4 07:56:39 localhost kernel: [    0.083716] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.083922] x86/cpu: SGX disabled by BIOS.
Jul  4 07:56:39 localhost kernel: [    0.083929] CPU0: Thermal monitoring enabled (TM1)
Jul  4 07:56:39 localhost kernel: [    0.083979] process: using mwait in idle threads
Jul  4 07:56:39 localhost kernel: [    0.083980] Last level iTLB entries: 4KB 128, 2MB 8, 4MB 8
Jul  4 07:56:39 localhost kernel: [    0.083983] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jul  4 07:56:39 localhost systemd-resolved[447]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jul  4 07:56:39 localhost kernel: [    0.083994] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jul  4 07:56:39 localhost kernel: [    0.083996] Spectre V2 : Mitigation: Retpolines
Jul  4 07:56:39 localhost kernel: [    0.083997] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jul  4 07:56:39 localhost kernel: [    0.083997] Spectre V2 : Enabling Restricted Speculation for firmware calls
Jul  4 07:56:39 localhost kernel: [    0.083998] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jul  4 07:56:39 localhost kernel: [    0.083999] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jul  4 07:56:39 localhost kernel: [    0.084004] SRBDS: Mitigation: Microcode
Jul  4 07:56:39 localhost kernel: [    0.084005] MDS: Mitigation: Clear CPU buffers
Jul  4 07:56:39 localhost kernel: [    0.088215] Freeing SMP alternatives memory: 40K
Jul  4 07:56:39 localhost kernel: [    0.088761] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1024
Jul  4 07:56:39 localhost kernel: [    0.088779] smpboot: CPU0: Intel(R) Core(TM) i3-8100T CPU @ 3.10GHz (family: 0x6, model: 0x9e, stepping: 0xb)
Jul  4 07:56:39 localhost kernel: [    0.088907] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jul  4 07:56:39 localhost systemd-resolved[447]: Negative trust anchors: 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 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Jul  4 07:56:39 localhost kernel: [    0.088917] ... version:                4
Jul  4 07:56:39 localhost kernel: [    0.088917] ... bit width:              48
Jul  4 07:56:39 localhost kernel: [    0.088918] ... generic registers:      8
Jul  4 07:56:39 localhost kernel: [    0.088919] ... value mask:             0000ffffffffffff
Jul  4 07:56:39 localhost systemd[1]: Finished Load AppArmor profiles.
Jul  4 07:56:39 localhost kernel: [    0.088920] ... max period:             00007fffffffffff
Jul  4 07:56:39 localhost kernel: [    0.088920] ... fixed-purpose events:   3
Jul  4 07:56:39 localhost kernel: [    0.088921] ... event mask:             00000007000000ff
Jul  4 07:56:39 localhost systemd[1]: Starting Raise network interfaces...
Jul  4 07:56:39 localhost kernel: [    0.089026] rcu: Hierarchical SRCU implementation.
Jul  4 07:56:39 localhost kernel: [    0.089608] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jul  4 07:56:39 localhost kernel: [    0.089643] smp: Bringing up secondary CPUs ...
Jul  4 07:56:39 localhost kernel: [    0.089717] x86: Booting SMP configuration:
Jul  4 07:56:39 localhost kernel: [    0.089718] .... node  #0, CPUs:      #1 #2 #3
Jul  4 07:56:39 localhost systemd[1]: Starting Load AppArmor profiles managed internally by snapd...
Jul  4 07:56:39 localhost kernel: [    0.091643] smp: Brought up 1 node, 4 CPUs
Jul  4 07:56:39 localhost kernel: [    0.091643] smpboot: Max logical packages: 1
Jul  4 07:56:39 localhost systemd-resolved[447]: Using system hostname 'MY_USER-poiss'.
Jul  4 07:56:39 localhost kernel: [    0.091643] smpboot: Total of 4 processors activated (24799.99 BogoMIPS)
Jul  4 07:56:39 localhost kernel: [    0.093916] devtmpfs: initialized
Jul  4 07:56:39 localhost kernel: [    0.093916] x86/mm: Memory block size: 128MB
Jul  4 07:56:39 localhost kernel: [    0.094111] ACPI: PM: Registering ACPI NVS region [mem 0x834a3000-0x834a3fff] (4096 bytes)
Jul  4 07:56:39 localhost kernel: [    0.094111] ACPI: PM: Registering ACPI NVS region [mem 0x8c4cb000-0x8c86dfff] (3813376 bytes)
Jul  4 07:56:39 localhost kernel: [    0.094111] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jul  4 07:56:39 localhost systemd[1]: Started Network Name Resolution.
Jul  4 07:56:39 localhost kernel: [    0.094111] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.094111] pinctrl core: initialized pinctrl subsystem
Jul  4 07:56:39 localhost kernel: [    0.094195] PM: RTC time: 05:56:36, date: 2022-07-04
Jul  4 07:56:39 localhost kernel: [    0.094302] NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jul  4 07:56:39 localhost kernel: [    0.094405] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
Jul  4 07:56:39 localhost kernel: [    0.094432] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jul  4 07:56:39 localhost systemd[1]: Reached target Host and Network Name Lookups.
Jul  4 07:56:39 localhost kernel: [    0.094461] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jul  4 07:56:39 localhost kernel: [    0.094465] audit: initializing netlink subsys (disabled)
Jul  4 07:56:39 localhost snapd-apparmor[477]: find: ‘/var/lib/snapd/apparmor/profiles/’: Aucun fichier ou dossier de ce type
Jul  4 07:56:39 localhost kernel: [    0.094471] audit: type=2000 audit(1656914196.036:1): state=initialized audit_enabled=0 res=1
Jul  4 07:56:39 localhost kernel: [    0.094471] thermal_sys: Registered thermal governor 'fair_share'
Jul  4 07:56:39 localhost systemd[1]: Finished Load AppArmor profiles managed internally by snapd.
Jul  4 07:56:39 localhost systemd[1]: Reached target System Initialization.
Jul  4 07:56:39 localhost systemd[1]: Started ACPI Events Check.
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Process error reports when automatic reporting is enabled (file watch) being skipped.
Jul  4 07:56:39 localhost systemd[1]: Started CUPS Scheduler.
Jul  4 07:56:39 localhost systemd[1]: Started Trigger to poll for Ubuntu Pro licenses (Only enabled on GCP LTS non-pro).
Jul  4 07:56:39 localhost systemd[1]: Started Trigger anacron every hour.
Jul  4 07:56:39 localhost systemd[1]: Started Daily apt download activities.
Jul  4 07:56:39 localhost systemd[1]: Started Daily apt upgrade and clean activities.
Jul  4 07:56:39 localhost systemd[1]: Started Periodic ext4 Online Metadata Check for All Filesystems.
Jul  4 07:56:39 localhost systemd[1]: Started Discard unused blocks once a week.
Jul  4 07:56:39 localhost systemd[1]: Started Refresh fwupd metadata regularly.
Jul  4 07:56:39 localhost systemd[1]: Started Daily rotation of log files.
Jul  4 07:56:39 localhost systemd[1]: Started Daily man-db regeneration.
Jul  4 07:56:39 localhost systemd[1]: Started Message of the Day.
Jul  4 07:56:39 localhost systemd[1]: Started Clean PHP session files every 30 mins.
Jul  4 07:56:39 localhost kernel: [    0.094471] thermal_sys: Registered thermal governor 'bang_bang'
Jul  4 07:56:39 localhost kernel: [    0.094471] thermal_sys: Registered thermal governor 'step_wise'
Jul  4 07:56:39 localhost kernel: [    0.094471] thermal_sys: Registered thermal governor 'user_space'
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Timer to automatically fetch and run repair assertions being skipped.
Jul  4 07:56:39 localhost kernel: [    0.094471] thermal_sys: Registered thermal governor 'power_allocator'
Jul  4 07:56:39 localhost kernel: [    0.094471] EISA bus registered
Jul  4 07:56:39 localhost kernel: [    0.094471] cpuidle: using governor ladder
Jul  4 07:56:39 localhost kernel: [    0.094471] cpuidle: using governor menu
Jul  4 07:56:39 localhost kernel: [    0.094471] ACPI: bus type PCI registered
Jul  4 07:56:39 localhost kernel: [    0.094471] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jul  4 07:56:39 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
Jul  4 07:56:39 localhost kernel: [    0.094471] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jul  4 07:56:39 localhost kernel: [    0.094471] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jul  4 07:56:39 localhost kernel: [    0.094471] PCI: Using configuration type 1 for base access
Jul  4 07:56:39 localhost kernel: [    0.094471] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jul  4 07:56:39 localhost systemd[1]: Started Ubuntu Advantage Timer for running repeated jobs.
Jul  4 07:56:39 localhost kernel: [    0.094812] Kprobes globally optimized
Jul  4 07:56:39 localhost kernel: [    0.094816] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jul  4 07:56:39 localhost systemd[1]: Reached target Paths.
Jul  4 07:56:39 localhost kernel: [    0.094816] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jul  4 07:56:39 localhost kernel: [    0.094816] fbcon: Taking over console
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Module Device)
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Processor Device)
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(3.0 _SCP Extensions)
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Processor Aggregator Device)
Jul  4 07:56:39 localhost systemd[1]: Reached target Timers.
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Linux-Dell-Video)
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jul  4 07:56:39 localhost systemd[1]: Listening on ACPID Listen Socket.
Jul  4 07:56:39 localhost kernel: [    0.094816] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jul  4 07:56:39 localhost kernel: [    0.165410] ACPI: 9 ACPI AML tables successfully acquired and loaded
Jul  4 07:56:39 localhost kernel: [    0.172376] ACPI: Dynamic OEM Table Load:
Jul  4 07:56:39 localhost kernel: [    0.172388] ACPI: SSDT 0xFFFF905C8100CC00 0000F4 (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.173523] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Jul  4 07:56:39 localhost kernel: [    0.175338] ACPI: Dynamic OEM Table Load:
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Unix socket for apport crash forwarding being skipped.
Jul  4 07:56:39 localhost kernel: [    0.175344] ACPI: SSDT 0xFFFF905C80C70800 000626 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.177062] ACPI: Dynamic OEM Table Load:
Jul  4 07:56:39 localhost kernel: [    0.177067] ACPI: SSDT 0xFFFF905C80C77800 0005FC (v02 PmRef  ApIst    00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.178401] ACPI: Dynamic OEM Table Load:
Jul  4 07:56:39 localhost kernel: [    0.178406] ACPI: SSDT 0xFFFF905C80EAD800 000317 (v02 PmRef  ApHwp    00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.179757] ACPI: Dynamic OEM Table Load:
Jul  4 07:56:39 localhost kernel: [    0.179763] ACPI: SSDT 0xFFFF905C8120D000 000AB0 (v02 PmRef  ApPsd    00003000 INTL 20160527)
Jul  4 07:56:39 localhost kernel: [    0.184983] ACPI: Interpreter enabled
Jul  4 07:56:39 localhost kernel: [    0.185021] ACPI: PM: (supports S0 S3 S4 S5)
Jul  4 07:56:39 localhost kernel: [    0.185022] ACPI: Using IOAPIC for interrupt routing
Jul  4 07:56:39 localhost systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jul  4 07:56:39 localhost kernel: [    0.185059] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jul  4 07:56:39 localhost kernel: [    0.186410] ACPI: Enabled 9 GPEs in block 00 to 7F
Jul  4 07:56:39 localhost kernel: [    0.193786] ACPI: PM: Power Resource [WRST]
Jul  4 07:56:39 localhost systemd[1]: Listening on CUPS Scheduler.
Jul  4 07:56:39 localhost kernel: [    0.193806] ACPI: PM: Power Resource [DRST]
Jul  4 07:56:39 localhost kernel: [    0.199399] ACPI: PM: Power Resource [USBC]
Jul  4 07:56:39 localhost kernel: [    0.202577] ACPI: PM: Power Resource [V0PR]
Jul  4 07:56:39 localhost kernel: [    0.203026] ACPI: PM: Power Resource [V1PR]
Jul  4 07:56:39 localhost kernel: [    0.203464] ACPI: PM: Power Resource [V2PR]
Jul  4 07:56:39 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
Jul  4 07:56:39 localhost kernel: [    0.209688] ACPI: PM: Power Resource [WRST]
Jul  4 07:56:39 localhost kernel: [    0.212655] ACPI: PM: Power Resource [FN00]
Jul  4 07:56:39 localhost kernel: [    0.212729] ACPI: PM: Power Resource [FN01]
Jul  4 07:56:39 localhost kernel: [    0.212799] ACPI: PM: Power Resource [FN02]
Jul  4 07:56:39 localhost kernel: [    0.212871] ACPI: PM: Power Resource [FN03]
Jul  4 07:56:39 localhost systemd[1]: Starting Socket activation for snappy daemon.
Jul  4 07:56:39 localhost kernel: [    0.212942] ACPI: PM: Power Resource [FN04]
Jul  4 07:56:39 localhost systemd[1]: Listening on UUID daemon activation socket.
Jul  4 07:56:39 localhost kernel: [    0.213489] ACPI: PM: Power Resource [PIN]
Jul  4 07:56:39 localhost kernel: [    0.214029] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jul  4 07:56:39 localhost kernel: [    0.214036] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jul  4 07:56:39 localhost kernel: [    0.216381] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR]
Jul  4 07:56:39 localhost kernel: [    0.217471] PCI host bridge to bus 0000:00
Jul  4 07:56:39 localhost kernel: [    0.217476] pci_bus 0000:00: root bus resource [bus 00-fe]
Jul  4 07:56:39 localhost systemd[1]: Listening on Socket activation for snappy daemon.
Jul  4 07:56:39 localhost kernel: [    0.217478] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jul  4 07:56:39 localhost kernel: [    0.217480] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jul  4 07:56:39 localhost kernel: [    0.217481] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jul  4 07:56:39 localhost kernel: [    0.217482] pci_bus 0000:00: root bus resource [mem 0x90000000-0xdfffffff window]
Jul  4 07:56:39 localhost systemd[1]: Reached target Sockets.
Jul  4 07:56:39 localhost kernel: [    0.217484] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
Jul  4 07:56:39 localhost kernel: [    0.217501] pci 0000:00:00.0: [8086:3e1f] type 00 class 0x060000
Jul  4 07:56:39 localhost kernel: [    0.217692] pci 0000:00:02.0: [8086:3e91] type 00 class 0x030000
Jul  4 07:56:39 localhost systemd[1]: Reached target Basic System.
Jul  4 07:56:39 localhost kernel: [    0.217700] pci 0000:00:02.0: reg 0x10: [mem 0xa0000000-0xa0ffffff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.217705] pci 0000:00:02.0: reg 0x18: [mem 0x90000000-0x9fffffff 64bit pref]
Jul  4 07:56:39 localhost kernel: [    0.217709] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
Jul  4 07:56:39 localhost systemd[1]: Starting Accounts Service...
Jul  4 07:56:39 localhost kernel: [    0.217722] pci 0000:00:02.0: BAR 2: assigned to efifb
Jul  4 07:56:39 localhost kernel: [    0.217725] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jul  4 07:56:39 localhost kernel: [    0.217945] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
Jul  4 07:56:39 localhost systemd[1]: Started ACPI event daemon.
Jul  4 07:56:39 localhost kernel: [    0.217953] pci 0000:00:08.0: reg 0x10: [mem 0xa141f000-0xa141ffff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.218122] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000
Jul  4 07:56:39 localhost kernel: [    0.218139] pci 0000:00:12.0: reg 0x10: [mem 0xa141e000-0xa141efff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.218343] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330
Jul  4 07:56:39 localhost kernel: [    0.218359] pci 0000:00:14.0: reg 0x10: [mem 0xa1400000-0xa140ffff 64bit]
Jul  4 07:56:39 localhost systemd[1]: Started Run anacron jobs.
Jul  4 07:56:39 localhost kernel: [    0.218420] pci 0000:00:14.0: PME# supported from D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.220042] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000
Jul  4 07:56:39 localhost systemd[1]: Starting LSB: automatic crash report generation...
Jul  4 07:56:39 localhost kernel: [    0.220060] pci 0000:00:14.2: reg 0x10: [mem 0xa1416000-0xa1417fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.220071] pci 0000:00:14.2: reg 0x18: [mem 0xa141d000-0xa141dfff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.220324] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000
Jul  4 07:56:39 localhost kernel: [    0.220413] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.221061] pci 0000:00:15.1: [8086:a369] type 00 class 0x0c8000
Jul  4 07:56:39 localhost kernel: [    0.221150] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Jul  4 07:56:39 localhost systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jul  4 07:56:39 localhost kernel: [    0.221749] pci 0000:00:17.0: [8086:a352] type 00 class 0x010601
Jul  4 07:56:39 localhost kernel: [    0.221764] pci 0000:00:17.0: reg 0x10: [mem 0xa1414000-0xa1415fff]
Jul  4 07:56:39 localhost kernel: [    0.221772] pci 0000:00:17.0: reg 0x14: [mem 0xa141a000-0xa141a0ff]
Jul  4 07:56:39 localhost kernel: [    0.221782] pci 0000:00:17.0: reg 0x18: [io  0x4090-0x4097]
Jul  4 07:56:39 localhost systemd[1]: Starting Bluetooth management mechanism...
Jul  4 07:56:39 localhost systemd[1]: Starting Bluetooth service...
Jul  4 07:56:39 localhost anacron[497]: Anacron 2.3 started on 2022-07-04
Jul  4 07:56:39 localhost kernel: [    0.221791] pci 0000:00:17.0: reg 0x1c: [io  0x4080-0x4083]
Jul  4 07:56:39 localhost kernel: [    0.221799] pci 0000:00:17.0: reg 0x20: [io  0x4060-0x407f]
Jul  4 07:56:39 localhost systemd[1]: Started Regular background program processing daemon.
Jul  4 07:56:39 localhost kernel: [    0.221808] pci 0000:00:17.0: reg 0x24: [mem 0xa1419000-0xa14197ff]
Jul  4 07:56:39 localhost kernel: [    0.221850] pci 0000:00:17.0: PME# supported from D3hot
Jul  4 07:56:39 localhost kernel: [    0.222244] pci 0000:00:1c.0: [8086:a33c] type 01 class 0x060400
Jul  4 07:56:39 localhost kernel: [    0.222329] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.222354] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
Jul  4 07:56:39 localhost cron[502]: (CRON) INFO (pidfile fd = 3)
Jul  4 07:56:39 localhost kernel: [    0.223045] pci 0000:00:1d.0: [8086:a332] type 01 class 0x060400
Jul  4 07:56:39 localhost kernel: [    0.223130] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.223155] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
Jul  4 07:56:39 localhost kernel: [    0.223807] pci 0000:00:1d.3: [8086:a333] type 01 class 0x060400
Jul  4 07:56:39 localhost kernel: [    0.223892] pci 0000:00:1d.3: PME# supported from D0 D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.223916] pci 0000:00:1d.3: PTM enabled (root), 4ns granularity
Jul  4 07:56:39 localhost systemd[1]: Started CUPS Scheduler.
Jul  4 07:56:39 localhost kernel: [    0.224588] pci 0000:00:1f.0: [8086:a303] type 00 class 0x060100
Jul  4 07:56:39 localhost kernel: [    0.225073] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300
Jul  4 07:56:39 localhost kernel: [    0.225115] pci 0000:00:1f.3: reg 0x10: [mem 0xa1410000-0xa1413fff 64bit]
Jul  4 07:56:39 localhost anacron[497]: Normal exit (0 jobs run)
Jul  4 07:56:39 localhost kernel: [    0.225170] pci 0000:00:1f.3: reg 0x20: [mem 0xa1000000-0xa10fffff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.225289] pci 0000:00:1f.3: PME# supported from D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.228484] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500
Jul  4 07:56:39 localhost kernel: [    0.228509] pci 0000:00:1f.4: reg 0x10: [mem 0xa1418000-0xa14180ff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.228539] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Jul  4 07:56:39 localhost systemd[1]: Reached target Printer.
Jul  4 07:56:39 localhost kernel: [    0.228839] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000
Jul  4 07:56:39 localhost kernel: [    0.228855] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Jul  4 07:56:39 localhost kernel: [    0.229119] pci 0000:01:00.0: [c0a9:540a] type 00 class 0x010802
Jul  4 07:56:39 localhost systemd[1]: Started D-Bus System Message Bus.
Jul  4 07:56:39 localhost kernel: [    0.229144] pci 0000:01:00.0: reg 0x10: [mem 0xa1300000-0xa1303fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.229332] pci 0000:01:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x4 link at 0000:00:1c.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Jul  4 07:56:39 localhost systemd[1]: Starting Network Manager...
Jul  4 07:56:39 localhost systemd[1]: Started Save initial kernel messages after boot.
Jul  4 07:56:39 localhost systemd[1]: Starting Remove Stale Online ext4 Metadata Check Snapshots...
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Jul  4 07:56:39 localhost systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jul  4 07:56:39 localhost systemd[1]: Starting Record successful boot for GRUB...
Jul  4 07:56:39 localhost cron[502]: (CRON) INFO (Running @reboot jobs)
Jul  4 07:56:39 localhost systemd[1]: Started irqbalance daemon.
Jul  4 07:56:39 localhost systemd[1]: Starting Initialize hardware monitoring sensors...
Jul  4 07:56:39 localhost avahi-daemon[499]: Found user 'avahi' (UID 116) and group 'avahi' (GID 124).
Jul  4 07:56:39 localhost systemd[1]: Starting Dispatcher daemon for systemd-networkd...
Jul  4 07:56:39 localhost systemd[1]: Started Set the CPU Frequency Scaling governor.
Jul  4 07:56:39 localhost systemd[1]: Starting Authorization Manager...
Jul  4 07:56:39 localhost systemd[1]: Starting System Logging Service...
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Secure Boot updates for DB and DBX being skipped.
Jul  4 07:56:39 localhost kernel: [    0.229388] pci 0000:00:1c.0: PCI bridge to [bus 01]
Jul  4 07:56:39 localhost kernel: [    0.229392] pci 0000:00:1c.0:   bridge window [mem 0xa1300000-0xa13fffff]
Jul  4 07:56:39 localhost kernel: [    0.229526] pci 0000:02:00.0: [8086:3166] type 00 class 0x028000
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Automatically repair incorrect owner/permissions on core devices being skipped.
Jul  4 07:56:39 localhost kernel: [    0.229562] pci 0000:02:00.0: reg 0x10: [mem 0xa1200000-0xa1201fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.229749] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
Jul  4 07:56:39 localhost kernel: [    0.229996] pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul  4 07:56:39 localhost kernel: [    0.230001] pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
Jul  4 07:56:39 localhost kernel: [    0.230122] pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Wait for the Ubuntu Core chooser trigger being skipped.
Jul  4 07:56:39 localhost kernel: [    0.230143] pci 0000:03:00.0: reg 0x10: [io  0x3000-0x30ff]
Jul  4 07:56:39 localhost kernel: [    0.230171] pci 0000:03:00.0: reg 0x18: [mem 0xa1104000-0xa1104fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.230188] pci 0000:03:00.0: reg 0x20: [mem 0xa1100000-0xa1103fff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.230296] pci 0000:03:00.0: supports D1 D2
Jul  4 07:56:39 localhost kernel: [    0.230297] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jul  4 07:56:39 localhost systemd[1]: Starting Snap Daemon...
Jul  4 07:56:39 localhost kernel: [    0.230430] pci 0000:00:1d.3: PCI bridge to [bus 03]
Jul  4 07:56:39 localhost systemd[1]: Starting Login Service...
Jul  4 07:56:39 localhost kernel: [    0.230433] pci 0000:00:1d.3:   bridge window [io  0x3000-0x3fff]
Jul  4 07:56:39 localhost kernel: [    0.230436] pci 0000:00:1d.3:   bridge window [mem 0xa1100000-0xa11fffff]
Jul  4 07:56:39 localhost kernel: [    0.232828] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Jul  4 07:56:39 localhost kernel: [    0.232919] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
Jul  4 07:56:39 localhost kernel: [    0.233007] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Jul  4 07:56:39 localhost systemd[1]: Starting Thermal Daemon Service...
Jul  4 07:56:39 localhost kernel: [    0.233096] ACPI: PCI: Interrupt link LNKD configured for IRQ 1
Jul  4 07:56:39 localhost kernel: [    0.233185] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jul  4 07:56:39 localhost kernel: [    0.233273] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Jul  4 07:56:39 localhost kernel: [    0.233362] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jul  4 07:56:39 localhost kernel: [    0.233450] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in Ubuntu Advantage reboot cmds being skipped.
Jul  4 07:56:39 localhost kernel: [    0.239410] iommu: Default domain type: Translated 
Jul  4 07:56:39 localhost kernel: [    0.239410] SCSI subsystem initialized
Jul  4 07:56:39 localhost kernel: [    0.239410] libata version 3.00 loaded.
Jul  4 07:56:39 localhost systemd[1]: Starting Disk Manager...
Jul  4 07:56:39 localhost kernel: [    0.239410] pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jul  4 07:56:39 localhost kernel: [    0.239410] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jul  4 07:56:39 localhost kernel: [    0.239410] pci 0000:00:02.0: vgaarb: bridge control possible
Jul  4 07:56:39 localhost kernel: [    0.239410] vgaarb: loaded
Jul  4 07:56:39 localhost kernel: [    0.239410] ACPI: bus type USB registered
Jul  4 07:56:39 localhost kernel: [    0.239410] usbcore: registered new interface driver usbfs
Jul  4 07:56:39 localhost bluetoothd[501]: Bluetooth daemon 5.53
Jul  4 07:56:39 localhost kernel: [    0.239410] usbcore: registered new interface driver hub
Jul  4 07:56:39 localhost kernel: [    0.239410] usbcore: registered new device driver usb
Jul  4 07:56:39 localhost kernel: [    0.239410] pps_core: LinuxPPS API ver. 1 registered
Jul  4 07:56:39 localhost systemd[1]: Starting WPA supplicant...
Jul  4 07:56:39 localhost kernel: [    0.239410] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jul  4 07:56:39 localhost kernel: [    0.239410] PTP clock support registered
Jul  4 07:56:39 localhost kernel: [    0.239410] EDAC MC: Ver: 3.0.0
Jul  4 07:56:39 localhost kernel: [    0.239410] Registered efivars operations
Jul  4 07:56:39 localhost systemd[1]: anacron.service: Succeeded.
Jul  4 07:56:39 localhost kernel: [    0.239410] NetLabel: Initializing
Jul  4 07:56:39 localhost kernel: [    0.239410] NetLabel:  domain hash size = 128
Jul  4 07:56:39 localhost kernel: [    0.239410] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jul  4 07:56:39 localhost kernel: [    0.239410] NetLabel:  unlabeled traffic allowed by default
Jul  4 07:56:39 localhost kernel: [    0.239410] PCI: Using ACPI for IRQ routing
Jul  4 07:56:39 localhost avahi-daemon[499]: Successfully dropped root privileges.
Jul  4 07:56:39 localhost kernel: [    0.284293] PCI: pci_cache_line_size set to 64 bytes
Jul  4 07:56:39 localhost avahi-daemon[499]: avahi-daemon 0.7 starting up.
Jul  4 07:56:39 localhost kernel: [    0.284437] e820: reserve RAM buffer [mem 0x0005f000-0x0005ffff]
Jul  4 07:56:39 localhost kernel: [    0.284439] e820: reserve RAM buffer [mem 0x81697018-0x83ffffff]
Jul  4 07:56:39 localhost kernel: [    0.284440] e820: reserve RAM buffer [mem 0x834a3000-0x83ffffff]
Jul  4 07:56:39 localhost kernel: [    0.284441] e820: reserve RAM buffer [mem 0x855f0000-0x87ffffff]
Jul  4 07:56:39 localhost kernel: [    0.284442] e820: reserve RAM buffer [mem 0x88bac000-0x8bffffff]
Jul  4 07:56:39 localhost kernel: [    0.284443] e820: reserve RAM buffer [mem 0x88bbf000-0x8bffffff]
Jul  4 07:56:39 localhost kernel: [    0.284444] e820: reserve RAM buffer [mem 0x89fa5000-0x8bffffff]
Jul  4 07:56:39 localhost kernel: [    0.284445] e820: reserve RAM buffer [mem 0x8c4cb000-0x8fffffff]
Jul  4 07:56:39 localhost apport[498]:  * Starting automatic crash report generation: apport
Jul  4 07:56:39 localhost kernel: [    0.284445] e820: reserve RAM buffer [mem 0x8cf00000-0x8fffffff]
Jul  4 07:56:39 localhost kernel: [    0.284446] e820: reserve RAM buffer [mem 0x16e000000-0x16fffffff]
Jul  4 07:56:39 localhost kernel: [    0.284449] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jul  4 07:56:39 localhost kernel: [    0.284449] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jul  4 07:56:39 localhost kernel: [    0.287839] clocksource: Switched to clocksource tsc-early
Jul  4 07:56:39 localhost acpid: starting up with netlink and the input layer
Jul  4 07:56:39 localhost kernel: [    0.293180] VFS: Disk quotas dquot_6.6.0
Jul  4 07:56:39 localhost kernel: [    0.293194] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jul  4 07:56:39 localhost kernel: [    0.293280] AppArmor: AppArmor Filesystem Enabled
Jul  4 07:56:39 localhost kernel: [    0.293310] pnp: PnP ACPI init
Jul  4 07:56:39 localhost systemd[1]: grub-common.service: Succeeded.
Jul  4 07:56:39 localhost kernel: [    0.293430] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.293736] system 00:01: [io  0x0a00-0x0a0f] has been reserved
Jul  4 07:56:39 localhost systemd[1]: Finished Record successful boot for GRUB.
Jul  4 07:56:39 localhost kernel: [    0.293738] system 00:01: [io  0x0a10-0x0a1f] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.293739] system 00:01: [io  0x0a20-0x0a2f] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.293741] system 00:01: [io  0x0a30-0x0a3f] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294267] pnp 00:02: [dma 0 disabled]
Jul  4 07:56:39 localhost kernel: [    0.294409] system 00:03: [io  0x0680-0x069f] has been reserved
Jul  4 07:56:39 localhost systemd[1]: Starting GRUB failed boot detection...
Jul  4 07:56:39 localhost kernel: [    0.294411] system 00:03: [io  0x164e-0x164f] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294532] system 00:04: [io  0x1854-0x1857] has been reserved
Jul  4 07:56:39 localhost sensors[554]: ERROR: Can't get value of subfeature temp2_min: I/O error
Jul  4 07:56:39 localhost kernel: [    0.294730] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294732] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294734] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294735] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294736] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294738] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
Jul  4 07:56:39 localhost apport[498]:    ...done.
Jul  4 07:56:39 localhost systemd[1]: Started LSB: automatic crash report generation.
Jul  4 07:56:39 localhost sensors[554]: ERROR: Can't get value of subfeature temp2_max: I/O error
Jul  4 07:56:39 localhost sensors[554]: coretemp-isa-0000
Jul  4 07:56:39 localhost sensors[554]: Adapter: ISA adapter
Jul  4 07:56:39 localhost sensors[554]: Package id 0:  +46.0°C  (high = +74.0°C, crit = +82.0°C)
Jul  4 07:56:39 localhost sensors[554]: Core 0:        +46.0°C  (high = +74.0°C, crit = +82.0°C)
Jul  4 07:56:39 localhost sensors[554]: Core 1:        +45.0°C  (high = +74.0°C, crit = +82.0°C)
Jul  4 07:56:39 localhost sensors[554]: Core 2:        +44.0°C  (high = +74.0°C, crit = +82.0°C)
Jul  4 07:56:39 localhost sensors[554]: Core 3:        +44.0°C  (high = +74.0°C, crit = +82.0°C)
Jul  4 07:56:39 localhost sensors[554]: pch_cannonlake-virtual-0
Jul  4 07:56:39 localhost sensors[554]: Adapter: Virtual device
Jul  4 07:56:39 localhost sensors[554]: temp1:        +55.0°C
Jul  4 07:56:39 localhost sensors[554]: acpitz-acpi-0
Jul  4 07:56:39 localhost sensors[554]: Adapter: ACPI interface
Jul  4 07:56:39 localhost sensors[554]: temp1:        +27.8°C  (crit = +119.0°C)
Jul  4 07:56:39 localhost sensors[554]: iwlwifi_1-virtual-0
Jul  4 07:56:39 localhost sensors[554]: Adapter: Virtual device
Jul  4 07:56:39 localhost sensors[554]: temp1:            N/A
Jul  4 07:56:39 localhost sensors[554]: nvme-pci-0100
Jul  4 07:56:39 localhost sensors[554]: Adapter: PCI adapter
Jul  4 07:56:39 localhost sensors[554]: Composite:    +43.9°C  (low  =  -0.1°C, high = +69.8°C)
Jul  4 07:56:39 localhost sensors[554]:                        (crit = +84.8°C)
Jul  4 07:56:39 localhost sensors[554]: Sensor 1:     +62.9°C  (low  =  +0.0°C, high =  +0.0°C)
Jul  4 07:56:39 localhost systemd[1]: Finished Initialize hardware monitoring sensors.
Jul  4 07:56:39 localhost acpid: 8 rules loaded
Jul  4 07:56:39 localhost acpid: waiting for events: event logging is off
Jul  4 07:56:39 localhost acpid: input device has been disconnected, fd 8
Jul  4 07:56:39 localhost systemd[1]: grub-initrd-fallback.service: Succeeded.
Jul  4 07:56:39 localhost systemd[1]: Finished GRUB failed boot detection.
Jul  4 07:56:39 localhost systemd[1]: Finished Raise network interfaces.
Jul  4 07:56:39 localhost systemd[1]: e2scrub_reap.service: Succeeded.
Jul  4 07:56:39 localhost systemd[1]: Finished Remove Stale Online ext4 Metadata Check Snapshots.
Jul  4 07:56:39 localhost udisksd[531]: udisks daemon version 2.8.4 starting
Jul  4 07:56:39 localhost CRON[583]: (root) CMD (/opt/MY_USER/droits.sh)
Jul  4 07:56:39 localhost rsyslogd: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd.  [v8.2001.0]
Jul  4 07:56:39 localhost systemd[1]: Started System Logging Service.
Jul  4 07:56:39 localhost rsyslogd: rsyslogd's groupid changed to 106
Jul  4 07:56:39 localhost rsyslogd: rsyslogd's userid changed to 102
Jul  4 07:56:39 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.2001.0" x-pid="524" x-info="https://www.rsyslog.com"] start
Jul  4 07:56:39 localhost kernel: [    0.294739] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294741] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
Jul  4 07:56:39 localhost kernel: [    0.294974] system 00:06: [io  0x1800-0x18fe] could not be reserved
Jul  4 07:56:39 localhost kernel: [    0.294976] system 00:06: [mem 0xfd000000-0xfd69ffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294978] system 00:06: [mem 0xfd6c0000-0xfd6cffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294979] system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294980] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
Jul  4 07:56:39 localhost kernel: [    0.294982] system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.294983] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.295300] system 00:07: [io  0x2000-0x20fe] has been reserved
Jul  4 07:56:39 localhost kernel: [    0.297613] pnp: PnP ACPI: found 9 devices
Jul  4 07:56:39 localhost kernel: [    0.303030] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jul  4 07:56:39 localhost kernel: [    0.303080] NET: Registered PF_INET protocol family
Jul  4 07:56:39 localhost kernel: [    0.303123] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303648] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303677] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303730] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303766] TCP: Hash tables configured (established 32768 bind 32768)
Jul  4 07:56:39 localhost kernel: [    0.303806] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303823] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303833] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
Jul  4 07:56:39 localhost kernel: [    0.303861] NET: Registered PF_UNIX/PF_LOCAL protocol family
Jul  4 07:56:39 localhost kernel: [    0.303865] NET: Registered PF_XDP protocol family
Jul  4 07:56:39 localhost kernel: [    0.303877] pci 0000:00:15.0: BAR 0: assigned [mem 0xa141b000-0xa141bfff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.303937] pci 0000:00:15.1: BAR 0: assigned [mem 0xa141c000-0xa141cfff 64bit]
Jul  4 07:56:39 localhost kernel: [    0.303994] pci 0000:00:1c.0: PCI bridge to [bus 01]
Jul  4 07:56:39 localhost kernel: [    0.303998] pci 0000:00:1c.0:   bridge window [mem 0xa1300000-0xa13fffff]
Jul  4 07:56:39 localhost kernel: [    0.304004] pci 0000:00:1d.0: PCI bridge to [bus 02]
Jul  4 07:56:39 localhost kernel: [    0.304007] pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
Jul  4 07:56:39 localhost kernel: [    0.304013] pci 0000:00:1d.3: PCI bridge to [bus 03]
Jul  4 07:56:39 localhost kernel: [    0.304015] pci 0000:00:1d.3:   bridge window [io  0x3000-0x3fff]
Jul  4 07:56:39 localhost kernel: [    0.304019] pci 0000:00:1d.3:   bridge window [mem 0xa1100000-0xa11fffff]
Jul  4 07:56:39 localhost kernel: [    0.304025] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jul  4 07:56:39 localhost kernel: [    0.304026] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jul  4 07:56:39 localhost kernel: [    0.304028] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jul  4 07:56:39 localhost kernel: [    0.304029] pci_bus 0000:00: resource 7 [mem 0x90000000-0xdfffffff window]
Jul  4 07:56:39 localhost kernel: [    0.304030] pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
Jul  4 07:56:39 localhost kernel: [    0.304031] pci_bus 0000:01: resource 1 [mem 0xa1300000-0xa13fffff]
Jul  4 07:56:39 localhost kernel: [    0.304033] pci_bus 0000:02: resource 1 [mem 0xa1200000-0xa12fffff]
Jul  4 07:56:39 localhost kernel: [    0.304034] pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
Jul  4 07:56:39 localhost kernel: [    0.304035] pci_bus 0000:03: resource 1 [mem 0xa1100000-0xa11fffff]
Jul  4 07:56:39 localhost kernel: [    0.304533] PCI: CLS 64 bytes, default 64
Jul  4 07:56:39 localhost kernel: [    0.304558] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jul  4 07:56:39 localhost kernel: [    0.304559] software IO TLB: mapped [mem 0x000000007d697000-0x0000000081697000] (64MB)
Jul  4 07:56:39 localhost kernel: [    0.304564] Trying to unpack rootfs image as initramfs...
Jul  4 07:56:39 localhost kernel: [    0.304729] platform rtc_cmos: registered platform RTC device (no PNP device found)
Jul  4 07:56:39 localhost kernel: [    0.305085] Initialise system trusted keyrings
Jul  4 07:56:39 localhost kernel: [    0.305102] Key type blacklist registered
Jul  4 07:56:39 localhost kernel: [    0.305138] workingset: timestamp_bits=36 max_order=20 bucket_order=0
Jul  4 07:56:39 localhost kernel: [    0.306145] zbud: loaded
Jul  4 07:56:39 localhost kernel: [    0.306418] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jul  4 07:56:39 localhost kernel: [    0.306560] fuse: init (API version 7.34)
Jul  4 07:56:39 localhost kernel: [    0.306676] integrity: Platform Keyring initialized
Jul  4 07:56:39 localhost kernel: [    0.314241] Key type asymmetric registered
Jul  4 07:56:39 localhost kernel: [    0.314244] Asymmetric key parser 'x509' registered
Jul  4 07:56:39 localhost kernel: [    0.314258] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Jul  4 07:56:39 localhost kernel: [    0.314286] io scheduler mq-deadline registered
Jul  4 07:56:39 localhost kernel: [    0.316301] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
Jul  4 07:56:39 localhost kernel: [    0.316557] pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
Jul  4 07:56:39 localhost kernel: [    0.316754] pcieport 0000:00:1d.3: PME: Signaling with IRQ 124
Jul  4 07:56:39 localhost kernel: [    0.316853] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jul  4 07:56:39 localhost kernel: [    0.316906] efifb: probing for efifb
Jul  4 07:56:39 localhost kernel: [    0.316936] efifb: showing boot graphics
Jul  4 07:56:39 localhost kernel: [    0.322929] efifb: framebuffer at 0x90000000, using 8100k, total 8100k
Jul  4 07:56:39 localhost kernel: [    0.322933] efifb: mode is 1920x1080x32, linelength=7680, pages=1
Jul  4 07:56:39 localhost kernel: [    0.322934] efifb: scrolling: redraw
Jul  4 07:56:39 localhost kernel: [    0.322935] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jul  4 07:56:39 localhost kernel: [    0.323032] Console: switching to colour frame buffer device 240x67
Jul  4 07:56:39 localhost kernel: [    0.326105] fb0: EFI VGA frame buffer device
Jul  4 07:56:39 localhost kernel: [    0.328144] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jul  4 07:56:39 localhost kernel: [    0.328166] ACPI: button: Sleep Button [SLPB]
Jul  4 07:56:39 localhost kernel: [    0.328194] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Jul  4 07:56:39 localhost kernel: [    0.328206] ACPI: button: Power Button [PWRB]
Jul  4 07:56:39 localhost kernel: [    0.328229] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jul  4 07:56:39 localhost kernel: [    0.328254] ACPI: button: Power Button [PWRF]
Jul  4 07:56:39 localhost kernel: [    0.328406] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210604/psargs-330)
Jul  4 07:56:39 localhost kernel: [    0.328442] 
Jul  4 07:56:39 localhost kernel: [    0.328444] No Local Variables are initialized for Method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328444] 
Jul  4 07:56:39 localhost kernel: [    0.328445] No Arguments are initialized for method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328446] 
Jul  4 07:56:39 localhost kernel: [    0.328447] ACPI Error: Aborting method \_SB.PR01._CPC due to previous error (AE_NOT_FOUND) (20210604/psparse-529)
Jul  4 07:56:39 localhost kernel: [    0.328509] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210604/psargs-330)
Jul  4 07:56:39 localhost kernel: [    0.328538] 
Jul  4 07:56:39 localhost kernel: [    0.328539] No Local Variables are initialized for Method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328540] 
Jul  4 07:56:39 localhost kernel: [    0.328540] No Arguments are initialized for method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328541] 
Jul  4 07:56:39 localhost kernel: [    0.328542] ACPI Error: Aborting method \_SB.PR02._CPC due to previous error (AE_NOT_FOUND) (20210604/psparse-529)
Jul  4 07:56:39 localhost kernel: [    0.328608] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PR00._CPC], AE_NOT_FOUND (20210604/psargs-330)
Jul  4 07:56:39 localhost kernel: [    0.328637] 
Jul  4 07:56:39 localhost kernel: [    0.328637] No Local Variables are initialized for Method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328638] 
Jul  4 07:56:39 localhost kernel: [    0.328638] No Arguments are initialized for method [_CPC]
Jul  4 07:56:39 localhost kernel: [    0.328639] 
Jul  4 07:56:39 localhost kernel: [    0.328640] ACPI Error: Aborting method \_SB.PR03._CPC due to previous error (AE_NOT_FOUND) (20210604/psparse-529)
Jul  4 07:56:39 localhost kernel: [    0.329274] thermal LNXTHERM:00: registered as thermal_zone0
Jul  4 07:56:39 localhost kernel: [    0.329276] ACPI: thermal: Thermal Zone [TZ00] (28 C)
Jul  4 07:56:39 localhost kernel: [    0.329548] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jul  4 07:56:39 localhost kernel: [    0.351225] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jul  4 07:56:39 localhost kernel: [    0.354546] Linux agpgart interface v0.103
Jul  4 07:56:39 localhost kernel: [    0.358117] loop: module loaded
Jul  4 07:56:39 localhost kernel: [    0.358368] tun: Universal TUN/TAP device driver, 1.6
Jul  4 07:56:39 localhost kernel: [    0.358421] PPP generic driver version 2.4.2
Jul  4 07:56:39 localhost kernel: [    0.358531] VFIO - User Level meta-driver version: 0.3
Jul  4 07:56:39 localhost kernel: [    0.358675] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jul  4 07:56:39 localhost kernel: [    0.358680] ehci-pci: EHCI PCI platform driver
Jul  4 07:56:39 localhost kernel: [    0.358692] ehci-platform: EHCI generic platform driver
Jul  4 07:56:39 localhost kernel: [    0.358698] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jul  4 07:56:39 localhost kernel: [    0.358699] ohci-pci: OHCI PCI platform driver
Jul  4 07:56:39 localhost kernel: [    0.358705] ohci-platform: OHCI generic platform driver
Jul  4 07:56:39 localhost kernel: [    0.358711] uhci_hcd: USB Universal Host Controller Interface driver
Jul  4 07:56:39 localhost kernel: [    0.358740] i8042: PNP: No PS/2 controller found.
Jul  4 07:56:39 localhost kernel: [    0.358851] mousedev: PS/2 mouse device common for all mice
Jul  4 07:56:39 localhost kernel: [    0.358984] rtc_cmos rtc_cmos: RTC can wake from S4
Jul  4 07:56:39 localhost kernel: [    0.359971] rtc_cmos rtc_cmos: registered as rtc0
Jul  4 07:56:39 localhost kernel: [    0.360235] rtc_cmos rtc_cmos: setting system clock to 2022-07-04T05:56:37 UTC (1656914197)
Jul  4 07:56:39 localhost kernel: [    0.360247] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jul  4 07:56:39 localhost kernel: [    0.360253] i2c /dev entries driver
Jul  4 07:56:39 localhost kernel: [    0.362682] device-mapper: uevent: version 1.0.3
Jul  4 07:56:39 localhost kernel: [    0.362749] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
Jul  4 07:56:39 localhost kernel: [    0.362766] platform eisa.0: Probing EISA bus 0
Jul  4 07:56:39 localhost kernel: [    0.362767] platform eisa.0: EISA: Cannot allocate resource for mainboard
Jul  4 07:56:39 localhost kernel: [    0.362769] platform eisa.0: Cannot allocate resource for EISA slot 1
Jul  4 07:56:39 localhost kernel: [    0.362770] platform eisa.0: Cannot allocate resource for EISA slot 2
Jul  4 07:56:39 localhost kernel: [    0.362771] platform eisa.0: Cannot allocate resource for EISA slot 3
Jul  4 07:56:39 localhost kernel: [    0.362772] platform eisa.0: Cannot allocate resource for EISA slot 4
Jul  4 07:56:39 localhost kernel: [    0.362773] platform eisa.0: Cannot allocate resource for EISA slot 5
Jul  4 07:56:39 localhost kernel: [    0.362773] platform eisa.0: Cannot allocate resource for EISA slot 6
Jul  4 07:56:39 localhost kernel: [    0.362774] platform eisa.0: Cannot allocate resource for EISA slot 7
Jul  4 07:56:39 localhost kernel: [    0.362775] platform eisa.0: Cannot allocate resource for EISA slot 8
Jul  4 07:56:39 localhost kernel: [    0.362776] platform eisa.0: EISA: Detected 0 cards
Jul  4 07:56:39 localhost kernel: [    0.362780] intel_pstate: Intel P-state driver initializing
Jul  4 07:56:39 localhost kernel: [    0.362945] intel_pstate: Disabling energy efficiency optimization
Jul  4 07:56:39 localhost kernel: [    0.362945] intel_pstate: HWP enabled
Jul  4 07:56:39 localhost kernel: [    0.363029] ledtrig-cpu: registered to indicate activity on CPUs
Jul  4 07:56:39 localhost kernel: [    0.363031] EFI Variables Facility v0.08 2004-May-17
Jul  4 07:56:39 localhost kernel: [    0.384568] intel_pmc_core INT33A1:00:  initialized
Jul  4 07:56:39 localhost kernel: [    0.384672] drop_monitor: Initializing network drop monitor service
Jul  4 07:56:39 localhost kernel: [    0.384815] NET: Registered PF_INET6 protocol family
Jul  4 07:56:39 localhost kernel: [    0.427821] Freeing initrd memory: 53460K
Jul  4 07:56:39 localhost kernel: [    0.433104] Segment Routing with IPv6
Jul  4 07:56:39 localhost kernel: [    0.433127] NET: Registered PF_PACKET protocol family
Jul  4 07:56:39 localhost kernel: [    0.433213] Key type dns_resolver registered
Jul  4 07:56:39 localhost kernel: [    0.433602] microcode: sig=0x906eb, pf=0x2, revision=0xea
Jul  4 07:56:39 localhost kernel: [    0.433629] microcode: Microcode Update Driver: v2.2.
Jul  4 07:56:39 localhost kernel: [    0.433633] IPI shorthand broadcast: enabled
Jul  4 07:56:39 localhost kernel: [    0.433642] sched_clock: Marking stable (428979170, 4647346)->(439681607, -6055091)
Jul  4 07:56:39 localhost kernel: [    0.433728] registered taskstats version 1
Jul  4 07:56:39 localhost kernel: [    0.433759] Loading compiled-in X.509 certificates
Jul  4 07:56:39 localhost kernel: [    0.434387] Loaded X.509 cert 'Build time autogenerated kernel key: ef839ccec60af1415d4c7b326b2cc72584874b9c'
Jul  4 07:56:39 localhost kernel: [    0.434879] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Jul  4 07:56:39 localhost kernel: [    0.435362] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Jul  4 07:56:39 localhost kernel: [    0.435363] blacklist: Loading compiled-in revocation X.509 certificates
Jul  4 07:56:39 localhost kernel: [    0.435377] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
Jul  4 07:56:39 localhost kernel: [    0.435464] zswap: loaded using pool lzo/zbud
Jul  4 07:56:39 localhost kernel: [    0.435616] Key type ._fscrypt registered
Jul  4 07:56:39 localhost kernel: [    0.435617] Key type .fscrypt registered
Jul  4 07:56:39 localhost kernel: [    0.435618] Key type fscrypt-provisioning registered
Jul  4 07:56:39 localhost kernel: [    0.438312] Key type encrypted registered
Jul  4 07:56:39 localhost kernel: [    0.438315] AppArmor: AppArmor sha1 policy hashing enabled
Jul  4 07:56:39 localhost kernel: [    0.439220] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
Jul  4 07:56:39 localhost kernel: [    0.439739] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
Jul  4 07:56:39 localhost kernel: [    0.439742] ima: No TPM chip found, activating TPM-bypass!
Jul  4 07:56:39 localhost kernel: [    0.439747] Loading compiled-in module X.509 certificates
Jul  4 07:56:39 localhost kernel: [    0.440241] Loaded X.509 cert 'Build time autogenerated kernel key: ef839ccec60af1415d4c7b326b2cc72584874b9c'
Jul  4 07:56:39 localhost kernel: [    0.440243] ima: Allocated hash algorithm: sha1
Jul  4 07:56:39 localhost kernel: [    0.440247] ima: No architecture policies found
Jul  4 07:56:39 localhost kernel: [    0.440255] evm: Initialising EVM extended attributes:
Jul  4 07:56:39 localhost kernel: [    0.440255] evm: security.selinux
Jul  4 07:56:39 localhost kernel: [    0.440256] evm: security.SMACK64
Jul  4 07:56:39 localhost kernel: [    0.440256] evm: security.SMACK64EXEC
Jul  4 07:56:39 localhost kernel: [    0.440257] evm: security.SMACK64TRANSMUTE
Jul  4 07:56:39 localhost kernel: [    0.440257] evm: security.SMACK64MMAP
Jul  4 07:56:39 localhost kernel: [    0.440258] evm: security.apparmor
Jul  4 07:56:39 localhost kernel: [    0.440258] evm: security.ima
Jul  4 07:56:39 localhost kernel: [    0.440259] evm: security.capability
Jul  4 07:56:39 localhost kernel: [    0.440260] evm: HMAC attrs: 0x1
Jul  4 07:56:39 localhost kernel: [    0.440509] PM:   Magic number: 14:723:920
Jul  4 07:56:39 localhost kernel: [    0.440715] RAS: Correctable Errors collector initialized.
Jul  4 07:56:39 localhost kernel: [    0.441733] Freeing unused decrypted memory: 2036K
Jul  4 07:56:39 localhost kernel: [    0.442008] Freeing unused kernel image (initmem) memory: 2932K
Jul  4 07:56:39 localhost kernel: [    0.477868] Write protecting the kernel read-only data: 24576k
Jul  4 07:56:39 localhost kernel: [    0.478465] Freeing unused kernel image (text/rodata gap) memory: 2036K
Jul  4 07:56:39 localhost kernel: [    0.478630] Freeing unused kernel image (rodata/data gap) memory: 624K
Jul  4 07:56:39 localhost kernel: [    0.535604] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul  4 07:56:39 localhost kernel: [    0.535606] x86/mm: Checking user space page tables
Jul  4 07:56:39 localhost kernel: [    0.582771] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jul  4 07:56:39 localhost kernel: [    0.582774] Run /init as init process
Jul  4 07:56:39 localhost kernel: [    0.582775]   with arguments:
Jul  4 07:56:39 localhost kernel: [    0.582776]     /init
Jul  4 07:56:39 localhost kernel: [    0.582777]     splash,
Jul  4 07:56:39 localhost kernel: [    0.582778]   with environment:
Jul  4 07:56:39 localhost kernel: [    0.582778]     HOME=/
Jul  4 07:56:39 localhost kernel: [    0.582779]     TERM=linux
Jul  4 07:56:39 localhost kernel: [    0.582779]     BOOT_IMAGE=/boot/vmlinuz-5.14.0-1042-oem
Jul  4 07:56:39 localhost kernel: [    0.662105] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Jul  4 07:56:39 localhost kernel: [    0.665929] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Jul  4 07:56:39 localhost kernel: [    0.666169] idma64 idma64.0: Found Intel integrated DMA 64-bit
Jul  4 07:56:39 localhost kernel: [    0.674163] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
Jul  4 07:56:39 localhost kernel: [    0.674392] idma64 idma64.1: Found Intel integrated DMA 64-bit
Jul  4 07:56:39 localhost kernel: [    0.700809] xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul  4 07:56:39 localhost kernel: [    0.700821] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jul  4 07:56:39 localhost kernel: [    0.701375] i801_smbus 0000:00:1f.4: SPD Write Disable is set
Jul  4 07:56:39 localhost kernel: [    0.701431] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jul  4 07:56:39 localhost kernel: [    0.701941] nvme nvme0: pci function 0000:01:00.0
Jul  4 07:56:39 localhost kernel: [    0.701966] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
Jul  4 07:56:39 localhost kernel: [    0.702243] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.14
Jul  4 07:56:39 localhost kernel: [    0.702251] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul  4 07:56:39 localhost kernel: [    0.702254] usb usb1: Product: xHCI Host Controller
Jul  4 07:56:39 localhost kernel: [    0.702257] usb usb1: Manufacturer: Linux 5.14.0-1042-oem xhci-hcd
Jul  4 07:56:39 localhost kernel: [    0.702259] usb usb1: SerialNumber: 0000:00:14.0
Jul  4 07:56:39 localhost kernel: [    0.703240] hub 1-0:1.0: USB hub found
Jul  4 07:56:39 localhost kernel: [    0.703267] hub 1-0:1.0: 16 ports detected
Jul  4 07:56:39 localhost kernel: [    0.704673] ahci 0000:00:17.0: version 3.0
Jul  4 07:56:39 localhost kernel: [    0.705284] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 3 ports 6 Gbps 0xd impl SATA mode
Jul  4 07:56:39 localhost kernel: [    0.705292] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst 
Jul  4 07:56:39 localhost kernel: [    0.711507] i2c i2c-2: 1/4 memory slots populated (from DMI)
Jul  4 07:56:39 localhost kernel: [    0.711659] xhci_hcd 0000:00:14.0: xHCI Host Controller
Jul  4 07:56:39 localhost kernel: [    0.711667] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jul  4 07:56:39 localhost kernel: [    0.711672] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Jul  4 07:56:39 localhost kernel: [    0.711792] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.14
Jul  4 07:56:39 localhost kernel: [    0.711797] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jul  4 07:56:39 localhost kernel: [    0.711800] usb usb2: Product: xHCI Host Controller
Jul  4 07:56:39 localhost kernel: [    0.711802] usb usb2: Manufacturer: Linux 5.14.0-1042-oem xhci-hcd
Jul  4 07:56:39 localhost kernel: [    0.711804] usb usb2: SerialNumber: 0000:00:14.0
Jul  4 07:56:39 localhost kernel: [    0.711955] hub 2-0:1.0: USB hub found
Jul  4 07:56:39 localhost kernel: [    0.711969] hub 2-0:1.0: 4 ports detected
Jul  4 07:56:39 localhost kernel: [    0.712661] i2c i2c-2: Successfully instantiated SPD at 0x52
Jul  4 07:56:39 localhost kernel: [    0.719277] nvme nvme0: missing or invalid SUBNQN field.
Jul  4 07:56:39 localhost kernel: [    0.721624] r8169 0000:03:00.0 eth0: RTL8168h/8111h, 24:1c:04:17:65:6f, XID 541, IRQ 128
Jul  4 07:56:39 localhost kernel: [    0.721633] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Jul  4 07:56:39 localhost kernel: [    0.773626] nvme nvme0: allocated 128 MiB host memory buffer.
Jul  4 07:56:39 localhost kernel: [    0.798774] nvme nvme0: 4/0/0 default/read/poll queues
Jul  4 07:56:39 localhost kernel: [    0.800087]  nvme0n1: p1 p2
Jul  4 07:56:39 localhost kernel: [    0.803267] r8169 0000:03:00.0 enp3s0: renamed from eth0
Jul  4 07:56:39 localhost kernel: [    0.830820] scsi host0: ahci
Jul  4 07:56:39 localhost kernel: [    0.831090] scsi host1: ahci
Jul  4 07:56:39 localhost kernel: [    0.832494] scsi host2: ahci
Jul  4 07:56:39 localhost kernel: [    0.832892] scsi host3: ahci
Jul  4 07:56:39 localhost kernel: [    0.832968] ata1: SATA max UDMA/133 abar m2048@0xa1419000 port 0xa1419100 irq 127
Jul  4 07:56:39 localhost kernel: [    0.832973] ata2: DUMMY
Jul  4 07:56:39 localhost kernel: [    0.832976] ata3: SATA max UDMA/133 abar m2048@0xa1419000 port 0xa1419200 irq 127
Jul  4 07:56:39 localhost kernel: [    0.832980] ata4: SATA max UDMA/133 abar m2048@0xa1419000 port 0xa1419280 irq 127
Jul  4 07:56:39 localhost kernel: [    1.045846] usb 1-1: new full-speed USB device number 2 using xhci_hcd
Jul  4 07:56:39 localhost kernel: [    1.148915] ata4: SATA link down (SStatus 4 SControl 300)
Jul  4 07:56:39 localhost kernel: [    1.149009] ata3: SATA link down (SStatus 4 SControl 300)
Jul  4 07:56:39 localhost kernel: [    1.149036] ata1: SATA link down (SStatus 4 SControl 300)
Jul  4 07:56:39 localhost kernel: [    1.199482] usb 1-1: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
Jul  4 07:56:39 localhost kernel: [    1.199489] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jul  4 07:56:39 localhost kernel: [    1.229866] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Jul  4 07:56:39 localhost kernel: [    1.329844] usb 1-8: new full-speed USB device number 3 using xhci_hcd
Jul  4 07:56:39 localhost kernel: [    1.333865] tsc: Refined TSC clocksource calibration: 3096.000 MHz
Jul  4 07:56:39 localhost kernel: [    1.333873] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2ca08564bf3, max_idle_ns: 440795312460 ns
Jul  4 07:56:39 localhost kernel: [    1.333921] clocksource: Switched to clocksource tsc
Jul  4 07:56:39 localhost kernel: [    1.399868] systemd[1]: Inserted module 'autofs4'
Jul  4 07:56:39 localhost kernel: [    1.482616] systemd[1]: systemd 245.4-4ubuntu3.15 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Jul  4 07:56:39 localhost kernel: [    1.485451] usb 1-8: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.11
Jul  4 07:56:39 localhost kernel: [    1.485458] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jul  4 07:56:39 localhost kernel: [    1.485462] usb 1-8: Product: USB Receiver
Jul  4 07:56:39 localhost kernel: [    1.485465] usb 1-8: Manufacturer: Logitech
Jul  4 07:56:39 localhost kernel: [    1.501948] systemd[1]: Detected architecture x86-64.
Jul  4 07:56:39 localhost kernel: [    1.522379] systemd[1]: Set hostname to <MY_USER-poiss>.
Jul  4 07:56:39 localhost kernel: [    1.751161] systemd[1]: Created slice system-modprobe.slice.
Jul  4 07:56:39 localhost kernel: [    1.751399] systemd[1]: Created slice system-postfix.slice.
Jul  4 07:56:39 localhost kernel: [    1.751599] systemd[1]: Created slice system-systemd\x2dfsck.slice.
Jul  4 07:56:39 localhost kernel: [    1.751837] systemd[1]: Created slice User and Session Slice.
Jul  4 07:56:39 localhost kernel: [    1.751902] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jul  4 07:56:39 localhost kernel: [    1.752067] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jul  4 07:56:39 localhost kernel: [    1.752110] systemd[1]: Reached target User and Group Name Lookups.
Jul  4 07:56:39 localhost kernel: [    1.752122] systemd[1]: Reached target Remote File Systems.
Jul  4 07:56:39 localhost kernel: [    1.752131] systemd[1]: Reached target Slices.
Jul  4 07:56:39 localhost kernel: [    1.752866] systemd[1]: Listening on Syslog Socket.
Jul  4 07:56:39 localhost kernel: [    1.752936] systemd[1]: Listening on fsck to fsckd communication Socket.
Jul  4 07:56:39 localhost kernel: [    1.752978] systemd[1]: Listening on initctl Compatibility Named Pipe.
Jul  4 07:56:39 localhost kernel: [    1.753131] systemd[1]: Listening on Journal Audit Socket.
Jul  4 07:56:39 localhost kernel: [    1.753197] systemd[1]: Listening on Journal Socket (/dev/log).
Jul  4 07:56:39 localhost kernel: [    1.753275] systemd[1]: Listening on Journal Socket.
Jul  4 07:56:39 localhost kernel: [    1.753362] systemd[1]: Listening on udev Control Socket.
Jul  4 07:56:39 localhost kernel: [    1.753412] systemd[1]: Listening on udev Kernel Socket.
Jul  4 07:56:39 localhost kernel: [    1.754116] systemd[1]: Mounting Huge Pages File System...
Jul  4 07:56:39 localhost kernel: [    1.754860] systemd[1]: Mounting POSIX Message Queue File System...
Jul  4 07:56:39 localhost kernel: [    1.755648] systemd[1]: Mounting Kernel Debug File System...
Jul  4 07:56:39 localhost kernel: [    1.756427] systemd[1]: Mounting Kernel Trace File System...
Jul  4 07:56:39 localhost kernel: [    1.757526] systemd[1]: Starting Journal Service...
Jul  4 07:56:39 localhost kernel: [    1.758419] systemd[1]: Starting Set the console keyboard layout...
Jul  4 07:56:39 localhost kernel: [    1.759181] systemd[1]: Starting Create list of static device nodes for the current kernel...
Jul  4 07:56:39 localhost kernel: [    1.759904] systemd[1]: Starting Load Kernel Module drm...
Jul  4 07:56:39 localhost kernel: [    1.760741] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jul  4 07:56:39 localhost kernel: [    1.760772] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Jul  4 07:56:39 localhost kernel: [    1.761915] systemd[1]: Starting Load Kernel Modules...
Jul  4 07:56:39 localhost kernel: [    1.762618] systemd[1]: Starting Remount Root and Kernel File Systems...
Jul  4 07:56:39 localhost kernel: [    1.763304] systemd[1]: Starting udev Coldplug all Devices...
Jul  4 07:56:39 localhost kernel: [    1.770337] systemd[1]: Starting Uncomplicated firewall...
Jul  4 07:56:39 localhost kernel: [    1.771009] EXT4-fs (nvme0n1p2): re-mounted. Opts: errors=remount-ro. Quota mode: none.
Jul  4 07:56:39 localhost kernel: [    1.771279] systemd[1]: Started Read required files in advance.
Jul  4 07:56:39 localhost kernel: [    1.773225] systemd[1]: Mounted Huge Pages File System.
Jul  4 07:56:39 localhost kernel: [    1.773317] systemd[1]: Mounted POSIX Message Queue File System.
Jul  4 07:56:39 localhost kernel: [    1.773423] systemd[1]: Mounted Kernel Debug File System.
Jul  4 07:56:39 localhost kernel: [    1.773518] systemd[1]: Mounted Kernel Trace File System.
Jul  4 07:56:39 localhost kernel: [    1.774856] systemd[1]: Finished Create list of static device nodes for the current kernel.
Jul  4 07:56:39 localhost kernel: [    1.775274] systemd[1]: Finished Remount Root and Kernel File Systems.
Jul  4 07:56:39 localhost kernel: [    1.775661] systemd[1]: Finished Uncomplicated firewall.
Jul  4 07:56:39 localhost kernel: [    1.776364] systemd[1]: Activating swap /swapfile...
Jul  4 07:56:39 localhost kernel: [    1.776696] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
Jul  4 07:56:39 localhost kernel: [    1.776747] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jul  4 07:56:39 localhost kernel: [    1.777367] systemd[1]: Starting Load/Save Random Seed...
Jul  4 07:56:39 localhost kernel: [    1.778578] systemd[1]: Starting Create System Users...
Jul  4 07:56:39 localhost kernel: [    1.778887] systemd[1]: modprobe@drm.service: Succeeded.
Jul  4 07:56:39 localhost kernel: [    1.779145] systemd[1]: Finished Load Kernel Module drm.
Jul  4 07:56:39 localhost kernel: [    1.786718] Adding 2097148k swap on /swapfile.  Priority:-2 extents:6 across:2260988k SSFS
Jul  4 07:56:39 localhost kernel: [    1.786910] systemd[1]: Activated swap /swapfile.
Jul  4 07:56:39 localhost kernel: [    1.786964] systemd[1]: Reached target Swap.
Jul  4 07:56:39 localhost kernel: [    1.788547] lp: driver loaded but no devices found
Jul  4 07:56:39 localhost kernel: [    1.795887] ppdev: user-space parallel port driver
Jul  4 07:56:39 localhost kernel: [    1.809882] parport0: PC-style at 0x378 (0x778)
Jul  4 07:56:39 localhost kernel: [    1.816448] systemd[1]: Started Journal Service.
Jul  4 07:56:39 localhost kernel: [    1.822119] systemd-journald[265]: Received client request to flush runtime journal.
Jul  4 07:56:39 localhost kernel: [    1.951030]  [PCSPP,TRISTATE,EPP]
Jul  4 07:56:39 localhost kernel: [    2.045899] lp0: using parport0 (polling).
Jul  4 07:56:39 localhost kernel: [    2.142286] intel_pch_thermal 0000:00:12.0: enabling device (0000 -> 0002)
Jul  4 07:56:39 localhost kernel: [    2.142924] EDAC ie31200: No ECC support
Jul  4 07:56:39 localhost kernel: [    2.176185] ee1004 2-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
Jul  4 07:56:39 localhost kernel: [    2.185584] hid: raw HID events driver (C) Jiri Kosina
Jul  4 07:56:39 localhost kernel: [    2.202297] pstore: Using crash dump compression: deflate
Jul  4 07:56:39 localhost kernel: [    2.202306] pstore: Registered efi as persistent store backend
Jul  4 07:56:39 localhost kernel: [    2.227786] cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jul  4 07:56:39 localhost kernel: [    2.227965] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jul  4 07:56:39 localhost kernel: [    2.230237] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Jul  4 07:56:39 localhost kernel: [    2.230239] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jul  4 07:56:39 localhost kernel: [    2.230240] RAPL PMU: hw unit of domain package 2^-14 Joules
Jul  4 07:56:39 localhost kernel: [    2.230241] RAPL PMU: hw unit of domain dram 2^-14 Joules
Jul  4 07:56:39 localhost kernel: [    2.230241] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jul  4 07:56:39 localhost kernel: [    2.230332] Bluetooth: Core ver 2.22
Jul  4 07:56:39 localhost kernel: [    2.230341] NET: Registered PF_BLUETOOTH protocol family
Jul  4 07:56:39 localhost kernel: [    2.230342] Bluetooth: HCI device and connection manager initialized
Jul  4 07:56:39 localhost kernel: [    2.230345] Bluetooth: HCI socket layer initialized
Jul  4 07:56:39 localhost kernel: [    2.230347] Bluetooth: L2CAP socket layer initialized
Jul  4 07:56:39 localhost kernel: [    2.230349] Bluetooth: SCO socket layer initialized
Jul  4 07:56:39 localhost kernel: [    2.233707] cryptd: max_cpu_qlen set to 1000
Jul  4 07:56:39 localhost kernel: [    2.235073] usbcore: registered new interface driver usbhid
Jul  4 07:56:39 localhost kernel: [    2.235075] usbhid: USB HID core driver
Jul  4 07:56:39 localhost kernel: [    2.240393] AVX2 version of gcm_enc/dec engaged.
Jul  4 07:56:39 localhost kernel: [    2.240420] AES CTR mode by8 optimization enabled
Jul  4 07:56:39 localhost kernel: [    2.255818] usbcore: registered new interface driver btusb
Jul  4 07:56:39 localhost kernel: [    2.256375] Intel(R) Wireless WiFi driver for Linux
Jul  4 07:56:39 localhost kernel: [    2.256417] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
Jul  4 07:56:39 localhost kernel: [    2.262621] iwlwifi 0000:02:00.0: Found debug destination: EXTERNAL_DRAM
Jul  4 07:56:39 localhost kernel: [    2.262625] iwlwifi 0000:02:00.0: Found debug configuration: 0
Jul  4 07:56:39 localhost kernel: [    2.262775] iwlwifi 0000:02:00.0: loaded firmware version 29.1654887522.0 7265D-29.ucode op_mode iwlmvm
Jul  4 07:56:39 localhost kernel: [    2.271086] Bluetooth: hci0: read Intel version: 370810011003110e32
Jul  4 07:56:39 localhost kernel: [    2.271091] Bluetooth: hci0: Intel device is already patched. patch num: 32
Jul  4 07:56:39 localhost kernel: [    2.309059] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 3165, REV=0x210
Jul  4 07:56:39 localhost kernel: [    2.315777] thermal thermal_zone2: failed to read out thermal zone (-61)
Jul  4 07:56:39 localhost kernel: [    2.322685] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
Jul  4 07:56:39 localhost kernel: [    2.323172] iwlwifi 0000:02:00.0: Allocated 0x00400000 bytes for firmware monitor.
Jul  4 07:56:39 localhost kernel: [    2.327656] iwlwifi 0000:02:00.0: base HW address: 14:18:c3:a2:ef:a4
Jul  4 07:56:39 localhost kernel: [    2.353471] checking generic (90000000 7e9000) vs hw (a0000000 1000000)
Jul  4 07:56:39 localhost kernel: [    2.353474] checking generic (90000000 7e9000) vs hw (90000000 10000000)
Jul  4 07:56:39 localhost kernel: [    2.353476] fb0: switching to inteldrmfb from EFI VGA
Jul  4 07:56:39 localhost kernel: [    2.353605] Console: switching to colour dummy device 80x25
Jul  4 07:56:39 localhost kernel: [    2.353644] i915 0000:00:02.0: vgaarb: deactivate vga console
Jul  4 07:56:39 localhost kernel: [    2.354658] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:046D:C52B.0001/input/input3
Jul  4 07:56:39 localhost kernel: [    2.355487] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Jul  4 07:56:39 localhost kernel: [    2.360038] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
Jul  4 07:56:39 localhost kernel: [    2.374694] intel_tcc_cooling: Programmable TCC Offset detected
Jul  4 07:56:39 localhost kernel: [    2.377281] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Jul  4 07:56:39 localhost kernel: [    2.387926] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Jul  4 07:56:39 localhost kernel: [    2.392949] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
Jul  4 07:56:39 localhost kernel: [    2.410946] intel_rapl_common: Found RAPL domain package
Jul  4 07:56:39 localhost kernel: [    2.410949] intel_rapl_common: Found RAPL domain core
Jul  4 07:56:39 localhost kernel: [    2.410950] intel_rapl_common: Found RAPL domain uncore
Jul  4 07:56:39 localhost kernel: [    2.410951] intel_rapl_common: Found RAPL domain dram
Jul  4 07:56:39 localhost kernel: [    2.417917] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-8/input0
Jul  4 07:56:39 localhost kernel: [    2.418113] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046D:C52B.0002/input/input4
Jul  4 07:56:39 localhost kernel: [    2.418178] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046D:C52B.0002/input/input5
Jul  4 07:56:39 localhost kernel: [    2.450885] audit: type=1400 audit(1656914199.585:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld" pid=454 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.452267] audit: type=1400 audit(1656914199.585:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=448 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.458752] audit: type=1400 audit(1656914199.593:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=449 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.458756] audit: type=1400 audit(1656914199.593:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=449 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.459505] audit: type=1400 audit(1656914199.593:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=456 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.463452] audit: type=1400 audit(1656914199.597:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=458 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.472446] audit: type=1400 audit(1656914199.605:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=460 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.476198] audit: type=1400 audit(1656914199.609:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=459 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.476202] audit: type=1400 audit(1656914199.609:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=459 comm="apparmor_parser"
Jul  4 07:56:39 localhost kernel: [    2.478477] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:046D:C52B.0002/input/input6
Jul  4 07:56:39 localhost kernel: [    2.478791] hid-generic 0003:046D:C52B.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-8/input1
Jul  4 07:56:39 localhost kernel: [    2.479091] hid-generic 0003:046D:C52B.0003: hiddev1,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-8/input2
Jul  4 07:56:39 localhost kernel: [    2.679494] i915 0000:00:02.0: [drm] failed to retrieve link info, disabling eDP
Jul  4 07:56:39 localhost kernel: [    2.707196] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Jul  4 07:56:39 localhost kernel: [    2.709897] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Jul  4 07:56:39 localhost kernel: [    2.710266] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
Jul  4 07:56:39 localhost systemd[1]: gpu-manager.service: Succeeded.
Jul  4 07:56:39 localhost systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jul  4 07:56:39 localhost dbus-daemon[505]: dbus[505]: Unknown group "power" in message bus configuration file
Jul  4 07:56:39 localhost acpid: input device has been disconnected, fd 9
Jul  4 07:56:39 localhost kernel: [    2.746436] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jul  4 07:56:39 localhost kernel: [    2.747275] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-8/input2
Jul  4 07:56:39 localhost dbus-daemon[505]: [system] AppArmor D-Bus mediation is enabled
Jul  4 07:56:39 localhost systemd[1]: Started Login Service.
Jul  4 07:56:39 localhost systemd[1]: Started Bluetooth service.
Jul  4 07:56:39 localhost systemd[1]: Reached target Bluetooth.
Jul  4 07:56:39 localhost systemd[1]: Started Thermal Daemon Service.
Jul  4 07:56:39 localhost NetworkManager[507]: <info>  [1656914199.9129] NetworkManager (version 1.22.10) is starting... (for the first time)
Jul  4 07:56:39 localhost NetworkManager[507]: <info>  [1656914199.9130] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, no-mac-addr-change.conf) (run: 10-globally-managed-devices.conf) (etc: default-wifi-powersave-on.conf)
Jul  4 07:56:39 localhost systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Jul  4 07:56:39 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.9' (uid=0 pid=503 comm="/usr/sbin/cupsd -l " label="/usr/sbin/cupsd (enforce)")
Jul  4 07:56:39 localhost bluetoothd[501]: Starting SDP server
Jul  4 07:56:39 localhost avahi-daemon[499]: Successfully called chroot().
Jul  4 07:56:39 localhost avahi-daemon[499]: Successfully dropped remaining capabilities.
Jul  4 07:56:39 localhost systemd[1]: Started Make remote CUPS printers available locally.
Jul  4 07:56:39 localhost avahi-daemon[499]: Loading service file /services/phpmyadmin.service.
Jul  4 07:56:39 localhost systemd[1]: Started WPA supplicant.
Jul  4 07:56:39 localhost avahi-daemon[499]: open("/services/phpmyadmin.service", O_RDONLY): No such file or directory
Jul  4 07:56:39 localhost avahi-daemon[499]: Failed to load service group file /services/phpmyadmin.service, ignoring.
Jul  4 07:56:39 localhost avahi-daemon[499]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Jul  4 07:56:39 localhost avahi-daemon[499]: New relevant interface lo.IPv6 for mDNS.
Jul  4 07:56:39 localhost avahi-daemon[499]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Jul  4 07:56:39 localhost avahi-daemon[499]: New relevant interface lo.IPv4 for mDNS.
Jul  4 07:56:39 localhost avahi-daemon[499]: Network interface enumeration completed.
Jul  4 07:56:39 localhost avahi-daemon[499]: Registering new address record for ::1 on lo.*.
Jul  4 07:56:39 localhost avahi-daemon[499]: Registering new address record for 127.0.0.1 on lo.IPv4.
Jul  4 07:56:39 localhost NetworkManager[507]: <info>  [1656914199.9168] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jul  4 07:56:39 localhost thermald[530]: 22 CPUID levels; family:model:stepping 0x6:9e:b (6:158:11)
Jul  4 07:56:39 localhost wpa_supplicant[533]: Successfully initialized wpa_supplicant
Jul  4 07:56:39 localhost systemd[1]: Started Network Manager.
Jul  4 07:56:39 localhost thermald[530]: 22 CPUID levels; family:model:stepping 0x6:9e:b (6:158:11)
Jul  4 07:56:39 localhost systemd[1]: Reached target Network.
Jul  4 07:56:39 localhost thermald[530]: Polling mode is enabled: 4
Jul  4 07:56:39 localhost thermald[530]: sensor id 7 : No temp sysfs for reading raw temp
Jul  4 07:56:39 localhost thermald[530]: message repeated 2 times: [ sensor id 7 : No temp sysfs for reading raw temp]
Jul  4 07:56:39 localhost systemd[1]: Starting Network Manager Wait Online...
Jul  4 07:56:39 localhost systemd[1]: Starting The Apache HTTP Server...
Jul  4 07:56:39 localhost systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jul  4 07:56:39 localhost systemd[1]: Starting MySQL Community Server...
Jul  4 07:56:39 localhost systemd[1]: Condition check resulted in fast remote file copy program daemon being skipped.
Jul  4 07:56:39 localhost polkitd[523]: started daemon version 0.105 using authority implementation `local' version `0.105'
Jul  4 07:56:39 localhost systemd[1]: Starting OpenBSD Secure Shell server...
Jul  4 07:56:39 localhost NetworkManager[507]: <info>  [1656914199.9275] manager[0x558fd062f030]: monitoring kernel firmware directory '/lib/firmware'.
Jul  4 07:56:39 localhost NetworkManager[507]: <info>  [1656914199.9275] monitoring ifupdown state file '/run/network/ifstate'.
Jul  4 07:56:39 localhost systemd[1]: Starting Permit User Sessions...
Jul  4 07:56:39 localhost systemd[1]: Started Unattended Upgrades Shutdown.
Jul  4 07:56:39 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.11' (uid=0 pid=507 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Jul  4 07:56:39 localhost systemd[1]: Started Authorization Manager.
Jul  4 07:56:39 localhost systemd[1]: Starting Modem Manager...
Jul  4 07:56:39 localhost systemd[1]: Starting Hostname Service...
Jul  4 07:56:39 localhost systemd[1]: Finished Permit User Sessions.
Jul  4 07:56:39 localhost systemd[1]: Starting Light Display Manager...
Jul  4 07:56:39 localhost systemd[1]: Starting Hold until boot process finishes up...
Jul  4 07:56:39 localhost kernel: [    2.806706] Registered IR keymap rc-cec
Jul  4 07:56:39 localhost kernel: [    2.806750] rc rc0: DP-1 as /devices/pci0000:00/0000:00:02.0/rc/rc0
Jul  4 07:56:39 localhost kernel: [    2.806782] input: DP-1 as /devices/pci0000:00/0000:00:02.0/rc/rc0/input9
Jul  4 07:56:39 localhost systemd[1]: plymouth-quit-wait.service: Succeeded.
Jul  4 07:56:39 localhost systemd[1]: Finished Hold until boot process finishes up.
Jul  4 07:56:39 localhost systemd[1]: Starting Set console scheme...
Jul  4 07:56:39 localhost systemd[1]: Finished Set console scheme.
Jul  4 07:56:39 localhost systemd[1]: Created slice system-getty.slice.
Jul  4 07:56:39 localhost systemd[1]: Started Getty on tty1.
Jul  4 07:56:39 localhost systemd[1]: Reached target Login Prompts.
Jul  4 07:56:39 localhost kernel: [    2.823895] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jul  4 07:56:39 localhost kernel: [    2.823898] Bluetooth: BNEP filters: protocol multicast
Jul  4 07:56:39 localhost kernel: [    2.823920] Bluetooth: BNEP socket layer initialized
Jul  4 07:56:39 localhost udisksd[531]: failed to load module mdraid: libbd_mdraid.so.2: cannot open shared object file: No such file or directory
Jul  4 07:56:39 localhost kernel: [    2.842652] fbcon: i915drmfb (fb0) is primary device
Jul  4 07:56:39 localhost systemd[1]: Started OpenBSD Secure Shell server.
Jul  4 07:56:39 localhost udisksd[531]: Failed to load the 'mdraid' libblockdev plugin
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jul  4 07:56:40 localhost systemd[1]: Started Manage, Install and Generate Color Profiles.
Jul  4 07:56:40 localhost kernel: [    2.869650] input: Logitech Wireless Device PID:404d Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.2/0003:046D:C52B.0003/0003:046D:404D.0004/input/input10
Jul  4 07:56:40 localhost kernel: [    2.869711] input: Logitech Wireless Device PID:404d Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.2/0003:046D:C52B.0003/0003:046D:404D.0004/input/input11
Jul  4 07:56:40 localhost kernel: [    2.870108] hid-generic 0003:046D:404D.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:404d] on usb-0000:00:14.0-8/input2:1
Jul  4 07:56:40 localhost ModemManager[617]: <info>  ModemManager (version 1.16.6) starting in system bus...
Jul  4 07:56:40 localhost systemd[1]: Started Light Display Manager.
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.15' (uid=0 pid=641 comm="/usr/sbin/lightdm " label="unconfined")
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jul  4 07:56:40 localhost systemd[1]: Started Hostname Service.
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0419] hostname: hostname: using hostnamed
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0419] hostname: hostname changed from (none) to "MY_USER-poiss"
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0421] dns-mgr[0x558fd061b290]: init: dns=systemd-resolved rc-manager=symlink, plugin=systemd-resolved
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0428] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1d.0/0000:02:00.0/ieee80211/phy0/rfkill1) (driver iwlwifi)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0430] manager[0x558fd062f030]: rfkill: Wi-Fi hardware radio set enabled
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0430] manager[0x558fd062f030]: rfkill: WWAN hardware radio set enabled
Jul  4 07:56:40 localhost accounts-daemon[494]: started daemon version 0.6.55
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.Accounts'
Jul  4 07:56:40 localhost systemd[1]: Started Accounts Service.
Jul  4 07:56:40 localhost udisksd[531]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jul  4 07:56:40 localhost systemd[1]: Started Disk Manager.
Jul  4 07:56:40 localhost snapd[527]: AppArmor status: apparmor is enabled and all features are available
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0775] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-bluetooth.so)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0834] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-adsl.so)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0873] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-wwan.so)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0915] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-wifi.so)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0976] Loaded device plugin: NMTeamFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-team.so)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0978] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0979] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0979] manager: Networking is enabled by state file
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.0980] dhcp-init: Using DHCP client 'internal'
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.11' (uid=0 pid=507 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1010] settings: Loaded settings plugin: ifupdown ("/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-settings-plugin-ifupdown.so")
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1010] settings: Loaded settings plugin: keyfile (internal)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1010] ifupdown: management mode: unmanaged
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1011] ifupdown:       interface-parser: parsing file /etc/network/interfaces
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1011] ifupdown:       interface-parser: finished parsing file /etc/network/interfaces
Jul  4 07:56:40 localhost systemd[1]: Starting Network Manager Script Dispatcher Service...
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1080] device (lo): carrier: link connected
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1082] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1090] manager: (enp3s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jul  4 07:56:40 localhost systemd[1]: Started Network Manager Script Dispatcher Service.
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.1103] device (enp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul  4 07:56:40 localhost kernel: [    3.001816] Generic FE-GE Realtek PHY r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
Jul  4 07:56:40 localhost systemd[1]: Started Modem Manager.
Jul  4 07:56:40 localhost snapd[527]: daemon.go:246: started snapd/2.54.2+20.04ubuntu2 (series 16; classic) ubuntu/20.04 (amd64) linux/5.14.0-1042-oem.
Jul  4 07:56:40 localhost networkd-dispatcher[697]: WARNING: systemd-networkd is not running, output will be incomplete.
Jul  4 07:56:40 localhost kernel: [    3.077631] loop0: detected capacity change from 0 to 8
Jul  4 07:56:40 localhost systemd[1]: tmp-sanity\x2dmountpoint\x2d347398371.mount: Succeeded.
Jul  4 07:56:40 localhost kernel: [    3.107583] Console: switching to colour frame buffer device 240x67
Jul  4 07:56:40 localhost snapd[527]: daemon.go:339: adjusting startup timeout by 30s (pessimistic estimate of 30s plus 5s per snap)
Jul  4 07:56:40 localhost kernel: [    3.127403] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Jul  4 07:56:40 localhost bluetoothd[501]: Bluetooth management interface 1.21 initialized
Jul  4 07:56:40 localhost blueman-mechanism[500]: Unable to init server: Could not connect: Connection refused
Jul  4 07:56:40 localhost kernel: [    3.157902] NET: Registered PF_ALG protocol family
Jul  4 07:56:40 localhost systemd[1]: Started Snap Daemon.
Jul  4 07:56:40 localhost systemd[1]: Starting Wait until snapd is fully seeded...
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.20' (uid=0 pid=527 comm="/usr/lib/snapd/snapd " label="unconfined")
Jul  4 07:56:40 localhost systemd[1]: Starting Time & Date Service...
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.3429] device (wlp2s0): driver supports Access Point (AP) mode
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.3436] manager: (wlp2s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jul  4 07:56:40 localhost apachectl[644]: AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.3445] device (wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul  4 07:56:40 localhost kernel: [    3.201929] r8169 0000:03:00.0 enp3s0: Link is Down
Jul  4 07:56:40 localhost systemd[1]: Started Dispatcher daemon for systemd-networkd.
Jul  4 07:56:40 localhost colord[608]: failed to get session [pid 503]: Aucune donnée disponible
Jul  4 07:56:40 localhost blueman-mechanism[500]: Unable to init server: Impossible de se connecter : Connection refused
Jul  4 07:56:40 localhost kernel: [    3.218023] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
Jul  4 07:56:40 localhost colord[608]: failed to get session [pid 503]: Aucune donnée disponible
Jul  4 07:56:40 localhost blueman-mechani[500]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
Jul  4 07:56:40 localhost colord[608]: failed to get session [pid 503]: Aucune donnée disponible
Jul  4 07:56:40 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.timedate1'
Jul  4 07:56:40 localhost systemd[1]: Started Time & Date Service.
Jul  4 07:56:40 localhost systemd[1]: Finished Wait until snapd is fully seeded.
Jul  4 07:56:40 localhost systemd[1]: Condition check resulted in Auto import assertions from block devices being skipped.
Jul  4 07:56:40 localhost systemd[1]: Started Bluetooth management mechanism.
Jul  4 07:56:40 localhost acpid: input device has been disconnected, fd 11
Jul  4 07:56:40 localhost kernel: [    3.294890] iwlwifi 0000:02:00.0: Applying debug destination EXTERNAL_DRAM
Jul  4 07:56:40 localhost kernel: [    3.295995] iwlwifi 0000:02:00.0: FW already configured (0) - re-configuring
Jul  4 07:56:40 localhost systemd[1]: Started The Apache HTTP Server.
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.4516] modem-manager: ModemManager available
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.4540] supplicant: wpa_supplicant running
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.4540] device (wlp2s0): supplicant interface state: init -> starting
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5057] sup-iface[0x558fd0644120,wlp2s0]: supports 5 scan SSIDs
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5067] device (wlp2s0): supplicant interface state: starting -> ready
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5069] Wi-Fi P2P device controlled by interface wlp2s0 created
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5073] manager: (p2p-dev-wlp2s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5080] device (p2p-dev-wlp2s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jul  4 07:56:40 localhost NetworkManager[507]: <warn>  [1656914200.5110] sup-iface: failed to cancel p2p connect: P2P cancel failed
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5112] device (p2p-dev-wlp2s0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:40 localhost NetworkManager[507]: <info>  [1656914200.5130] device (wlp2s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jul  4 07:56:40 localhost kernel: [    3.389258] input: Logitech K400 Plus as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.2/0003:046D:C52B.0003/0003:046D:404D.0004/input/input15
Jul  4 07:56:40 localhost kernel: [    3.389967] logitech-hidpp-device 0003:046D:404D.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech K400 Plus] on usb-0000:00:14.0-8/input2:1
Jul  4 07:56:40 localhost acpid: client connected from 669[0:0]
Jul  4 07:56:40 localhost acpid: 1 client rule loaded
Jul  4 07:56:40 localhost avahi-daemon[499]: Server startup complete. Host name is MY_USER-poiss.local. Local service cookie is 794306533.
Jul  4 07:56:41 localhost kernel: [    4.165790] snd_hda_intel 0000:00:1f.3: azx_get_response timeout, switching to polling mode: last cmd=0x000f0000
Jul  4 07:56:41 localhost systemd[1]: Created slice User Slice of UID 110.
Jul  4 07:56:41 localhost systemd[1]: Starting User Runtime Directory /run/user/110...
Jul  4 07:56:41 localhost systemd[1]: Finished User Runtime Directory /run/user/110.
Jul  4 07:56:41 localhost systemd[1]: Starting User Manager for UID 110...
Jul  4 07:56:41 localhost systemd[1]: Started MySQL Community Server.
Jul  4 07:56:41 localhost systemd[877]: Reached target Paths.
Jul  4 07:56:41 localhost systemd[877]: Reached target Timers.
Jul  4 07:56:41 localhost systemd[877]: Starting D-Bus User Message Bus Socket.
Jul  4 07:56:41 localhost systemd[877]: Listening on GnuPG network certificate management daemon.
Jul  4 07:56:41 localhost systemd[877]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jul  4 07:56:41 localhost systemd[877]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jul  4 07:56:41 localhost systemd[877]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jul  4 07:56:41 localhost systemd[877]: Listening on GnuPG cryptographic agent and passphrase cache.
Jul  4 07:56:41 localhost systemd[877]: Listening on debconf communication socket.
Jul  4 07:56:41 localhost systemd[877]: Listening on Sound System.
Jul  4 07:56:41 localhost systemd[877]: Listening on REST API socket for snapd user session agent.
Jul  4 07:56:41 localhost systemd[877]: Listening on D-Bus User Message Bus Socket.
Jul  4 07:56:41 localhost systemd[877]: Reached target Sockets.
Jul  4 07:56:41 localhost systemd[877]: Reached target Basic System.
Jul  4 07:56:41 localhost systemd[1]: Started User Manager for UID 110.
Jul  4 07:56:41 localhost systemd[877]: Starting Sound Service...
Jul  4 07:56:41 localhost systemd[1]: Started Session c1 of user lightdm.
Jul  4 07:56:41 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.34' (uid=110 pid=888 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo" label="unconfined")
Jul  4 07:56:41 localhost systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jul  4 07:56:41 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Jul  4 07:56:41 localhost systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Successfully called chroot.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Successfully dropped privileges.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Successfully limited resources.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Running.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Watchdog thread running.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Canary thread running.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Successfully made thread 888 of process 888 owned by '110' high priority at nice level -11.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Supervising 1 threads of 1 processes of 1 users.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Supervising 1 threads of 1 processes of 1 users.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Successfully made thread 904 of process 888 owned by '110' RT at priority 5.
Jul  4 07:56:41 localhost rtkit-daemon[901]: Supervising 2 threads of 1 processes of 1 users.
Jul  4 07:56:41 localhost systemd[877]: Started D-Bus User Message Bus.
Jul  4 07:56:41 localhost dbus-daemon[906]: [session uid=110 pid=906] AppArmor D-Bus mediation is enabled
Jul  4 07:56:41 localhost systemd[877]: Started Sound Service.
Jul  4 07:56:41 localhost systemd[877]: Reached target Main User Target.
Jul  4 07:56:41 localhost systemd[877]: Startup finished in 229ms.
Jul  4 07:56:41 localhost bluetoothd[501]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSink/sbc
Jul  4 07:56:41 localhost bluetoothd[501]: Endpoint registered: sender=:1.36 path=/MediaEndpoint/A2DPSource/sbc
Jul  4 07:56:41 localhost kernel: [    4.541490] Bluetooth: RFCOMM TTY layer initialized
Jul  4 07:56:41 localhost kernel: [    4.541498] Bluetooth: RFCOMM socket layer initialized
Jul  4 07:56:41 localhost kernel: [    4.541502] Bluetooth: RFCOMM ver 1.11
Jul  4 07:56:41 localhost dbus-daemon[906]: [session uid=110 pid=906] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.2' (uid=110 pid=896 comm="/usr/sbin/lightdm-gtk-greeter " label="unconfined")
Jul  4 07:56:41 localhost systemd[877]: Starting Accessibility services bus...
Jul  4 07:56:41 localhost dbus-daemon[906]: [session uid=110 pid=906] Successfully activated service 'org.a11y.Bus'
Jul  4 07:56:41 localhost systemd[877]: Started Accessibility services bus.
Jul  4 07:56:41 localhost dbus-daemon[906]: [session uid=110 pid=906] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.4' (uid=110 pid=896 comm="/usr/sbin/lightdm-gtk-greeter " label="unconfined")
Jul  4 07:56:41 localhost systemd[877]: Starting Virtual filesystem service...
Jul  4 07:56:41 localhost dbus-daemon[906]: [session uid=110 pid=906] Successfully activated service 'org.gtk.vfs.Daemon'
Jul  4 07:56:41 localhost systemd[877]: Started Virtual filesystem service.
Jul  4 07:56:42 localhost at-spi-bus-launcher[915]: dbus-daemon[915]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=110 pid=896 comm="/usr/sbin/lightdm-gtk-greeter " label="unconfined")
Jul  4 07:56:42 localhost at-spi-bus-launcher[915]: dbus-daemon[915]: Successfully activated service 'org.a11y.atspi.Registry'
Jul  4 07:56:42 localhost at-spi-bus-launcher[946]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul  4 07:56:42 localhost kernel: [    5.169842] snd_hda_intel 0000:00:1f.3: No response from codec, disabling MSI: last cmd=0x000f0000
Jul  4 07:56:42 localhost ModemManager[617]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1d.0/0000:02:00.0': not supported by any plugin
Jul  4 07:56:42 localhost ModemManager[617]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1d.3/0000:03:00.0': not supported by any plugin
Jul  4 07:56:43 localhost kernel: [    6.177845] snd_hda_intel 0000:00:1f.3: Codec #0 probe error; disabling it...
Jul  4 07:56:43 localhost kernel: [    6.196323] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
Jul  4 07:56:43 localhost kernel: [    6.196449] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
Jul  4 07:56:43 localhost kernel: [    6.196510] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Jul  4 07:56:43 localhost kernel: [    6.196563] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
Jul  4 07:56:43 localhost kernel: [    6.196614] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
Jul  4 07:56:43 localhost systemd[877]: Reached target Sound Card.
Jul  4 07:56:43 localhost systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Jul  4 07:56:43 localhost systemd[1]: Starting Save/Restore Sound Card State...
Jul  4 07:56:43 localhost systemd[1]: Finished Save/Restore Sound Card State.
Jul  4 07:56:43 localhost systemd[1]: Reached target Sound Card.
Jul  4 07:56:43 localhost systemd-udevd[308]: controlC0: Process '/usr/sbin/alsactl -E HOME=/run/alsa -E XDG_RUNTIME_DIR=/run/alsa/runtime restore 0' failed with exit code 99.
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5766] policy: auto-activating connection 'Livebox-f8e8' (69da85fb-cc27-461d-9b29-9ae41b539ef3)
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5770] device (wlp2s0): Activation: starting connection 'Livebox-f8e8' (69da85fb-cc27-461d-9b29-9ae41b539ef3)
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5771] device (wlp2s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5773] manager: NetworkManager state is now CONNECTING
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5777] device (wlp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5780] device (wlp2s0): Activation: (wifi) access point 'Livebox-f8e8' has security, but secrets are required.
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5780] device (wlp2s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5782] sup-iface[0x558fd0644120,wlp2s0]: wps: type pbc start...
Jul  4 07:56:43 localhost rtkit-daemon[901]: Supervising 2 threads of 1 processes of 1 users.
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5806] device (wlp2s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5808] device (wlp2s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5810] device (wlp2s0): Activation: (wifi) connection 'Livebox-f8e8' has security, and secrets exist.  No new secrets needed.
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5811] Config: added 'ssid' value 'Livebox-f8e8'
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5811] Config: added 'scan_ssid' value '1'
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5811] Config: added 'bgscan' value 'simple:30:-70:86400'
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5811] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5811] Config: added 'psk' value '<hidden>'
Jul  4 07:56:43 localhost rtkit-daemon[901]: Successfully made thread 963 of process 888 owned by '110' RT at priority 5.
Jul  4 07:56:43 localhost rtkit-daemon[901]: Supervising 3 threads of 1 processes of 1 users.
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: SME: Trying to authenticate with 94:a6:7e:77:2c:18 (SSID='Livebox-f8e8' freq=5220 MHz)
Jul  4 07:56:43 localhost kernel: [    6.446857] wlp2s0: authenticate with 94:a6:7e:77:2c:18
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5926] device (wlp2s0): supplicant interface state: ready -> authenticating
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5926] device (p2p-dev-wlp2s0): supplicant management interface state: ready -> authenticating
Jul  4 07:56:43 localhost kernel: [    6.452431] wlp2s0: send auth to 94:a6:7e:77:2c:18 (try 1/3)
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: Trying to associate with 94:a6:7e:77:2c:18 (SSID='Livebox-f8e8' freq=5220 MHz)
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5944] device (wlp2s0): supplicant interface state: authenticating -> associating
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.5945] device (p2p-dev-wlp2s0): supplicant management interface state: authenticating -> associating
Jul  4 07:56:43 localhost kernel: [    6.454248] wlp2s0: authenticated
Jul  4 07:56:43 localhost kernel: [    6.454395] wlp2s0: associating with AP with corrupt beacon
Jul  4 07:56:43 localhost kernel: [    6.457892] wlp2s0: associate with 94:a6:7e:77:2c:18 (try 1/3)
Jul  4 07:56:43 localhost kernel: [    6.488242] wlp2s0: RX AssocResp from 94:a6:7e:77:2c:18 (capab=0x1511 status=0 aid=1)
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: Associated with 94:a6:7e:77:2c:18
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul  4 07:56:43 localhost kernel: [    6.490294] wlp2s0: associated
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.6365] device (wlp2s0): supplicant interface state: associating -> associated
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.6366] device (p2p-dev-wlp2s0): supplicant management interface state: associating -> associated
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.6452] device (wlp2s0): supplicant interface state: associated -> 4-way handshake
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.6453] device (p2p-dev-wlp2s0): supplicant management interface state: associated -> 4-way handshake
Jul  4 07:56:43 localhost kernel: [    6.513054] wlp2s0: Limiting TX power to 127 (127 - 0) dBm as advertised by 94:a6:7e:77:2c:18
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: WPA: Key negotiation completed with 94:a6:7e:77:2c:18 [PTK=CCMP GTK=TKIP]
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-CONNECTED - Connection to 94:a6:7e:77:2c:18 completed [id=0 id_str=]
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-75 noise=9999 txrate=6000
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7291] device (wlp2s0): supplicant interface state: 4-way handshake -> completed
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7291] device (wlp2s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "Livebox-f8e8"
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7292] device (p2p-dev-wlp2s0): supplicant management interface state: 4-way handshake -> completed
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7295] device (wlp2s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost kernel: [    6.586210] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
Jul  4 07:56:43 localhost avahi-daemon[499]: Joining mDNS multicast group on interface wlp2s0.IPv6 with address fe80::d21:5908:ca0f:23ca.
Jul  4 07:56:43 localhost avahi-daemon[499]: New relevant interface wlp2s0.IPv6 for mDNS.
Jul  4 07:56:43 localhost avahi-daemon[499]: Registering new address record for fe80::d21:5908:ca0f:23ca on wlp2s0.*.
Jul  4 07:56:43 localhost avahi-daemon[499]: Joining mDNS multicast group on interface wlp2s0.IPv4 with address 192.168.1.146.
Jul  4 07:56:43 localhost avahi-daemon[499]: New relevant interface wlp2s0.IPv4 for mDNS.
Jul  4 07:56:43 localhost avahi-daemon[499]: Registering new address record for 192.168.1.146 on wlp2s0.IPv4.
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7498] device (wlp2s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7539] device (wlp2s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7544] device (wlp2s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7550] manager: NetworkManager state is now CONNECTED_LOCAL
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7586] manager: NetworkManager state is now CONNECTED_SITE
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7589] policy: set 'Livebox-f8e8' (wlp2s0) as default for IPv4 routing and DNS
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7599] device (wlp2s0): Activation: successful, device activated.
Jul  4 07:56:43 localhost NetworkManager[507]: <info>  [1656914203.7611] manager: NetworkManager state is now CONNECTED_GLOBAL
Jul  4 07:56:43 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-74 noise=9999 txrate=260000
Jul  4 07:56:44 localhost systemd[1]: systemd-rfkill.service: Succeeded.
Jul  4 07:56:44 localhost set-cpufreq[522]: Setting powersave scheduler for all CPUs
Jul  4 07:56:44 localhost systemd[1]: ondemand.service: Succeeded.
Jul  4 07:56:44 localhost systemd[1]: dmesg.service: Succeeded.
Jul  4 07:56:46 localhost NetworkManager[507]: <info>  [1656914206.3433] manager: startup complete
Jul  4 07:56:46 localhost systemd[1]: Finished Network Manager Wait Online.
Jul  4 07:56:46 localhost systemd[1]: Reached target Network is Online.
Jul  4 07:56:46 localhost systemd[1]: Starting LSB: disk temperature monitoring daemon...
Jul  4 07:56:46 localhost systemd[1]: Starting Tool to automatically collect and submit kernel crash signatures...
Jul  4 07:56:46 localhost systemd[1]: Starting Postfix Mail Transport Agent (instance -)...
Jul  4 07:56:46 localhost systemd[1]: Started crash report submission daemon.
Jul  4 07:56:46 localhost systemd[1]: Started LSB: disk temperature monitoring daemon.
Jul  4 07:56:46 localhost systemd[1]: kerneloops.service: Found left-over process 1044 (kerneloops) in control group while starting unit. Ignoring.
Jul  4 07:56:46 localhost systemd[1]: This usually indicates unclean termination of a previous run, or service implementation deficiencies.
Jul  4 07:56:46 localhost systemd[1]: Starting rm_xfce4_graphic_configuration.service...
Jul  4 07:56:46 localhost systemd[1]: Started Tool to automatically collect and submit kernel crash signatures.
Jul  4 07:56:46 localhost whoopsie[1038]: [07:56:46] Using lock path: /var/lock/whoopsie/lock
Jul  4 07:56:46 localhost rm_xfce4_graphic_configuration[1047]: rm: impossible de supprimer '/home/MY_USER/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml': Aucun fichier ou dossier de ce type
Jul  4 07:56:46 localhost systemd[1]: rm_xfce4_graphic_configuration.service: Control process exited, code=exited, status=1/FAILURE
Jul  4 07:56:46 localhost systemd[1]: rm_xfce4_graphic_configuration.service: Failed with result 'exit-code'.
Jul  4 07:56:46 localhost systemd[1]: Failed to start rm_xfce4_graphic_configuration.service.
Jul  4 07:56:46 localhost postfix[1108]: Postfix is running with backwards-compatible default settings
Jul  4 07:56:46 localhost postfix[1108]: See http://www.postfix.org/COMPATIBILITY_README.html for details
Jul  4 07:56:46 localhost postfix[1108]: To disable backwards compatibility use "postconf compatibility_level=2" and "postfix reload"
Jul  4 07:56:46 localhost postfix/postfix-script[1171]: warning: symlink leaves directory: /etc/postfix/./makedefs.out
Jul  4 07:56:46 localhost postfix/postfix-script[1186]: warning: /var/spool/postfix/etc/ssl/certs/ca-certificates.crt and /etc/ssl/certs/ca-certificates.crt differ
Jul  4 07:56:46 localhost postfix/postfix-script[1217]: starting the Postfix mail system
Jul  4 07:56:46 localhost postfix/master[1219]: daemon started -- version 3.4.13, configuration /etc/postfix
Jul  4 07:56:46 localhost systemd[1]: Started Postfix Mail Transport Agent (instance -).
Jul  4 07:56:46 localhost systemd[1]: Starting Postfix Mail Transport Agent...
Jul  4 07:56:46 localhost systemd[1]: Finished Postfix Mail Transport Agent.
Jul  4 07:56:46 localhost systemd[1]: Reached target Multi-User System.
Jul  4 07:56:46 localhost systemd[1]: Reached target Graphical Interface.
Jul  4 07:56:46 localhost systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
Jul  4 07:56:46 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Jul  4 07:56:46 localhost systemd[1]: systemd-update-utmp-runlevel.service: Succeeded.
Jul  4 07:56:46 localhost systemd[1]: Finished Update UTMP about System Runlevel Changes.
Jul  4 07:56:46 localhost systemd[1]: Startup finished in 8.744s (firmware) + 6.058s (loader) + 1.365s (kernel) + 8.155s (userspace) = 24.323s.
Jul  4 07:56:47 localhost systemd[1]: Stopping Session c1 of user lightdm.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Supervising 2 threads of 1 processes of 1 users.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Successfully made thread 1230 of process 888 owned by '110' RT at priority 5.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Supervising 3 threads of 1 processes of 1 users.
Jul  4 07:56:47 localhost bluetoothd[501]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSink/sbc
Jul  4 07:56:47 localhost bluetoothd[501]: Endpoint unregistered: sender=:1.36 path=/MediaEndpoint/A2DPSource/sbc
Jul  4 07:56:47 localhost systemd[1]: Created slice User Slice of UID 1000.
Jul  4 07:56:47 localhost systemd[1]: Starting User Runtime Directory /run/user/1000...
Jul  4 07:56:47 localhost pulseaudio[888]: After module unload, module 'module-null-sink' was still loaded!
Jul  4 07:56:47 localhost systemd[877]: pulseaudio.service: Succeeded.
Jul  4 07:56:47 localhost systemd[1]: Finished User Runtime Directory /run/user/1000.
Jul  4 07:56:47 localhost systemd[1]: Starting User Manager for UID 1000...
Jul  4 07:56:47 localhost systemd[1]: session-c1.scope: Succeeded.
Jul  4 07:56:47 localhost systemd[1]: Stopped Session c1 of user lightdm.
Jul  4 07:56:47 localhost systemd[1233]: Reached target Paths.
Jul  4 07:56:47 localhost systemd[1233]: Reached target Timers.
Jul  4 07:56:47 localhost systemd[1233]: Starting D-Bus User Message Bus Socket.
Jul  4 07:56:47 localhost systemd[1233]: Listening on GnuPG network certificate management daemon.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Successfully made thread 1239 of process 1239 owned by '1000' high priority at nice level -11.
Jul  4 07:56:47 localhost systemd[1233]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jul  4 07:56:47 localhost rtkit-daemon[901]: Supervising 1 threads of 1 processes of 2 users.
Jul  4 07:56:47 localhost systemd[1233]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jul  4 07:56:47 localhost systemd[1233]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jul  4 07:56:47 localhost systemd[1233]: Listening on GnuPG cryptographic agent and passphrase cache.
Jul  4 07:56:47 localhost systemd[1233]: Listening on debconf communication socket.
Jul  4 07:56:47 localhost systemd[1233]: Listening on Sound System.
Jul  4 07:56:47 localhost systemd[1233]: Listening on REST API socket for snapd user session agent.
Jul  4 07:56:47 localhost systemd[1233]: Listening on D-Bus User Message Bus Socket.
Jul  4 07:56:47 localhost systemd[1233]: Reached target Sockets.
Jul  4 07:56:47 localhost systemd[1233]: Reached target Basic System.
Jul  4 07:56:47 localhost systemd[1]: Started User Manager for UID 1000.
Jul  4 07:56:47 localhost systemd[1233]: Starting Sound Service...
Jul  4 07:56:47 localhost systemd[1]: Started Session c2 of user MY_USER.
Jul  4 07:56:47 localhost systemd[1233]: Started D-Bus User Message Bus.
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] AppArmor D-Bus mediation is enabled
Jul  4 07:56:47 localhost rtkit-daemon[901]: Supervising 1 threads of 1 processes of 2 users.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Successfully made thread 1273 of process 1239 owned by '1000' RT at priority 5.
Jul  4 07:56:47 localhost rtkit-daemon[901]: Supervising 2 threads of 1 processes of 2 users.
Jul  4 07:56:47 localhost systemd[1233]: Started Sound Service.
Jul  4 07:56:47 localhost systemd[1233]: Reached target Main User Target.
Jul  4 07:56:47 localhost systemd[1233]: Startup finished in 278ms.
Jul  4 07:56:47 localhost bluetoothd[501]: Endpoint registered: sender=:1.52 path=/MediaEndpoint/A2DPSink/sbc
Jul  4 07:56:47 localhost bluetoothd[501]: Endpoint registered: sender=:1.52 path=/MediaEndpoint/A2DPSource/sbc
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.6' (uid=1000 pid=1240 comm="xfce4-session " label="unconfined")
Jul  4 07:56:47 localhost systemd[1233]: Starting Accessibility services bus...
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.a11y.Bus'
Jul  4 07:56:47 localhost systemd[1233]: Started Accessibility services bus.
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating service name='org.xfce.Xfconf' requested by ':1.8' (uid=1000 pid=1240 comm="xfce4-session " label="unconfined")
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.xfce.Xfconf'
Jul  4 07:56:47 localhost at-spi-bus-launcher[1344]: dbus-daemon[1344]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1240 comm="xfce4-session " label="unconfined")
Jul  4 07:56:47 localhost at-spi-bus-launcher[1344]: dbus-daemon[1344]: Successfully activated service 'org.a11y.atspi.Registry'
Jul  4 07:56:47 localhost at-spi-bus-launcher[1353]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating service name='org.xfce.ScreenSaver' requested by ':1.8' (uid=1000 pid=1240 comm="xfce4-session " label="unconfined")
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.11' (uid=1000 pid=1358 comm="/usr/bin/xfce4-screensaver --no-daemon " label="unconfined")
Jul  4 07:56:47 localhost systemd[1233]: Starting Virtual filesystem service...
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.Daemon'
Jul  4 07:56:47 localhost systemd[1233]: Started Virtual filesystem service.
Jul  4 07:56:47 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.xfce.ScreenSaver'
Jul  4 07:56:48 localhost dbus-daemon[505]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.56' (uid=1000 pid=1411 comm="/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 " label="unconfined")
Jul  4 07:56:48 localhost systemd[1]: Starting Daemon for power management...
Jul  4 07:56:48 localhost systemd[1233]: Started Indicator Messages Service.
Jul  4 07:56:48 localhost systemd[1233]: Reached target Target to start indicators for the xfce4-indicator-plugin.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating service name='org.freedesktop.thumbnails.Thumbnailer1' requested by ':1.20' (uid=1000 pid=1399 comm="xfdesktop " label="unconfined")
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.27' (uid=1000 pid=1414 comm="/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting XFCE notifications service...
Jul  4 07:56:48 localhost dbus-daemon[505]: [system] Successfully activated service 'org.freedesktop.UPower'
Jul  4 07:56:48 localhost systemd[1]: Started Daemon for power management.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.freedesktop.Notifications'
Jul  4 07:56:48 localhost systemd[1233]: Started XFCE notifications service.
Jul  4 07:56:48 localhost org.freedesktop.thumbnails.Thumbnailer1[1443]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Jul  4 07:56:48 localhost org.freedesktop.thumbnails.Thumbnailer1[1443]: Registered thumbnailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o
Jul  4 07:56:48 localhost org.freedesktop.thumbnails.Thumbnailer1[1443]: Registered thumbnailer atril-thumbnailer -s %s %u %o
Jul  4 07:56:48 localhost org.freedesktop.thumbnails.Thumbnailer1[1443]: Registered thumbnailer gnome-thumbnail-font --size %s %u %o
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.29' (uid=1000 pid=1443 comm="/usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem service - disk device monitor...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem service - disk device monitor.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.29' (uid=1000 pid=1443 comm="/usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd " label="unconfined")
Jul  4 07:56:48 localhost NetworkManager[507]: <info>  [1656914208.7923] agent-manager: agent[bc562d3d0715c9d2,:1.64/org.freedesktop.nm-applet/1000]: agent registered
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem service - Apple File Conduit monitor.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.29' (uid=1000 pid=1443 comm="/usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.29' (uid=1000 pid=1443 comm="/usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.29' (uid=1000 pid=1443 comm="/usr/lib/x86_64-linux-gnu/tumbler-1/tumblerd " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem service - digital camera monitor...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem service - digital camera monitor.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.20' (uid=1000 pid=1399 comm="xfdesktop " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Virtual filesystem metadata service...
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gtk.vfs.Metadata'
Jul  4 07:56:48 localhost systemd[1233]: Started Virtual filesystem metadata service.
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.36' (uid=1000 pid=1479 comm="/usr/bin/python3 /usr/bin/blueman-applet " label="unconfined")
Jul  4 07:56:48 localhost systemd[1233]: Starting Bluetooth OBEX service...
Jul  4 07:56:48 localhost obexd[1560]: OBEX daemon 5.53
Jul  4 07:56:48 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.bluez.obex'
Jul  4 07:56:48 localhost systemd[1233]: Started Bluetooth OBEX service.
Jul  4 07:56:50 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Activating service name='org.gnome.GConf' requested by ':1.50' (uid=1000 pid=1569 comm="/usr/lib/firefox/firefox " label="unconfined")
Jul  4 07:56:50 localhost dbus-daemon[1247]: [session uid=1000 pid=1247] Successfully activated service 'org.gnome.GConf'
Jul  4 07:56:50 localhost whoopsie[1038]: [07:56:50] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/1
Jul  4 07:56:50 localhost whoopsie[1038]: [07:56:50] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/1
Jul  4 07:56:50 localhost whoopsie[1038]: [07:56:50] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/1
Jul  4 07:56:54 localhost systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Jul  4 07:56:55 localhost snapd[527]: daemon.go:509: gracefully waiting for running hooks
Jul  4 07:56:55 localhost snapd[527]: daemon.go:511: done waiting for running hooks
Jul  4 07:56:55 localhost snapd[527]: daemon stop requested to wait for socket activation
Jul  4 07:56:55 localhost systemd[1]: snapd.service: Succeeded.
Jul  4 07:56:57 localhost systemd[1]: Stopping User Manager for UID 110...
Jul  4 07:56:57 localhost systemd[877]: Stopped target Main User Target.
Jul  4 07:56:57 localhost systemd[877]: Stopped target Sound Card.
Jul  4 07:56:57 localhost systemd[877]: Stopping Accessibility services bus...
Jul  4 07:56:57 localhost systemd[877]: Stopping D-Bus User Message Bus...
Jul  4 07:56:57 localhost systemd[877]: Stopping Virtual filesystem service...
Jul  4 07:56:57 localhost systemd[1]: run-user-110-gvfs.mount: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: run-user-110-gvfs.mount: Succeeded.
Jul  4 07:56:57 localhost systemd[1233]: run-user-110-gvfs.mount: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: dbus.service: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Stopped D-Bus User Message Bus.
Jul  4 07:56:57 localhost systemd[877]: at-spi-dbus-bus.service: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Stopped Accessibility services bus.
Jul  4 07:56:57 localhost systemd[877]: gvfs-daemon.service: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Stopped Virtual filesystem service.
Jul  4 07:56:57 localhost systemd[877]: Stopped target Basic System.
Jul  4 07:56:57 localhost systemd[877]: Stopped target Paths.
Jul  4 07:56:57 localhost systemd[877]: Stopped target Sockets.
Jul  4 07:56:57 localhost systemd[877]: Stopped target Timers.
Jul  4 07:56:57 localhost systemd[877]: dbus.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed D-Bus User Message Bus Socket.
Jul  4 07:56:57 localhost systemd[877]: dirmngr.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed GnuPG network certificate management daemon.
Jul  4 07:56:57 localhost systemd[877]: gpg-agent-browser.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jul  4 07:56:57 localhost systemd[877]: gpg-agent-extra.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jul  4 07:56:57 localhost systemd[877]: gpg-agent-ssh.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jul  4 07:56:57 localhost systemd[877]: gpg-agent.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed GnuPG cryptographic agent and passphrase cache.
Jul  4 07:56:57 localhost systemd[877]: pk-debconf-helper.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed debconf communication socket.
Jul  4 07:56:57 localhost systemd[877]: pulseaudio.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed Sound System.
Jul  4 07:56:57 localhost systemd[877]: snapd.session-agent.socket: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Closed REST API socket for snapd user session agent.
Jul  4 07:56:57 localhost systemd[877]: Reached target Shutdown.
Jul  4 07:56:57 localhost systemd[877]: systemd-exit.service: Succeeded.
Jul  4 07:56:57 localhost systemd[877]: Finished Exit the Session.
Jul  4 07:56:57 localhost systemd[877]: Reached target Exit the Session.
Jul  4 07:56:57 localhost systemd[1]: user@110.service: Succeeded.
Jul  4 07:56:57 localhost systemd[1]: Stopped User Manager for UID 110.
Jul  4 07:56:57 localhost systemd[1]: Stopping User Runtime Directory /run/user/110...
Jul  4 07:56:57 localhost systemd[1233]: run-user-110.mount: Succeeded.
Jul  4 07:56:57 localhost systemd[1]: run-user-110.mount: Succeeded.
Jul  4 07:56:57 localhost systemd[1]: user-runtime-dir@110.service: Succeeded.
Jul  4 07:56:57 localhost systemd[1]: Stopped User Runtime Directory /run/user/110.
Jul  4 07:56:57 localhost systemd[1]: Removed slice User Slice of UID 110.
Jul  4 07:57:09 localhost systemd[1]: systemd-fsckd.service: Succeeded.
Jul  4 07:57:09 localhost systemd-timesyncd[452]: Initial synchronization to time server 185.125.190.56:123 (ntp.ubuntu.com).
Jul  4 07:57:10 localhost systemd[1]: systemd-hostnamed.service: Succeeded.
Jul  4 07:57:10 localhost systemd[1]: blueman-mechanism.service: Succeeded.
Jul  4 07:57:10 localhost systemd[1]: systemd-timedated.service: Succeeded.
Jul  4 07:57:32 localhost systemd[1]: Starting Stop ureadahead data collection...
Jul  4 07:57:32 localhost systemd[1]: ureadahead-stop.service: Succeeded.
Jul  4 07:57:32 localhost systemd[1]: Finished Stop ureadahead data collection.
Jul  4 07:58:14 localhost systemd[1]: Starting Ubuntu Advantage Timer for running repeated jobs...
Jul  4 07:58:14 localhost systemd[1]: ua-timer.service: Succeeded.
Jul  4 07:58:14 localhost systemd[1]: Finished Ubuntu Advantage Timer for running repeated jobs.
Jul  4 07:58:18 localhost kernel: [  101.355401] wlp2s0: disassociated from 94:a6:7e:77:2c:18 (Reason: 1=UNSPECIFIED)
Jul  4 07:58:18 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=0 noise=9999 txrate=0
Jul  4 07:58:18 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-DISCONNECTED bssid=94:a6:7e:77:2c:18 reason=1
Jul  4 07:58:18 localhost NetworkManager[507]: <warn>  [1656914298.1583] sup-iface[0x558fd0644120,wlp2s0]: connection disconnected (reason 1)
Jul  4 07:58:18 localhost NetworkManager[507]: <info>  [1656914298.1636] device (wlp2s0): supplicant interface state: completed -> disconnected
Jul  4 07:58:18 localhost NetworkManager[507]: <info>  [1656914298.1636] device (p2p-dev-wlp2s0): supplicant management interface state: completed -> disconnected
Jul  4 07:58:18 localhost wpa_supplicant[533]: wlp2s0: Reject scan trigger since one is already pending
Jul  4 07:58:18 localhost wpa_supplicant[533]: wlp2s0: Failed to initiate AP scan
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: Reject scan trigger since one is already pending
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: Failed to initiate AP scan
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: SME: Trying to authenticate with 94:a6:7e:77:2c:17 (SSID='Livebox-f8e8' freq=2437 MHz)
Jul  4 07:58:19 localhost kernel: [  102.798287] wlp2s0: authenticate with 94:a6:7e:77:2c:17
Jul  4 07:58:19 localhost kernel: [  102.801998] wlp2s0: send auth to 94:a6:7e:77:2c:17 (try 1/3)
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: Trying to associate with 94:a6:7e:77:2c:17 (SSID='Livebox-f8e8' freq=2437 MHz)
Jul  4 07:58:19 localhost kernel: [  102.806985] wlp2s0: authenticated
Jul  4 07:58:19 localhost kernel: [  102.807190] wlp2s0: associating with AP with corrupt beacon
Jul  4 07:58:19 localhost kernel: [  102.810232] wlp2s0: associate with 94:a6:7e:77:2c:17 (try 1/3)
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.5460] device (wlp2s0): supplicant interface state: disconnected -> authenticating
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.5486] device (p2p-dev-wlp2s0): supplicant management interface state: disconnected -> authenticating
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.5567] device (wlp2s0): supplicant interface state: authenticating -> associating
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.5567] device (p2p-dev-wlp2s0): supplicant management interface state: authenticating -> associating
Jul  4 07:58:19 localhost kernel: [  102.864188] wlp2s0: RX AssocResp from 94:a6:7e:77:2c:17 (capab=0x1431 status=0 aid=1)
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: Associated with 94:a6:7e:77:2c:17
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jul  4 07:58:19 localhost kernel: [  102.870744] wlp2s0: associated
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.6004] device (wlp2s0): supplicant interface state: associating -> 4-way handshake
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.6005] device (p2p-dev-wlp2s0): supplicant management interface state: associating -> 4-way handshake
Jul  4 07:58:19 localhost kernel: [  102.878322] wlp2s0: Limiting TX power to 36 (36 - 0) dBm as advertised by 94:a6:7e:77:2c:17
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: WPA: Key negotiation completed with 94:a6:7e:77:2c:17 [PTK=CCMP GTK=TKIP]
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-CONNECTED - Connection to 94:a6:7e:77:2c:17 completed [id=0 id_str=]
Jul  4 07:58:19 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=0 signal=-64 noise=9999 txrate=1000
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.6525] device (wlp2s0): supplicant interface state: 4-way handshake -> completed
Jul  4 07:58:19 localhost NetworkManager[507]: <info>  [1656914299.6534] device (p2p-dev-wlp2s0): supplicant management interface state: 4-way handshake -> completed
Jul  4 07:58:56 localhost wpa_supplicant[533]: wlp2s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-62 noise=9999 txrate=57800
Jul  4 08:00:32 localhost systemd[1]: Started Session 4 of user MY_USER.
Jul  4 08:02:24 localhost systemd[1]: Started Session 5 of user MY_USER.

Le fichier lightdm.conf lui :

[+11.14s] DEBUG: Greeter connected version=1.30.0 api=1 resettable=false
[+17.28s] DEBUG: Greeter start authentication
[+17.28s] DEBUG: Session pid=1291: Started with service 'lightdm', username '(null)'
[+17.30s] DEBUG: Greeter start authentication for MY_USER
[+17.30s] DEBUG: Session pid=1291: Sending SIGTERM
[+17.30s] DEBUG: Session pid=1294: Started with service 'lightdm-autologin', username 'MY_USER'
[+17.30s] DEBUG: Session pid=1291: Terminated with signal 15
[+17.30s] DEBUG: Session: Failed during authentication
[+17.30s] DEBUG: Seat seat0: Session stopped
[+17.31s] DEBUG: Session pid=1294: Authentication complete with return value 0: Success
[+17.31s] DEBUG: Authenticate result for user MY_USER: Success
[+17.31s] DEBUG: User MY_USER authorized
[+5094.19s] DEBUG: Got signal 15 from process 1
[+5094.19s] DEBUG: Caught Terminated signal, shutting down
[+5094.19s] DEBUG: Stopping display manager
[+5094.19s] DEBUG: Seat seat0: Stopping
[+5094.19s] DEBUG: Seat seat0: Stopping display server
[+5094.19s] DEBUG: Sending signal 15 to process 752
[+5094.19s] DEBUG: Seat seat0: Stopping session
[+5094.19s] DEBUG: Terminating login1 session c1
[+5094.25s] DEBUG: Session pid=955: Sending SIGTERM
[+5094.25s] DEBUG: Seat seat0: Stopping session
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] WARNING: Session pid=1294: Error writing to session: Broken pipe
[+5094.25s] DEBUG: Greeter closed communication channel
[+5094.25s] DEBUG: Session pid=955: Exited with return value 0
[+5094.25s] DEBUG: Seat seat0: Session stopped
[+5094.25s] DEBUG: Session pid=1294: Terminated with signal 15
[+5094.25s] DEBUG: Seat seat0: Session stopped
[+5094.26s] DEBUG: Seat seat0 changes active session to 
[+5094.97s] DEBUG: Process 752 exited with return value 0
[+5094.97s] DEBUG: XServer 0: X server stopped
[+5094.97s] DEBUG: Releasing VT 7
[+5094.97s] DEBUG: XServer 0: Removing X server authority /var/run/lightdm/root/:0
[+5094.97s] DEBUG: Seat seat0: Display server stopped
[+5094.97s] DEBUG: Seat seat0: Stopped
[+5094.97s] DEBUG: Display manager stopped
[+5094.97s] DEBUG: Stopping daemon
[+5094.98s] DEBUG: Exiting with return value 0
[+0.00s] DEBUG: Logging to /var/log/lightdm/lightdm.log
[+0.00s] DEBUG: Starting Light Display Manager 1.30.0, UID=0 PID=641
[+0.00s] DEBUG: Loading configuration dirs from /usr/share/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-guest.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-disable-log-backup.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-greeter-wrapper.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-guest-wrapper.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xserver-command.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/50-xubuntu-numlock.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/60-lightdm-autologin-greeter.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/60-lightdm-gtk-greeter.conf
[+0.00s] DEBUG: Loading configuration from /usr/share/lightdm/lightdm.conf.d/60-xubuntu.conf
[+0.00s] DEBUG: Loading configuration dirs from /usr/local/share/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration dirs from /etc/xdg/lightdm/lightdm.conf.d
[+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf.d/lightdm-autologin-greeter.conf
[+0.00s] DEBUG: Loading configuration from /etc/lightdm/lightdm.conf
[+0.00s] DEBUG: Registered seat module local
[+0.00s] DEBUG: Registered seat module xremote
[+0.00s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
[+0.01s] DEBUG: _g_io_module_get_default: Found default implementation local (GLocalVfs) for ‘gio-vfs’
[+0.01s] DEBUG: Monitoring logind for seats
[+0.01s] DEBUG: New seat added from logind: seat0
[+0.01s] DEBUG: Seat seat0: Loading properties from config section Seat:*
[+0.01s] DEBUG: Seat seat0: Starting
[+0.01s] DEBUG: Seat seat0: Creating greeter session
[+0.01s] DEBUG: Seat seat0: Creating display server of type x
[+0.01s] DEBUG: posix_spawn avoided (fd close requested) 
[+0.01s] DEBUG: Using VT 7
[+0.01s] DEBUG: Seat seat0: Starting local X display on VT 7
[+0.01s] DEBUG: XServer 0: Logging to /var/log/lightdm/x-0.log
[+0.01s] DEBUG: XServer 0: Writing X server authority to /var/run/lightdm/root/:0
[+0.01s] DEBUG: XServer 0: Launching X Server
[+0.01s] DEBUG: Launching process 669: /usr/bin/X -core :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
[+0.01s] DEBUG: XServer 0: Waiting for ready signal from X server :0
[+0.02s] DEBUG: Acquired bus name org.freedesktop.DisplayManager
[+0.02s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0
[+0.06s] DEBUG: Loading users from org.freedesktop.Accounts
[+0.06s] DEBUG: User /org/freedesktop/Accounts/User1000 added
[+0.18s] DEBUG: posix_spawn avoided (automatic reaping requested) (fd close requested) 
[+1.19s] DEBUG: Got signal 10 from process 669
[+1.19s] DEBUG: XServer 0: Got signal from X server :0
[+1.19s] DEBUG: XServer 0: Connecting to XServer :0
[+1.19s] DEBUG: posix_spawn avoided (fd close requested) (child_setup specified) 
[+1.19s] DEBUG: Seat seat0: Display server ready, starting session authentication
[+1.19s] DEBUG: Session pid=835: Started with service 'lightdm-greeter', username 'lightdm'
[+1.20s] DEBUG: Session pid=835: Authentication complete with return value 0: Success
[+1.20s] DEBUG: Seat seat0: Session authenticated, running command
[+1.20s] DEBUG: Launching process 838: xubuntu-numlockx
[+1.41s] DEBUG: Process 838 exited with return value 0
[+1.41s] DEBUG: Seat seat0: Exit status of xubuntu-numlockx: 0
[+1.41s] DEBUG: Session pid=835: Running command /usr/lib/lightdm/lightdm-greeter-session /usr/sbin/lightdm-gtk-greeter
[+1.41s] DEBUG: Creating shared data directory /var/lib/lightdm-data/lightdm
[+1.41s] DEBUG: Session pid=835: Logging to /var/log/lightdm/seat0-greeter.log
[+1.53s] DEBUG: Activating VT 7
[+1.53s] DEBUG: Activating login1 session c1
[+1.53s] DEBUG: Seat seat0 changes active session to c1
[+1.53s] DEBUG: Session c1 is already active
[+1.90s] DEBUG: Greeter connected version=1.30.0 api=1 resettable=false
[+2.28s] DEBUG: Greeter start authentication
[+2.28s] DEBUG: Session pid=943: Started with service 'lightdm', username '(null)'
[+2.29s] DEBUG: Session pid=943: Got 1 message(s) from PAM
[+2.29s] DEBUG: Prompt greeter with 1 message(s)
[+6.90s] DEBUG: Greeter start authentication for MY_USER
[+6.90s] DEBUG: Session pid=943: Sending SIGTERM
[+6.90s] DEBUG: Session pid=1224: Started with service 'lightdm-autologin', username 'MY_USER'
[+6.90s] DEBUG: Session pid=943: Terminated with signal 15
[+6.90s] DEBUG: Session: Failed during authentication
[+6.90s] DEBUG: Seat seat0: Session stopped
[+7.26s] DEBUG: Session pid=1224: Authentication complete with return value 0: Success
[+7.26s] DEBUG: Authenticate result for user MY_USER: Success
[+7.26s] DEBUG: User MY_USER authorized
[+7.26s] DEBUG: Greeter sets language fr_FR
[+7.29s] DEBUG: Greeter requests session xubuntu
[+7.31s] DEBUG: Seat seat0: Stopping greeter; display server will be re-used for user session
[+7.31s] DEBUG: Terminating login1 session c1
[+7.31s] DEBUG: Session pid=835: Sending SIGTERM
[+7.32s] DEBUG: Session pid=835: Exited with return value 0
[+7.32s] DEBUG: Seat seat0: Session stopped
[+7.32s] DEBUG: Seat seat0: Greeter stopped, running session
[+7.32s] DEBUG: Registering session with bus path /org/freedesktop/DisplayManager/Session0
[+7.32s] DEBUG: posix_spawn avoided (fd close requested) (child_setup specified) 
[+7.32s] DEBUG: Session pid=1224: Running command /usr/sbin/lightdm-session startxfce4
[+7.32s] DEBUG: Creating shared data directory /var/lib/lightdm-data/MY_USER
[+7.32s] DEBUG: Session pid=1224: Logging to .xsession-errors
[+7.39s] DEBUG: Activating VT 7
[+7.39s] DEBUG: Activating login1 session c2
[+7.40s] DEBUG: Seat seat0 changes active session to c2
[+7.40s] DEBUG: Session c2 is already active

Le fichier displays.xml est supprimé à chaque démarrage pour que la résolution qui est dans le xorg.conf soit prise en compte, le problème peut-il venir de là ?

Hors ligne

#19 Le 04/07/2022, à 11:29

DZ

Re : Connexion automatique avec Lightdm

Il semblerait que la solution soit ici :
https://forum.manjaro.org/t/failed-to-s … em/62162/4
Je vais le mettre en place et observer.

Hors ligne

#20 Le 13/07/2022, à 10:10

DZ

Re : Connexion automatique avec Lightdm

Malheureusement, non, régulièrement le lundi j'ai des machines qui restent sur l'écran "se connecter" puis se mettent en veille au lieu de se connecter automatiquement.

Hors ligne