Grub2 guides openSUSE to install the image

Source: Internet
Author: User

If you want to install openSUSE 12.2, but the target machine does not have an optical drive, there is no available U disk that can accommodate the DVD image. TRY dd image to U disk and report whether or not the optical drive is not found. Start failed and restart automatically. The http://en.opensuse.org/Installation_without_CD page has been deleted on the official Wiki. For other pages, only instructions on how to get the ISO image to the U disk do not show how to start it correctly. Grub2 failed to contain Kernel Parameter install = hd: $ isofile. This is said to be only valid for DVD images.

Finally, after reading the init script as long ago, we finally got the correct start method:

menuentry "openSUSE 12.2 KDE LiveCD x86_64" { set isofile= "/images/openSUSE-12.2-KDE-LiveCD-x86_64.iso" echo "Setup loop device..." loopback loop $isofile echo "Loading kernel..." linux (loop) /boot/x86_64/loader/linux isofrom= /dev/disk/by-label/4lin :$isofile echo "Loading initrd..." initrd (loop) /boot/x86_64/loader/initrd }

Where,isofromSpecify the device and path of the ISO file, separated by a colon. If no pair is writtenFailed to find MBR identifier !Error.

Updated on April 9, December 22, 2013: For openSUSE 13.1, its pilot command should be written as follows:

menuentry "openSUSE 13.1 KDE Live x86_64 (zh_CN)" { set isofile= "/images/openSUSE-13.1-KDE-Live-x86_64.iso" echo "Setup loop device..." loopback loop $isofile echo "Loading kernel..." linux (loop) /boot/x86_64/loader/linux isofrom_device= /dev/disk/by-label/4lin isofrom_system=$isofile LANG=zh_CN.UTF-8 echo "Loading initrd..." initrd (loop) /boot/x86_64/loader/initrd }

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.