About site: Software/Operating Systems/Linux/Support/FAQs, Help, and Tutorials - Archiving Floppy Disks Using Images
Return to Computers also Computers
  About site: http://www.sharkysoft.com/tutorials/linuxtips/floppyimages/

Title: Software/Operating Systems/Linux/Support/FAQs, Help, and Tutorials - Archiving Floppy Disks Using Images Tutorial to archive floppy disks either on hard disk, CDROM, or other media.
Sparky\'s_Bot_Site Includes specifications and videos of several walking robots.

UniCapDK Reseller of new and used IBM pSeries, iSeries, and xSeries hardware. Located in Denmark.

RPGNext_com Devoted to the main development language of the IBM eServer iSeries (a.k.a. AS/400), RPGIV in the Integrated Languages Environment: ILE.

OPAG Ottawa Python Authors Group. A group devoted to learning, using and providing resources for Python. OPAG also serves as a general gathering place for Python programmers from the Ottawa region and beyo

Pokermi Free Java game to play Poker and Big2 against your computer or others over the Internet.

Sky_Valley_Web_Design Offers web design services including domain name registration, hosting assistance and site promotions. Located on Salt Spring Island, British Columbia, Canada.


  Alexa statistic for http://www.sharkysoft.com/tutorials/linuxtips/floppyimages/





Get your Google PageRank






Please visit: http://www.sharkysoft.com/tutorials/linuxtips/floppyimages/


  Related sites for http://www.sharkysoft.com/tutorials/linuxtips/floppyimages/
    Adheeth_com Offers galleries of greetings for holidays and occasions.
    Banicescu,_Ioana Mississippi State University - Parallel algorithms, scientific computing, scheduling theory, and computational biology.
    icWord A Mac utility to open MS Word documents (.doc) files. Open, view, and print document (PC or Mac created) with the original formatting intact.
    TSpywareScanner A component that searches for malicious programs in files, registry and processes and asks what to do or simply deletes spyware without prompt. It has a lot of properties and events which can customiz
    Portland_Pattern_Repository Very useful pattern information. Includes articles as well as discussions in the form of the WikiWikiWeb.
    Mental_Ray_Renderer Leading raytracing rendering engine.
    Opensourcetutorials_com__Web_Accessibility_Is_Similar_To_Search_Engine_Optimization Matthew Drouin explains how web accessibility is similar to SEO along with the 5 essential actions to take to make a site accessible.
    Gonzo\'s_Run Zip and area code database for the United States.
    Delphi_page_on_4th_february VCL and CLX components, sample projects, tutorials, code examples, tips and tricks, links. Home of 4th GUI Library.
    Yahoo_Pipes An interactive feed aggregator and manipulator. List of 'hot pipes' to subscribe to, and ability to create your own (yahoo account required).
    Customer_data_integration_evolves_to_customer_hubs SearchDataManagement.com article by Hannah Smalltree. The customer data integration market is moving toward customer hubs, according to Forrester's latest ranking of the top vendors. (January
    ValueNews Uncensored, anonymous Usenet access. Value and premium levels differ based on retention, location, and download limits, starting at 100MB per day.
    NuSphere_UltraSQL NuSphere UltraSQL is a native Windows port of popular PostgreSQL database. [Commercial]
    RFC_0449 Current Flow-Control Scheme for IMPSYS. D.C. Walden. January 1973.
    Ã…bo_Akademi Department of Information Technologies. Research areas include programming methodology, probabilistic algorithms, software quality, applied artificial intelligence, and Linux.
    Snake_Island_Research,_Inc_ Software development and consulting firm specializing in solving APL performance problems and training programmers. Technical Report on APEX APL compiler. APL (and related compiler/parallel) BiBTeX bi
    Visualbuilder_com_ASP_Tutorial Practical ASP tutorial using examples to learn ASP.
    Vivid_Internet_Productions Offers web design, site promotion, Internet consulting, and marketing strategy. Serves Oconomowoc, Delafield, Hartland, and all of Waukesha County and Southeastern Wisconsin in the United States.
    The_Automated_Archive Used for handling, maintaining, and searching an online archive. [Freeware]
    Sirius_Images,_Inc_ Offers design, hosting and e-commerce solutions. Based in El Paso, Texas, United States.
This is websites2007.org cache of m/ as retrieved on 2008.09.08 websites2007.org's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
Archiving Floppy Disks Using Images[ more Sharky's Linux Notes ]

Archiving Floppy Disks Using Images

by Charlton RoseWe all have a stack of floppies sitting around that none of us ever use, but which we can't bare to throw away because we know that as soon as we do, we will miss them. On top of that, we also know that the lifetime of a floppy is very short; even if you do have a place to store all your floppies, odds are good that eventually the bits on them will go bad anyway. This mini-tutorial offers a technique you can use to archive your floppies onto more durable media, such as your hard drive or a CD-ROM, in a manner that allows you to reconstruct any of the floppies at a later time.Often, it is not enough just to back up the files on a floppy. Sometimes the exact arrangement of data blocks on the disk are important. When backing up a commercial floppy, for example, it is usually best if you can create a bit-for-bit copy of the original. The techniques illustrated in this document achieve this goal.

floppy disk images

All of the data on your floppy, including the files, the directory tables, etc. can be represented in a single file called an "image." Images are useful because they encapsulate the entire structure of a disk without regard to what is actually on the disk. Thus, images can be used to represent disks of various formats.Unfortunately, the techniques described in this document work only with 31/2 inch high density (1.44 Mb) disks. However, they can be adapted for other types of disks if you know the correct parameters. Some formats that might not work with the techniques described in this document include Macintosh and the special format Microsoft used to distribute copies of Windows 95. (If you figure out the correct parameters for these formats, let me know so that I can include them here.)

reading images

There are various commercial utilities available for DOS and Windows that can read floppy disk images. Unfortunately, I have not been able to find any of them that are free. If you use Linux, however, the process is quite easy and no commercial software is required. Simply put your disk in the drive and execute the following command: dd if=/dev/fd0 of=floppy.img count=1 bs=1440kOf course, you can replace floppy.img with the file name that you want the extracted image to have.When the command completes, you will have a single file on your hard drive representing the entire disk. This file, called an "image," can be used to reconstruct the floppy at any given time. From this point, you just need to keep the file on your hard drive, write it a CD-ROM or tape, or preserve it in any other way you feel appropriate. Note that you can fit more than 400 floppy images on a single CD_ROM. (That'll save a lot of space!) As long as you can keep the images safe, you can dispose of the original floppies, and reconstruct them later if it ever turns out you need them.

writing images

Red Hat, Inc. has published a DOS utility you can use to write floppy disk images back to floppy disks. It's call rawrite.exe and is included on any Red Hat Linux CD-ROM. Since it is freely redistributable, I am happy to offer you a copy of the program and its documentation. It's really quite simple to use. Just run it and follow the prompts.If you are running Linux, the command to restore an image to the floppy is: dd if=floppy.img of=/dev/fd0 count=1 bs=1440kwhere floppy.img is, of course, the name of your archived image file.

acknowledgements

Thanks to Alen Peacock for teaching me most of the knowledge embodied in this tutorial.Copyright © 2000 Sharkysoft. All rights reserved.[ Sharkysoft home | more Linux tips ]
 

Tutorial

to

archive

floppy

disks

either

on

hard

disk,

CDROM,

or

other

media.

http://www.sharkysoft.com/tutorials/linuxtips/floppyimages/

Archiving Floppy Disks Using Images 2008 September

dvd rental

dvd


Tutorial to archive floppy disks either on hard disk, CDROM, or other media.

Rules




© 2008 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - Mobile Phones - Bad Credit Mortgages - Loans - Homeowner Loans - Free Ringtones
2008-09-08 08:14:30

Copyright 2005, 2006 by Webmaster
Websites is cool :) 153Reklama - Hotell Helsingfors - Jêzyk Migowy - Log Cabins - List Motywacyjny