UNIX System V Mount Floppy Drive


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers UNIX System V Mount Floppy Drive
# 15  
Old 07-14-2013
I am running AT&T System V R4.

My floppy device is actually located at /dev/dsk/f0 /dev/rdsk/f0
I think only file systems installed are ufs bfs proc fdfs.
There isn't a dtype command.

The disk doesn't have a tar file on it, but could you explain how to put a tar file on a disk without a file system, that might accomplish what i need done.
Thanks for the help
# 16  
Old 07-15-2013
Should be:
tar cvf /dev/rdsk/f0 archive.tar list_of_file_names_to_add

Check with the man page as to multi-volume tar files, and whether a single file can span media.
In this instance the media is a sequential device.
AT&T R4 should be very similar to Novell Unixware version 2.
# 17  
Old 07-15-2013
Quote:
Originally Posted by jgt
Should be:
tar cvf /dev/rdsk/f0 archive.tar list_of_file_names_to_add

Check with the man page as to multi-volume tar files, and whether a single file can span media.
In this instance the media is a sequential device.
AT&T R4 should be very similar to Novell Unixware version 2.
That's not a tar file on the diskette's file system; it turns the diskette into a tar file, i.e. destroys a file system (that was previously created by mkfs or format). If you go for that, the block device /dev/dsk/f0 might be faster than the raw(=character) device /dev/rdsk/f0.

If you want to look at possible file systems (for mkfs|format|mount), try
Code:
ls /usr/lib/fs/

In this mode, mkfs|format need the raw(=character) device /dev/rdsk/f0, while mount needs the block device /dev/dsk/f0.
# 18  
Old 07-15-2013
I should have checked the manual.
The most common tar files (for SCO anyway) used the raw device, and formatting was all that was required to use the diskette.
So:
#format /dev/dsk/rf0
#tar cvf /dev/dsk/rf0 list_of_files
# 19  
Old 07-15-2013
Because the i'm trying to get the tar file onto the Unix System, I will have to write it to a floppy from another computer.
I have a Ubuntu system, but it has no floppy. I tried using rawrite from Windows to just write the tar file to a disk. If i try to extract files from it using
Code:
tar xvf /dev/dsk/f0

I just get the message
Code:
tar: directory checksum error

Should I try and create a raw floppy containing the contents of the tar file, or try and put a filesystem on the floppy and copy the tar file itself to the hard drive and then extract?
# 20  
Old 07-15-2013
Am I correct in assuming you have the following hardware:
Ubuntu with network access, no diskette drive.
Windows with network access and a diskette drive.
Unix with no network access, and a diskette drive.

1. The tar file that you create on the Ubuntu system should be readable on the unix system if, there are less than 17 levels of directories, and no file name including the path name exceeds 99 characters.
2. Check the unix system to see if it has dos utilities: doscp, dosrm, dosls, dosformat, dosdir. If so you may be able to read a dos formatted diskette.
eg: #doscp a:/mytarfile.tar /tmp/mytarfile.tar
Note that a forward slash is used instead of a backslash.
3. Do you have serial ports on the unix system, and at least one of the others?
The unix system should have uucp installed. You will need to create a null modem cable to connect the serial ports. You may have to install uucp on the ubuntu system. There are windows versions of uucp as well.
This User Gave Thanks to jgt For This Post:
# 21  
Old 07-15-2013
Thats pretty much my hardware. Here are some more details...
Windows XP no diskette drive with network access
Ubuntu no diskette drive with No network access (wireless problems Smilie)
Windows 98 with diskette drive no network access
Unix with diskette drive no network access

The TAR files i am dealing with are only 1 directory deep and don't have long filenames, so that wont be a problem.

I will check on the Dos utilities, but I fear the worst. It probably has uucp, and all the computers do have serial ports. Will i need one of those Bi-Directional Serial Cables to use uucp?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How to Mount a Unix share drive on Windows

We are trying to mount a Unix share drive on a Windows 2003 server to avoid transfering files accross the network using sftp. I can see shared drives on the Solaris server using the "share" command. How can I mount the drives on my Windows server so that I can read them directly. Do I need... (2 Replies)
Discussion started by: rbdenham
2 Replies

2. SCO

mounting USB floppy drive /Flash drive in OSR 6.0

Can anybody help me out to mount USB flash /floppy drive in sco openserver 6.0 . (5 Replies)
Discussion started by: sureshdrajan
5 Replies

3. Solaris

Solaris 10 floppy drive problem

I have inserted a diskette but I don't see the files nor the floppy drive. These are the commands I ran. #volcheck -v #rmformat With rmformat, only the CD-ROM is listed. I don't see any floppy drive. How can I get my floppy drive to work?? I know it is connected b/c when I boot in XP, I... (0 Replies)
Discussion started by: kungpow
0 Replies

4. UNIX for Dummies Questions & Answers

Mount a windows drive on unix

Hi, I would like to be able to mount windows xp to a unix system, so that I can pull data from windows machine for backup and store it on the unix server. Does anyone know how I can go about mounting the windows drive in unix. Thanks, Eric (4 Replies)
Discussion started by: ejbrever
4 Replies

5. AIX

mount floppy, to be sure

Hi there, I never touch a AIX because i'm used to work on FreeBSD. I'll have to copy some file from a floppy to an AIX. Just to be sure is the mount command the same ? I mean a simple mount /dev/fd0 /floppy should work ? Thanks :) (1 Reply)
Discussion started by: Yogz
1 Replies

6. UNIX for Dummies Questions & Answers

Floppy will not mount on SUSE

I have installed SUSE 10 on a laptop that has a swappable CDROM/Floppy drive. When I was installing the OS my CDROM was connected. Later I tried to swap it with the Floppy and mount it but no success. Here is what I get: dell:/dev # mount -t msdos /dev/fd0 /mnt /dev/fd0: Invalid argument ... (0 Replies)
Discussion started by: reedcat
0 Replies

7. UNIX for Dummies Questions & Answers

Mount a network computer/drive in unix?

:D hey all, how do you scan/mount a network drive or computer/directory? thanks (2 Replies)
Discussion started by: emplate
2 Replies

8. UNIX for Advanced & Expert Users

mount a floppy in UNIX BSDi 3

Anybody know how to mount a floppy in BSDi3 UNIX? Have tried all the standard commands with no luck. This includes: mount /dev/fd0 /mnt/floppy mount /mnt/floppy (3 Replies)
Discussion started by: jpalmer320
3 Replies

9. BSD

Floppy drive problem.

My FreeBSD install at ad0s1, and Windows 2000 at ad2s1. Everytime I start my FreeBSD, it shows me this message: fdc0: cmd 3 failed at out byte 1 of 3 pmtimer 0 on isa0 fdc0: cannot reserve I/O port range (6 ports) My Floppy drive info: 0x03F2 - 0x03F3 0x03F4 - 0x03F5 0x03F7 - 0x03F7... (6 Replies)
Discussion started by: _cs
6 Replies

10. UNIX for Dummies Questions & Answers

how to mount a hotswap scsi drive on a solaris 2.6 netra box using the mount command?

Hi... question is this: How do I mount an LVD hotswap scsi drive in bay #2 on a netra using the mount command? volmgt doesn't seem to mount it and/or I don't know how to view the drives data if it's formatted which it may not be. This drive is not new out of the box so I'm not sure. ... (4 Replies)
Discussion started by: soulshaker
4 Replies
Login or Register to Ask a Question