Bona Fide OS Development
http://forums.osdever.net/

do you know some disk image mounter that can mount raw hd...
http://forums.osdever.net/viewtopic.php?f=15&t=103
Page 1 of 1

Author:  x0x0 [ Sat Dec 05, 2009 12:08 am ]
Post subject:  do you know some disk image mounter that can mount raw hd...

Do you know some disk image mounter that can mount raw hard disk and floppy images? If you know give me the name and download link..ty

Author:  xarnze [ Wed Jan 06, 2010 2:50 pm ]
Post subject:  Re: do you know some disk image mounter that can mount raw hd...

on windows or linux?

on linux for FDD images you can just use this script:

Code:
#!/bin/sh
echo "Mounting Image..."
sudo losetup /dev/loop0 Image.img
sudo mount /dev/loop0 -o loop /media/floppy
echo "Press any key to continue";
any_key="$(dd count=1 2> /dev/null)";
stty sane
echo "Unmounting Image..."
sudo umount /media/floppy
sudo losetup -d /dev/loop0
exit 0
#End


just save it in a text file with the .sh extenstion and give it executable permissions, thats the script I just to mount my os's floppy disk image. :)

Author:  Kieran [ Fri Jan 08, 2010 4:57 am ]
Post subject:  Re: do you know some disk image mounter that can mount raw hd...

Under windows:

For Floppy Disks you can use WinImage and VFD.

For CD images you can use mkisofs under cygwin or mingw and virtual clone drive (freeware) to load it as a virtual drive, allthough any virtual pc implementation can load an iso anyway.

Page 1 of 1 All times are UTC - 6 hours [ DST ]
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/