Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
03-16-2011, 02:30 AM
|
#1
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Rep:
|
booting Live .iso from Grub2
I am trying to boot live DamnSmallLinux .iso from GRUB2.
this is contents of 40_custom:
Code:
menuentry "ISO - DSL" {
set isofile="/boot/iso/dsl-4.4.10.iso"
loopback loop (hd0,msdos5)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile nomodeset
initrd (loop)/casper/initrd.lz
}
but it doesn't work. It complains something about no kernel. I suspect its because of 'casper'.
How to make it work?
|
|
|
|
03-16-2011, 09:51 AM
|
#2
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
Loop mount the DSL iso to find the kernel: First create a directory in your /home/user directory. mkdir test, then: mount -o loop dsl-4.4.10.iso test. You should then be able to see the DSL directories/files. The DSL version I have has the kernel in the / directory and it is called linux24. The initrd is minirt24.gz. Not sure these files will be the same in your version of DSL. The casper directory, as far as I know, is only used with Ubuntu and its derivatives.
The entry below is what I use to boot DSL off a CD, you'll likely need to modify it for Grub2:
Quote:
title DSL
kernel /linux24 ramdisk_size=100000 init=/etc/init apm=power-off vga=791 noapic BOOT_IMAGE=knoppix
initrd /minirt24.gz
|
Make sure you get the correct directory/file names. Good luck.
|
|
|
1 members found this post helpful.
|
03-16-2011, 10:07 AM
|
#3
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
The entry I posted above is Grub Legacy on a CD so there is no title line. Your casper entry should probably be changed to knoppix.
|
|
|
|
03-17-2011, 01:59 AM
|
#4
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
thanks, but in your example there is no path to .iso ?
also, grub2 says 'kernel' is unknown command, tried with 'linux' instead but still doesn't boot.
Last edited by qrange; 03-17-2011 at 02:18 AM.
|
|
|
|
03-17-2011, 09:58 AM
|
#5
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
Quote:
|
thanks, but in your example there is no path to .iso ?
|
Correct. As I stated in my post above, the entry I showed is for Grub Legacy and you will need to modify it for Grub2.
You will probably need to replace your casper entries with knoppix.
You will also need to mount the iso image of DSL to find out what the kernel and initrd files are actually named.
In the version of DSL I have, the kernel is "linux24" and the initrd is "minirt24.gz".
You will also need to verify where the kernel and initrd files are. In the version I have, they are in root directory.
The original error message from your first post is because it is looking for the kernel in the casper directory which
does not exist. Also, it is probably named incorrectly. Find the correct name for the kernel by mounting the iso first.
Quote:
|
also, grub2 says 'kernel' is unknown command, tried with 'linux' instead but still doesn't boot.
|
Again, that is because the entry is from Grub Legacy and as I said you will need to modify it for Grub2.
You could try the entry below. Obviously, you will need to verify those are the correct kernel/initrd names and locations
by mounting the iso. Check the isolinux.cfg entry on the mounted DSL iso to see what the entry is there and modify it if necessary.
Quote:
menuentry "ISO - DSL" {
set isofile="/boot/iso/dsl-4.4.10.iso"
loopback loop (hd0,msdos5)$isofile
linux (loop)/linux24 ramdisk_size=100000 init=/etc/init apm=power-off vga=791 noapic BOOT_IMAGE=knoppix iso-scan/filename=$isofile nomodeset
initrd (loop)/minirt24.gz
}
|
I haven't tried this so I don't know if it will work.
Last edited by yancek; 03-17-2011 at 10:00 AM.
|
|
|
|
03-18-2011, 02:50 AM
|
#6
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
nope, doesn't work. I changed your "(loop)/linux24" to "(loop)/boot/isolinux/linux24" (and did the same for minirt) but computer just resets. seems like dsl simply isn't made to run this way?
:/
I found this interesting link:
http://knol.google.com/k/yoshihide-n...zr3sm0dzndc/1#
perhaps we also need modified 'initrd'?
Last edited by qrange; 03-18-2011 at 03:31 AM.
|
|
|
|
03-18-2011, 10:55 AM
|
#7
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
Didn't really think it would work and I guess the information in the link you posted pretty much explains why.
I haven't used Grub2 much. I put Ubuntu and several of its derivates on a DVD as iso files and booted them. Tried
a couple of non-ubuntu without much luck. Did manage to get Parted Magic to boot from iso. Haven't really experimented much with this.
|
|
|
1 members found this post helpful.
|
05-05-2011, 03:01 AM
|
#8
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
just an update, found this useful file:
http://pendrivelinux.com/downloads/m...linux/grub.cfg
they say that
"Adding an Unlisted ISO: To try ISO Files that are not yet listed, use the existing menuentry examples in /boot/grub/grub.cfg and append any options normally found in the distributions syslinux.cfg file on the "append" line to the "linux" line of the menu entry.
Please inform me of entries you get to work and I will add them to the list, so that others may benefit as well."
I believe that if it works with USB it should work with HDD, too.
|
|
|
|
05-05-2011, 09:56 AM
|
#9
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
Quote:
|
use the existing menuentry examples in /boot/grub/grub.cfg and append any options normally found in the distributions syslinux.cfg file on the "append" line to the "linux" line of the menu entry
|
In isolinux.cfg and syslinux.cfg files, the options are on the intrd line and in Grub Legacy they are on the kernel line and in Grub2 they are on the linux line.
Post the menuentry you used for DSL.
|
|
|
|
05-05-2011, 10:05 AM
|
#10
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
didn't make DSL work yet. the plan is to use usb installer and then grab its menuentry for DSL and knoppix.
perhaps it might be necessary to unpack .iso, we'll see.
|
|
|
|
05-05-2011, 10:54 AM
|
#11
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
In your first post, you show the DSL iso as being in /boot/iso subdirectory of sda5 (hd0,msdos5).
If that is where the DSL iso is, leave the setisofile line as is. If your DSL iso is elsewhere, you will need to change that.
Have you loop mounted the DSL iso to find where your kernel (linux24) actually is. The version I had showed it in the / directory and your entry shows it in /boot/isolinux:
Quote:
|
"(loop)/boot/isolinux/linux24
|
|
|
|
|
05-05-2011, 12:44 PM
|
#12
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
I don't have a DSL iso to test but do have the Parted Magic. The entry below boots pmagic iso from Ubuntu with Grub2.
Quote:
menuentry "PMagic-5.10 Partition Editor" {
loopback loop (hd0,5)/pmagic-5.10.iso
linux (loop)/pmagic/bzImage isofrom=/dev/sda5/pmagic-5.10.iso root=/dev/ram0 livecd edd=off noapic load_ramdisk=1 prompt_ramdisk=0 rw vga=788 loglevel=0 max_loop=256 vmalloc=256MiB
initrd (loop)/pmagic/initramfs
}
|
You will obviously need to change the menuentry line to whatever DSL you have.
The loopback loop line may need to change. On my system, Ubuntu is on sda5 (hd0,5) and pmagic is in the / directory. If you have your DSL iso file elsewhere, you will need to change that to reflect where it actually is. If it doesn't boot from a subdirectory such as /boot/isolinus/, try putting the iso file in /.
The linux (loop) line needs the isofrom=/dev/sda5/your dsl iso filename here.
The entries above for pmagic will obviously not work. You will need to loop mount the DSL iso and get the correct lines from syslinux.cfg or isolinux.cfg. The append options will need to go on the linux (loop) line.
|
|
|
|
05-06-2011, 03:12 AM
|
#13
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
well, I've installed this: http://www.pendrivelinux.com/multibo...sb-from-linux/
it created this grub2:
Code:
menuentry "Damn Small Linux" {
linux16 /boot/bootdistro/damnsmall/isolinux/linux24 knoppix_dir=damnsmall ramdisk_size=100000 lang=en apm=power-off nomce noapic quiet BOOT_IMAGE=knoppix
initrd16 /boot/bootdistro/damnsmall/isolinux/minirt24.gz
}
I've tried it. it loads kernel, then starts scanning usb drives. but complains 'cannot find knoppix filesystem, dropping you to very limited shell'.
its the same type of problem with KnoppixV6.4.4
edit:
if I understood this post correctly: http://www.knoppix.net/forum/threads...l=1#post115124
then my problem is that file 'KNOPPIX' (48.2Mb) is located on ext3 partition, not fat16.
so then extlinux must be used?
Last edited by qrange; 05-06-2011 at 03:59 AM.
|
|
|
|
05-06-2011, 10:07 AM
|
#14
|
|
Senior Member
Registered: Apr 2008
Distribution: PCLinux, Ubuntu, Peppermint
Posts: 3,470
|
The entry in your last post should work to boot DSL from the usb but I doubt it will work from the drive. I though you wanted to boot the iso image? If you just want to boot DSL from the drive, install it to a partition and run sudo update-grub.
Quote:
menuentry "DSL" {
loopback loop (hd0,5)/dsl-4.4.10.iso
linux (loop)/KNOPPIX/boot/isolinux/linux24 isofrom=/dev/sda5/dsl-4.4.10.iso ramdisk_size=100000 init=/etc/init lang=us apm=power-off vga=791 nomce noapic quiet BOOT_IMAGE=knoppix
initrd (loop)/KNOPPIX/boot/isolinux/minirt24.gz
}
|
I used another version of DSL to create the entry above. Your DSL iso will need to be in the root (/) of sda5. If you have the iso image elsewhere you will have to change the entry above to suit. Where Knoppix is in upper-case letters, it will need to be upper-case. Where it is lower-case, it will need to be lower case.
The pendrive linux creates different directories during the installation than you will see on a standard install CD. Copy the dsl-4.4.10.iso to the root of sda5 before trying this. Haven't tested this as I don't have an iso file of DSL?
|
|
|
|
05-06-2011, 11:01 AM
|
#15
|
|
Member
Registered: Jul 2006
Location: Belgrade, Serbia
Distribution: Debian
Posts: 576
Original Poster
Rep:
|
no, I don't want to create a partition for DSL, it doesn't matter if its started as an .iso or some other way, as long as it lives in /boot/dsl.
/ belongs to Debian installation. no more partitions.
Last edited by qrange; 05-06-2011 at 11:03 AM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 01:24 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|