You are not logged in.
Sometimes the Lenovo SL410 hangs on shutdown, after pressing ctrl + alt + del, I get this.
https://s23.postimg.org/7tbn93jaj/20170126_135823.jpg
Last edited by Head_on_a_Stick (2017-01-26 20:43:46)
Offline
So did you "See 'systemctl status alsa-store.service' for details"?
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
So did you "See 'systemctl status alsa-store.service' for details"?
:~$ systemctl status alsa-store.service
● alsa-store.service - Store Sound Card State
Loaded: loaded (/lib/systemd/system/alsa-store.service; static)
Active: inactive (dead)
Offline
Are you using alsa? Maybe try
sudo systemctl mask alsa-store.service
If that causes other problems, then re-enable it with
sudo systemctl unmask alsa-store.service
PS I don't know much about this stuff, but I googled "failed to start store sound card state"
Be Excellent to Each Other...
The Bunsenlabs Lithium Desktop » Here
FORUM RULES and posting guidelines «» Help page for forum post formatting
Artwork on DeviantArt «» BunsenLabs on DeviantArt
Offline
The systemd journal can be used to investigate these errors further, enable persistence with:
sudo mkdir -p /var/log/journal
Once you have solved this problem, remember to delete /var/log/journal afterwards.
To view the logs without root privileges, add your user to the "systemd-journal" group:
sudo gpasswd -a $USER systemd-journal # log out & back in again
Then you can use this to print the logs for the last boot before the current session:
journalctl -b -1
Further tips here:
Offline