Credo wrote:sqook
thank for your attention
but the problem is i cant log in normaly and therefore i can not copy and paste here. Or can i start Safari outside the grafphic OS X environment?
i can do the dmesg though, is there anything special there of interest?
C
You can log in normally.... it's just not a GUI login.
I've had problems like this before, and the reason you're getting dumped to a console is probably because the loginwindow process can't start for some reason. Mac OS will give you a root recovery console (or in this case, what seems to be a text login) as a key for system recovery, but here, you're in the realm of unix diagnostics now. If you've never used a unix shell before, this will likely be very confusing, but stick with it, as unix is
very good at system recoveries. You're right, though; I forgot that you'll be unable to paste anything here and you'll have to do the diagnostics on your own.
"dmesg" (in case you were curious) is a record of all the kernel error/warning messages that have been printed out since the machine booted up. It is normally not that interesting until the end of output, so just look at the last 10 or so lines for any nasty looking messages.
I also forgot that OS X has some different ways of doing log reporting than standard *nix's. Unfortunately, I don't have my mac with me at work today, so I am unable to tell you the specific location of the logfiles, but you can find the directory in which they are stored by running this command:
Code: Select all
find / -iname "*crashreport*" -type d -print
I also don't remember if OS X respects the "-iname" option or not; so if it doesn't work, then try:
Code: Select all
find / -name "*Crash*" -type d -print
You are looking for a directory called "crashreporter" or something very similar to that. Type in "cd blah" (where 'blah' is the name of the directory it gives you), and then type in "ls" to show the files there. Inside of that directory will be logfiles from processes that crash and burn. You can read the files with the "cat" command. The key to properly diagnosing the machine is in finding out (a) where along the boot process it dies, (b) what program is dying, and with what error message, and (c) googling said information and finding a solution.
There are obviously many possible things that could be wrong with your machine, and the place for me hypothesizing about them will longer be in this thread.

If this post doesn't give you a good "hint" as to finding out how to recover your mac, PM me and I'd be happy to help you out from there.
If this seems like too much work for you, you can also just reinstall your machine. Do you have an ipod? If so, I'd advise installing an image of OS X on
it, booting your mac from the ipod, and using that to recover your data first by dumping it to either the ipod or network storage (that trick works like a charm, btw).