Apletalk problems

1999-08-09 Thread Alex Dvash

Hi all..

I have some problems with the configuration of AppleTalk,
The problems is NBPRGSTR or in NBPLQUP
I think that the problem is the segment configuration of the linux
box into a TCP/IP and AppleTalk Net.

Please help...

Thanx
Alecs:)

=
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: Newbie on GCC

1999-08-09 Thread guy keren


On Sun, 8 Aug 1999, Yoav Ben-Yosef wrote:

 I'm trying for the first time to compile a program which uses ncurses (a 
 "Hello World!" progie compiled and runs fine :), but all ncurses functions 
 aren't identified by the linker. It seems I'm not pointing at the right 
 direction for the ncurses library files. Can anyone give me a tip?

you should send the link comand you were trying to use. here is what works
on this redhat 4.2 system:

g++ -g -o win {a bunch of .o files} -lncurses -ltermcap

note: i'm using g++, gcc will work the same for your C program.
note2: the '-g' flag is for debug info. the '-o win' flag is to make the
resulting exectuable be named 'win'.
note3: i assume your ncurses came with your system, and thus is installed
in a directory that by default is being looked for by your compiled (e.g.
/lib, /usr/lib and so on). if it does not work, you should search for
ncurses on your system:

find / -name 'libncurses.*' -ls

and then add the directory in which the library is found to the link
command, like this:

gcc  -L/path/to/where/the/ncurses/lib/is/found -lncurses -ltermcap

if this still does not work, please send me your exact full link command,
and the exact error mesasges you get (if there are plenty - compress the
log before sending it), and i'll see if i could hepl.

hope this helps,
guy


=
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]



19.8 linux club meeting.

1999-08-09 Thread Orr Dunkelman

As Guy announced, we found a room in the technion which will be available
to us for our linux club.

I'd like to comment about how to get to Fishbach, that lines 17,19,76,77
also arrive at the technion (not only 31). and if you are coming from
matam check whether there is line 11.

You get off or by the Cherchill Hall or by the sports building.
Now, if you got down by the sports building you are near the square guy
was talking about. if you got down near Cherchill go down the road till
you get to the square.

Once yuo have arrived the square, go until you pass a large Amphitheatre
from your left, then you go by the Ulman building, and there you arrived
to Fishbach (all are at your left).

Once you entered the main eneternce of Fishbach (which is somewhere in the
middle of the building), go up the stairs at your right. you should arrive
to the Intellegent systems lab. then you go to the left, and in front of
you you'll see a room full of Sun. A) those Sun has solaris - don't touch
:) B) go near that room from the left till you pass a wooden door, with
floor going up. all you have to do now is to turn left, and after the
cooler turn again left just to find 413 to your right (for a change).

Orr Dunkelman,
[EMAIL PROTECTED]

"In Theory there is no difference between Theory and Practice, but in
Practice there is"


=
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]



Short question

1999-08-09 Thread Isaac Aaron

Hi

Does anybody know a shell command that allows me to run something in the
background immediately?

I've looked in to the alternatives -

at: Doesn't fit my need. I need to run it now.
batch: Batch run a process immed. only if the load average is lower than
0.8.
cron: Same as at.
issuing the command with the  sign: This will run as a nested process.
When I'll close the terminal, the command will shut with it.

Anyone?


=
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: Short question

1999-08-09 Thread Yaron Zabary

On Mon, 9 Aug 1999, Isaac Aaron wrote:

 Hi
 
 Does anybody know a shell command that allows me to run something in the
 background immediately?
 
 I've looked in to the alternatives -
 
 at: Doesn't fit my need. I need to run it now.

  You could 

at now + 0 minutes


 batch: Batch run a process immed. only if the load average is lower than
 0.8.
 cron: Same as at.
 issuing the command with the  sign: This will run as a nested process.
 When I'll close the terminal, the command will shut with it.

 Or use nohup as described by another poster.

 
 Anyone?
 
 
 =
 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]
 
 


-- Yaron.


=
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: Short question

1999-08-09 Thread Omer

For processes that need input, just redirect /dev/null (  /dev/null).

"Stanislav Malyshev a.k.a Frodo" wrote:
 
 IA issuing the command with the  sign: This will run as a nested process.
 IA When I'll close the terminal, the command will shut with it.
 
 nohup is your friend. Also an interesting fact - if you _already_ run the
 process via  and now want it to remain after shell exits, just kill -9
 the shell - the process should survive. Don't do it with processes that
 need terminal, though - they'll be suspended.
 --
 [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]

-- 
-
| Omer Efraim| Earth First!
|
| [EMAIL PROTECTED] | We can Strip Mine the other planets later...
|
-

=
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: ASM for I386

1999-08-09 Thread guy keren


On Mon, 9 Aug 1999, - wrote:

 Hello
 i was wandering if anyone here knows a webpage where can i learn the
 basic i386 instructions in assembly...
 I found some pages, but the stuff there only works on TASM or MASM
 Any idea ?

the assembly commands are the same - the format of assembly files is
different. you will want to look at the 'as' (gnu assembler) info pages to
see how to format your files, which sections must be present, etc.

so do:

info as

one note: the text-mode 'info' program has a completely non-intuitive
navigation system - you'd better do 'man info' befoer trying to use it -
up until last weekend, i always had to quit and start again in order to go
'up' one level (it's a hierarchical system). :0   conclusion - don't be as
lazy as i was..


=
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: ASM for I386

1999-08-09 Thread Guy Cohen

| i was wandering if anyone here knows a webpage where can i learn the
| basic i386 instructions in assembly...

http://udgftp.cencar.udg.mx/ingles/tutor/Assembler.html

-- 
New fingerprint: 75 D0 F3 03 32 C5 AC 99  93 2A 7D 0E 6F 17 7D C4
0x4AC8B6C9 Guy Cohen [EMAIL PROTECTED]
PGP v5 encrypted email preferred. Pubic key: [EMAIL PROTECTED]

=
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]



apache config

1999-08-09 Thread Mike

Hi list.
Does anyone knows how can i deny more then one browser window connection
to my site ?
what i means is that i do not ppl to open lots of windows to my site or
someone will use some kind of proxy or spider to get my site.
(for offline browsing).
This i do in order to reduce traffic.

Thanks

Mike



=
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]



socket programming

1999-08-09 Thread fusty LePeR




Hi , im looking for socket 
programming books
either hebrew or english it doesnt matter 


any good ideas?








=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]=[*]= 
 
Nick: 
LaZaR 
 
 
Name : fusty-LePeR 
 
 
IRC : #linux, linuxhelp 
 
 Email: [EMAIL PROTECTED] 
_ -- 
OS is like sex it's better when it's 
free---


Re: Short question

1999-08-09 Thread Ariel Biener

On Mon, 9 Aug 1999, Yaron Zabary wrote:


You can also use `screen'.

--Ariel

 On Mon, 9 Aug 1999, Isaac Aaron wrote:
 
  Hi
 
  Does anybody know a shell command that allows me to run something in the
  background immediately?
 
  I've looked in to the alternatives -
 
  at: Doesn't fit my need. I need to run it now.
 
 You could 
 
 at now + 0 minutes
 
 
  batch: Batch run a process immed. only if the load average is lower than
  0.8.
  cron: Same as at.
  issuing the command with the  sign: This will run as a nested process.
  When I'll close the terminal, the command will shut with it.
 
  Or use nohup as described by another poster.
 
 
  Anyone?
 
 
  =
  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]
 
 
 
 
 -- Yaron.
 
 
 =
 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]
 

--
Ariel Biener
e-mail: [EMAIL PROTECTED]   Work phone: 03-640608
fingerprint = 07 D1 E5 3E EF 6D E5 82 0B E9 21 D4 3C 7D 8B BC


=
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]



(no subject)

1999-08-09 Thread Ilan Peretz

Unsubscribe




=
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: Short question

1999-08-09 Thread Vadim Smelyansky

On Mon, 9 Aug 1999, Isaac Aaron wrote:

 Does anybody know a shell command that allows me to run something in the
 background immediately?
 
 I've looked in to the alternatives -
 
 at: Doesn't fit my need. I need to run it now.
 batch: Batch run a process immed. only if the load average is lower than
 0.8.
 cron: Same as at.
 issuing the command with the  sign: This will run as a nested process.
 When I'll close the terminal, the command will shut with it.
Then just use 'screen', it is very suitable, because later you can
reattach terminal, and you can also run progs that need terminal I/O

--
Vadim Smelyansky (AKA Proglot) cellular:+972-54-876933
WideNet Ltd., Yokneam, 20692, Israel.   ICQ: #38048982


=
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]