web-dev-qa-db-fra.com

Ubuntu enregistre-t-il les événements se produisant lors du démarrage?

Existe-t-il des journaux d'ubuntu (ou de linux en général) permettant d'enregistrer le démarrage d'un ordinateur et l'échec du chargement du système d'exploitation en raison d'un problème rencontré lors de la phase de démarrage?

3
David

vous pouvez vérifier dans

/ var/log

Ce répertoire contient tous les types de journaux

/var/log/auth.log

Record of all logins and logouts by normal users and system processes.

/ var/log/btmp

Log of all attempted bad logins to the system. Accessed via the lastb command.

/ var/log/debug

Debugging output from various packages.

/ var/log/dmesg

Kernel ring buffer. The content of this file is referred to by the dmesg command.

/ var/log/gdm /

GDM log files. Normally a subset of the last X log file. See /var/log/xdm.log for mode details.

/var/log/kdm.log

KDM log file. Normally a subset of the last X log file. See /var/log/xdm.log for more details.

/ var/log/messages

System logs.

/ var/log/pacct

Process accounting is the bookkeeping of process activity. The raw data of process activity is maintained here. Three commands can be used to access the contents of this file dump-acct, sa (summary of process accounting) and lastcomm (list the commands executed on the system).

/ var/log/utmp

Active user sessions. This is a data file and as such it can not be viewed normally. A human-readable form can be created via the dump-utmp command or through the w, who or users commands.

/ var/log/wtmp

Log of all users who have logged into and out of the system. The last command can be used to access a human readable form of this file. It also lists every connection and run-level change.

/var/log/xdm.log

XDM log file. Normally subset of the last X startup log and pretty much useless in light of the details the X logs is able to provide us with. Only consult this file if you have XDM specific issues otherwise just use the X logfile.

/var/log/XFree86.0.log, /var/log/XFree86.?.log

X startup logfile. An excellent resource for uncovering problems with X configuration. Log files are numbered according to when they were last used. For example, the last log file would be stored in /var/log/XFree86.0.log, the next /var/log/XFree86.9.log, so on and so forth.

/ var/log/syslog

The 'system' log file. The contents of this file is managed via the syslogd daemon which more often than not takes care of all log manipulation on most systems.
5
Shekhar Raut

Bien que la réponse de Shekhar Raut soit correcte, je pense que la liste pourrait être un peu plus courte.

Puisque OP pose des questions sur le démarrage et rien d’autre - les journaux du noyau sous Linux (en général) sont disponibles à l’adresse suivante:

/var/log/messages

Donc, si vous rencontrez un échec de démarrage en raison d’un problème matériel, ce devrait être le premier endroit à regarder.

Mise à jour:

On dirait que Ubuntu a supprimé ce fichier journal depuis 12.04 (non confirmé), et maintenant le bon endroit pour rechercher les journaux système est:

/var/log/syslog
4

À partir de Ubuntu 12.04 (autant que je sache), il y a /var/log/boot.log, qui enregistre la sortie du démarrage initial.

3
blueyed
/var/log/kern.log 

contient les journaux produits par le noyau au démarrage. après le démarrage, il n'y a presque aucun événement ajouté, mais vous verrez la disponibilité sur chaque entrée

0
rubo77