with KDE 3.3 you can't log in as root, by default. I wouldn't recommend doing it either.
If you are using Grub (which I hope you are,... I like it more), open a console and type
Then type:
su
hit enter
then type your root password
hit enter
Code:
chris@3[~]$ su
Password:
root@3[chris]#
You can then run any prgram you want from the console. Fire up your favorite editor and edit either the /boot/grub/menu.lst or whatever Lilo uses (I think there might be a lilo.conf, if i'm not mistaken)
it will have something that says default=X, where X is a number. You can change the number to whatever number in the list your windows partition, starting with 0. So say you had three entires, with windows as your last it would be Default=2. If you want to use the bootsplash, instead of verbose, you're gonna have to change the bootspalsh kernel option (after it lists the kernel image and whatnot) to whatever your bootsplash path is.
as an example, here is mine.....
Code:
default 1
timeout 15
splashimage /boot/grub/mepis.xpm.gz
title MEPIS at hda1, kernel 2.6.10
root (hd0,0)
kernel /boot/vmlinuz-2.6.10 root=/dev/hda1 nomce psmouse.proto=imps quiet splash=verbose vga=791 acpi=on
initrd /boot/initrd.mepis
title MEPIS at hda1, kernel 2.6.7
root (hd0,0)
kernel /boot/vmlinuz-2.6.7 root=/dev/hda1 nomce psmouse.proto=imps quiet splash=verbose vga=791 acpi=on
initrd /boot/initrd.mepis
title Ubuntu
root (hd0,3)
kernel /boot/vmlinuz-2.6.8.1-3-386 root=/dev/hda4 splash=verbose vga=791 acpi=on
initrd /boot/initrd.img-2.6.8.1-3-386
As you can see, I have my bootsplash set to verbose, but if i wanted to change it back, I would put silent (I think that works...)