Hi,
The difference is in the latest changes done by Texstar to get everything yo work with nvidia graphic cards:
* The actual Minime Kde version online is the pclinuxos-minime-2010.
07.iso
* Whereas the Zen Mini version online is the pclinuxos-ZEN-mini-2010.
1.iso
So, the option Texstar told you to add you the kernel line in menu.lst file is what Texstar added in the latest version, along with a few other things (all up to date, new kernel... )
Therefore : latest KDE versions work for your machine - Latest Zen version should work if you add the right option.
Full Gnome version also should be going good, as Texstar has also updated it :
http://pclinuxos.com/?page_id=184Your confusion in this problem comes mainly from the fact you have no idea what the diverses parts in the Grub configuration file are meant for.
For example:
root (hd0,0) means the / (root system containing all the system directories) are located on
the first hard drive, first partition. The hard drive is in fact on the first port (ide or sata), master in the machine. The second number stands for the partition number, starting from 0 : 0 for first partition, 1 for second, and so on.
The long number after UUID, on the line that starts by "kernel" is related to the unique identifier given to the partition
of your hard drive after it was formatted. root=UUID=long_number. This can also be replaced by root=/dev/sda1 (if it's "root (hd0,0)" ) → Grub legacy sees the partitions as 0 = 1 ; 1 = 2... but the kernel sees 1 = 1 : therefore you can have the beginning of a block text for one install looking like this:
title My beloved distro
root (hd0,0)
kernel /boot/vmlinuz root=/dev/sda1 ro // here you add the vmalloc=256 option
initrd /boot/initrd.img
Written like this it also works:
title My beloved distro
kernel (hd0,0)/boot/vmlinuz root=/dev/sda1 ro // here you add the vmalloc=256 option
initrd (hd0,0)/boot/initrd.img
What changed : instead of writing a line "root (hd0,0)" there is "(hd0,0)" at the beginning of the kernel like and of the initrd line.
May I suggest : If you want to open a thread somewhere about Grub menu.lst config file to be explained how it goes with more details, you would be welcome, and that could also help other beginners to better understand what they are doing while editing this file.