LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 08-22-2013, 11:16 AM   #1
mmartin
LQ Newbie
 
Registered: Jun 2011
Posts: 5

Rep: Reputation: Disabled
Reading HP-UX floppies in Linux


Hello everyone:
The subject line states my bottom-line goal. I have been handed a boatload of 3.5" floppies that were formatted and written to using HP-UX version 7.5. Their only HP-UX computer died and can't be resurrected. If I install Linux in a virtual machine, will I be able to attach a USB floppy drive and read these disks?

Thank you for any help you can provide.

Mary
 
Old 08-22-2013, 11:42 AM   #2
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,689

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by mmartin View Post
Hello everyone:
The subject line states my bottom-line goal. I have been handed a boatload of 3.5" floppies that were formatted and written to using HP-UX version 7.5. Their only HP-UX computer died and can't be resurrected. If I install Linux in a virtual machine, will I be able to attach a USB floppy drive and read these disks?
That's a fairly open-ended question. They may have been written to on an HP-UX system, but it could be any number of filesystem types on the disks. Without knowing what type of file system, you'd be shooting in the dark.

Since it's 7.5, it *MIGHT* be vxfs. If you load/have a current distro of Linux, you should be able to run "sudo modprobe vxfs" to load that filesystem support, then from there type in "mount -t vxfs /dev/floppy /your/mount/point", which *MIGHT* work...modify the floppy device name and path accordingly. You could also just try to shove a floppy disk in and try to mount it without any switches/module loading, and see if it works...it may auto-detect the file system and act accordingly. It's ALL speculation without knowing what file system type you have.
 
1 members found this post helpful.
Old 08-22-2013, 11:53 AM   #3
mmartin
LQ Newbie
 
Registered: Jun 2011
Posts: 5

Original Poster
Rep: Reputation: Disabled
Unfortunately I don't know the filesystem type, and the ones who brought these to me inherited the system from someone long gone. I'll try just loading a floppy into the drive first to see if it auto-detects, then move on to your next suggestion if that doesn't work. Is there a particular distro that you know of that has a reputation for playing nicely with a wide range of filesystem types?

Thank you for your help TB0ne.
 
Old 08-22-2013, 12:01 PM   #4
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,689

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by mmartin View Post
Unfortunately I don't know the filesystem type, and the ones who brought these to me inherited the system from someone long gone. I'll try just loading a floppy into the drive first to see if it auto-detects, then move on to your next suggestion if that doesn't work. Is there a particular distro that you know of that has a reputation for playing nicely with a wide range of filesystem types?

Thank you for your help TB0ne.
Well, I'm partial to openSUSE, and I know it has the vxfs support available. But I'm confident most current distros (Debian, Fedora, Ubuntu, Mint, etc.), will also probably have it.

What is supposedly on these floppy disks? If they're supplied from a vendor, the easiest thing might be to just contact them to see if they have the data online or on CD/DVD for download. Might save you a headache.
 
1 members found this post helpful.
Old 08-22-2013, 12:07 PM   #5
mmartin
LQ Newbie
 
Registered: Jun 2011
Posts: 5

Original Poster
Rep: Reputation: Disabled
These are programs written here for one of our grinding machines. Our tooling department makes a lot of different dies and punches on this machine and these are the programs for making them.

Thank you again for all your help.
 
Old 08-22-2013, 04:44 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,001

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
I'd consider using dd or use rawrite to make images of them if possible before too much playing. Be sure you look at the floppies to be sure they aren't and odd size like 2.88Mb.

A look at the binary file may yield info as to the format and such.

In any case if you had a good clone of the floppy it may be better to have.


The actual attempt of using in linux may be Opensuse or Suse or the Red Hat clones.

Last edited by jefro; 08-23-2013 at 03:49 PM.
 
1 members found this post helpful.
Old 08-23-2013, 08:27 AM   #7
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,689

Rep: Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972Reputation: 7972
Quote:
Originally Posted by jefro View Post
I'd consider using dd or use rawrite to make images of them if possible before too much playing. Be sure you look at the floppies to be sure they aren't and odd size like 2.88Mb.

A look at the binary file may yield info as to the format and such. In any case if you had a good clone of the floppy it may be better to have.
The actual attempt of using in in linux may be Opensuse or Suse or the Red Hat clones.
That's a very good point, jefro. OP, if you have a dd image of the floppies on your hard drive, you can still mount them using the loopback device, like this:
Code:
mount -t vxfs -o loop /path/to/dd.img /your/mount/point
 
1 members found this post helpful.
Old 08-23-2013, 11:31 AM   #8
DavidMcCann
LQ Veteran
 
Registered: Jul 2006
Location: London
Distribution: PCLinuxOS, Debian
Posts: 6,143

Rep: Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314Reputation: 2314
A quick search reveals the HU-UX manual, and that says that DOS and LIF are the filing systems used:
http://nixdoc.net/man-pages/HP-UX/man7/floppy.7.html

If they're LIF, then see
http://www.hpcc.org/datafile/hpil/lif_utils.html
although it's as old as the hills.
 
1 members found this post helpful.
Old 08-23-2013, 03:54 PM   #9
jefro
Moderator
 
Registered: Mar 2008
Posts: 22,001

Rep: Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629Reputation: 3629
Thanks TBOne.

In any attempted way this sort of deal always scares me. Any way you go be careful and consider copies or backups before you loose the data.

If they are valuable, you might even wish to consider a recovery company that has solid proof of skills exactly in this.

Might even have to talk to HP reps.

Interesting read. http://www.hpmuseum.org/cgi-sys/cgiw...es.cgi?read=24

Last edited by jefro; 08-23-2013 at 03:57 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
installing linux from floppies jtakacs419 Linux - Newbie 2 06-04-2008 06:07 PM
creating floppies with linux? orange400 Linux - General 2 06-14-2004 04:27 AM
floppies in linux darthczyz Linux - Newbie 6 01-06-2004 02:24 PM
Linux Install w/ Floppies? zsejk Linux - General 1 12-03-2003 05:03 PM
Old school Linux guru help reading floppies gdeckler Linux - General 3 08-05-2003 10:17 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 04:29 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration