@step, @jamesbond
the documentation includes a primer specifically for Puppy Linux users. Link to the online version (the offline version is on the Fatdog64 Desktop).
Yes thanks for the link which I had already found in my search. I got the code below from from that source. I then tried to adapt the code I was using to boot a pup to boot Fatdog.
Code: Select all
title Fatdog
uuid xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
kernel /fatdog-directory/vmlinuz
mergeinitrd1=local:/fatdog-directory/initrd
initrd /fatdog-directory/initrd-nano
This is the code I use to boot Fossapup.
Code: Select all
menuentry 'Puppy Linux - Fossapup95(64bit)SSD' {
search --no-floppy --fs-uuid --set=root 4af42c9e-ef64-4453-a3c3-96da260b25e0
linux /95fossapup64ssd/vmlinuz pmedia=atahd psubdir=/95fossapup64ssd pfix=fsck
initrd /95fossapup64ssd/initrd.gz
}
This was my boot stanza for my first attempt to boot fatdog.
Code: Select all
menuentry 'Fatdog Linux - 900 alpha(64bit)SSD' {
search --no-floppy --fs-uuid --set=root 4af42c9e-ef64-4453-a3c3-96da260b25e0
kernel /900fatdog64ssd/vmlinuz
initrd /900fatdog64ssd/initrd
Got a "could not find kernel" error with this. I also tried changing kernel for vmlinuz at the beginning of the third line without success. I should say that both the uuid and the directory name are correct.
I then tried the code below.
Code: Select all
menuentry 'Fatdog Linux - 900 alpha(64bit)SSD' {
uuid 4af42c9e-ef64-4453-a3c3-96da260b25e0
kernel /900fatdog64ssd/vmlinuz
initrd /900fatdog64ssd/initrd
}
Based on what I have used to boot Fossapup and my tries to boot Fatdog can anybody suggest a correct boot stanza for Fatdog?
Regards,
Ken.