how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by tamt » Thu, 30 Nov 2000 12:33:49



how to backup files from solaris 8 to linux rh 6.0 or vice-versa across home
networking at 11:30 pm???
thanks!
HENRI
 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by Linden Houg » Thu, 30 Nov 2000 14:39:46


Setup the machines so they love each other (.rhosts stuff).
From Solaris try something like ufsdump -0cuf
<remote_host>:/dev/<tape_device> <filesystem_to_dump>
Example: ufsdump -0cuf mars:/dev/st0 /
I would script it for multiple partitions.
Works for Solaris to Solaris.

Linden


Quote:> how to backup files from solaris 8 to linux rh 6.0 or vice-versa across
home
> networking at 11:30 pm???
> thanks!
> HENRI


 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by Timothy J. L » Thu, 30 Nov 2000 16:29:56




>how to backup files from solaris 8 to linux rh 6.0 or vice-versa across home
>networking at 11:30 pm???

ufsdump (Solaris) or dump (Linux) to standard output, then pipe that
through ssh to the other computer to dd to the tape device.  Of course,
one of the computers must trust the other in some manner that ssh
supports.  It can also be done with rsh, though only the .rhosts method
of trust is supported.

--
------------------------------------------------------------------------
Timothy J. Lee
Unsolicited bulk or commercial email is not welcome.
No warranty of any kind is provided with this message.

 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by tamt » Thu, 30 Nov 2000 04:00:00


I have .rhost of the opposite hostname in the directory , I still have
permission deny stmt.

HENRI




> >how to backup files from solaris 8 to linux rh 6.0 or vice-versa across
home
> >networking at 11:30 pm???

> ufsdump (Solaris) or dump (Linux) to standard output, then pipe that
> through ssh to the other computer to dd to the tape device.  Of course,
> one of the computers must trust the other in some manner that ssh
> supports.  It can also be done with rsh, though only the .rhosts method
> of trust is supported.

> --
> ------------------------------------------------------------------------
> Timothy J. Lee
> Unsolicited bulk or commercial email is not welcome.
> No warranty of any kind is provided with this message.

 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by Timothy J. L » Fri, 01 Dec 2000 15:43:33




>I have .rhost of the opposite hostname in the directory , I still have
>permission deny stmt.

Can you rsh or rlogin to the other host without needing to type in
the password?  After logging in, find out what host the host you
just logged into thinks you are coming from (via last, finger, etc.).
If name resolution is incorrectly set up, you may have to use the
IP address.  In some other situations, there may be several host names,
only one of which will match.

Also check the permissions on the $HOME/.rhosts file.

And check into using ssh, which gives more security as well as more
options for authentication methods.

--
------------------------------------------------------------------------
Timothy J. Lee
Unsolicited bulk or commercial email is not welcome.
No warranty of any kind is provided with this message.

 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by Joerg Schilli » Fri, 01 Dec 2000 04:00:00




>Setup the machines so they love each other (.rhosts stuff).
>From Solaris try something like ufsdump -0cuf
><remote_host>:/dev/<tape_device> <filesystem_to_dump>
>Example: ufsdump -0cuf mars:/dev/st0 /
>I would script it for multiple partitions.
>Works for Solaris to Solaris.


>> how to backup files from solaris 8 to linux rh 6.0 or vice-versa across
>home

Beware of incompatibilities......

This will only work if your software does not use more functionality
than:

-       open() with open mode from O_RDONLY, O_WRONLY, O_RDWR

-       read()/write()

-       seek()

If you like to do more, you should switch to the 'rmt' Implementation
from star (ftp://ftp.fokus.gmd.de/pub/unix/star/alpha/)

This rmt server gives 100 % compatibility to:

-       old 1981 BSD features

-       Sun/Solaris extensions that give compatibility for MTIO opcodes > 7
        and allow to use MTIOCGET status call.

-       GNU extensions that allow to use more than the two lowest
        bits in the open() modes.

-       Schily SING extensions that deal with Linux ioctl incompatibility
        for MTIO op codes in the range 0..7

In addition, it gives you up to 40% more speed compared to a Sun rmt server
and it implements additional security features.

As it may be installed as "login shell", you don't need overwrite your
system's /etc/rmt in order to use it.

*************************************************************************
NEVER NEVER use the GNU 'mt' command (as found on Linux) in remote mode
if only one of the machines runs Linux!
*************************************************************************

If you call (from Linux)


The solaris host will perform a RETENSION. Worse things may happen
with other commands.

The mt command that comes with star does not have this problem if you use the
rmt server that comes with star.

--



URL:  http://www.fokus.gmd.de/usr/schilling    ftp://ftp.fokus.gmd.de/pub/unix

 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by Joerg Schilli » Fri, 01 Dec 2000 04:00:00




>I have .rhost of the opposite hostname in the directory , I still have
>permission deny stmt.

>HENRI




>> >how to backup files from solaris 8 to linux rh 6.0 or vice-versa across
>home
>> ufsdump (Solaris) or dump (Linux) to standard output, then pipe that
>> through ssh to the other computer to dd to the tape device.  Of course,
>> one of the computers must trust the other in some manner that ssh
>> supports.  It can also be done with rsh, though only the .rhosts method
>> of trust is supported.


will print better messages that in many cases contain the reason for your
problem.

        ftp://ftp.fokus.gmd.de/pub/unix/star/alpha/

--



URL:  http://www.fokus.gmd.de/usr/schilling    ftp://ftp.fokus.gmd.de/pub/unix

 
 
 

how to backup files from solaris 8 to linux rh 6.0 or vice-versa at SOHO.

Post by jack_ju.. » Fri, 01 Dec 2000 04:00:00




Quote:> how to backup files from solaris 8 to linux rh 6.0 or vice-versa
across home
> networking at 11:30 pm???
> thanks!

Depending on how complex your setup is you might want to take a look at
Arkeia ( http://www.knox-software.com )

The easiest way might be to NFS mount the solaris filesystems onto the
RedHat box and run your backup from there as you would for local
filesystems.

JJ

Sent via Deja.com http://www.deja.com/
Before you buy.

 
 
 

1. copying files from Linux to DOS and vice-versa

I am running Linux on a partition of the disk of my PC.
The DOS partition is mounted as a Linux directory.

I need to copy text files from the Linux partition to the DOS
partition (and then back), and I would like carriage return /
line feeds to be translated into line feeds (I need to open these
files from DOS applications running under the DOS emulator).

So far I only managed to copy files via a floppy by
   mcopy -t linux_file_name a:\temp    
then
   mcopy a:\temp \dos\directory_name\dos_file_name  

Does someone know how can I do this copying without using a floppy?

Thanks in advance

-- Antonio

2. ICMP Redirect / Routing Problem

3. VMware: Windows on Linux or vice-versa?

4. QIC-02 CMS QFA-700 tape drive

5. Can't see Linux hostname from Windows and vice-versa

6. setting up a 192.168.xxx.xxx network next to exising one

7. Using Oracle to mirror NIS maps & vice-versa

8. rm from cron can't remove too many files

9. SOS: C Routines for ASCII to EBCDIC Conversion and Vice-versa

10. How to quickly take an Ultra-1 off the net to be standalone and vice-versa???

11. Lowercase -> Uppercase and vice-versa

12. converting netscape bookmarks to kfm and vice-versa

13. mounting one partition to two directories and vice-versa