#1 Le 13/04/2025, à 16:34
- Hizoka
syslog se remplit à plusieurs centaines de go
Bonjour,
j'ai un souci, hier, j'ai du supprimer le fichier /var/log/syslog qui atteignait plus de 250go et qu bloquait tout.
Et là, je vois qu'il se remplit à nouveau avec :
2025-04-13T16:27:43.359559+02:00 localhost hizo[2693]: [2693:0413/162743.359520:ERROR:shared_image_stub.cc(589)] SharedImageStub: unable to create context
2025-04-13T16:27:43.359586+02:00 localhost hizo[2693]: [2693:0413/162743.359547:ERROR:gpu_channel.cc(834)] GpuChannel: Failed to create SharedImageStub
2025-04-13T16:27:43.359649+02:00 localhost hizo[2693]: [2693:0413/162743.359605:ERROR:gl_surface_egl.cc(303)] No suitable EGL configs found.
2025-04-13T16:27:43.359676+02:00 localhost hizo[2693]: [2693:0413/162743.359636:ERROR:gl_context_egl.cc(159)] Failed to get config for surface (nil)
2025-04-13T16:27:43.359704+02:00 localhost hizo[2693]: [2693:0413/162743.359664:ERROR:gpu_channel_manager.cc(952)] Failed to create GLES3 context, fallback to GLES2.
2025-04-13T16:27:43.359736+02:00 localhost hizo[2693]: [2693:0413/162743.359693:ERROR:gl_surface_egl.cc(303)] No suitable EGL configs found.
2025-04-13T16:27:43.359772+02:00 localhost hizo[2693]: [2693:0413/162743.359720:ERROR:gl_context_egl.cc(159)] Failed to get config for surface (nil)
2025-04-13T16:27:43.359800+02:00 localhost hizo[2693]: [2693:0413/162743.359760:ERROR:gpu_channel_manager.cc(963)] ContextResult::kFatalFailure: Failed to create shared context for virtualization.
Qui se répètent plusieurs 10e de fois par seconde.
Une idée de comment résoudre le problème ou de bloquer ces messages ?
Merci
Distributor ID: Neon
Description: KDE neon 6.3
Release: 24.04
Codename: noble
plasmashell 6.3.4
Drivers NVIDIA 570.124.04 pour ma NVIDIA GeForce RTX 4070
Dernière modification par Hizoka (Le 13/04/2025, à 16:35)
KDE Neon 64bits
Tous mes softs (MKVExtractorQt, HizoSelect, HizoProgress, Qtesseract, Keneric, Services menus...) sont sur github
Hors ligne
#2 Le 13/04/2025, à 16:38
- geole
Re : syslog se remplit à plusieurs centaines de go
Bonjour
Le plus simple est de ne pas écrire dans syslog
Eviter d'écrire en double exemplaire les traces du fonctionnement du logiciel
Depuis quelques années, le logiciel écrit ses traces de fonctionnement de façon standard dans le répertoires /var/log/journal. Pour raison de compatibilité avec le passé, il duplique dans les fichiers /var/log/syslog et /var/log/kern.
Cependant il faut savoir tourner la page. Surtout qu'il fournit un outil de consultation Paragraphe 3.1 dans le nouveau mode et pas dans l'ancienne méthode.
Voir l'explication.
head -13 /etc/rsyslog.d/50-default.conf
# Default rules for rsyslog.
#
# For more information see rsyslog.conf(5) and /etc/rsyslog.conf
#
# First some standard log files. Log by facility.
#
auth,authpriv.* /var/log/auth.log
#*.*;auth,authpriv.none -/var/log/syslog
#cron.* /var/log/cron.log
#daemon.* -/var/log/daemon.log
#kern.* -/var/log/kern.log
#lpr.* -/var/log/lpr.log
Il est possible de faire la modification en lignes de commandes
sudo cp -v /etc/rsyslog.d/50-default.conf /etc/rsyslog.d/50-default.conf.REF
sudo sed -ri 's/^(\*\.\*;auth,authpriv\.none)/#\1/;s/^(kern\.\*)/#\1/' /etc/rsyslog.d/50-default.conf
Puis faire la prise en compte
systemctl restart systemd-journald
sudo logrotate -f /etc/logrotate.conf
et réaliser l'épuration
sudo rm -v /var/log/kern*
sudo rm -v /var/log/syslog*
Dernière modification par geole (Le 13/04/2025, à 16:59)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
Je défie QUICONQUE de trouver une discussion où j'aurais suggéré de remplacer un SSD par un disque dur.
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#3 Le 13/04/2025, à 17:08
- Hizoka
Re : syslog se remplit à plusieurs centaines de go
Merci, je pensais que syslog était toujours d'actualité.
En effet, même après un redémarrage, plus de fichier syslog.
KDE Neon 64bits
Tous mes softs (MKVExtractorQt, HizoSelect, HizoProgress, Qtesseract, Keneric, Services menus...) sont sur github
Hors ligne
#4 Le 13/04/2025, à 17:12
- iznobe
Re : syslog se remplit à plusieurs centaines de go
2025-04-13T16:27:43.359800+02:00 localhost hizo[2693]: [2693:0413/162743.359760:ERROR:gpu_channel_manager.cc(963)] ContextResult::kFatalFailure: Failed to create shared context for virtualization.
Bonjour , vu cette dernière ligne , ca n' aurait pas un rapport avec ton logiciel de VM ? virtual box qemu ou je ne sais quel autre que tu utiliserais .
retour COMPLET et utilisable de commande | script montage partition ext4
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#5 Le 13/04/2025, à 17:23
- geole
Re : syslog se remplit à plusieurs centaines de go
Donne
journalctl --no-pager -b -p err -n 50
journalctl --no-pager -b -n 50
Dernière modification par geole (Le 13/04/2025, à 17:35)
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
Je défie QUICONQUE de trouver une discussion où j'aurais suggéré de remplacer un SSD par un disque dur.
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#6 Hier à 10:41
- Hizoka
Re : syslog se remplit à plusieurs centaines de go
Bonjour , vu cette dernière ligne , ca n' aurait pas un rapport avec ton logiciel de VM ? virtual box qemu ou je ne sais quel autre que tu utiliserais .
J'ai virtualBox mais je ne l'utilise que rarement, je viens de regardé, il n'est pas lancé.
Pour info, je ne suis pas sous wayland.
Et je n'utilise pas google-chrome ou chromium mais Firefox.
journalctl --no-pager -b -p err -n 50
avril 14 08:49:00 hizo-pc systemd-udevd[456]: /etc/udev/rules.d/50-oculus.rules:1 Invalid key '"SUBSYSTEM'.
avril 14 08:49:01 hizo-pc kernel:
avril 14 08:49:04 hizo-pc blkmapd[1345]: open pipe file /run/rpc_pipefs/nfs/blocklayout failed: No such file or directory
avril 14 08:49:04 hizo-pc bluetoothd[1380]: profiles/sap/server.c:sap_server_register() Sap driver initialization failed.
avril 14 08:49:04 hizo-pc bluetoothd[1380]: sap-server: Operation not permitted (1)
avril 14 08:49:05 hizo-pc systemd-udevd[456]: /etc/udev/rules.d/50-oculus.rules:1 Invalid key '"SUBSYSTEM'.
avril 14 08:49:09 hizo-pc systemd-udevd[456]: /etc/udev/rules.d/50-oculus.rules:1 Invalid key '"SUBSYSTEM'.
avril 14 08:49:09 hizo-pc systemd[1777]: /run/user/1000/systemd/generator.late/app-HizoAutostart@autostart.service:18: WorkingDirectory= path is not absolute, ignoring:
journalctl --no-pager -b -n 50
avril 14 10:17:05 hizo-pc hizo[13076]: <<<<================================>>>>
avril 14 10:17:05 hizo-pc hizo[2433]: 10:17:05.416 › [RPCServer:IPC] Socket Emit: 3 [object Object]
avril 14 10:17:05 hizo-pc boinc[2916]: 14-Apr-2025 10:17:05 [---] Suspending GPU computation - computer is in use
avril 14 10:20:10 hizo-pc boinc[2916]: 14-Apr-2025 10:20:10 [---] Resuming GPU computation
avril 14 10:20:20 hizo-pc systemd[1]: Starting sysstat-collect.service - system activity accounting tool...
avril 14 10:20:20 hizo-pc systemd[1]: sysstat-collect.service: Deactivated successfully.
avril 14 10:20:20 hizo-pc systemd[1]: Finished sysstat-collect.service - system activity accounting tool.
avril 14 10:25:01 hizo-pc CRON[13415]: pam_unix(cron:session): session opened for user root(uid=0) by root(uid=0)
avril 14 10:25:01 hizo-pc CRON[13416]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
avril 14 10:25:01 hizo-pc CRON[13415]: pam_unix(cron:session): session closed for user root
avril 14 10:29:02 hizo-pc boinc[2916]: 14-Apr-2025 10:29:02 [---] Suspending GPU computation - computer is in use
avril 14 10:30:00 hizo-pc systemd[1]: Starting sysstat-collect.service - system activity accounting tool...
avril 14 10:30:00 hizo-pc systemd[1]: sysstat-collect.service: Deactivated successfully.
avril 14 10:30:00 hizo-pc systemd[1]: Finished sysstat-collect.service - system activity accounting tool.
avril 14 10:30:01 hizo-pc CRON[13588]: pam_unix(cron:session): session opened for user root(uid=0) by root(uid=0)
avril 14 10:30:01 hizo-pc CRON[13589]: (root) CMD ([ -x /etc/init.d/anacron ] && if [ ! -d /run/systemd/system ]; then /usr/sbin/invoke-rc.d anacron start >/dev/null; fi)
avril 14 10:30:01 hizo-pc CRON[13588]: pam_unix(cron:session): session closed for user root
avril 14 10:32:03 hizo-pc boinc[2916]: 14-Apr-2025 10:32:03 [---] Resuming GPU computation
avril 14 10:34:00 hizo-pc systemd[1]: Started anacron.service - Run anacron jobs.
avril 14 10:34:00 hizo-pc anacron[13723]: Anacron 2.3 started on 2025-04-14
avril 14 10:34:00 hizo-pc anacron[13723]: Normal exit (0 jobs run)
avril 14 10:34:00 hizo-pc systemd[1]: anacron.service: Deactivated successfully.
avril 14 10:35:01 hizo-pc CRON[13768]: pam_unix(cron:session): session opened for user root(uid=0) by root(uid=0)
avril 14 10:35:01 hizo-pc CRON[13769]: (root) CMD (command -v debian-sa1 > /dev/null && debian-sa1 1 1)
avril 14 10:35:01 hizo-pc CRON[13768]: pam_unix(cron:session): session closed for user root
avril 14 10:35:41 hizo-pc plasmashell[2041]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/delegates/DelegatePopup.qml:145:17: QML Body: Binding loop detected for property "width"
avril 14 10:35:59 hizo-pc boinc[2916]: 14-Apr-2025 10:35:59 [---] Suspending GPU computation - computer is in use
avril 14 10:40:00 hizo-pc systemd[1]: Starting apt-daily.service - Daily apt download activities...
avril 14 10:40:00 hizo-pc systemd[1]: Starting sysstat-collect.service - system activity accounting tool...
avril 14 10:40:00 hizo-pc systemd[1]: sysstat-collect.service: Deactivated successfully.
avril 14 10:40:00 hizo-pc systemd[1]: Finished sysstat-collect.service - system activity accounting tool.
avril 14 10:40:01 hizo-pc dbus-daemon[1381]: [system] Activating via systemd: service name='org.freedesktop.PackageKit' unit='packagekit.service' requested by ':1.198' (uid=0 pid=14989 comm="/usr/bin/gdbus call --system --dest org.freedeskto" label="unconfined")
avril 14 10:40:01 hizo-pc PackageKit[14993]: daemon start
avril 14 10:40:01 hizo-pc systemd[1]: Starting packagekit.service - PackageKit Daemon...
avril 14 10:40:01 hizo-pc dbus-daemon[1381]: [system] Successfully activated service 'org.freedesktop.PackageKit'
avril 14 10:40:01 hizo-pc systemd[1]: Started packagekit.service - PackageKit Daemon.
avril 14 10:40:02 hizo-pc packagekitd[14993]: Starting pkgProblemResolver with broken count: 0
avril 14 10:40:03 hizo-pc packagekitd[14993]: Starting 2 pkgProblemResolver with broken count: 0
avril 14 10:40:03 hizo-pc packagekitd[14993]: Done
avril 14 10:40:03 hizo-pc packagekitd[14993]: Entering ResolveByKeep
avril 14 10:40:03 hizo-pc PackageKit[14993]: get-updates transaction /2268_bbaccaab from uid 1000 finished with success after 1790ms
avril 14 10:40:04 hizo-pc systemd[1]: apt-daily.service: Deactivated successfully.
avril 14 10:40:04 hizo-pc systemd[1]: Finished apt-daily.service - Daily apt download activities.
avril 14 10:40:04 hizo-pc systemd[1]: apt-daily.service: Consumed 4.896s CPU time.
avril 14 10:40:05 hizo-pc packagekitd[14993]: Starting pkgProblemResolver with broken count: 0
avril 14 10:40:05 hizo-pc packagekitd[14993]: Starting 2 pkgProblemResolver with broken count: 0
avril 14 10:40:05 hizo-pc packagekitd[14993]: Done
avril 14 10:40:05 hizo-pc packagekitd[14993]: Entering ResolveByKeep
avril 14 10:40:06 hizo-pc PackageKit[14993]: get-updates transaction /2269_ddacbdce from uid 1000 finished with success after 1670ms
avril 14 10:40:22 hizo-pc systemd[1777]: app-freetube@3faec9a54fc94eee8d41b36dd7e29ef3.service: Consumed 14min 45.716s CPU time, 723.9M memory peak, 0B memory swap peak.
KDE Neon 64bits
Tous mes softs (MKVExtractorQt, HizoSelect, HizoProgress, Qtesseract, Keneric, Services menus...) sont sur github
Hors ligne
#7 Hier à 10:56
- geole
Re : syslog se remplit à plusieurs centaines de go
Bonjour
A priori, actuellement tout va bien.
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
Je défie QUICONQUE de trouver une discussion où j'aurais suggéré de remplacer un SSD par un disque dur.
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#8 Hier à 12:24
- ylag
Re : syslog se remplit à plusieurs centaines de go
Bonjour,
Vu au #6 :
"hizo-pc systemd-udevd[456]: /etc/udev/rules.d/50-oculus.rules:1 Invalid key '"SUBSYSTEM'.
Il y aurait une erreur dans ce fichier ?
Sauf erreur de ma part, faudrait probablement mettre SUBSYSTEM au lieu de "SUBSYSTEM ?
Fait voir le contenu du fichier :
cat /etc/udev/rules.d/50-oculus.rules
A+
Dernière modification par ylag (Hier à 12:25)
Hors ligne
#9 Hier à 17:21
- Hizoka
Re : syslog se remplit à plusieurs centaines de go
@ylag
Bien vu, il y avait un " en rab
Je vois que mon dossier journal se remplit (moins vite) :
ls -l /var/log/journal/53c196aa7f2943ab969a5865cb6c2602/
total 4131188
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 12:44 system@4159e565554c4aa89032e6e3899fc4c6-0000000002f3b69b-000632a69cb7c6e2.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 12:44 system@4159e565554c4aa89032e6e3899fc4c6-0000000002f3bead-000632a69d41e8a0.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 12:52 system@4159e565554c4aa89032e6e3899fc4c6-0000000002f40f71-000632a69ebaf681.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:01 system@4159e565554c4aa89032e6e3899fc4c6-0000000002f6baa1-000632a6bb9ea0e3.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:09 system@4159e565554c4aa89032e6e3899fc4c6-0000000002f98350-000632a6dac441dc.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:18 system@4159e565554c4aa89032e6e3899fc4c6-0000000002fc2f0b-000632a6fa2de55c.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:26 system@4159e565554c4aa89032e6e3899fc4c6-0000000002fedac6-000632a7179048bc.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:35 system@4159e565554c4aa89032e6e3899fc4c6-0000000003018678-000632a736f9ded0.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:43 system@4159e565554c4aa89032e6e3899fc4c6-0000000003043232-000632a7555fdbd4.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 13:52 system@4159e565554c4aa89032e6e3899fc4c6-000000000306ddde-000632a773c5d8e8.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:00 system@4159e565554c4aa89032e6e3899fc4c6-0000000003098aa0-000632a7922bd5dd.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:09 system@4159e565554c4aa89032e6e3899fc4c6-00000000030c368b-000632a7b091d2c8.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:17 system@4159e565554c4aa89032e6e3899fc4c6-00000000030ee238-000632a7cef7cfac.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:26 system@4159e565554c4aa89032e6e3899fc4c6-0000000003118dec-000632a7ed5dcd00.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:34 system@4159e565554c4aa89032e6e3899fc4c6-000000000314399e-000632a80bc3ca17.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:43 system@4159e565554c4aa89032e6e3899fc4c6-000000000316e554-000632a82a074b23.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 14:51 system@4159e565554c4aa89032e6e3899fc4c6-0000000003199106-000632a8488fc37d.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:00 system@4159e565554c4aa89032e6e3899fc4c6-00000000031c3cba-000632a866f5c07d.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:08 system@4159e565554c4aa89032e6e3899fc4c6-00000000031ee86d-000632a883bf937b.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:17 system@4159e565554c4aa89032e6e3899fc4c6-000000000321941c-000632a8a3c1ba09.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:25 system@4159e565554c4aa89032e6e3899fc4c6-0000000003243fd3-000632a8c227b6de.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:34 system@4159e565554c4aa89032e6e3899fc4c6-000000000326ebb1-000632a8e08db33a.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:42 system@4159e565554c4aa89032e6e3899fc4c6-0000000003299765-000632a8fef3afe4.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:50 system@4159e565554c4aa89032e6e3899fc4c6-00000000032c4cd8-000632a91d59aca8.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 15:56 system@4159e565554c4aa89032e6e3899fc4c6-00000000032ef888-000632a939f5e5e3.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:02 system@4159e565554c4aa89032e6e3899fc4c6-0000000003319f0c-000632a94da14d83.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:09 system@4159e565554c4aa89032e6e3899fc4c6-00000000033440f0-000632a964e03c35.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:18 system@4159e565554c4aa89032e6e3899fc4c6-000000000336e91a-000632a97de52da5.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:26 system@4159e565554c4aa89032e6e3899fc4c6-0000000003398b1f-000632a99c4eeaf9.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:32 system@4159e565554c4aa89032e6e3899fc4c6-00000000033c5ffb-000632a9bab4e7d8.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:39 system@4159e565554c4aa89032e6e3899fc4c6-00000000033eeec6-000632a9ce604f37.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:46 system@4159e565554c4aa89032e6e3899fc4c6-000000000341955c-000632a9e769013a.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:55 system@4159e565554c4aa89032e6e3899fc4c6-0000000003442d83-000632aa023b76b6.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 16:59 system@4159e565554c4aa89032e6e3899fc4c6-000000000346f681-000632aa20a173b9.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 17:00 system@4159e565554c4aa89032e6e3899fc4c6-00000000034971b6-000632aa2ee31ea8.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 12 09:30 system@50084ab768944ec69ba241476d27300e-0000000002f37c17-0006328fc903bcbb.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 12 17:34 system@50084ab768944ec69ba241476d27300e-0000000002f38463-0006328fc98dfa4e.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 08:49 system@7ac47c578be24c8494a2e52a16109350-00000000034a408e-000632b7726d6329.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 08:49 system@7ac47c578be24c8494a2e52a16109350-00000000034a48a0-000632b772f68f60.journal
-rw-r-----+ 1 root systemd-journal 75497472 avril 11 23:26 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002d08303-000632873a3835ee.journal
-rw-r-----+ 1 root systemd-journal 67108864 avril 11 23:34 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002d6acb8-000632875a67f4f3.journal
-rw-r-----+ 1 root systemd-journal 75497472 avril 11 23:43 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002dc7eaa-0006328778cdf063.journal
-rw-r-----+ 1 root systemd-journal 67108864 avril 11 23:52 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002e2a86d-0006328798fdafd4.journal
-rw-r-----+ 1 root systemd-journal 75497472 avril 12 00:01 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002e8797d-00063287b763aaf1.journal
-rw-r-----+ 1 root systemd-journal 50331648 avril 12 00:09 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002eea2cd-00063287d79369f6.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 12 09:29 system@be2d783d3eb342bfb05958c9c7f1a858-0000000002f3214f-00063287f6e71f49.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 12 17:34 system@cb16c7a30e8a4b848a5fa3ba7c3c98c2-0000000002f399de-000632968ee99b9c.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 12:43 system@cb16c7a30e8a4b848a5fa3ba7c3c98c2-0000000002f3a1ea-000632968f73a6bc.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 17:01 system@e145b9af4ef046398465cc235f385343-00000000034a23a6-000632aa33ff159d.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 08:49 system@e145b9af4ef046398465cc235f385343-00000000034a2bad-000632aa346c292a.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 17:22 system.journal
-rw-r-----+ 1 root systemd-journal 16777216 avril 13 12:44 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002f3beac-000632a69d4057a3.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 12:52 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002f40f84-000632a69efbee9a.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:01 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002f6ba77-000632a6bb9d98de.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:09 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002f964db-000632a6da01e820.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:18 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002fc0f8f-000632a6f867c56e.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:26 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000002feba28-000632a716cdbcf5.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:35 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000030164d3-000632a73533a851.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:43 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003040f86-000632a753995154.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 13:52 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000306ba2b-000632a771ff0dda.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:00 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003096481-000632a79064da4d.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:09 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000030c0efa-000632a7aecabd1c.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:17 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000030eb98e-000632a7cd305da8.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:26 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000311643b-000632a7eb966582.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:34 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003140ed2-000632a809fc3aca.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:43 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000316b96d-000632a82861f724.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 14:51 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003196418-000632a846c7f5d7.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:00 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000031c0eb1-000632a8652dafcc.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:08 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000031eb948-000632a883936e65.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:17 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000032163f0-000632a8a1f95d14.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:25 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003240ea0-000632a8c05f2b8a.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:34 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000326b934-000632a8dec50085.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:42 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000032963e1-000632a8fd2ae919.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:50 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000032c0e89-000632a91b90bd19.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 15:56 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000032eb932-000632a938310272.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:02 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000033163d1-000632a94bdb8646.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:09 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003340e72-000632a9631ba2f2.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:18 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000336b914-000632a97c208d61.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:26 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003396395-000632a99a86573f.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:32 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000033c0daa-000632a9b8ed2cb6.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:39 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000033eb804-000632a9cc9b5fd7.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:46 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000341623a-000632a9e5a31179.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:55 user-1000@4159e565554c4aa89032e6e3899fc4c6-0000000003440ce2-000632aa007283f4.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 13 16:59 user-1000@4159e565554c4aa89032e6e3899fc4c6-000000000346b78d-000632aa1edae2c1.journal
-rw-r-----+ 1 root systemd-journal 33554432 avril 13 17:01 user-1000@4159e565554c4aa89032e6e3899fc4c6-00000000034961ab-000632aa2d22c5f7.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 12 17:34 user-1000@50084ab768944ec69ba241476d27300e-0000000002f38462-0006328fc98cc938.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 08:49 user-1000@7ac47c578be24c8494a2e52a16109350-00000000034a489f-000632b772f50f85.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 11 23:26 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002d08076-000632873a32d518.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 11 23:34 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002d69597-000632875a5fe25e.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 11 23:43 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002dc7a0a-0006328778c875f9.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 11 23:52 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002e28f3e-0006328798f55541.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 12 00:01 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002e872cf-00063287b75de8ad.journal
-rw-r-----+ 1 root systemd-journal 100663296 avril 12 00:09 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002ee8790-00063287d78abeeb.journal
-rw-r-----+ 1 root systemd-journal 16777216 avril 12 09:30 user-1000@be2d783d3eb342bfb05958c9c7f1a858-0000000002f314ff-00063287f5f2ddc0.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 13 12:44 user-1000@cb16c7a30e8a4b848a5fa3ba7c3c98c2-0000000002f3a1e9-000632968f727452.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 08:49 user-1000@e145b9af4ef046398465cc235f385343-00000000034a2bac-000632aa346afdcb.journal
-rw-r-----+ 1 root systemd-journal 8388608 avril 14 17:21 user-1000.journal
Tous les user-1000@4159e565554c4aa89032e6e3899fc4c6 et user-1000@be2d783d3eb342bfb05958c9c7f1a858 font 90mo
Dernière modification par Hizoka (Hier à 17:24)
KDE Neon 64bits
Tous mes softs (MKVExtractorQt, HizoSelect, HizoProgress, Qtesseract, Keneric, Services menus...) sont sur github
Hors ligne
#10 Hier à 20:06
- ylag
Re : syslog se remplit à plusieurs centaines de go
Bonjour,
Utilise la commande journalctl pour gérer la taille des journaux, quelques références :
journalctl(1) — Linux manual page
A+
Hors ligne
#11 Hier à 21:39
- iznobe
Re : syslog se remplit à plusieurs centaines de go
Je vois que mon dossier journal se remplit (moins vite) :
il sort d' ou ton dossier ? quel(s) logiciel(s) sont censé écrire la dedans , c' est un config personnalisée ?
iznobe@iznobe-pc:/etc/apt/sources.list.d$ ls -l /var/log/journal/
ls: impossible d'accéder à '/var/log/journal/': Aucun fichier ou dossier de ce nom
iznobe@iznobe-pc:/etc/apt/sources.list.d$
d' autre part , j ' ai cru comprendre que tu avais désactivé le " double " log , comme indiqué par @geole .
@ylag , par défaut la taille maxi des logs est censé être circonscrite a 4 Go max il me semble .
Dernière modification par iznobe (Hier à 21:42)
retour COMPLET et utilisable de commande | script montage partition ext4
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#12 Hier à 21:54
- geole
Re : syslog se remplit à plusieurs centaines de go
N'hésite pas à faire cette commande
journalctl --no-pager -b -n 100
et, si tu penses que cela est anormal, publie son retour.
Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
Je défie QUICONQUE de trouver une discussion où j'aurais suggéré de remplacer un SSD par un disque dur.
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248
Hors ligne
#13 Aujourd'hui à 09:47
- Hizoka
Re : syslog se remplit à plusieurs centaines de go
il sort d' ou ton dossier ? quel(s) logiciel(s) sont censé écrire la dedans , c' est un config personnalisée ?
Alors là... aucune idée de qui écrit dedans.
Ce n'est pas une config personnalisée ou du moins pas sciemment
d' autre part , j ' ai cru comprendre que tu avais désactivé le " double " log , comme indiqué par @geole .
Tout à fait.
et, si tu penses que cela est anormal, publie son retour.
Tout semble OK.
Par contre je vois que j'ai énormément d'anciens messages (d'il y a 3/4 jours) :
avril 11 23:19:25 hizo-pc rsyslogd[1784]: file '/var/log/syslog'[7] write error - see https://www.rsyslog.com/solving-rsyslog-write-errors/ for help OS error: No space left on device [v8.2312.0 try https://www.rsyslog.com/e/2027 ]
avril 11 23:19:25 hizo-pc rsyslogd[1784]: action 'action-2-builtin:omfile' (module 'builtin:omfile') message lost, could not be processed. Check for additional error messages before this one. [v8.2312.0 try https://www.rsyslog.com/e/2
KDE Neon 64bits
Tous mes softs (MKVExtractorQt, HizoSelect, HizoProgress, Qtesseract, Keneric, Services menus...) sont sur github
Hors ligne