Bona Fide OS Developer
View unanswered posts | View active topics It is currently Thu Mar 28, 2024 1:07 pm



Post new topic Reply to topic  [ 3 posts ] 
 do you know some disk image mounter that can mount raw hd... 
Author Message
Post 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


Sat Dec 05, 2009 12:08 am

Joined: Wed Jan 06, 2010 2:38 pm
Posts: 4
Post 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. :)

_________________
Vist my website - Germsoft.com
Getting to ring 3 tutorial
Forum


Wed Jan 06, 2010 2:50 pm
Profile WWW
Site Admin

Joined: Sat Jul 25, 2009 7:44 am
Posts: 274
Location: United Kingdom
Post 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.

_________________
Thank you for reading,

Kieran C G Foot


Fri Jan 08, 2010 4:57 am
Profile WWW
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 


Who is online

Users browsing this forum: No registered users and 14 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by Vjacheslav Trushkin and tweaked by the BF Team.