francesco21 wrote:It's not the first time with this problem, for me, what can i do to start the system by command line?
I had a similar problem some days ago, too. In case you have a legacy graphic card (mine is NVIDIA GeForce 6150SE) the problem is, that your card isn't supported by the recent driver.
First thing: Sign in on a TTY (e.g. Ctrl+Alt+F3) as root and have a look into the dmesg:
- Code: Select all
# tail -n 10 /var/log/dmesg
You can add "|pastebunz" if you want to share the output with us (post the link).
My dmesg claimed something about an unsupported graphic card (sorry, I don't remember the exact log). You can search the whole file also:
- Code: Select all
# cat /var/log/dmesg | grep -i -A 5 NVIDIA
searches dmesg, ignoring lower-/uppercase and prints the following five lines after a match, too.
You can read about the needed NVIDIA-drivers version in dmesg. In this case, use
this instruction while modifying the version to the needed one. If you're unsure, report some output

N.B.
- Code: Select all
#`uname -r` --ask
is deprecated. The recommended syntax is
- Code: Select all
#$(uname -r) --ask