funkypunkypinkypaw
Sat Jun 07, 2014 2:45:50 pm
Hello,
How do I make a multi boot USB with Zorin 8 in it? let's supposed I have Ubuntu 14.04 LTS 64 bit, Kali Linux (Debian wheezy base) 64 bit and Zorin 8 64 bit. I formated my USB with fat32 filesystem and installed grub2 succefully I added grub.cfg I could boot into Ubuntu but I don't find the solution for Zorin. tried to boot into live it loads than it says there's no live system or something like that, tried to boot into installer directly it says error. anyway here's my grub.cfg code
How do I make a multi boot USB with Zorin 8 in it? let's supposed I have Ubuntu 14.04 LTS 64 bit, Kali Linux (Debian wheezy base) 64 bit and Zorin 8 64 bit. I formated my USB with fat32 filesystem and installed grub2 succefully I added grub.cfg I could boot into Ubuntu but I don't find the solution for Zorin. tried to boot into live it loads than it says there's no live system or something like that, tried to boot into installer directly it says error. anyway here's my grub.cfg code
- Code:
# This grub.cfg file was created by me http://zorin-os.com/
# Suggested Entries and the suggestor, if available, will also be noted.
set timeout=10
set default=0
menuentry "Try Ubuntu without installing" {
loopback loop /ubuntu.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Install Ubuntu" {
loopback loop /ubuntu.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "OEM install (for manufacturers)" {
loopback loop /ubuntu.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --
initrd (loop)/casper/initrd.lz
}
menuentry "Check disc for defects" {
loopback loop /ubuntu.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz.efi boot=casper integrity-check quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Boot the Live System Zorin OS" {
loopback loop /zorin.iso
linux (loop)/casper/vmlinuz file=/cdrom/preseed/custom.seed boot=casper quiet splash --
initrd (loop)/casper/initrd.gz
}
menuentry "Boot Live in safe graphics mode Zorin OS" {
loopback loop /zorin.iso
linux (loop)/casper/vmlinuz
initrd file=/cdrom/preseed/custom.seed boot=casper xforcevesa (loop)/casper/initrd.gz quiet splash --
}
menuentry "Start the installer directly Zorin OS" {
loopback loop /zorin.iso
linux (loop)/casper/vmlinuz
initrd file=/cdrom/preseed/custom.seed boot=casper only-ubiquity (loop)/casper/initrd.gz quiet splash --
}
menuentry "Run the memtest Zorin OS" {
loopback loop /zorin.iso
linux (loop)/install/memtest
initrd -
}
menuentry "Boot from the first hard disk Zorin OS" {
localboot 0x80
initrd -
}