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 Stanislav Malyshev a.k.a Frodo

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]



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 Mike

use : YOUR_COMMAND &

Mike


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


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



announce: Haifa Linux Club's 1st meeting.

1999-08-09 Thread guy keren


(note - some of you receive this message via BCC cause they asked to be
notified when this club begins - sorry for any double-posts).

hi,

I'm pleased to announce that the first meeting of the long-ago-suggested
Haifa Linux club will take place at the Technion in Haifa, Fishbach
building (computer science faculty's building) at room 413, on 19-Aug-99,
at 18:00 (thanks to orr dunkelman for arranging the location). The meeting
will last between 1.5 and 2 hours, and will have
the following agenda:

- a 5-10 minutes introduction.

- a 30-45 minutes 'lecture' about unix and Linux programming model -
  history and present. we'll discuss the origins of unix, the sys V vs.
  BSD systems (with relation to programming interfaces), where Linux
  appears to stand amongst them, libraries programming tools and
  programming environments available for unix and Linux programmers,
  and what is unique in Linux, from a programmers point of view.

- a 10 minute break.

- 25-30 minutes open discussion about what people expect from this club,
  what they might wish to contribute to this club.

- a 5 minutes 'concluding remarks' and administrativa.


Note: the Technion's computer science systems group staff has arranged
this room, and this activity will be announced also in the Technion, so
the first meeting might be a bit crowded, and a bit milky. however, after
the first one, i hope that only people interested in Linux and unix
programming will arrive, and starting at the second meeting we will delve
into more specific programming (and some system administration) material,
as was discussed on linux-il few month back.

How to get there:

as far as i know, parking should be done _outside_ the Technion, either in
the streets near the front gate, or in the Nesher area near the back
gate. i assume parking places will be available due to the season, and the
fact we meet at the end of the week. from the front gate - go down the
road, cross the traffic circle, and continue past the parking lot. the
second building to your left is the "fishbach" building. if you arrive by
the back gate, go past the gate up the road. on the junction (few hundread
meters from the gate) turn left (that is - up), and continue until you
went past the bio-medicine building, then turn right. walk forward until
you get to the fishbach building (which will be on your right), or ask
someone, if you get lost. as for the location of this room inside the
building - i hope orr could give us more exact instructions - if i
remember right, it's hidden in the fishbach maze - the place where rumors
claim some people got lost and died of starvation...

if one arrives by bus, the '31' Eged bus route goes inside the campus -
but it only goes once every hour - check with Eged Haifa for more details.
there is also an Eged bus number '28' that gets to the "Ziv center" in
neve sha'anan - it takes about 10 minutes of walk until you get to the
gate (and then you have more walking inside the campus) so it is less
recommended.

if there are any questions, please let me know.

see you there,
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]



Unsubscribe

1999-08-09 Thread Irv Shapiro

Unsubscribe

---
Irv Shapiro 
Cogitations, Inc.   Voice:  312.706.0667
8950 Gross Point Road   Fax:847.674.9958
Suite H Email:  [EMAIL PROTECTED]
Skokie, Il. 60077   Web:www.cogitations.com

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



Re: announce: Haifa Linux Club's 1st meeting.

1999-08-09 Thread Leonid Igolnik - LiM

|if one arrives by bus, the '31' Eged bus route goes inside the campus -
31 will take you there from Carmel and Romema, for those who coming from
Nave Shaanan and Adar 19 will be most appropriate bus. And for those who
come from Central Bus Station there is bus number 17.


P.S.: you can get the technion's map on www.technion.ac.il 


Leonid Igolnik aka LiM


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