Hello dear guest!

Boot Land is a community driven site established since 2006 and focused on data recovery/backup boot disks, research of Windows 2000/XP/2003/Vista/7 install/deployment/antivirus tools, customizing Windows PE systems and even learning how to recover from disaster situations.

How about joining our boot disk community? So do it. Life's short!

  - You get free access to our newsletter with all the interesting buzz about boot disks
  - We share publicity revenue with everyone who wishes to participate at the forums
  - Publicity is never, never, never displayed to members (along with many other cool things)
http://boot-land.net/register

2 Pages V   1 2 >  
Reply to this topic
 SOLVED: Adding Acronis-ISO (50MB!!) to Grub, grub4dos menu.lst entry
post May 19 2008, 01:54 PM
Post #1
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany


hello,

I also want to add the 50MB-Acronis-True-Image-ISO to my Vista-Multiboot-DVD.....

My question is: how could the ISO be bootet with grub? I know, that generally you cant boot ISO-Images with grub directly....

But it is a small ISO and I know that with the BCDW it works too ("run: acronis.iso")

It it possible?? Or is there any script to add the Acronis rescue medium to the grubs boot loader??


+Quote Post
post May 19 2008, 02:21 PM
Post #2
was_jaclaz
Finder   ******
Group: Advanced user

  Joined: 14-July 06 From: Gone in the mist

Posts: 7,224
Thank(s): 547


Italy


Looky here wink.gif:
http://www.msfn.org/board/Acronis-true-ima...1.html&st=2

jaclaz


--------------------
+Quote Post
post May 20 2008, 07:47 AM
Post #3
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany


Thanks,

so in my "Create-ISO"-Script, I added the following lines:


TXTAddLine,"%MenuFile%","map (hd0,1)/acronis.iso (hd32)","Append"
TXTAddLine,"%MenuFile%","map --hook","Append"
TXTAddLine,"%MenuFile%","chainloader (hd32)","Append"
TXTAddLine,"%MenuFile%"," ","Append"

Before this, I copied the ISO-File directly to "%TARGETDIR%" (Root-Folder of the CD)

I think, that the HD0,0-Syntax in your link does only work, if the ISO is on my local HD, or not?

But I think my syntax is not right.... the ISO does not boot...... error message: Selected disk does not exist!

What would be the right syntax in the CREATE-ISO-Script to boot my file "acronis.iso" ???






QUOTE (jaclaz @ May 19 2008, 03:21 PM) *
+Quote Post
post May 20 2008, 02:09 PM
Post #4
was_jaclaz
Finder   ******
Group: Advanced user

  Joined: 14-July 06 From: Gone in the mist

Posts: 7,224
Thank(s): 547


Italy


If it's in root of DVD, you can do it changing (hd0,1) with the DVD/CD (cd) device as:
QUOTE
map (cd)/acronis.iso (hd32)
map --hook
chainloader (hd32)


or, more generally as :
QUOTE
find --set-root /acronis.iso
map /acronis.iso (hd32)
map --hook
chainloader (hd32)

(this latter needs to be tested) unsure.gif

jaclaz


--------------------
+Quote Post
post May 21 2008, 12:52 PM
Post #5
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany


QUOTE (jaclaz @ May 20 2008, 02:09 PM) *
If it's in root of DVD, you can do it changing (hd0,1) with the DVD/CD (cd) device as:


or, more generally as :

(this latter needs to be tested) unsure.gif

jaclaz



Ahm, no......


with this syntax I got the error I attached:

TXTAddLine,"%MenuFile%","title iso boot","Append"
TXTAddLine,"%MenuFile%","map --mem (cd0)/acronis.iso (hd32)","Append"
TXTAddLine,"%MenuFile%","map --hook","Append"
TXTAddLine,"%MenuFile%","chainloader (hd32)","Append"
TXTAddLine,"%MenuFile%","boot","Append"

also when writing hd0,0 instead of cd0 in line two, I got an error.....

Attached thumbnail(s)
Attached Image
 
+Quote Post
post May 21 2008, 02:03 PM
Post #6
was_jaclaz
Finder   ******
Group: Advanced user

  Joined: 14-July 06 From: Gone in the mist

Posts: 7,224
Thank(s): 547


Italy


Well, maybe it does not work, but I suggested you
QUOTE
(cd)


and you used:
QUOTE
(cd0)


whistling.gif

More generarally BEFORE attempting scripting a menu entry, one should try making it manually, and BEFORE that, one should see by using direct grub4dos commands if the idea and references to devices (using grub4dos auto-completion features) are correct.

Read these:
http://www.boot-land.net/forums/?showtopic=715
http://www.boot-land.net/forums/?showtopic=3833
to have an idea how grub4dos command line mode can be useful.


jaclaz


--------------------
+Quote Post
post May 24 2008, 04:56 AM
Post #7
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany


Thanks,

but with

TXTAddLine,"%MenuFile%","title Acronis","Append"
TXTAddLine,"%MenuFile%","map --mem (cd)/acronis.iso (hd32)","Append"
TXTAddLine,"%MenuFile%","map --hook","Append"
TXTAddLine,"%MenuFile%","chainloader (hd32)","Append"
TXTAddLine,"%MenuFile%","boot","Append"


I get the attached error message...........
Attached thumbnail(s)
Attached Image
 
+Quote Post
post May 24 2008, 07:40 AM
Post #8
was_jaclaz
Finder   ******
Group: Advanced user

  Joined: 14-July 06 From: Gone in the mist

Posts: 7,224
Thank(s): 547


Italy


That's very strange, ilko_t is VERY accurate in his reports, maybe you have a different version or you are not using the "recovery media ISO" (whatever it is). unsure.gif

jaclaz

P.S.: I see in your other thread:
http://www.boot-land.net/forums/?showtopic=4749
QUOTE
"GRUB4DOS 0.4.3 2007-10-15, Memory: 639k........................................................."

that's a very old version, you should use LATEST one, here:
http://grub4dos.jot.com/WikiHome

At this moment :
http://grub4dos.jot.com/WikiHome/grub4dos-...-2008-05-14.zip?


--------------------
+Quote Post
post May 26 2008, 07:12 AM
Post #9
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany




Oh, thanks........ but how do I integrate the new grub-version to the winbuilder's script?


Do I just have to replace the two files "memtest.bin" and "grldr" in the attachement of the "create-iso-script" ???

+Quote Post
post May 26 2008, 07:21 AM
Post #10
st-dv
Frequent Member   ***
Group: Members

  Joined: 16-June 07
Posts: 121
Thank(s): 0


Germany


QUOTE (st-dv @ May 26 2008, 07:12 AM) *
Oh, thanks........ but how do I integrate the new grub-version to the winbuilder's script?


Do I just have to replace the two files "memtest.bin" and "grldr" in the attachement of the "create-iso-script" ???



Okay,

thank you very very much........... I just replaced the file "grldr" as attachement.......... and with version 2008 the booting of the acronis-iso worked fine.....

Thanks a lot.......

st-dv
+Quote Post

2 Pages V   1 2 >
Reply to this topic
3 User(s) are reading this topic ()


  

Collapse

  Topic Replies Topic Starter Views Last Action
No new Topic has attachmentsAdding Driver after boot (not before)
Known utilities
386 Lancelot 49,667 Today, 06:32 PM
Last post by: kickarse
No New Posts grub4dos knoppix issues
2 apemax 79 Today, 05:52 PM
Last post by: apemax
No new Pinned: grub4dos, .iso images and (hd32) or (0xFF) mapping
Post here ONLY reports of working setups!
46 was_jaclaz 117,797 Today, 04:42 AM
Last post by: shamurshamur
No New Posts Grub4DOS official development/release site ?
3 posbis 158 Yesterday, 08:54 PM
Last post by: Wonko the Sane
No new tool to track install wanted!
31 MedEvil 4,735 3rd February 2010 - 11:43 AM
Last post by: m4dm4Xz