Solaris 2.5 Tar To/From Floppies

Solaris 2.5 Tar To/From Floppies

Post by Alvin Sylvai » Sat, 16 Aug 1997 04:00:00



I haven't had any success with this yet.

Take a floppy.  Stick it into a Sparc machine running some version
of SunOS 4.X.  Run a command such as:

    tar cvf filelist > /dev/fd0

Works wunnerful.

Now, stick that floppy into a different Sparc machine running
Solaris 2.5 (SunOS 5.5).

How do you get that information back?

I haven't had a whole heap of luck just yet (as ought to be
obvious by my asking).  So far, when I've needed to tar in a
floppy from somewhere, I go find a SunOS machine, rather than
spend a lot of time trying to figure this thing out.

I've been able to successfully mount a DOS floppy (using the
File Manager) and read DOS files.  But I have a number of floppies
that have been written in tar format as above (most I get from
third parties).

I'm not going to upgrade all our machines to Solaris until I'm
sure I won't lose this functionality!

--
| Alvin Sylvain | What this country needs is a good 5 cent dollar. |
+---------------+--------------------------------------------------+
Apologies for anti-spam address: see Org line for domain info.

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Andrew Gabri » Sun, 17 Aug 1997 04:00:00




Quote:>I haven't had any success with this yet.

>Take a floppy.  Stick it into a Sparc machine running some version
>of SunOS 4.X.  Run a command such as:

>    tar cvf filelist > /dev/fd0

>Works wunnerful.

Overwrites first file in the filelist with a tar image of all
the others, and puts a listing of the files onto a floppy disk...

Is that what you indended?   I suspect not :-(

try: tar cvf /dev/fd0 filelist

--

Consultant Software Engineer

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Casper H.S. Dik - Network Security Engine » Sun, 17 Aug 1997 04:00:00


[[ Mail or post, don't do both ]]


>Now, stick that floppy into a different Sparc machine running
>Solaris 2.5 (SunOS 5.5).
>How do you get that information back?

Run 'volcheck"  followed by tar xf /floppy/....

Casper
--
Expressed in this posting are my opinions.  They are in no way related
to opinions held by my employer, Sun Microsystems.
Statements on Sun products included here are not gospel and may
be fiction rather than truth.

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Alvin Sylvai » Tue, 19 Aug 1997 04:00:00





> >I haven't had any success with this yet.

> >Take a floppy.  Stick it into a Sparc machine running some version
> >of SunOS 4.X.  Run a command such as:

> >    tar cvf filelist > /dev/fd0

> >Works wunnerful.

> Overwrites first file in the filelist with a tar image of all
> the others, and puts a listing of the files onto a floppy disk...

> Is that what you indended?   I suspect not :-(

> try: tar cvf /dev/fd0 filelist

OOOoopsie!  You're right!  I *did**that up.

That's what comes from accessing the 'Net via a PC thru
an ISP, instead of sitting at a sparc workstation.  If I
want to double-check what I post before I post it, I have
to run back and forth between the sparcstation and the PC
(they're in different rooms!)  It's a real pain sometimes.

Anyway, I *still* don't know how to read the tar file
from Solaris!!

--
+--------------------------------------------------------------------+
| Alvin Sylvain     What this country needs is a good 5 cent dollar. |
| Apologies for anti-spam address: see Org line for domain info.     |
+--------------------------------------------------------------------+

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Richard Skelto » Wed, 20 Aug 1997 04:00:00



> I haven't had any success with this yet.

> Take a floppy.  Stick it into a Sparc machine running some version
> of SunOS 4.X.  Run a command such as:

>     tar cvf filelist > /dev/fd0

> Works wunnerful.

> Now, stick that floppy into a different Sparc machine running
> Solaris 2.5 (SunOS 5.5).

> How do you get that information back?

> I haven't had a whole heap of luck just yet (as ought to be
> obvious by my asking).  So far, when I've needed to tar in a
> floppy from somewhere, I go find a SunOS machine, rather than
> spend a lot of time trying to figure this thing out.

> I've been able to successfully mount a DOS floppy (using the
> File Manager) and read DOS files.  But I have a number of floppies
> that have been written in tar format as above (most I get from
> third parties).

> I'm not going to upgrade all our machines to Solaris until I'm
> sure I won't lose this functionality!

> --
> | Alvin Sylvain | What this country needs is a good 5 cent dollar. |
> +---------------+--------------------------------------------------+
> Apologies for anti-spam address: see Org line for domain info.

Hi Alvin,
The device under Solaris is called /vol/dev/rdiskette0/unlabeled

--
Cheers
Richard.
=

                         WWW    : http://www.brake.demon.co.uk/

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Nasse » Wed, 20 Aug 1997 04:00:00




>>I haven't had any success with this yet.
>>Take a floppy.  Stick it into a Sparc machine running some version
>>of SunOS 4.X.  Run a command such as:

>>    tar cvf filelist > /dev/fd0

>>Works wunnerful.

sure that works.

on Linux I do:

mount /dev/fd0 /mnt/floppy -t <file-system-type-on-target>

The above mounts the floppy device on /mnt/floppy,
replace file-system-type for the actual file system
onthe floppy (such as msdos, vfat, fat, hpfs etc..

Then I can use the floppy as another directory.
see if one can do the same on Solaris (I dont have
access to Solaris machine now).

Nasser

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Mike J Tiet » Wed, 20 Aug 1997 04:00:00




> > on SunOS 4.X.  Run a command such as:
> >    tar cvf filelist > /dev/fd0
> > Works wunnerful.

> > Now, stick that floppy into a different Sparc machine running
> > Solaris 2.5 (SunOS 5.5).
> > How do you get that information back?

> If vold is running, you will have problems checking the tar file in
> SunOS 5.x. Try killing the vold process and retrying.

You don't need to kill vold:

        % volcheck
        % tar tvf /vol/dev/diskette0/unlabeled

or

        % volcheck
        % tar tvf /vol/dev/aliases/floppy0

--

 
 
 

Solaris 2.5 Tar To/From Floppies

Post by Alvin Sylvai » Tue, 26 Aug 1997 04:00:00





> > > on SunOS 4.X.  Run a command such as:
> > >    tar cvf filelist > /dev/fd0
> > > Works wunnerful.

> > > Now, stick that floppy into a different Sparc machine running
> > > Solaris 2.5 (SunOS 5.5).
> > > How do you get that information back?

> > If vold is running, you will have problems checking the tar file in
> > SunOS 5.x. Try killing the vold process and retrying.

> You don't need to kill vold:

>         % volcheck
>         % tar tvf /vol/dev/diskette0/unlabeled

> or

>         % volcheck
>         % tar tvf /vol/dev/aliases/floppy0

> --


I suppose it's beating a dead horse to talk about the
"Good Ol' Days" when I was a "kid" and it didn't require
Two Steps to do a One Step Process ...

(:-)

That's Ok, nobody's obligated to think the way I do.
Just so's I know how it's done so's I can do it.

Thanks to all who responded!

--
| Alvin Sylvain | What this country needs is a good 5 cent dollar. |
+---------------+--------------------------------------------------+
Apologies for anti-spam address: see Org line for domain info.

 
 
 

1. FS: Solaris 2.5 Desktop (CDE) and/or Solaris 2.5 Server Packages for x86 desktops

 Hi All,

  Just wanted to pass on some excellent deals on Solaris 2.5.1 software with
the WABI user interface for x86 machines. The WABI allows you to run many
Windows 3.1 applications on a UNIX box, giving you the best of both worlds.  
Imagine, running MS OFFICE components like, MS Word for Windows, Excel,
Powerpoint, and interfacing with the functionality of UNIX at the same time.

For a limited time, John Cristy, at Executive Tools, Inc.,
is offering:

  Solaris 2.5.1 User Desktop package for $175.00
  Solaris 2.5.1 Application Server package for $395.00

Ref URL http://www.etools.com for full information and additional products.  

They also have a student special (99.00 + shipping)(yes, you read that
right, Solaris 2.5.1 user desktop for $99.00).

Mention my name, Bob Fahey, and he will throw in the Java Workshop for
$85.00. Mention my name anyway, as he wants to know what the response is to
this.
If asked where you heard this, tell them not just the web, but the Newsgroup
you read it on.  Thanks.

The Executive Tools web site URL http://www.etools.com also has some
excellent links to other Solaris and Sun information pages.


 Executive Tools is not associated with this posting, so, if you have any

 replies, good or bad!

--
//signed//

URL http://www.3lefties.com/users/faheyb.html
Famous quote by daughter Elizabeth, "If I was them cows, I'd run away!"

2. Help with ipchains and ip forwarding

3. **Help, Help, I lost my solaris 2.5 installation floppy disk**

4. What is .icn ?

5. HELP: Mounting Iomega Zip (100 MB) DOS Floppy on Solaris 2.5

6. select(2) - NOT standard?

7. linux floppies under solaris 2.5?

8. PGPsendmail/Unix 1.3

9. UNIX format of floppy on Solaris 2.5

10. Mounting Floppies under Solaris 2.5

11. Q: Solaris 2.5 floppies

12. How to mount a floppy drive in solaris 2.5?

13. solaris 2.5 on floppies?