Operating System - HP-UX
1832871 Members
3808 Online
110048 Solutions
New Discussion

Copying Files to Floppy Drive : CDE driven

 
Aravind_3
Frequent Advisor

Copying Files to Floppy Drive : CDE driven

I would like to customise my CDE of B2600 workstation :

I want to add, in FILE menu of my filemanager
an option to copy the selected file to my floppy.

How do i do it ?

In general How is a file copied to my floppy drive on a B2600 workstation in commmand line ?

Thanks
Aravind
1 REPLY 1
Robert-Jan Goossens
Honored Contributor

Re: Copying Files to Floppy Drive : CDE driven

Hi Aravind,

I can't give you a hint on the first part of you question. The second part is easier.

HPUX to HPUX copy

# ioscan -fnC floppy
Class I H/W Path Driver S/W State H/W Type Description
====================================================================
floppy 0 8/16/10.1 pflop CLAIMED DEVICE HP_PC_FDC_FLOPPY
/dev/floppy/c0t1d0 /dev/rfloppy/c0t1d0

# mkdir /floppy (to create mountpoint)

# newfs -F hfs /dev/rfloppy/c0t1d0

# mount /dev/floppy/c0t1d0 /floppy

# cp (file) /floppy/(file)

# umount /floppy

For HPUX to dos copy better take a look at next link.

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x088eabe92dabd5118ff10090279cd0f9,00.html

Kind regards,

Robert-Jan.