My recent installation 10.10 on my laptop keeps freezing/crashing on start-up after working perfectly for one day.
The system just freezes, like a screnshot, and a restart is required. It happens directly after login or just as any application is selected.
Nothing new has been installed. I have just moved from XP so I would be very grateful if some one could please explain to me, as simply as possible, how to do the following...
- How to diagnose the problem so it can be fixed, remember it may have to be before the log in.
all help is greatly appreciated.
When i have a problem like that i normally do the following:
dmesg
to see any problem of devices when you were loading the system.cat /var/log/syslog
which will show you EVERYTHING when you were loading the system.| less
to the command above like thiscat /var/log/syslog | less
so it shows you the info and you press down or up to see the output and press Q to quit.startx
which will start the gui desktop for gnome where the actual problem appears to be.startx
will mention what problem he is having in the terminal so you can fix it.ps -ex
so you can see the ID for gdm process or startx and justkillall -9 startx
/killall -9 gdm
orkill -9 ID
or whatever process it was loaded when you started startx. This way you will the process and the system is not stuck anymore.With that you have
dmesg
,cat /var/log/syslog
andstartx
to see where the problem is. At least for a quick look.Let me know if it helps somehow. This is just a quick check for problems.