> Does anyone know how I could get some images from a Sun to a linux machine.
OK, I take it, you are talking about messing with floppies..
Exactly. The only thing is, you don't need to mount anything as thisQuote:> Not the x86 type sun but a sparc station. Can I tar to a diskette on the sun
> and then move the diskette to a linux intel machine and read it off after
> mounting it?
always involves a common filesystem. Insert a writable disk into the
Sun's drive and type:
tar cvf /dev/fd0 <file_or_dirname>
Then you'll need to type "eject" to remove the floppy. Insert it to
the Linux box and type
tar xvf /dev/fd0
Note the following: if you have already come across the "dd" command:
dd is only useful if an exact image of the file is required *on*the*floppy*,
for instance in case of bootable floppies. In any other case, tar is
much simpler to use. Also, if you have Gnu tar, then you can incorporate
(de)compression on the fly by using the "z" option.
cheers,
Frank
--
National University of Ireland, Cork | phone: +353-21-903163
Dept of Computer Science | fax: +353-21-903113
Cork, Ireland | WWW: http://yeats.ucc.ie/~fboehme/