Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
creating image from floppy
#1

hi,

 

would it be possible to hide a file, delete a file and put some other types of files in a floppy, then make an image of it and let someone to extract those files using any tool......also can anyone tell me how to make an image using linux(suse) commands...

 

thank you

Reply
#2

Quote:hi, 

would it be possible to hide a file, delete a file and put some other types of files in a floppy, then make an image of it and let someone to extract those files using any tool......also can anyone tell me how to make an image using linux(suse) commands...

 

thank you
 

If you have a physical floppy disk, you can make an image of it using the dd tool. Anyone else using Linux can write your image back to a floppy.

 



Code:
dd if=/dev/fd0 of=/home/username/myfloppyimage




 

To write the image back to floppy:

 



Code:
dd if=/home/username/myfloppyimage of=/dev/fd0




 

You could do a similar thing if you want to make a .iso CD image from a folder full of files, not sure if this is related to what you want to do but I'll say it anyway:

 



Code:
cd isofolder (folder full of files)
mkisofs -o myiso.iso




 

myiso.iso will be in this folder and ready to use.

Reply
#3

hi,

 

thanks alot for the info. i have one more question.

 

when the image is written to the diskette would it be possible to recover the deleted file as well?

 

thank you

Reply
#4

^^ i did the above, writing the image to floppy, but nothing is in floppy have i done anything wrong?

 

this is the output:



Code:
2880+0 records in
2880+0 records out
1474560 bytes (1.5 MB) copied, 47.5336 seconds, 31.0 kB/s




Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)