My PPC MacMini (connected to a monitor via VGA cable) had a blank screen when I first rebooted after the installation (of Xubuntu). I pressed ctrl-alt-f1 repeatedly during the boot and got a text screen. After that it showed the login screen normally.
To solve the problem permanently I added a "nosplash" option to the /etc/yaboot.conf file; see below. Not sure, but maybe this will work for you.
To edit yaboot.conf on Ubuntu, press alt-f2 and type "gksudo gedit /etc/yaboot.conf". See the example below - I just added the append="nospash". Then save, press alt-f2 again and enter "gksudo ybin" to update yaboot. You get text at startup, but booting works.
Code:
## yaboot.conf generated by the Ubuntu installer
##
## run: "man yaboot.conf" for details. Do not make changes until you have!!
## see also: /usr/share/doc/yaboot/examples for example configurations.
##
## For a dual-boot menu, add one or more of:
## bsd=/dev/hdaX, macos=/dev/hdaY, macosx=/dev/hdaZ
boot=/dev/hda2
device=/pci@f4000000/ata-6@d/disk@0:
partition=4
root=/dev/hda4
timeout=100
install=/usr/lib/yaboot/yaboot
magicboot=/usr/lib/yaboot/ofboot
enablecdboot
macosx=/dev/hda3
image=/boot/vmlinux
label=Linux
read-only
initrd=/boot/initrd.img
append="nosplash"
Bookmarks