slirp chicken and egg problem

2008-09-28 Thread Geoffrey S. Mendelson
Thanks for the suggestions and help, I'm further along, but here's were 
I'm stuck.


If I invoke pptp and connect to it from a windows machine, it makes
a connection and then passes control to pppd. On a regular system
pppd passes back a data stream that windows recongnizes as coming 
from pppd and starts communicating.


In my case, I can't run pppd because it calls the kernel ppp driver and
the kernel does not have it.

So I tried to replace pppd with Slirp. Slirp supports ppp. So I tell
pptpd to invoke slirp instead of pppd, and include ppp in the slirp options
file.

I start up pptp, and it waits. I connect from windows and it starts Slirp.
Slirp displays a message that it's starting and going into ppp mode.

Windows waits for a response from Slirp, as if it were pppd, and Slirp
waits for a response from Windows.

What do I do?

Thanks,

Geoff.



--
Geoffrey S. Mendelson, Jerusalem, Israel [EMAIL PROTECTED]  N3OWJ/4X1GM

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Summary: chicken and egg (now: backuping DBMSs)

1999-10-12 Thread Eli Marmor

Hi!

Thank you Michael Ben-Nes, Frodo, erez, Evgeny Stambulchik, and Mike
for you answers. Since all the answers (except for a short thing
from Mike) were to linux-il, no summary is needed; Just go to
http://plasma-gate.weizmann.ac.il/Linux/maillists/99/10/threads.html
and look for the subject "chicken and egg (now: backuping DBMSs)".

As you could learn from the thread, it is not the case of black and
white. Most (or all) backup packages don't support DBMSs directly,
and you must stop/lock the database temporarily before starting the
backup. Not to mention incremental backup which is completely im-
possible this way (when I wrote about huge databases in my original
message, I meant gigabytes of course, and not megabytes).

The good news is that most DBMSs have special means for backuping,
and you can even export the modifications since a specific time
stamp, and to include the exported file in your incremental backup.

-- 
Eli Marmor

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: chicken and egg (now: backuping DBMSs)

1999-10-11 Thread Eli Marmor

[EMAIL PROTECTED] wrote:

 2. try using dump instead of tar, this is really ment for backup

Speaking about backuping, and also about databases like MySQL (in
another linux-il thread), let me ask you (you=linux-il subscribers)
to share your experience with backuping file-systems which include
running databases. I know that there are special backup methods for
databases. Do you use them?  Are there special backup tools (e.g.
BRU2000, etc.) which support databases and/or even know how to speak
with them so backups can be done during normal running of the
database?  And is there any way to backup databases incrementally?
Imagine a database of many megabytes, with some records modified
daily; It is not acceptable that the whole database should be copied
daily, and there must be a better way...

Thanks,
-- 
Eli Marmor

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re[2]: chicken and egg (now: backuping DBMSs)

1999-10-11 Thread Evgeny Stambulchik

Eli Marmor [EMAIL PROTECTED] wrote:

  Speaking about backuping, and also about databases like MySQL (in
  another linux-il thread), let me ask you (you=linux-il subscribers)
  to share your experience with backuping file-systems which include
  running databases. I know that there are special backup methods for
  databases. Do you use them? 

You can run a DB's dump utility (like pg_dump of Postgres) redirecting its
output to a file (probably piped through gzip or bzip2). Do it from cron some
minutes before the backup is started.

   Are there special backup tools (e.g.
  BRU2000, etc.) which support databases and/or even know how to speak
  with them so backups can be done during normal running of the
  database?

Yes, there are special backup programs that can do it (not BRU, though) - but
none that can work with a non-commercial DB, AFAIK.

And is there any way to backup databases incrementally?
  Imagine a database of many megabytes, with some records modified
  daily; It is not acceptable that the whole database should be copied
  daily, and there must be a better way...

Do you really have _that_ large databases? If we're talking about something
within ~ 100MB, I wouldn't bother - backup drives are fast and media are
cheap nowadays...

Regards,

Evgeny


--
   
  / Evgeny Stambulchik  [EMAIL PROTECTED]  \
 /  Plasma Laboratory, Weizmann Institute of Science, Israel \  \
 |  Phone : (972)8-934-3610  == | == FAX   : (972)8-934-3491 |  |
 |  URL   :http://plasma-gate.weizmann.ac.il/~fnevgeny/  |  |
 |  Finger for PGP key =+  | 
 |__| 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: chicken and egg

1999-10-11 Thread Ben-Nes Michael

Short exmp

make directory backup

under it put a file exclude.txt which will include all the directory to
exclude
(example next line)

dev
mnt
backup
proc

and then use the -X to use the exclude.txt file

tar cvz -X /backup/exclude.txt -f /backup/xxx.tar.gz" /


Aviram Jenik wrote:

 Hi.

 Stupid check-and-the-egg question.
 I want to back up my entire hard-drive to a tgz file using tar. How can I do
 this, without adding the tar to the tar?!

 Thanks.

 -
 Aviram Jenik

 "Addicted to Chaos"

 -
 Today's quote:

 - Real programmers think structured programming is a communist
   plot.

 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word "unsubscribe" in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]

--
--
Canaan Surfing Ltd.
Internet Service Providers
Ben-Nes Michael - Manager
Tel: 972-6-6925757
Fax: 972-6-6925858
http://www.canaan.co.il
--

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: chicken and egg

1999-10-11 Thread Alex Shnitman

On Mon, Oct 11, 1999 at 06:09:01PM +0200, Ben-Nes Michael wrote:

 Short exmp
 
 make directory backup
 
 under it put a file exclude.txt which will include all the directory to
 exclude
 (example next line)
 
 dev
 mnt
 backup
 proc
 
 and then use the -X to use the exclude.txt file
 
 tar cvz -X /backup/exclude.txt -f /backup/xxx.tar.gz" /

Or use the -l option of tar to tell it to stay in one filesystem and
not jump into mount points, which may be easier if that's what you
want.


-- 
Alex Shnitman| http://www.debian.org
[EMAIL PROTECTED], [EMAIL PROTECTED]   +---  
http://alexsh.hectic.netUIN 188956PGP key on web page
   E1 F2 7B 6C A0 31 80 28  63 B8 02 BA 65 C7 8B BA

NOTE: if this message has reached you in error, or if you would simply
like to be removed from our mailing list, please call the 800 number
listed above and slowly speak and spell your e-mail address so that we
may process your request promptly.
Thank you! 
-- Excerpt from a spam letter

 PGP signature


Re: chicken and egg

1999-10-11 Thread Gaal Yahas

On Mon, Oct 11, 1999 at 08:24:50AM +0200, Mike ALmogy wrote:
 if you want to do a backup of your entire HD why not using the MSDOS
 program GHOST ?

I think Ghost is the paradigm of superfluous applications. Boot
from any decent single-floppy system and

dd if=/where/ever of=/hmm

 I think that it supports linux File Systems. and since it copy every bit on
 your HD then it will not be a problem to recover the info.

The above does that too, plus any filesystem to come.

-- 
believing is seeing
[EMAIL PROTECTED]
http://www.forum2.org/gaal/

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



chicken and egg

1999-10-10 Thread Aviram Jenik

Hi.

Stupid check-and-the-egg question.
I want to back up my entire hard-drive to a tgz file using tar. How can I do
this, without adding the tar to the tar?!

Thanks.

-
Aviram Jenik

"Addicted to Chaos"

-
Today's quote:

- Real programmers think structured programming is a communist
  plot.




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: chicken and egg

1999-10-10 Thread Mike ALmogy

if you want to do a backup of your entire HD why not using the MSDOS
program GHOST ?
I think that it supports linux File Systems. and since it copy every bit on
your HD then it will not be a problem to recover the info.

I recently installed a new card called Magic Card that supports linux quit
well.

If you want some more info then pls replay me.

Mike


"Stanislav Malyshev a.k.a Frodo" wrote:

 AJ Stupid check-and-the-egg question. I want to back up my entire
 AJ hard-drive to a tgz file using tar. How can I do this, without
 AJ adding the tar to the tar?!

 Well, you might prepare the file list beforehand (with, e.g., find) and
 then feed it to tar or cpio.

 --
 [EMAIL PROTECTED]  \/  There shall be counsels taken
 Stanislav Malyshev  /\  Stronger than Morgul-spells
 phone +972-3-9316425/\  JRRT LotR.
 http://sharat.co.il/frodo/  whois:!SM8333

 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word "unsubscribe" in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]

--

Michael Almogy.
System Administrator
Mofet Institute.
Cel : 972-052-562237
Tel : 972-03-6901415
Fax : 972-03-6901414




=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]