|
|
本帖最后由 losh 于 2017-1-16 18:12 编辑
Hi,
can somenbody please help me?
I'm trying to integrate Acronis Backup Acvanced Workstation 11.7 into GRUB2 menu.
This is what i tried so far (none of them worked ("kernel panic not syncing vfs unable to mount root fs" or something)):
- #!/bin/sh
- exec tail -n +3 $0
- # This file provides an easy way to add custom menu entries. Simply type the
- # menu entries you want to add after this comment. Be careful not to change
- # the 'exec tail' line above.
- menuentry "Acronis 1" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/boot/iso/Acronis.iso"
- search --set -f $isofile
- loopback loop $isofile
- loopback ElTorito (loop)228+332000
- linux (ElTorito)/abr64ker.dat product=bootagent media_for_windows quiet
- initrd (ElTorito)/abr64ram.dat (ElTorito)/dat8.dat
- boot
- }
- menuentry "Acronis 2" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/boot/iso/Acronis.iso"
- search --set -f $isofile
- loopback loop $isofile
- loopback ElTorito (loop)228+336000
- linux (ElTorito)/abr64ker.dat product=bootagent media_for_windows quiet
- initrd (ElTorito)/abr64ram.dat (ElTorito)/dat8.dat
- boot
- }
- menuentry "Acronis 3" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/boot/iso/Acronis.iso"
- search --set -f $isofile
- loopback loop $isofile
- loopback ElTorito (loop)228+328000
- linux (ElTorito)/abr64ker.dat product=bootagent media_for_windows quiet
- initrd (ElTorito)/abr64ram.dat (ElTorito)/dat8.dat
- boot
- }
- menuentry "Acronis 4" {
- set quiet=1
- set gfxpayload=1024x768x32,1024x768
- set mbrcrcs=on
- set isofile="/boot/iso/Acronis.iso"
- search --set -f $isofile
- loopback loop $isofile
- loopback ElTorito (loop)228+332000
- linux (ElTorito)/abr64ker.dat product=bootagent media_for_windows quiet
- initrd (ElTorito)/abr64ram.dat (ElTorito)/dat8.dat
- boot
- }
复制代码
|
|