|
|||
1. Managing Removable Media (Overview) 2. Managing Removable Media (Tasks) 3. Accessing Removable Media (Tasks) 4. Writing CDs and DVDs (Tasks) 5. Managing Devices (Overview/Tasks) 6. Dynamically Configuring Devices (Tasks) 7. Using USB Devices (Overview) 9. Using InfiniBand Devices (Overview/Tasks) 11. Administering Disks (Tasks) 12. SPARC: Adding a Disk (Tasks) 13. x86: Adding a Disk (Tasks) 14. Configuring Solaris iSCSI Targets and Initiators (Tasks) 15. Configuring and Managing the Solaris Internet Storage Name Service (iSNS) 16. The format Utility (Reference) 17. Managing File Systems (Overview) 18. Creating UFS, TMPFS, and LOFS File Systems (Tasks) 19. Mounting and Unmounting File Systems (Tasks) 20. Using The CacheFS File System (Tasks) 21. Configuring Additional Swap Space (Tasks) 22. Checking UFS File System Consistency (Tasks) 23. UFS File System (Reference) 24. Backing Up and Restoring File Systems (Overview) 25. Backing Up Files and File Systems (Tasks) 26. Using UFS Snapshots (Tasks) 27. Restoring Files and File Systems (Tasks) 28. UFS Backup and Restore Commands (Reference) 29. Copying UFS Files and File Systems (Tasks) Commands for Copying File Systems Copying File Systems Between Disks Copying Directories Between File Systems (cpio Command) How to Copy Directories Between File Systems (cpio) Copying Files and File Systems to Tape Copying Files to Tape (tar Command) How to Copy Files to a Tape (tar) How to List the Files on a Tape (tar) How to Retrieve Files From a Tape (tar) Copying Files to a Tape With the pax Command How to Copy Files to a Tape (pax) Copying Files to Tape With the cpio Command How to Copy All Files in a Directory to a Tape (cpio) How to List the Files on a Tape (cpio) How to Retrieve All Files From a Tape (cpio) How to Retrieve Specific Files From a Tape (cpio) Copying Files to a Remote Tape Device How to Copy Files to a Remote Tape Device (tar and dd) How to Extract Files From a Remote Tape Device Copying Files and File Systems to Diskette How to Copy Files to a Single Formatted Diskette (tar) |
Copying Files and File Systems to DisketteBefore you can copy files or file systems to diskette, you must format the diskette. For information on how to format a diskette, see Chapter 2, Managing Removable Media (Tasks). Use the tar command to copy UFS files to a single formatted diskette. Use the cpio command if you need to copy UFS files to multiple formatted diskettes. The cpio command recognizes end-of-media and prompts you to insert the next diskette. What You Should Know When Copying Files to Diskettes
For more information, see tar(1). How to Copy Files to a Single Formatted Diskette (tar)
The following example shows how to copy files named evaluation* to a diskette. $ cd /home/smith $ volcheck $ ls evaluation* evaluation.doc evaluation.doc.backup $ tar cvf /vol/dev/aliases/floppy0 evaluation* a evaluation.doc 86 blocks a evaluation.doc.backup 84 blocks $ tar tvf /vol/dev/aliases/floppy0 How to List the Files on a Diskette (tar)
The following example shows how to list the files on a diskette. $ volcheck $ tar tvf /vol/dev/aliases/floppy0 rw-rw-rw-6693/10 44032 Jun 9 15:45 evaluation.doc rw-rw-rw-6693/10 43008 Jun 9 15:55 evaluation.doc.backup $ How to Retrieve Files From a Diskette (tar)
The following example shows how to retrieve all the files from a diskette. $ cd /home/smith/Evaluations $ volcheck $ tar xvf /vol/dev/aliases/floppy0 x evaluation.doc, 44032 bytes, 86 tape blocks x evaluation.doc.backup, 43008 bytes, 84 tape blocks $ ls -l The following example shows how to retrieve an individual file from a diskette. The file is extracted from the diskette and placed in the current working directory. $ volcheck $ tar xvf /vol/dev/aliases/floppy0 evaluation.doc x evaluation.doc, 44032 bytes, 86 tape blocks $ ls -l Archiving Files to Multiple DiskettesIf you are copying large files onto diskettes, you want to be prompted to replace a full diskette with another formatted diskette. The cpio command provides this capability. The cpio commands you use are the same that you would use to copy files to tape, except you would specify /vol/dev/aliases/floppy0 as the device instead of the tape device name. For information on how to use the cpio command, see How to Copy All Files in a Directory to a Tape (cpio). |
||
|