linux-admin.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Backups the old fashioned why
@ 2002-05-14 22:40 David Jackson
  2002-05-14 22:57 ` James
  2002-05-14 22:57 ` Glynn Clements
  0 siblings, 2 replies; 5+ messages in thread
From: David Jackson @ 2002-05-14 22:40 UTC (permalink / raw)
  To: linux-admin; +Cc: jimintriglia

Howdy --
Simple situation, how to back up servers across
a phone line (network):

I want to backup meatloaf to a tape drive attached
to gravy using a dialup connection. Can I specify
a hostname as part of the device? 

For instance on meatloaf:
find . -depth -print |cpio -o > gravy:/dev/rmt0

TIA,
David


^ permalink raw reply	[flat|nested] 5+ messages in thread
* Re: Backups the old fashioned why
@ 2002-05-14 23:18 David Jackson
  2002-05-15  9:18 ` Glynn Clements
  0 siblings, 1 reply; 5+ messages in thread
From: David Jackson @ 2002-05-14 23:18 UTC (permalink / raw)
  To: david.jay.jackson, Glynn Clements; +Cc: linux-admin

Glynn --
Thanks for you reply, I new this was simple, I'm guessing dump would support a similar syntax ( man talks about rsh shell). Another question about dump,
is their a problem with dump and ext3 filesystems?

Thanks as always,
David


---------- Original Message ----------------------------------
From: Glynn Clements <glynn.clements@virgin.net>
Date: 	Tue, 14 May 2002 23:57:47 +0100

>
>David Jackson wrote:
>
>> Simple situation, how to back up servers across
>> a phone line (network):
>> 
>> I want to backup meatloaf to a tape drive attached
>> to gravy using a dialup connection. Can I specify
>> a hostname as part of the device? 
>> 
>> For instance on meatloaf:
>> find . -depth -print |cpio -o > gravy:/dev/rmt0
>
>This won't work; the ">" operator is part of the shell, which doesn't
>support the "host:path" syntax.
>
>However, cpio itself (like tar) understands the "host:path" syntax
>(this spawns "rsh" to connect to the specified host, so the remote
>host needs to support rsh). So, you could use:
>
>	find . -depth -print |cpio -o -O gravy:/dev/rmt0
>or:
>	find . -depth -print |cpio -o -O username@gravy:/dev/rmt0
>
>-- 
>Glynn Clements <glynn.clements@virgin.net>
>-
>To unsubscribe from this list: send the line "unsubscribe linux-admin" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2002-05-15  9:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-14 22:40 Backups the old fashioned why David Jackson
2002-05-14 22:57 ` James
2002-05-14 22:57 ` Glynn Clements
  -- strict thread matches above, loose matches on Subject: below --
2002-05-14 23:18 David Jackson
2002-05-15  9:18 ` Glynn Clements

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).