Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread rpjday
On Mon, 18 Dec 2000, Jonathan Wilson wrote: > At 01:52 PM 12/16/2000 -0500, you wrote: > > > ># pwd > >/tmp/d/e > ># rm -rf .* > >rm: cannot remove '.' or '..' > >rm: cannot remove '.' or '..' > > This is due to permissions, most likely, not lack of function. Try > that as root and watch it go :-

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread Jonathan Wilson
At 01:52 PM 12/16/2000 -0500, you wrote: >On Sat, 16 Dec 2000, Bill Anderson wrote: > >> Bret Hughes wrote: >> > >> > Bill Anderson wrote: >> ... >> > > Or my favorite: >> > > rm -rf .* >> > > thinking it will remove the current directory OR all the dotfiles in the >> > > current directory ... and

RE: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread Eric Sisler
D'oh! Forgot to finish my last thought: Additionally, important system data (like /var) and user data (like /home) are kept on software RAID1 filesystems to keep them safe from disk failure. I can always restore the OS from tape (or reinstall from CD if worse comes to worse), but users tend

RE: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread Eric Sisler
This thread seems to have degenerated into a discussion about the finer points of the rm command ;-) but I'll throw in my $0.02 about backups anyway: We BRU and HP SCSI DDS-2 and DDS-4 tape drives. Full backups are performed Friday with differential backups Saturday thru Thursday. The Saturda

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread rpjday
On Mon, 18 Dec 2000, Bill Anderson wrote: > Cameron Simpson wrote: > > > > On Sat, Dec 16, 2000 at 11:31:09AM -0700, Bill Anderson <[EMAIL PROTECTED]> wrote: > > | > > Or my favorite: > > | > > rm -rf .* > > | > > thinking it will remove the current directory OR all the dotfiles in the > > | > >

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-18 Thread David Talkington
Cameron Simpson wrote: >So you will find > > ${1+"$@"} > >in portable wrapper scripts. > >Aside: ${1:+"$@"} is wrong wrong wrong. As an exercise, tell me what it would > break. Hmm ... the latter construct would allow a null argument. So to demonstrate to myself how the behavior wo

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Bill Anderson
Cameron Simpson wrote: > > On Sat, Dec 16, 2000 at 11:31:09AM -0700, Bill Anderson <[EMAIL PROTECTED]> wrote: > | > > Or my favorite: > | > > rm -rf .* > | > > thinking it will remove the current directory OR all the dotfiles in the > | > > current directory ... and are root. > | > I assume this

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Cameron Simpson
On Sun, Dec 17, 2000 at 10:38:27AM -0600, Bret Hughes <[EMAIL PROTECTED]> wrote: | Personally I love the colored ls :) Many seem to. But I find dark blue text on my black backgrounded windows damn hard to read, and find that colour tells me nothing that: ls -F doesn't. It narks me that th

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Cameron Simpson
On Sun, Dec 17, 2000 at 01:31:19PM -0600, David Talkington <[EMAIL PROTECTED]> wrote: | Cameron Simpson wrote: | >One thing I have done in my own shell setup is alias (well, shell | >function, but the idea's the same) rm, cp, chmod, chown, chgrp and a | >couple of others to an equivalent of | >

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread David Talkington
Cameron Simpson wrote: > >One thing I have done in my own shell setup is alias (well, shell >function, but the idea's the same) rm, cp, chmod, chown, chgrp and a >couple of others to an equivalent of > > ( set -x; rm ${1+"$@"}; ) > >i.e. I get to see the results of my shell expansion for the

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Bret Hughes
Cameron Simpson wrote: > On Sun, Dec 17, 2000 at 02:34:11AM -0600, David Talkington <[EMAIL PROTECTED]> >wrote: > | >If I leave off the -f flag GNU rm seems to ask about _every_ bloody > | >file. This makes it so close to useless that one must use -f all the > | >time. Which is VERY VERY BAD, be

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Cameron Simpson
Me> While we're bitching about rm, anyone know how to fix its prompting behaviour? Man do I feel silly now. Thanks guys. On Sat, Dec 16, 2000 at 10:04:45PM -0600, Bret Hughes <[EMAIL PROTECTED]> wrote: | > I believe you are just being affected by Redhat's decision to make sure only | > experienc

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread Cameron Simpson
On Sun, Dec 17, 2000 at 02:34:11AM -0600, David Talkington <[EMAIL PROTECTED]> wrote: | >If I leave off the -f flag GNU rm seems to ask about _every_ bloody | >file. This makes it so close to useless that one must use -f all the | >time. Which is VERY VERY BAD, because it makes habitual the "don'

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-17 Thread David Talkington
>If I leave off the -f flag GNU rm seems to ask about _every_ bloody >file. This makes it so close to useless that one must use -f all the >time. Which is VERY VERY BAD, because it makes habitual the "don't do >any sanity checks at all" mode. Dangerous in the extreme. On Red Hat, by default: #

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread Bret Hughes
Brian Ashe wrote: > Hi Cameron, > > [snip] > CS> While we're bitching about rm, anyone know how to fix its prompting behaviour? > > I believe you are just being affected by Redhat's decision to make sure only > experienced users can delete files without prompting. I think this was an > acceptable

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread Greg Wright
*** REPLY SEPARATOR *** On 17/12/00 at 12:46 Cameron Simpson wrote: >On Sat, Dec 16, 2000 at 11:31:09AM -0700, Bill Anderson <[EMAIL PROTECTED]> wrote: >| > > Or my favorite: >| > > rm -rf .* >| > > thinking it will remove the current directory OR all the dotfiles in the >| >

Re[2]: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread Brian Ashe
Hi Cameron, [snip] CS> While we're bitching about rm, anyone know how to fix its prompting behaviour? I believe you are just being affected by Redhat's decision to make sure only experienced users can delete files without prompting. I think this was an acceptable, but annoying, decision, since t

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread Cameron Simpson
On Sat, Dec 16, 2000 at 11:31:09AM -0700, Bill Anderson <[EMAIL PROTECTED]> wrote: | > > Or my favorite: | > > rm -rf .* | > > thinking it will remove the current directory OR all the dotfiles in the | > > current directory ... and are root. | > I assume this will delete everything from the parent

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread rpjday
On Sat, 16 Dec 2000, Bill Anderson wrote: > Bret Hughes wrote: > > > > Bill Anderson wrote: > ... > > > Or my favorite: > > > rm -rf .* > > > thinking it will remove the current directory OR all the dotfiles in the > > > current directory ... and are root. > > > > > >:) > > > > I assume this will

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-16 Thread Bill Anderson
Bret Hughes wrote: > > Bill Anderson wrote: ... > > Or my favorite: > > rm -rf .* > > thinking it will remove the current directory OR all the dotfiles in the > > current directory ... and are root. > > > >:) > > I assume this will delete everything from the parent directory down? at least ls .

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Bret Hughes
Bill Anderson wrote: > Bill Carlson wrote: > > > > On Fri, 15 Dec 2000, Jonathan Wilson wrote: > > > > > For everyone who has suggested RAID: > > > > > > I like RAID, it's very cool. However, the kind of things are servers currently >do are not "worthy" of the price. What's valuable here, is not

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Bill Anderson
Bill Carlson wrote: > > On Fri, 15 Dec 2000, Jonathan Wilson wrote: > > > For everyone who has suggested RAID: > > > > I like RAID, it's very cool. However, the kind of things are servers currently do >are not "worthy" of the price. What's valuable here, is not what it does, but the >long hour

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Duane Clark
Jonathan Wilson wrote: > Howdy, > > Now that we've spent a good deal of time setting up our system of servers, it's > occurred to us that we should be dome something more rigorous then once a week > manual "cp -a /etc /backup/$DATE" > > First off, we do NOT want to buy a commercial app like Arie

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Bill Carlson
On Fri, 15 Dec 2000, Jonathan Wilson wrote: > For everyone who has suggested RAID: > > I like RAID, it's very cool. However, the kind of things are servers currently do >are not "worthy" of the price. What's valuable here, is not what it does, but the >long hours we've spent setting up. > > Als

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Jonathan Wilson
For everyone who has suggested RAID: I like RAID, it's very cool. However, the kind of things are servers currently do are not "worthy" of the price. What's valuable here, is not what it does, but the long hours we've spent setting up. Also, while RAID and mirroring are great for hard drive fa

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Jonathan Wilson
At 05:48 AM 12/15/2000 -0500, you wrote: >..and howdy back to you, :-) >Couple of comments: >1. The reason that back up software vendors can charge for their products is that >they provide the fallover/failproof features, tested and guaranteed that you require >without you having to write the

RE: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Kevin Thorpe
We use BRU and a DAT drive for backups. Commercial I know but it is reliable. We run a set of daily tapes Mon-Thu and a set of five Friday tapes. The last Friday tape of every month gets taken off-site. Restoration of single files is relatively easy from the supplied X front end. We try and avo

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread Bill Carlson
On Thu, 14 Dec 2000, Jonathan Wilson wrote: > I can think of several considerations: > > 1. At least some level of backup needs to happen every day, i.e. at least a back up >of /etc to a local tarball. > > 2. Though we have lots of space and can get more, we can't keep archives forever. >There

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread John Aldrich
On Thu, 14 Dec 2000, Jonathan Wilson wrote: > Howdy, > > Now that we've spent a good deal of time setting up our system of servers, it's >occurred to us that we should be dome something more rigorous then once a week manual >"cp -a /etc /backup/$DATE" > [snip] > > 8. It needs to have some sor

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-15 Thread M. Neidorff
..and howdy back to you, Couple of comments: 1. The reason that back up software vendors can charge for their products is that they provide the fallover/failproof features, tested and guaranteed that you require without you having to write the programs yourself (can you do the level of testing

Re: Best backup system/plan for maximum safety - what do y'all do?

2000-12-14 Thread Bill Anderson
Jonathan Wilson wrote: > > Howdy, > > Now that we've spent a good deal of time setting up our system of servers, it's >occurred to us that we should be dome something more rigorous then once a week manual >"cp -a /etc /backup/$DATE" > > First off, we do NOT want to buy a commercial app like A

Best backup system/plan for maximum safety - what do y'all do?

2000-12-14 Thread Jonathan Wilson
Howdy, Now that we've spent a good deal of time setting up our system of servers, it's occurred to us that we should be dome something more rigorous then once a week manual "cp -a /etc /backup/$DATE" First off, we do NOT want to buy a commercial app like Arieka or BRU. We want to use Free Sof