You are not logged in.
i ran nvidia-xconfig to generate an xorg.conf, and that seemed to work excellently. However, when i run startx, I first of all get couldn't load /lib/modules/2.6.28-ARCH/modules.dep.
so i look in that directory, and find that the folder is called 2.6.29-ARCH.
I soft link 2.6.29-ARCH to 2.6.28-ARCH, and now when i run startx i get
Error inserting nvidia (/lib/modules/2.6.29-ARCH/kernel/drivers/video/nvidia.ko) Invalid module format
sorry for lack of copy paste, but its a bit hard to post on a forum without an x server.
Running just installed arch x86_64
Offline
I take it that you don't want to boot straight into the GUI ?
Which desktop do you wish to start ? For KDE, try
'startkde' instead of 'startx'.
Deej
Offline
This problem occurs because you probably haven't rebooted after upgrading from kernel 2.6.28 to 2.6.29 during your first sysupgrade. So you're still running 2.6.28, and modprobe will look for the nonexistent /lib/modules/2.6.28-ARCH/. Simply symlinking results in trying to insmod a 2.6.29 module into a 2.6.28 kernel, which is bound to fail. Remove the symlink you created (bad idea in general) and boot your new kernel first.
To start kde via startx, add 'exec startkde' at the end of your ~/.xinitrc.
Offline
huh, thanks.
trying that.
Offline