Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

filesystem on tape drive

Status
Not open for further replies.

absi

MIS
Sep 2, 2000
67
GB
hi all
An another question....!
Is it possible in aix to create filesystem on
removable media like tape drive or floppy diskettes?
 
absi,

FS on diskette? NO. but can be as READONLY. aix can create FS image from a dir.

try:

1. use a clean directory
2. copy all file/dirs u want on diskette in this directory
3. use proto command to generate a prototype file
proto /tmp/fdfs > /tm/fd.p

4. adjust header of the file
echo '<noboot>' 0 0'> /tmp/fd.proto
sed 'ld' < /tmp/fd.p >> /tmp/fd.proto

5. generate the FS using mkfs (disk must be formatted)
mkfs -p /tmp/fd.proto -V jfs /dev/fd0

6. mount floppy
mount -p -r /dev/fd0 /mnt

'hope this work for you, it works for me.

goodluck.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top