--Boot 32 character value --

C

compis2

Guest
My Debian bookworm locks up and when I look at journalctl I find --boot xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -- in the log, where x is an alphanumeric value that changes. Can anyone tell me how I can find out more on what this boot is ?
 


That is not the same type of problem. My Debian running XFCE freezes and the journal shows the --boot message at the time of failure..This is a newly settup machine. I am suspecting XFCE but I have another machine which doesn't have the issue.
 
Does that match your UUID for root / from

Code:
cat /etc/fstab

Wizard
No. The value changes with every freeze. examples
-- Boot c702f41dea664d44a6c8875ab87ceb92 --
-- Boot 4bd27d8bd88b43299b5cdd749547bcc5 --
But it is an encrypted LUKS drive. I watch the next.
 
Last edited by a moderator:
It is strange I posted on Reddit this issue and got the following response. Also since I post the freeze has not occurred, where as it would occur once a day.
debian boot error.png
 
You could try removing the encryption condition and see if it functions without issues.

Is there any output from the following commands

Code:
sudo blkid | grep -i "c702f41d-ea66-4d44-a6c8-875ab87ceb92"

sudo blkid | grep -i "4bd27d8b-d88b-4329-9b5c-dd749547bcc5"


Wizard
 
The search does not return anything. Also a view of the fstab shows a different value which does not change.
It appears that the -- boot xxxx value represents something else.
 
Last edited:
Those are just the boot id's journald uses.
Code:
journalctl --list-boots
What is the purpose of Boot id's ? Since the journctl shows the date and time.
 
What is the purpose of Boot id's ? Since the journctl shows the date and time.
Each time the system boot the boot gets a boot id, that way if you want to look something up from a specific boot you can just use the boot id or the or the pointer to view the logs from a specific boot. For example you run the following.
Code:
 journalctl --list-boots | head -6
IDX BOOT ID                          FIRST ENTRY                 LAST ENTRY
-26 27c5b1e726074052a6f00d2569d23710 Tue 2023-11-14 07:23:01 CET Tue 2023-11-14 21:48:46 CET
-25 00bf5be744ee4c68a0921573ae71d218 Wed 2023-11-15 07:28:34 CET Wed 2023-11-15 23:57:45 CET
-24 ea291177a21a400bbe716192424b8840 Thu 2023-11-16 07:45:13 CET Thu 2023-11-16 21:36:45 CET
-23 ec856be145b645baa2bd0bc4698edc8b Fri 2023-11-17 08:43:21 CET Sat 2023-11-18 01:33:18 CET
-22 787fd27f6b9e4078ae01326cf9ef5e4c Sat 2023-11-18 09:15:12 CET Sat 2023-11-18 23:01:23 CET
You can then just use the pointer which points to view that boot journal.
Code:
journalctl -b -26
Or you can use the boot id to view all the logs of that boot.
Code:
journalctl -b 27c5b1e726074052a6f00d2569d23710
 
Each time the system boot the boot gets a boot id, that way if you want to look something up from a specific boot you can just use the boot id or the or the pointer to view the logs from a specific boot. For example you run the following.
Code:
 journalctl --list-boots | head -6
IDX BOOT ID                          FIRST ENTRY                 LAST ENTRY
-26 27c5b1e726074052a6f00d2569d23710 Tue 2023-11-14 07:23:01 CET Tue 2023-11-14 21:48:46 CET
-25 00bf5be744ee4c68a0921573ae71d218 Wed 2023-11-15 07:28:34 CET Wed 2023-11-15 23:57:45 CET
-24 ea291177a21a400bbe716192424b8840 Thu 2023-11-16 07:45:13 CET Thu 2023-11-16 21:36:45 CET
-23 ec856be145b645baa2bd0bc4698edc8b Fri 2023-11-17 08:43:21 CET Sat 2023-11-18 01:33:18 CET
-22 787fd27f6b9e4078ae01326cf9ef5e4c Sat 2023-11-18 09:15:12 CET Sat 2023-11-18 23:01:23 CET
You can then just use the pointer which points to view that boot journal.
Code:
journalctl -b -26
Or you can use the boot id to view all the logs of that boot.
Code:
journalctl -b 27c5b1e726074052a6f00d2569d23710
Thanks
 

Members online


Latest posts

Top