Can you go to a TTY (CTRL+ALT+F2
for example), login there, and then show the output of journalctl -b 0
?
You can share it online directly from your terminal by using the termbin service (https://termbin.com/ ), ie if you do:
journalctl -b 0 | sed -e 's/your_username/[censored_username]/gi' -e 's/your_hostname/[censored_hostname]/gi' | nc termbin.com 9999
then as a result you'll get a link of the form https://termbin.com/SOME_CHARACTERS
that you can then share with us here.
You have to replace your_username
and your_hostname
with respectively your username and hostname inside the sed
command there (basically a search & replace on the output of journalctl
) so that they get censored out of the logs before they get shared on termbin.
Also, make sure you have netcat
installed (otherwise you won't be able to use the nc
command):
sudo apt-get install netcat