Re: What's the best way to sync two laptops?

2011-11-27 Thread Mike Miller
On Mon, Nov 28, 2011 at 00:47, Michael Shiloh
michaelshiloh1...@gmail.com wrote:
 I now have two laptops which I'll use somewhat interchangeably. What's a
 good way to sync work between them?

 My main job is teaching, so I have many teaching notes and other
 documents. Dropbox might be a good way to sync these. I'm going to be
 doing some 3D design so I'll have inkscape and blender files as well.
 Dropbox again, I think.

If you go with dropbox, you may find yourself creating an awful lot of
symlinks to get everything you want synchronized.

I personally prefer SpiderOak; same basic idea, but a lot more
customizeable. They claim client side encryption with no keys stored
on the server; the codebase is not open source so it's hard to tell
for sure, but they talk a better talk than DropBox.

[Full disclosure; I have a spideroak account, and if you want to try
them, I'd be happy if you'd use this referral link
https://spideroak.com/download/referral/a2c5a8d4bd5bfb6b748c0a912cd30aeb
; it's an extra 1GB for each of us . Note that their normal free
accounts start at 2GB, but I'm pretty sure that either
worldbackupday or hurricanesafe are still valid coupons for 5GB
(or 6GB if you use the referral link]

-- Mike

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Backup script (was Re: rsync problem)

2011-03-21 Thread Mike Miller
On Tue, Mar 22, 2011 at 06:23, Omer Zak w...@zak.co.il wrote:
 What I would like to have is a Time Machine (TM?) like scheme in which a
 backup disk will enable me to see a snapshot of my computer's disk from
 a certain date.  It can be implemented by making hard links.

 Did anyone develop such a backup script?

You can start with http://www.mikerubel.org/computers/rsync_snapshots/

You may also find http://www.rsnapshot.org/ to be of interest.

-- Mike

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: RHEL-family dev environment

2008-05-22 Thread Mike Kemelmakher
I completely agree and support Gilads opinion -  developing commercial 
product on Fedora is a bad idea.


-Mike

Gilad Ben-Yossef wrote:

Oron Peled wrote:


On Monday, 5 בMay 2008, Ira Abramov wrote:
 
which brings me to the question - should I stick to Fedora (7? 8?) 
for the
devel environment and break from the RPM world and go for Lenny or 
Hardy?



Generally, the requirements of any enterprise/stable distributions
are bad for developers by definition.

These distros must have long upgrade cycles, normally contain a lot of
legacy API's which are maintained purely for legacy applications etc.

So for production, your obvious choice may be RHEL/Centos, Debian 
etch etc.
But for development you should take Fedora, Debian lenny, Ubuntu 
(without

staying on the LTS track), etc.

  
Based on 4 years of running a company whose main business is 
supporting and assisting product companies use Open Source in their 
products, I completely disagree:


For a commercial product, at least a commercial product which is not
developed by a bunch of all Linux old hands, I think that the 
complexities added by using a
cutting edge (as opposed long term support) distribution , in addition 
to having to deploy
on a different platform then the one you developed on, introduce some 
much 'noise' in the
development environment such  that any advantage gained from using the 
latest and greatest is lost.

If your current production target is Centos, you natural development
platform will be Fedora. Each RHEL version click (~18 months) 
accumulates

roughly 3 Fedora versions (~6 months). So for your case a Fedora 8 would
be solid choice (fully updated, it is kdevelop-3.5.1-3.fc8).

  

I think developing commercial product on Fedora is a bad idea.

Note that I'm not saying anything bad about Fedora here, just about 
it's application as a development environment for a commercial product.


Gilad





=
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: nmap quiet mode

2008-01-07 Thread Mike Kemelmakher

Josh Amishav-Zlatin wrote:

On Sun, 6 Jan 2008, Mike Kemelmakher wrote:

10x.  as far as i can see it is not working for localhost for some 
reason ...


Can you verify that the expected port is indeed available on localhost
through some other means (i.e. netstat -pan, nc localhost port)?


yes. i can.  nmap, telnet, neststat, ssh all work as expected.
simply hping will not return error status 1  in case port is not 
available on localhost



and i need to test ports on the same host as well as on remote hosts.


hping should be able to handle that.

--
  - Josh




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



nmap quiet mode

2008-01-06 Thread Mike Kemelmakher

Hi All,

I need following functionality from nmap  - test presence of a service 
listening to a particular port without performing full connect but with 
TCP SYN ACK RESET

and get the result in form of return status.  something like following:

[EMAIL PROTECTED] # nmap  -sS -p 22  hostname
[EMAIL PROTECTED] #  echo $?
1
[EMAIL PROTECTED] #

In other words - i need to get an indication from nmap about the 
performed scan in my script code.
Parsing nmap output is not an option since nmap will be used very 
frequently ( each 5-10 seconds ) to test around 200 ports ..


I started to write my own C code to perform tcp SYN ping .. but in case 
there is an option to utilize nmap it will be preferred.


thanks in advance,
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: nmap quiet mode

2008-01-06 Thread Mike Kemelmakher
10x.  as far as i can see it is not working for localhost for some 
reason ... and i need to test ports on the same host as well as on 
remote hosts.


-Mike

Josh Amishav-Zlatin wrote:

On Sun, 6 Jan 2008, Mike Kemelmakher wrote:


Hi All,

I need following functionality from nmap  - test presence of a 
service listening to a particular port without performing full 
connect but with TCP SYN ACK RESET


If you don't want a full TCP handshake why not use hping, something
like:

hping -c 5 -S hostname -p 22
if [ $? -eq 0 ];
then ...
fi

--
 - Josh




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



nmap quiet mode

2008-01-06 Thread Mike Kemelmakher

Hi All,

I need following functionality from nmap  - test presence of a service 
listening to a particular port without performing full connect but with 
TCP SYN ACK RESET

and get the result in form of return status.  something like following:

[EMAIL PROTECTED] # nmap  -sS -p 22  hostname
[EMAIL PROTECTED] #  echo $?
1
[EMAIL PROTECTED] #

In other words - i need to get an indication from nmap about the 
performed scan in my script code.
Parsing nmap output is not an option since nmap will be used very 
frequently ( each 5-10 seconds ) to test around 200 ports ..


I started to write my own C code to perform tcp SYN ping .. but in case 
there is an option to utilize nmap it will be preferred.


thanks in advance,
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: getting the current stack size of a given thread on linux

2007-10-08 Thread Mike Kemelmakher


Hi ,

Oron Peled wrote:

On Sunday, 7 בOctober 2007, Mike Kemelmakher wrote:
  
Hi, 

The  pthread_attr_getstacksize()  and  pthread_attr_setstacksize() 
functions, respectively, shall get and set the thread _*creation*_ 
stacksize attribute in the attr object.



AFAIK, in terms of the pthead *API*, the creation size is the *only* size.
This is because POSIX threads are implemented on many platforms, including
non-Unix, non-MMU ones. That's why there is a standard attribute to set
the stack size, while you don't have such a parameter for fork().

I must admit I didn't know Linux actually had a growing stack threads
and it seems to me that they are a Linux extension --
For the Linux kernel a thread is a task like any other process and can
easily have its stack mem-mapped to some private pages to implement this
feature. Of course other Unices *may* implement it in a similar way.

  
What i need is current stack size of a running thread.  My problem is 
that  i have a thread with constantly growing stack ( i can see it via 
/proc/PID/smaps ).



Unless someone added a linux-specific API for this, you may have to
revert to /proc/PID/smaps parsing :-(

  

Thread uses some functions from a proprietary shared library. I need to
know when the stack size of the mentioned thread  reaches RLIMIT_STACK
so i can safely restart that thread before it crashes.



The wonders of proprietary code. You cannot fix the memory leak so
you have to work around it... nice.

Maybe the way to wrap it would be:
  1. Create a watcher thread that would sample /proc/PID/smaps
  2. Have this thread restart the problematic thread --
 this is of course application specific.
So when this library eventually get fixed, you can knife the ugly code out.
  
Indeed, thats what i do - juts there is no need for the watcher thread - 
problematic thread monitors and restarts itself.


10x,
Mike

P.S.  It would be nice to add a linux-specific API for thread stack 
monitoring.  Moreover, there is API that can be extended to do this -
getrusage (2) .   There is the field - ru_isrss  - integral unshared 
stack size - however linux does not maintain this field for some reason.









=
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: getting the current stack size of a given thread on linux

2007-10-08 Thread Mike Kemelmakher

Muli Ben-Yehuda wrote:


Ah, good point. I don't believe this is explicitly tracked, since the
stack segment grows automatically. Here's how I would do it, assuming
you can run code in the context of that thread: get the base of the
stack (initial address) using pthread_attr_getstackaddr or
pthread_attr_getstack, get the current value of the stack pointer via
inline assembly or just creating a variable on the stack and taking
its address, and then substract the former from the latter. Take into
account that the stack may grow up or down, depending on
architecture. The value you get back is the current size of the stack.
  

inline assembly was a good idea :)

10x,
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]



getting the current stack size of a given thread on linux

2007-10-07 Thread Mike Kemelmakher

Hi

I'm looking for an answer for this simple question - how can I get the 
current stack size of a given thread ?
Using getrusage() does not seem to do it.  Parsing /proc/PID/smaps is an 
option but i would prefer to get it from a system call.


Any ideas ?

10x
-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: getting the current stack size of a given thread on linux

2007-10-07 Thread Mike Kemelmakher
Hi, 

The  pthread_attr_getstacksize()  and  pthread_attr_setstacksize() 
functions, respectively, shall get


  and set the thread _*creation*_ stacksize attribute in the attr 
object.


What i need is current stack size of a running thread.  My problem is 
that  i have a thread with constantly growing stack ( i can see it via 
/proc/PID/smaps ).   Thread uses some functions from a proprietary 
shared library.  I need to know when the stack size of the mentioned 
thread  reaches RLIMIT_STACK so i can safely restart that thread before 
it crashes.


10x
-Mike

Muli Ben-Yehuda wrote:

On Sun, Oct 07, 2007 at 10:46:46AM +0200, Nadav Har'El wrote:
  

On Sun, Oct 07, 2007, Muli Ben-Yehuda wrote about Re: getting the current stack 
size of a given thread on linux:


pthread_attr_getstacksize(). See also pthread.h for various other
thread stack manipulation routines.
  

Muli, how do you get the pthread_attr_t object for the currect
thread?



If you don't mind only being portable to GNU systems:

pthread.h:

#ifdef __USE_GNU
/* Initialize thread attribute *ATTR with attributes corresponding to the
   already running thread TH.  It shall be called on unitialized ATTR
   and destroyed with pthread_attr_destroy when no longer needed.  */
extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr) __THROW;
#endif

Not sure what's the non-portable way of doing it.

Cheers,
Muli
  



=
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: Link back open deleted files - a working solution

2007-09-15 Thread Mike Kemelmakher
There is no need, since nothing was never deleted from the project CVS.  
Probably the web interface to CVS provided by sf.net is not very 
intuitive and it needs some improvement ;)


-Mike

guy keren wrote:


i think you should write a 'cvs-undelete' utility too ;)

--guy

Mike K wrote:

OK. Fixed links on

http://vfs-undelete.sourceforge.net/

Anyway,  we did not see much interest in this tool so far. However,  
this development was generously financed by our client during very 
sensitive crisis situation.  The development took one night only :) 
-Mike


On 9/14/07, *Mike K* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
wrote:


Hi Guys,

The files are in CVS from very beginning  Feb 2007


http://vfs-undelete.cvs.sourceforge.net/vfs-undelete/vfs-undelete/?pathrev=V_STABLE_1_0_v26 


http://vfs-undelete.cvs.sourceforge.net/vfs-undelete/vfs-undelete/?pathrev=V_STABLE_1_0_v26 



Enjoy,
-Mike




On 9/13/07, *Constantine Shulyupin*  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] wrote:

-- Forwarded message --
From: guy keren  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
Date: Sep 13, 2007 5:22 PM
Subject: Re: Link back open deleted files - a working solution
To: Constantine Shulyupin  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] 
Cc: Amos Shapira [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED], linux-il@cs.huji.ac.il
mailto:linux-il@cs.huji.ac.il


Constantine Shulyupin wrote:
  Here is  similar solution:

  http://sourceforge.net/projects/vfs-undelete/

this looks like a dead link
there's nothing to download yet, and when browsing via CVS, i
only see
empty directories, no files. am i missing something?

it looks as if there were files there in CVS in the past - but
someone
deleted all of them

--guy


  --
  Constantine

  
=

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

  echo unsubscribe | mail [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]




--
Constantine Shulyupin
Freelance Embedded Linux Engineer
054-4234440
http://www.linuxdriver.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: System resource monitoring and reporting utility ?

2007-08-09 Thread Mike Tewner
I've worked with tons of programs that do this - none of them have
filled all my requirements. One thing, though - I didin't want to rely
on SNMP - My ultimate solution would be a system that will ssh to a
machine and run commands, process the output.

In no particular order:

1. Monit is good for status - not history. If you want to know what's
running NOW, or get en email when disk usage goes above 80% - things
that can be checked remotely (ping, HTTP/S, Mysql) then monit is
great. No pretty graphs, though.
2. Nagios is the best for all-around monitoring - but configuration is
a pain. Installing the Groundwork framework makes this a cinch, though
installing groundwork itself is slightly painful and pretty invasive
on the host machine. If you have a machine to dedicate to this, this
is probably the best solution for most cases.
3. mrtg is good, especially if all your devices speak SNMP. It's cute
an simple - you cron a perl script to run every, say, 5 minutes. It
outputs a bunch of graphs. I don't think it does warnings/emails, etc.
4. Orcallator. Some large companies I know use this. I tried it once -
I seem to remeber that I liked it, though I couldn't online any of the
features that I thought I liked :-)
5. Zabbix - Very robust, but requires their agents to be installed on
all non SMTP machines. If you are willing to do this, then this is a
Great option. Really - Zabbix is a mature system that works great.
6. Zenoss - compatible with nagios plugins. I would say this solution
reminds me of a mach-up of zabbix and nagios.
7. Cacti - Non recommended. I don't remember why.



On 8/9/07, Shachar Shemesh [EMAIL PROTECTED] wrote:
 Oren Held wrote:
  A friend of mine (Amnon) found Munin (http://munin.projects.linpro.no/), 
  which
  is a great system resource grapher tool which has plugins for almost
  everything from swap, ntp time drifts, disk temperature - to mysql queries
  per second.
 
  However, it draws graphs, I'm not sure it can send alerts. You can set 
  limits
  (like highest cpu temperature or free disk space) which tag the whole node
  as red, maybe it's even capable of notifying.. worth a check I guess.
 
 I don't know about alerts, but I find that it is the best tool I know
 for getting the general health of a system. That is something no graph
 specific test can tell you, because it often involves measurements you
 did not think of before they happened.

 For anyone who is interested in seeing it in action, Hamakor's new
 server has it running, open for all to see: http://hamakor.org.il/munin/

 Shachar

 =
 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: System resource monitoring and reporting utility ?

2007-08-09 Thread Mike Tewner
Oh - I forgot. Nagios let me do my whole check-through-ssh thing. meaning:
I put the nagios-plugins somewhere on the remote machines and create a
nagios user on each. Configure key authentication for this user on all
the machines. Then I configured nagios to check_by_ssh all the things
I wanted checked. Configuration would have killed me had I not used
the Groundwork Framework.


On 8/9/07, Mike Tewner [EMAIL PROTECTED] wrote:
 I've worked with tons of programs that do this - none of them have
 filled all my requirements. One thing, though - I didin't want to rely
 on SNMP - My ultimate solution would be a system that will ssh to a
 machine and run commands, process the output.

 In no particular order:

 1. Monit is good for status - not history. If you want to know what's
 running NOW, or get en email when disk usage goes above 80% - things
 that can be checked remotely (ping, HTTP/S, Mysql) then monit is
 great. No pretty graphs, though.
 2. Nagios is the best for all-around monitoring - but configuration is
 a pain. Installing the Groundwork framework makes this a cinch, though
 installing groundwork itself is slightly painful and pretty invasive
 on the host machine. If you have a machine to dedicate to this, this
 is probably the best solution for most cases.
 3. mrtg is good, especially if all your devices speak SNMP. It's cute
 an simple - you cron a perl script to run every, say, 5 minutes. It
 outputs a bunch of graphs. I don't think it does warnings/emails, etc.
 4. Orcallator. Some large companies I know use this. I tried it once -
 I seem to remeber that I liked it, though I couldn't online any of the
 features that I thought I liked :-)
 5. Zabbix - Very robust, but requires their agents to be installed on
 all non SMTP machines. If you are willing to do this, then this is a
 Great option. Really - Zabbix is a mature system that works great.
 6. Zenoss - compatible with nagios plugins. I would say this solution
 reminds me of a mach-up of zabbix and nagios.
 7. Cacti - Non recommended. I don't remember why.



 On 8/9/07, Shachar Shemesh [EMAIL PROTECTED] wrote:
  Oren Held wrote:
   A friend of mine (Amnon) found Munin (http://munin.projects.linpro.no/), 
   which
   is a great system resource grapher tool which has plugins for almost
   everything from swap, ntp time drifts, disk temperature - to mysql queries
   per second.
  
   However, it draws graphs, I'm not sure it can send alerts. You can set 
   limits
   (like highest cpu temperature or free disk space) which tag the whole node
   as red, maybe it's even capable of notifying.. worth a check I guess.
  
  I don't know about alerts, but I find that it is the best tool I know
  for getting the general health of a system. That is something no graph
  specific test can tell you, because it often involves measurements you
  did not think of before they happened.
 
  For anyone who is interested in seeing it in action, Hamakor's new
  server has it running, open for all to see: http://hamakor.org.il/munin/
 
  Shachar
 
  =
  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: Help with Linux on sparc64

2007-07-31 Thread Mike Tewner
On 7/31/07, Rami Rosen [EMAIL PROTECTED] wrote:

 Hello Nadav,

 What binary distribution has the best support for Sun machines?

 The first distribution which was equipped with support for Sun SPARC64
 is Ubuntu; this happened after some attempts to boot Fedora Core (by
 Dave Miller and others) failed giving panic.

 This of course does not imply the Ubuntu is the best one , but it is
 the most veteran
 in this field. So I suggest you try it (you can try Ubuntu live-cd
 first to see what are the results).


That's a very dangerous statement - I've installed at least 3 linux distros
on my 64-bit ultra5 years before Ubuntu was created. Granted, one of them
was debian :-)


but after boot the keyboard stops working (It only has USB
 keyboardmouse).

 to make sure this keyboard is identified please
 try : tail -f /var/log/messages, and then
 unplug the USB keyboard and plug it back in. Do you see any messages ?

 Regards,
 Rami Rosen






 On 7/26/07, Nadav Shemer [EMAIL PROTECTED] wrote:
  Hi. I have a Sun Ultra 45 and I've tried (unsuccessfully) to install
   some kind of Linux distribution on it.
   I've tried Debian netinst (both stable and testing) and Gentoo (stage2)
   CDs, but after boot the keyboard stops working (It only has USB
   keyboardmouse).
   Booting from the serial console, It hangs with the following message:
   su: Cannot register IRQ 1
 
   Has anyone had any luck with this particular machine?
   What binary distribution has the best support for Sun machines?
   Can anyone help me?
 
   Nadav Shemer
   Tehuti Networks
   [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: Help with Linux on sparc64

2007-07-29 Thread Mike Tewner
I installed linux on my ultra5 quite a bit ago.

Have you cheked out ultralinux, or better yet,  auroralinux.org?

-mike


On 7/27/07, Nadav Shemer [EMAIL PROTECTED] wrote:

 Thank you for your comments. I'll definitely try stage 3.

 On 7/27/07, Geoffrey S. Mendelson [EMAIL PROTECTED]  wrote:
 
  Before you attempt to get
  Linux to run on it, it would be a good idea to make sure there
  is not a hardware problem.


 I started the process with a machine running Solaris. I cleared out a
 slice, intending on installing linux on it.

 Nadav



Re: Hardware Recommendation

2007-07-17 Thread Mike Tewner

I'd also be wary of computers stores in Israel -

A customer was screaming at the store people - it seems they switched out
his Micron memory for Generic brand. The store just said it's the same
thing - you won't notice the difference




On 7/17/07, Shahar Dag [EMAIL PROTECTED] wrote:


Hi

You should also consider the quality of the service you can get in Israel.
from rommers HP aren't so good
from personal experience IBM tends to be petty (for example if you have a
tiny crack in the case, they may refuse to fix a problem in the computer
unless you will also replace the case)

have fun
Shahar
- Original Message -
From: Oded Arbel [EMAIL PROTECTED]
To: linux-il@cs.huji.ac.il
Sent: Sunday, July 15, 2007 6:21 PM
Subject: Hardware Recommendation


 Hi All.

 I'm in the market for a new laptop, and I hope that people on the list
 can share their experience with current laptops, specifically in regards
 to Linux compatibility and reliability.

 I'm interested in spending less money, but still get a brand with good
 (preferably world-wide) support - otherwise I'd go with a good Thinkpad
 which I know from experience is a great product, so currently I'm
 looking at these brands:
 HP Pavillon
 Compaq Presario
 Dell (whatever - can't make heads or tails of their brand names)

 Also a couple related questions:
 - Did anyone have any success in getting a brand laptop in Israel
 without paying the MS-Windows tax ?
 - Did anyone manage to get a Dell with Ubuntu installed ? From talking
 to some Israeli sales reps that distribute Dell laptops I got mostly
 huh?!?s.

 Thanks in advance

 --
 Oded


 =
 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: Hardware Recommendation

2007-07-16 Thread Mike Tewner

Be sure to check out
http://consumerist.com/consumer/insiders/22-confessions-of-a-former-dell-sales-manager-268831.phpif
you're in the market for a dell.

-mike

On 7/15/07, Oded Arbel [EMAIL PROTECTED] wrote:


On Sun, 2007-07-15 at 18:11 +0200, ASAF HALILI wrote:
 about the ibm thinkpad, all of the series known as great laptops,
 comfortable to use and very massive computers.
 if you have the budget, go for it, about the linux support i'm not
 sure.

I've used several Thinkpad models and all support Linux very well,
including support for the special keys, bluetooth, wireless and
possibly even the fingerprint reader (haven't tried it and it isn't
bundled yet with major distros). Didn't have any problem at all in
installation and day to day usage, though the Intel GMA versions might
be a bit problematic if you don't use the most recent X.org version with
the new (and experimental) intel mode setting driver. Also I wasn't
very successful with using 3D acceleration with the ATI versions - even
with ATI's binary driver.


=
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: [SUMMARY] Current status of Israeli ISPs

2007-07-09 Thread Mike Tewner

In the US, I worked for a local computer store - it basically had all the
Jewish Community's business -

Anyway, one room of the store was an ISP - It was 2 racks - one for servers,
the other for network.
Server rack had COTS desktops running BSD (I think) - 2 * (mail, DNS,
RADIUS,News) servers
It was dial-up internet, so he had (I guess) a leased line from a telephone
bank off-site.

My point is that the whole operation was one room - those 2 racks and 3
desks covering phone support and sys admins.

ISP'ing, at least in the US *can* be done on a smallish scale - on the order
of a few hundred customers.



On 7/9/07, Amos Shapira [EMAIL PROTECTED] wrote:


On 09/07/07, Geoffrey S. Mendelson [EMAIL PROTECTED] wrote:

 On Sun, Jul 08, 2007 at 08:01:50PM +0300, David Smith wrote:
  If I understand correctly, in order to set up an small ISP, the
  following infrastructure would be needed:
 
  A connection to at least one bigger ISP, and preferably also to IIX.
  A server to handle DNS/mail/accounting etc and possibly routing
  Optional: a dedicated hardware router
  An 'ISP' connection to Bezeq and Hot.

 You forgot an ISP license from whatever ministry issues them.

 This requires a lot of money. The cheapest way to do it is to buy
 an existing licensed ISP. That's how BEZEQ BENLUMI did it, they bought
 ISDNNET which got their license by buying a previous ISP.

 I know Orange was refused a license, I don't know how they eventually
 got one.


I didn't quite follow the entire discussion from top to bottom, but is
there an option to become a reseller?

That way you get the basic infrastructure from an approved ISP but create
your own brand and support lines.

Not sure it makes sense, especially in the Israeli context, but apparently
it's common in other parts of the world.

--Amos




Re: 32Gb servers?

2007-07-04 Thread Mike Tewner

Have you looked into using memcached ?

http://www.danga.com/memcached/ :

memcached is a high-performance, distributed memory object caching system,
generic in nature, but intended for use in speeding up dynamic web
applications by alleviating database load.

Danga Interactive http://www.danga.com/ developed memcached to enhance the
speed of LiveJournal.com http://www.livejournal.com/, a site which was
already doing 20 million+ dynamic page views per day for 1 million users
with a bunch of webservers and a bunch of database servers.
memcacheddropped the database load to almost nothing, yielding faster
page load times
for users, better resource utilization, and faster access to the databases
on a memcache miss.


On 6/19/07, Ariel Biener [EMAIL PROTECTED] wrote:


On Monday, 18 בJune 2007 10:32, Amos Shapira wrote:

Amos, what is your budget for this ?

There are a few options:

SGI 1200 or SGI 2100
HP DL360G5
Dell PowerEdge 1950
IBM x3455
IBM x3550
No name Intel based boards stuff (if you're talking about
5 exits, try Data-Store - they are one and the same AFAIK
- www.datastore.co.il)

However, for a server with 32GB memory, I would go
for one of the brand names.

--Ariel
 Hello,

 Where would you go if you had to get a 32Gb RAM server, much
 preferably rack-mounted.
 Don't care so much about CPU or very fast disks, just needs lots of RAM.
 Can run either Windows (possibly developer's preference) or Linux (my
 preference).

 Dell's smallest server which supports 32Gb jumps the price to over 45k
 when it comes with 32Gb, 44k of this is just for the ram.

 I'm trying to dig the other big name brands (IBM, Sun, SGI, HP) but so
 far their web sites weren't very helpful to understand what can they
 offer that answers these simple requirements.

 Thanks,

 --Amos

 =
 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
*.il EFnet Admin
PGP: http://www.tau.ac.il/~ariel/pgp.html

--
--
Ariel Biener
e-mail: [EMAIL PROTECTED]
PGP: http://www.tau.ac.il/~ariel/pgp.html

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: 32Gb servers?

2007-06-18 Thread Mike Tewner

You can probably buy a small cluster (4 or 8 machines?) for 45k.  Then, use
a shared memory system (ccNUMA maybe?)

On 6/18/07, Amos Shapira [EMAIL PROTECTED] wrote:


Hello,

Where would you go if you had to get a 32Gb RAM server, much
preferably rack-mounted.
Don't care so much about CPU or very fast disks, just needs lots of RAM.
Can run either Windows (possibly developer's preference) or Linux (my
preference).

Dell's smallest server which supports 32Gb jumps the price to over 45k
when it comes with 32Gb, 44k of this is just for the ram.

I'm trying to dig the other big name brands (IBM, Sun, SGI, HP) but so
far their web sites weren't very helpful to understand what can they
offer that answers these simple requirements.

Thanks,

--Amos

=
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: Solid state disks (was 32gb computers)

2007-06-18 Thread Mike Tewner

How do solid-state disks compare in speed to DDR-RAM?

On 6/18/07, Geoffrey S. Mendelson [EMAIL PROTECTED] wrote:


Wouldn't a memory based solid state disk do better for a lot less money?

You can even get them with multiple interfaces so they can be shared
between
servers.

Geoff,
--
Geoffrey S. Mendelson, Jerusalem, Israel [EMAIL PROTECTED]  N3OWJ/4X1GM
IL Voice: (07)-7424-1667 U.S. Voice: 1-215-821-1838
Visit my 'blog at http://geoffstechno.livejournal.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]




Re: 32Gb servers?

2007-06-18 Thread Mike Tewner

Good one.

On 6/18/07, Gilad Ben-Yossef [EMAIL PROTECTED] wrote:


Amos Shapira wrote:



 The local VAR is 5 Exists, alhough being Oz side right now I reckon
 this won't help you much


 Uhhh, 5 Exists, in Ramat Hachayal?  I remember finding something with
 them that I couldn't find anywhere else (probably some specific
 hardware recommended by MAV).

Yeap, those ones.

 May I ask what sort of need you have it for? In our case our
 developers want a very highly accessible very large database to just
 be stored in memory (e.g. for a lookup while a customer of our clients
 clicks on an HTML page link).

We want to host the world championship of Core War. :-)

Gilad

--
Gilad Ben-Yossef [EMAIL PROTECTED]
Codefidence. A name you can trust(tm)
http://www.codefidence.com
Phone: +972.3.7515563 ext. 201  | Cellular: +972.52.8260388
SIP: [EMAIL PROTECTED]  | Fax: +972.3.7515503

Lacking fins or tail
the gefilte fish swims with
great difficulty.

  -- A Jewish Haiku

=
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: Is pthread_mutex_lock fair?

2007-06-10 Thread Mike Tewner

I'm a complete novice when it comes to these things -

but is it possible that somewhere, something is doing an optimization?
Compiler? CPU?

Perhaps some subsystem along the way sees that fair scheduling would take
much longer.

-mike


On 6/10/07, Muli Ben-Yehuda [EMAIL PROTECTED] wrote:


On Sun, Jun 10, 2007 at 10:06:40AM +0300, Gilad Ben-Yossef wrote:

 AFAIK sched_yeild() precious meaning is and has always been: put me
 at the end of the run queue for my priority. If there is no one else
 with my priority, I'll run again.

Quote akpm: Changed sched_yield() semantics.  sched_yield() has
changed dramatically, and it can seriously impact existing
applications. A testcase (this is on 2.5.46, UP, no
preempt). http://lkml.org/lkml/2002/12/2/155.

 By calling sched_yielf(), the scheduler we re-arrange tun run queue
 so that (assuming all worker threads are of the same priority), the
 thread releasing the lock will be put at the back of the run queue
 and some other threads, which ahs been marked ready to run after the
 lock has been released will get the chance to take the lock, that's
 why I expect sched_yield() to do the job. Note that for an SMP
 machine things are rather more complicated and also if there are
 numeroud tasks in different priroities... :-(

Yes, you are correct. sched_yield() will give an appearance of
fairness. But consider the cost (see below) - IMO it changes the
semantics of the test program in such a way as to make it
meaningless.

 Shahar, let us know what happens :-)

sched_yield() makes it run 20 times longer for TEST_SIZE=1000, and
the difference grows with the test size.

moren:/home/muli # unset DO_SCHED_YIELD; time taskset 01 ./mf 5
Thread 40800940 started as thread #0
Thread 41001940 started as thread #1
Thread 41802940 started as thread #2
Thread 42003940 started as thread #3
Thread 42804940 started as thread #4
Results: 234626 1177504 1155320 2187538 5245012
Joined thread #0
Joined thread #1
Joined thread #2
Joined thread #3
Joined thread #4

real0m1.187s
user0m1.000s
sys 0m0.116s
moren:/home/muli # export DO_SCHED_YIELD=1; time taskset 01 ./mf 5
using sched_yield()
Thread 40800940 started as thread #0
Thread 41001940 started as thread #1
Thread 41802940 started as thread #2
Thread 42003940 started as thread #3
Thread 42804940 started as thread #4
Results: 106710 106711 106712 106711 106709
Results: 213147 213147 213148 213147 213147
Results: 319311 319312 319313 319312 319311
Results: 425650 425652 425653 425652 425651
Results: 531269 531270 531269 531269 531269
Results: 637252 637254 637253 637252 637253
Results: 743678 743681 743680 743679 743679
Results: 849960 849963 849962 849961 849961
Results: 957552 957554 957554 957552 957553
Results: 1065060 1065063 1065064 1065061 1065061
Results: 1172691 1172694 1172695 1172692 1172691
Results: 1280342 1280345 1280345 1280342 1280342
Results: 1388211 1388214 1388214 1388211 1388211
Results: 1495994 1495998 1495999 1495995 1495994
Results: 1603876 1603880 1603881 1603878 1603877
Results: 1711619 1711623 1711624 1711622 1711619
Results: 1819511 1819513 1819515 1819513 1819510
Results: 1927503 1927506 1927507 1927505 1927503
Results: 199 201 203 200 197
Joined thread #0
Joined thread #1
Joined thread #2
Joined thread #3
Joined thread #4

real0m19.249s
user0m3.008s
sys 0m15.909s

#include stdio.h
#include stdlib.h
#include pthread.h
#include unistd.h

#define TEST_SIZE 1000

volatile int results[TEST_SIZE], position=0;

static int do_sched_yield = 0;

int worker( int threadnum )
{
   static pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;

   printf(Thread %lx started as thread #%d\n, pthread_self(),
threadnum);

   pthread_mutex_lock(mutex);
   while( positionTEST_SIZE ) {
  // printf(results[%d]=%d\n, position, threadnum);
  results[position++]=threadnum;
  pthread_mutex_unlock(mutex);
  if (do_sched_yield)
sched_yield();
  pthread_mutex_lock(mutex);
   }
   pthread_mutex_unlock(mutex);

   return 0;
}

int *histo;

void printres(int numthreads)
{
   int i;

   printf(Results: );
   for( i=0; inumthreads; ++i )
  printf(%d , histo[i]);

   printf(\n);
}

int main(int argc, char * argv[] )
{
   int numthreads=atoi(argv[1]);

   if( argc2 || numthreads==0 )
  exit(1);

   pthread_t *threads=calloc(sizeof(pthread_t), numthreads);
   histo=calloc(sizeof(int), numthreads);

   int i;

   int oldpos=position;

   if (getenv(DO_SCHED_YIELD)) {
 do_sched_yield = 1;
 printf(using sched_yield()\n);
   }

   for( i=0; inumthreads; ++i ) {
  pthread_create(threads+i, NULL, (void *(*)(void *))worker, (void
*)(unsigned long)i);
   }

   /* Reap the results every second */
   while( oldposTEST_SIZE ) {
  sleep(1);

  for( ; oldposposition; ++oldpos ) {
 histo[results[oldpos]]++;
  }

  printres(numthreads);
   }

   for( i=0; inumthreads; ++i ) {
  pthread_join( threads[i], NULL );
  printf(Joined thread #%d\n

printing hebrew characters

2002-03-03 Thread Mike Atamas

Im having trouble printing hebrew characters. I can view hebrew but when 
I try to print it prints out random junk and not the actual characters. 
Can anyone help?


Mike Atamas



=
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: printing hebrew characters

2002-03-03 Thread Mike Atamas



Lol, sorry for my non-descriptiveness.

I tried it using Mandrake and Debian. ( I have them both installed on my
computer) I tried using both KDE and Gnome, but I prefer KDE by far. I use
lpr and i tried it from konqueror, emacs, and netscape 6.

Hetz Ben Hamo wrote:
[EMAIL PROTECTED]">
  Mike,Would you be kind enough to tell us:1. What do u use? CUPS? LPRng?2. Distribution?3. Do u print through KDE or Gnome?4. Are you trying to print from Konqueror? mozilla? galeon? which application?Thanks,HetzOn Monday 04 March 2002 00:11, Mike Atamas wrote:
  
Im having trouble printing hebrew characters. I can view hebrew but whenI try to print it prints out random junk and not the actual characters.Can anyone help?








ftp proxy

2002-01-30 Thread mike ray








Does any one have any knowledge on Linux based ftp proxies
that can work also in a transparent mode??



10x








wireless lan

2001-12-04 Thread mike ray








Does anyone know if linux kernel
supports 802.1x for wireless lan,



If so is their any source for it (if it comes as a driver
)??



Michael W Ray 
IT Manager 
* 
G-Connect -
Helping ISPs to differentiate www.g-connect.com 
POB 2200,
Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972
9 960 1130 Mobile : + 972 58 636 545 
*










samba

2001-07-02 Thread mike ray
Title: Message



i installed RH 7.1 
with samba 2.0.7 which comes along with the cd installation, than i wanted to 
upgrade the samba server
to 2.2 so i compiled 
the files and installed them.

now when i go to the 
samba log - log.smb i can see that when i start the smb service it still shows 
me 2.0.7, where did i go wrong ???


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



aol

2001-06-25 Thread mike ray
Title: Message



does any one have 
the ip# of AOL so i can block them in the firewall


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



mandrake 8.0

2001-06-24 Thread mike ray
Title: Message



i have installed 
mandrake 8 but when its loats in a graphical mode its stuck during the xfs 
server

any idea 
??


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



iptables

2001-06-17 Thread mike ray
Title: Message



I have just upgraded 
RH 6.2 to kernl 2.4.5

when i installed 
iptables rpm it told me that i need a kernel bigger than 2.4 which is already 
2.4.5 .

any idea 
??


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



sun - ultra sparc

2001-05-24 Thread mike ray
Title: Message




hi

I am looking to rent 
a sun platform with the following details:


Sun 
Ultra 5, 
1x300-MHz 
Ultra SPARC-IIi, 2-MB L2 cache,
256-MB 
DRAM, 
Onboard PGX24 Graphics, 
9-GB 7200 rpm EIDE Internal disk, 
32x 
CD-ROM, 1.44-MB floppy



any suggestion who might help 
???


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



bind 9.1

2001-05-20 Thread mike ray
Title: Message



Hi

I installed RH 7.1 
with bind 9.1 which came with the cd, everything worked fine for 2 weeks, today 
I saw that I do not have any dens resolution at all.

at the named.conf 
file I saw thatit did not even load the zone file, the record has 
disappeared !!

any one with a 
suggestion or experience with bind 9.1


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*



No Subject

2001-05-20 Thread mike ray

this is a mail test, i will appreciate it if you all reply back
 
had some dns problems
 
Michael W Ray 

IT Manager 

* 

G-Connect - Helping ISPs to differentiate
file:///C:/Documents%20and%20Settings/miker/Application%20Data/Microsoft/Si
gnatures/www.g-connect.com www.g-connect.com 

POB 2200, Herzlyia B, 46120, Israel 

 mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 

Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 

*

 

 application/ms-tnef


multilink

2001-04-29 Thread mike ray
Title: multilink





hi


does any one know if any 2.2.x kernel supports natively multilink in its ppp ??




Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*





No Subject

2001-04-19 Thread mike ray
Title: 





HI


I would like to take the opportunity of this list and present an opening that we have at g-connect,


you can see the job description below, more details on the company you can find on the web site - www.g-connect.com


Introduction


Main responsibility will include the research, development and maintenance of the testing environment for the integration and alpha testing, RD and Operations departments.

Job Description
o Research of new technologies and tools for simulating Internet technologies . Relevant fields include IP, Internet, WAN, LAN and automation

o Development of testing infrastructure and tools including s/w development on PC Linux  Windows platforms
o Research of Linux systems and GPL network utilities.



Personnel Profile
o S/w engineer/practical engineer with at least 4 years experience.
o Expert in Linux programming and scripting.
o Knowledge in the field of Microsoft Windows
o Expert in IP, routing and Internet.



please send c.v`s to the mail below, only relevant c.v`s will be answered.



Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*





RE: Red Hat 7.1

2001-04-16 Thread mike ray
Title: RE: Red Hat 7.1





the mirror at huji does not let you download the 7.1


-Original Message-
From: Alex Shnitman [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 16, 2001 6:02 PM
To: [EMAIL PROTECTED]
Subject: Red Hat 7.1



Hi,


Due to some problems with the Red Hat mirror on ftp.iglu.org.il (which
are partially my fault), we don't have 7.1 yet at all. I'm really
sorry. Shit happens. :-( Please use the HUJI mirror for now. Perhaps
the URL of the latter needs to be posted on the IGLU front page?



-- 
Alex Shnitman [EMAIL PROTECTED]
http://alexsh.hectic.net/ UIN 188956
PGP 0xEC5D619D / E1 F2 7B 6C A0 31 80 28 63 B8 02 BA 65 C7 8B BA


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





icq

2001-04-10 Thread mike ray
Title: icq





Sorry not a linux question, does anyone have any idea hoe to block icq with a 4.1 firewall


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*





suse 7.1

2001-04-02 Thread mike ray
Title: suse 7.1






The suse 7.1 is more that 3 GB of files, which files should i download, if i download everything


how do i set them on the cd`s ??


Michael W Ray 
IT Manager 
* 
G-Connect - Helping ISPs to differentiate www.g-connect.com 
POB 2200, Herzlyia B, 46120, Israel 
mailto:[EMAIL PROTECTED] 
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545 
*





netstat

2001-03-20 Thread mike ray
Title: netstat





in netstat -a i can see two open ports 1  6 which belong to raw, ??




Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





securetty

2001-03-13 Thread mike ray
Title: securetty





hi


im using RH7 and i edited the /etc/securetty file to permit only tty1 to login, but it did not work


my second problem is in /etc/xinetd.d, in the telnetd conf file i gave telnet the -h attribute at the end in order to prevent 

system information from remore logins but then the telnet service goes down


anyone with an idea ??





To the listr manager.

2001-03-10 Thread Mike Almogy

Hi.

Can the list manager delete my e-mail address from the list ?
I tried to do it by myself but it does not working.
I have the following address :

[EMAIL PROTECTED]
[EMAIL PROTECTED]

I'm sure that one of them is registered.

If you do not find them then please send me an email.

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]




netscape 6

2001-03-01 Thread mike ray
Title: netscape 6





HI


iv downloded netscape 6 for linux, its a gz file when i open it i get some *.xpi, anyone with an idea ??


Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





kde2.1

2001-02-28 Thread mike ray
Title: kde2.1





can any one help me with this one


i am installing kde2.1, i installed the lib*.rpm packges and the qt packges, the kdesupport, libs but in the base packeg it got that i need

libsensors and libkmid.


any one with an idea ??



Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





nfslock

2001-02-21 Thread mike ray
Title: nfslock





can anyon explain me please what is the nfslock service, and why when i use kerenl 2.4.0 on RH7 its giving me a failed status when shutting down the machine

Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





samba

2001-02-14 Thread mike ray
Title: samba





how do i configure swat on linux RH7 ??


Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





kickstart

2001-02-11 Thread Mike Almogy

Hi list.
Does Linux kickstart support other OS ?

I need a way to install OS on computer without floppy disk or cdrom but with
Ethernet interface.

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]




vxfs support for linux.

2001-02-02 Thread Mike Almogy

Hi list.
Is there anyone who knows how to add FULL (not read only) support of vxfs
(aka VeritasFS) to linux ?
i gess i will have to pay for it :-((

I need it in order to have FULL access to UnixWare file system and sun vxfs
file system.

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]




kernel 2.4.0

2001-01-15 Thread mike ray
Title: kernel 2.4.0





im running rh 6.2 with kernel 2.2.18.


After i finish the copilation of 2.4.0 seting the LILO, etc..etc..i cant boot from this kernel, i get a message - UNCOMPRESSING LINUX.OK, BOOTING THE KERNEL,

than its stuck, nothing moves at all.


anyone with an idea ???


mike





RH7

2001-01-10 Thread mike ray
Title: RH7





where is the inetd.conf in RedHat 7 ???


Michael W Ray
IT Manager
*
G-Connect - Helping ISPs to differentiate www.g-connect.com
POB 2200, Herzlyia B, 46120, Israel
mailto:[EMAIL PROTECTED]
Tel : + 972 9 960 1130 Mobile : + 972 58 636 545
*





tar command.

2000-12-04 Thread Mike Almogy

Hi list.
I keep getting tar: cannot write to /deb/... write I/O error.
After reading some articals about this i think it is due to inaficient
storage device.
I have 25 GB drive and i backup it up with 24GB tape.

So my question is, how do i tell tar to wait to additional tape ?

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]




libjpeg Vs. libgr

2000-11-14 Thread Mike Almogy



Hi.

Whats the difrence between libjpeg and libgr 
?

All i want is to have JPEG support on my 
PHP4.03.PL1.

Thanks,
Mike



problem compailing php

2000-11-14 Thread Mike Almogy



Hi list.

I sent some letters in the past 2-3 days regarding 
to gd,jpeg and php.
I hope that this is my last mail on this subject 
:-)

When i'm running the configuration script i get 
this error in the debug.log :

/usr/bin/ld: warning: libjpeg.so.62, needed by 
/usr/bin/../lib/libgd.so, may conflict with libjpeg.so.6./conftest: error in 
loading shared libraries: libc.so.5: cannot open shared object file: No such 
file or directory

My configuration is :

./configure --with-apxs=/usr/sbin/apxs 
--with-mod_charset --enable-force-cgi-redirect --enable-discard-path 
--enable-safe-mode --enable-sigchild --enable-libgcc --enable-calendar 
--with-gdbm --enable-ftp --with-mysql --enable-trans-sid --with-system-regex 
--with-sybase=/opt/sybase-11.9.2 --with-swf --enable-inline-optimization 
--enable-memory-limit --with-gnu-ld --with-dom=/usr --with-png-dir 
--with-jpeg-dir --with-ttf --with-gd
I have gd-1.8.3 (RPM),libjpeg-6b-12cl and 
libgr-2.0.14-2.
My php is 4.0.3pl1

What do i need to do in order to fix the problem 
?
What versions do i need to have ?

Thanks,

Mike



php and gif

2000-11-13 Thread Mike Almogy



Hi.

Ok, i installed the latest GD rpm that i found in 
rpmfind.net.
Now i want to recompaile my php and i got an error 
saying that i do not have support to gif.(Da . . .)
Any idea how to disable the gif support or 
something in php?


Mike



GD with PNG,GIF and JPEG.

2000-11-12 Thread Mike Almogy



Hi list.

What version of GD do i need to install in order to 
have support for PNG,JPEG and GIF ?
Do i need anything else ?

Mike



Re: frogot my password

2000-10-29 Thread Mike Almogy




do you have the root password ?
if you forgotten the root password then you might 
want to boot the server in single user mode :

lilo boot: linux single

if that does not help then you can boot the 
computer with the cdrom (redhat 6.2) and use rescue option (not anything else 
!!!)

Then after you have the shell you can mount the 
local / (or /etc) and modify the shadow/passwd file by hand. (usually you delete 
the password so next time you will not have to type one.)

For any additional questions feel free to 
write.

Mike


  - Original Message - 
  From: 
  hagit 
  To: Linux-Il Mailing List 
  Sent: Sunday, October 29, 2000 7:56 
  AM
  Subject: frogot my password
  
  Please don't laugh at 
  me:
  How do I login to my Linux 
  mail server, if I forgot my password ?
  Hagit


samba server.

2000-10-21 Thread Mike Almogy

Hi list.
I installed a Samba server (from Redhat 6.2 disk) and now i'm trying to
access it.

I opened an account for my user and gave it a password.
I configured the /etc/smb.conf to be a master browser,prefer browser and
logon server.
the security schema is user.
I also add my workstation ip address to the hosts file.

It failed to authenticate my user password.

So i tried the encrypted passwrd option , create the smbpasswd file and
tried again.
Still i can't login.
The error msg is : the domain password is not correct, or you have no access
to the logon server.
I did not use any restrictions and i'm 100% positive that my password is
correct. i even changed it to be sure.

Any idea what i'm doing wrong ?
Can someone send me a smb.conf configuration that works as logon server ?

Thanks allot,

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: samba server.

2000-10-21 Thread Mike Almogy

but then the server will not answer to authentication requests, no ?
I do not have any NT on my network and neither want one.

Mike

- Original Message -
From: "Avishay Aton" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 22, 2000 6:22 AM
Subject: RE: samba server.


 comment out : "logon server" directive.
 encrypt password=yes

 then make sure taht your /etc/smbpasswd is correct

 cheers

  -Original Message-
  From: Mike Almogy [SMTP:[EMAIL PROTECTED]]
  Sent: Saturday, October 21, 2000 4:18 PM
  To: Linux-il
  Subject: samba server.
 
  Hi list.
  I installed a Samba server (from Redhat 6.2 disk) and now i'm trying to
  access it.
 
  I opened an account for my user and gave it a password.
  I configured the /etc/smb.conf to be a master browser,prefer browser and
  logon server.
  the security schema is user.
  I also add my workstation ip address to the hosts file.
 
  It failed to authenticate my user password.
 
  So i tried the encrypted passwrd option , create the smbpasswd file and
  tried again.
  Still i can't login.
  The error msg is : the domain password is not correct, or you have no
  access
  to the logon server.
  I did not use any restrictions and i'm 100% positive that my password is
  correct. i even changed it to be sure.
 
  Any idea what i'm doing wrong ?
  Can someone send me a smb.conf configuration that works as logon server
?
 
  Thanks allot,
 
  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]

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

2000-10-19 Thread Mike Almogy



it is probably a winmodem.
a modem that it's operation depended on the 
OS.
some winmodems has drivers for linux.
I think that you need to find out if it can be 
configured via linux at all.

Mike


  - Original Message - 
  From: 
  dx3 
  To: [EMAIL PROTECTED] 
  Sent: Friday, October 20, 2000 1:36 
  AM
  
  
  I have a creative Modem Blaster V.90 PCI DI5655 
  modem
  Windows sees it fine.
  It is working properly on COM4
  I can't seem to get Linux to recognize 
  it.
  I am using RedHat 5.2
  what am I doing wrong?
  


anti virus.

2000-10-11 Thread Mike Almogy

Hi list.

What is the best Anti Virus for linux/UNIX ?
I need to scan for virus on Linux/Solaris/Digital Unix and my users mail.

Thanks,

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



=
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: anti virus.

2000-10-11 Thread Mike Almogy

Well, Both i hope :-)

Mike
---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~

- Original Message -
From: "Shachar Shemesh" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, October 11, 2000 12:24 PM
Subject: Re: anti virus.


 you forgot: and through a reputable distribution channel.

 I think, however, that the original post was not trying to protect against
 viruses for Linux, but rather protect, using Linux, from viruses for
 WinTel.

 Shachar

 Moshe Zadka wrote:

  On Wed, 11 Oct 2000, Mike Almogy wrote:
 
   Hi list.
  
   What is the best Anti Virus for linux/UNIX ?
 
  Using software for which you have the source, or comes from a reputable
  company.
 
  --
  Moshe Zadka [EMAIL PROTECTED]
  There is no IGLU cabal.
  http://advogato.org/person/moshez
 
  =
  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]




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




Windows Active Directory and UNIX LDAP.

2000-10-02 Thread Mike Almogy

Hi all.

I have 2 questions, one UNIX related and one Linux related :-)

1. Does anyone knows if Windows2000 Active Directory services (based upon
LDAP) can be a server or a client for
UNIX based LDAP ?

2. Where can i find a tutorial on how to use Linux as LDAP client ? I had
read the howto about LDAP but i do not
remember that it was shown there how to act as client.

Thanks,

Mike



---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



=
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: forwording mail

2000-09-25 Thread Mike Almogy

put in his/her user dir file called :

forward 
there you will write the user other mail address

Mike

- Original Message - 
From: "Ben-Nes Michael" [EMAIL PROTECTED]
To: "ILUG" [EMAIL PROTECTED]
Sent: Monday, September 25, 2000 4:52 PM
Subject: forwording mail


 Hi
 
 How can I forward user mail CURRENTLY in the mail server to another mail
 (not on the same server) ?
 
 --
 --
 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]
 
 


=
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: fsck summary

2000-09-13 Thread Mike Almogy

Hi.

I installed the HD on my linux and i was able to use it with no special
problems.
I used the dosfsck to try and fix any errors/problems on the disk but it
seems that except hebrew files (that he did not understand) he did not find
any error.
I copied all the data that i wanted without any special problem and then
restated the computer with my win98.
For my surprise, when i tried to use the same disk on the win98 it still
claimed to have read errors from the disk (you know.. the blue screens)

Any idea why ?
May it be a virus ? may it be something with the OS ?

Thanks Allot

Mike

- Original Message -
From: "Tzafrir Cohen" [EMAIL PROTECTED]
To: "Mike Almogy" [EMAIL PROTECTED]
Sent: Saturday, September 09, 2000 1:02 PM
Subject: Re: fsck summary


 On Sat, 9 Sep 2000, Mike Almogy wrote:

  ok :-)
 
  Will be more careful next time. :-)
 
  P.S if we are talking about fsck i have a win95 hard drive that has
some
  read/write errors (IDE Western Digital)
  if i will connect it to a Linux box will i be able to fix the errors ?
  Does fsck support winX file systems ? and hardware problems at that
level ?

 I see a program called dosfsck . It came in the package
 dosfstools-2.2-5mdk on my Mandrake 7.0 .

 I never tried it, though.

 --
 Tzafrir Cohen
 mailto:[EMAIL PROTECTED]
 http://www.technion.ac.il/~tzafrir





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




external ISDN

2000-09-09 Thread Mike Almogy

Hi list.

Do i need any drivers for external ISDN device ?
I'm connecting it to the com1/com2 port.
I do not need any driver for regular modem, right ?

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]




ssh port forwarding.

2000-09-06 Thread Mike Almogy

Hi list.
Is there a way to do port forwarding in ssh without the root user ?

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]




revers DNS.

2000-09-05 Thread Mike Almogy

Hi list.

I have bind 8.2.2 and i'm using makezone-0.32 to create the PTR records.

Now, for some reason i can not do a reverse lookup on my address outside my
own network.
meaning, i can use 192.114.206.1 as a dns server and when i do nslookup
192.114.206.2 i will get an answer, BUT, if i use relay.huji.ac.il as dns
server and i do nslookup 192.14.206.2 then i will get *** Request to
relay.huji.ac.il timed-out.

Any idea why ?
It worked before.

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



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




ReiserFS failure

2000-09-01 Thread Mike Vinokur

Hello,

I have Mandrake 7.1 at my home PC, with ReiserFS partitions.
After a power shortage when the PC wasn't properly shut down, I can't
normally boot the system.
The kernel goes OK, but when it tries to remove .pid files from /var/run I
get an "input-output error" for every file
and after initializing random number generator the system hangs up.
It appears that the problem is only with the /var/run directory.

I was able to boot in maintenance mode, but I haven't found a way to repair
this.
debugfs cannot open the filesystem (wrong magic number in superblock) and
fsck.reiserfs doesn't do anything.

If anyone has got a solution for this, please mail me.
I'll appreciate you help very much.

 Michael Vinokur

ASIC Design Engineer
Texas Instruments Israel - SDW BU
Phone :(+972)-09-7476917
Mobile :   (+972)-054-246784
E-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]




C and MySQL.

2000-08-24 Thread Mike Almogy

Hi list.

Can someone please send me an example for C program that uses Mysql ?
I need a simple program that shows how to connect to the database, doing a
search and exit.
Just the basics.

I will also need the compilation string, Example : gcc -Wall MySQLprogi.c
.)

Thanks,

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



=
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: using dial-up connection over lan

2000-08-24 Thread Mike Almogy

Hi.

You need to install wingate or something like this on the WinNT.
That will enable the WinNT to act as a router.
Since Wingate cost money, you can use the Linux box as router.
You will have to transfer the modem to it and to recompile the kernel to
support ip masquerading.
(Plus support for PPP and some more modules - read the ip masquerading
HOWTO)

However i do not know if Linux supports cable modems yet.

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~

- Original Message -
From: "Noam Ben Haim" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, August 24, 2000 12:12 PM
Subject: using dial-up connection over lan


 Hi all,

 I have 2 machines at home, one running WINNT and the other Linux. my
Dial-up
 connection is set in the NT machine (the modem is there, soon to be
 (hopefully) cable modem). I want to use this dial up connection to connect
 to the Internet from my linux machine which is conected to the NT machine
 with via TCP LAN (with hub). is there anyway I can make this happen?

 best regard
 N

 Noam Ben Haim
 [EMAIL PROTECTED]
 Tel: +972-9-9561615 ext 122
 Fax: +972-9-9561610




 =
 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: MSIE automatic proxy config

2000-08-22 Thread Mike Almogy

you need to write a .pac file and to put it on a web server.
then you use the automatic proxy configuration script on the IE connection.

You can also use a transparent proxy so you will not have to configure
anything.

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~

- Original Message -
From: "Erez Doron" [EMAIL PROTECTED]
To: "ILUG" [EMAIL PROTECTED]
Sent: Tuesday, August 22, 2000 11:02 AM
Subject: MSIE automatic proxy config


 hi

 I have a linux proxy (squid) and a linux dhcpd.

 how do i config a client MSIE to automaticaly find the proxy ?

 thanks
 erez


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




ReiserFS and Raid 5 (Hardware)

2000-08-22 Thread Mike Almogy

Hi list.

Does  ReiserFS has any problems with Raid 5 (Hardware) ?
Does Linux supports Compaq Raid arrays ?

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]




DVD

2000-08-20 Thread Mike Almogy

Hi ppl.

Does anyone has the program to view DVD on Linux ?

Thanks,
Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



=
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: linux with nonstop's system works

2000-08-15 Thread Mike Almogy

Hi.

There is a company calls NetRiality who has a product that can control the
bandwidth limit of WAN interfaces.
If i were the cable company then i could limit traffic by IP address and
give each one 0.5 MB guarantee,
However, i donoo how much capacity their backbone to the clients has. It's
sound nice to have a guarantee of 0.5 MB but if the whole line is 10 MB then
no more then 20 users on the same time can use it.

I think that only the future can tell us if this internet connection can
really work.

Mike


- Original Message -
From: "guy keren" [EMAIL PROTECTED]
To: "Tzafrir Cohen" [EMAIL PROTECTED]
Cc: "Mike Almogy" [EMAIL PROTECTED]; "Linux-il" [EMAIL PROTECTED]
Sent: Tuesday, August 15, 2000 6:01 PM
Subject: Re: linux with nonstop's system works



 On Tue, 15 Aug 2000, Tzafrir Cohen wrote:

  Chances are that the cables connection won't be the bottleneck:
  Cable modems give you around 2Mbps (*bits* per second) upstream and
  at least around 5Mbps downstream (shared) downstream (from the ISP to
your
  computer).

 as far as i understood, cable connection in general uses shared media
 (both upstream and downstream). what's more, their normal upstream
 connection is apprently VERY limited in its capacity, as cable T.V. was
 originaly meant for one-way communicatinos only.

 nonstop claims they will gurantee at least 05.Mbps for the downstream
 connection (which is about 4 times faster then a dual channel ISDN
 connection) - i wonder how this will work when their network becomes
 loaded (i.e. when you and all your neighbours from the block connect
 simultaneously over the shared media).

  Does the ISP have a 5Mbps connection to IIX? to USA? So if you don't use
  your ISPs servers too much chances are that the bottleneck will be
either
  his connection, or somewhere farther. Nothing to do with cables. ADSL
has
  the same probem (maybe even ISDN connections have similar problems).

 except that for ADSL, the link from the local loop back to bezeq's system
 could potentially be much wider then that of the cables system, and is
 not using shared media.

  No. We got around one bottleneck. We now talk about generally faster
  speeds.

 that only during the experimentation. wait till they start giving a real
 service for a mass of users.

 guy

 "For world domination - press 1,
  or dial 0, and please hold, for the creator." -- nob o. dy




=
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: linux with nonstop's system works

2000-08-14 Thread Mike Almogy

Hi.

About barak, i'm using them as a VPDN  for my users and it work ok.
since i to have some routing problems then maybe it is not as fast as it
should be, but that is not why i post this mail.

About cable modems, i read an article few month ago regarding to the "FAST"
connection to the web with cables.
The article quote several engineers at very big cables companies and it was
written there that fast connection on cables is just an illusion.
What do i mean ?, well it said there that the main problem with cables is
that it is a shard medium, just like coax and hub connection.
That is, lots of users will have the same line together meaning that there
will be a situation that if someone is D/L a big file then all the rest will
be very slow.
Just like now.
There is NO progress in trying to overcome this problem ! each provider has
his own techniques how to overcome this problem.
More then that, there is no work on a protocol that will fix this problem !,
so there is a little chance that the problem will be fix in the near future.
It was said that users with GOOD isp with 56,600 modems will receive a
better connection then users of the cables.

I will try to find this article and to scan it.
I really hope that i'm mistaken, the article was written almost a year ago,
so maybe something was changed.

Mike


- Original Message -
From: "Hetz Ben Hamo" [EMAIL PROTECTED]
To: "guy keren" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Monday, August 14, 2000 10:27 PM
Subject: Re: linux with nonstop's system works


 Hi Guy,

 Be careful with Barak - from my experience with them they seems to be
 sometimes very fast, sometimes very slow, and lots of time - they route
 is lost

 I'm talking about the time slow/fast at the same times - meaning they
 could be very fast on 11 PM and the same day tommorow - to be VERY
 slow..

 I don't know who is doing their network routing stuff, but either their
 equipment to connect outside Israel is very bad or their technicians
 playing the guessing game there..

 I'm not trying to flame here anyone special - but from my last year
 experience with Barak, I wouldn't recommend them as my dial-up ISP -
 maybe they're good at the ADSL - I don't know, but for Dial-Up I'll
 never use them again.

 This is just my personal opinion.

 Why am I telling you this? I suggest for you to get-up (LEHAKIM) a squid
 proxy at your friends machine which is connected to another ISP - just
 in case the route falls there...

 Thanks
 Hetz


 guy keren wrote:
 
  hi,
 
  today i got a cable modem connected at home (nonstop is doing now a
  "test" at the haifa area). nonstop supports windows (maybe macs as
well),
  not linux. However, setting it up for linux was rather simple (using
  'pump' to configure the network interface via their DHCP server, and
  guessing some gateway address for the defual troute).
 
  the cable modem connects to the t.v. socket, and then, via a UTP
ethernet
  cable, connects to the computer. unlike ADSL, no special "provider
  choosing" software seems to be needed here. on the machine itself, they
  insisted installing their own network adapter (3com 905 10/100), rather
  then use the already installed NIC. one strange thing about the cable
  modem - afterconnecting it to the power line, it takes between 15
minutes
  and 45 minutes until the modem manages to connect to nonstop's cable
  network (the technicians said something about finding a "return
channel").
 
  the connection to nonstop's web server is very fast (download under
win98
  was at about 180 KB/sec), but connection to the external internet is
much
  slower - downloading files was at rates of 7KB - 16KB per second. they
  connect to the internet via barak, as traceroute showed. i tried this
  connection at around 18:30 . maybe it's different for other times of the
  day.
 
  if anyone else happens to join their experimental program and needs some
  help, i could try to assist with setup under linux.
 
  guy
 
  "For world domination - press 1,
   or dial 0, and please hold, for the creator." -- nob o. dy
 
  =
  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]

 --
 Hetz Ben Hamo
 Intelligence  Research
 [EMAIL PROTECTED]
 Aduva Inc.

 =
 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: issues with the linux.org.il domain

2000-08-14 Thread Mike Almogy

Sad but true.

Well, i hope that new blood will come soon, but we must keep on going !


Mike




Vote for MIKE !

Your men in the Linux CABAL 





- Original Message -
From: "Ira Abramov" [EMAIL PROTECTED]
To: "FLiCK" [EMAIL PROTECTED]
Sent: Monday, August 14, 2000 9:52 PM
Subject: Re: issues with the linux.org.il domain


 On Mon, 14 Aug 2000, Ira Abramov wrote:

  how I was finally forced to bring it to the list. he agreed to change
  the IP addresses in the zone at the end, but would not explain his POV
  in Email, in a phonecall, or otherwise.

 ok kids, so what did we learn today?

 a. JBA doesn't want to address the issue in public, won't defend his
 questionable choice of action.

 b. but it's probably fine since the list is pretty adamant about it,
 seems like the website is not interesting to anyone anymore, other than
 its maintainers (btw, Chen, kudos on the new skin, I DID notice
 yesterday)

 c. once again Ira has made the mistake of caring too much, only to
 discover he's almost alone at it. I guarantee you this will not happen
 again.


 I didn't give up on GNU/Linux, I gave up on Israelis.

 Have a nice week, I know I will! :)

 Ira Abramov,
 Over and out.


 =
 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: IRC and IP resolving

2000-08-12 Thread Mike Almogy

in the IRC server theres an option to hide the domain name of the user.
This will secure (more or less) your connection to the IRC, so it will be
harder to find from where you came from (nukes bombs and shit like this)

Mike

- Original Message -
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Saturday, August 12, 2000 5:42 PM
Subject: IRC and IP resolving


 Hi group.
 I have a little Off Topic question but it's somehow related to linux.
 I have a static IP and i asked my ISP to reverse DNS it for me.
 Now, when i /dns my ip it resolves to the domain but others see only my
IP.
 not the domain! it's like,
 [EMAIL PROTECTED] and not [EMAIL PROTECTED]
 Anyone knows this issue?

 yarin


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




RAID patch for kernel 2.2.16

2000-08-02 Thread Mike Almogy

Hi List.

Does anyone knows where i can find the 2.2.16 kernel patch for the raid ?

i want to have a software raid on one of my database servers (do you
recommend it ?) but i can not find the patch.

Should i use the last beta kernel ? (2.4.0test5 ?) it has it there.

Thanks,

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415
+972-52-562237
~



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




Hebrew fonts.

2000-07-29 Thread Mike Almogy

Hi list.

i recently installed the Netscape fonts that was published in the
Hebrew-HOWTO.

I installed it and now i can finally read Hebrew (in most places).
However, the font themselves are quit , to be honest, ugly and tiny. (only
10 or 12).

My question is whether anyone knows of a nice simple program to create and
modified fonts for Linux.
A manual will be most helpful also.

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: All hail Eris! (Was: Re: IGLU Cabal)

2000-07-23 Thread Mike Almogy

what  ? we are no a cult ?

Shit, now what i'm going to do with all the NT system Administrators i have
kidnap ?
I WAS planning to convert their religion by making them read all Microsoft
bugs, but now it just seems pointless.

Anyone what them ??

Mike
(A.K.A prisoner number 347645 if the police will get my mail...)

- Original Message -
From: "Moshe Zadka" [EMAIL PROTECTED]
To: "Gilad Ben-Yossef" [EMAIL PROTECTED]
Cc: "Ira Abramov" [EMAIL PROTECTED]; "Yossi Cohen"
[EMAIL PROTECTED]; "Linux Hackers" [EMAIL PROTECTED]
Sent: Sunday, July 23, 2000 12:29 PM
Subject: Re: All hail Eris! (Was: Re: IGLU Cabal)


 On Sun, 23 Jul 2000, Gilad Ben-Yossef wrote:

  Ira Abramov wrote:
  
   On Sun, 23 Jul 2000, Yossi Cohen wrote:
  
Hi!
I wanted to know whowhat is the IGLU cabal, and what exactly
they do. Also, if anyone could tell me who is the cabal.
  
   what?
  
   there's no cabal.
  
 
  The Internet Oracle has pondered your query, supplicant. Thus spoke the
  Oracle:
 
  Actually, The Israeli Linux Cabal is part of the great Illuminated Seers
  of Bavaria which is a top secret world wide conspiracy to deny the
  existence of a world wide conspiracy.
 
  Membership in this secret Cabal entitles the official members the right
  to participate in the secret meetings of the Cabal where sacrifice to
  the gods is offered in the way of very painful satanic rituals, mostly
  consisting of trying to organize Linux activity in Israel, answering
  patiently to newbies questions - the answer to which can be found by the
  simplest use of a search engine, man page or brain activity and hearing
  other members of the Cabal bitch about the former two activities in
  private meetings.
 
  Of course, no one outside the Cabal may hear about it and live.
  Therefor, Heathen, you must now join the Cabal by contributing to the
  Linux activity in Israel or prepare to meet your make(1)-er!

 Maybe we can stop this irresponsible spread of rumours? Someone might
 just take this seriously, and think Linux is some kind of weird cult.
 Thats it. There is no IGLU cabal. C'est la Vie.

 --
 Moshe Zadka [EMAIL PROTECTED]
 There is no IGLU cabal.
 http://advogato.org/person/moshez


 =
 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: The IGLU Cabal

2000-07-23 Thread Mike Almogy

How do you know ? maybe he's on holiday or something ?


OK, that was stupid.
Please stop this cabal thing.

Thanks,

Mike

- Original Message -
From: "Moshe Zadka" [EMAIL PROTECTED]
To: "Ben-Nes Michael" [EMAIL PROTECTED]
Cc: "ILUG" [EMAIL PROTECTED]
Sent: Sunday, July 23, 2000 8:18 PM
Subject: Re: The IGLU Cabal


 On Sun, 23 Jul 2000, Ben-Nes Michael wrote:

  Its the secret top israel linux agency that control the net (world) and
  decide who will live and who will die, their previous name was  Zikney
Zion.

 Hey, how come everyone here try to pretend there is such a thing as the
 IGLU cabal? there is no such a thing. Get over it!

 --
 Moshe Zadka [EMAIL PROTECTED]
 There is no IGLU cabal.
 http://advogato.org/person/moshez


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




SAF cdr on mandrake 7.1

2000-07-22 Thread Mike Almogy

Hi list.

I want to use my CDR - Smart And Friendly (IDE) on my Mandrake 7.1.

The kernel seems to recognize the cdr  on boot time, but i can't mount
it like any regular CDROM.
the error messege is :

the kernel does not recognize  /dev/cdrom2 as a block device

What do i need to do in order to fix this up ?
and what kind of software you recomend to use for burning cd's ?


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]




OFF OPIC OFF TOPIC OFF TOPIC - C learning.

2000-07-21 Thread Mike Almogy

Hi list.

I'm looking for a good course about C (For Unix).

If anyone knows about such a curse pls let me know.

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: mkinitrd error

2000-07-20 Thread Mike Almogy

Hi.
I manage to fix it.
The problem was that i had not configured the kernel with loopback device.
After rereading the manual i fixed it and now it works ok.

(I still like to know if threre is a tool that creates the /etc/conf.modules
file)

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Ariel Biener" [EMAIL PROTECTED]
To: "Mike Almogy" [EMAIL PROTECTED]
Cc: "ILUG" [EMAIL PROTECTED]
Sent: Thursday, July 20, 2000 2:43 PM
Subject: Re: mkinitrd error


 On Wed, 19 Jul 2000, Mike Almogy wrote:


 Nothing to do with scsi. Do /sbin/lsmod, and check for a device named
 loop. Also, check if you have compiled your kernel with this module on.
 This allows you to mount a file as a filesystem (for example, mounting a
 ISO 9660 image as a file system).

 --Ariel

  Hi list.
  does anyone knows why i get :
 
  All of your loopback devices are in use
 
  when i'm trying to make initrd image for my new linux-2.2.16 kernel (i
have
  installed ReiserFS support if it got anything to do with it)
 
  My /etc/conf.modules file is empty. i deleted everything from there. i
think
  that it might got something to do with the scsi , am i right ?
 
  Thanks,
  Mike
 
  ---
  Mofet Institute - Computer Dpt.
  +972-3-6901415
 
  ~
 
 
 
  =
  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-6406086
 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]




Squid ACL

2000-07-19 Thread Mike Almogy

Hi list
Can i write this kind of ACL ?

acl MyNetIP src 192.168.0.1/255.255.255.0 192.168.0.2/255.255.255.0
192.168.0.2/255.255.255.0

meaning that ii have 3 C classes on the same ACL.

Can it be done ?
Or i need to do something like :
acl MyNetIP src 192.168.0.1/255.255.255.0
acl MyNetIP src 192.168.0.2/255.255.255.0
acl MyNetIP src 192.168.0.3/255.255.255.0


Thanks,
Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~



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




mkinitrd error

2000-07-19 Thread Mike Almogy

Hi list.
does anyone knows why i get :

All of your loopback devices are in use

when i'm trying to make initrd image for my new linux-2.2.16 kernel (i have
installed ReiserFS support if it got anything to do with it)

My /etc/conf.modules file is empty. i deleted everything from there. i think
that it might got something to do with the scsi , am i right ?

Thanks,
Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~



=
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 OT Q: Msoft protcols

2000-07-19 Thread Mike Almogy

no
Microsoft is using LVL 2 and LVL 5 in the osi module.
since LVL 3 is the network layer then MS protocol does not have the ability
to see the entire network.

In order to overcome this, you can configure the MS box to use the TCP/ip
protocol as the LVL 3 and 4 in order to use it over from one network to the
other.
this is the default in Win9X only if you DO NOT install the NetBEUI (?)
protocol. and you need to enable the binding in the TCP/ip protocol.
In NT and Linux it is the default way. you do not need to install the
NetBEUI protocol at all.

Hoped it help.

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Jonathan Ben-Avraham" [EMAIL PROTECTED]
To: "ILUG" [EMAIL PROTECTED]
Sent: Wednesday, July 19, 2000 4:56 PM
Subject: Newbie OT Q: Msoft protcols


 Hi,
 I assume that Microsoft workgroup protocols ("network neighborhood") are
 using IP broadcast to find peers and servers on the network and this is
 the reason that they don't find anything past the router. Can anyone
 confirm this?
 TIA,

  - yba


EE 77 7F 30 4A 64 2E C5  83 5F E7 49 A6 82 29 BA~. .~   TclTek Ltd.

=}-ooO--U--Ooo---{=
   - [EMAIL PROTECTED] - tel: +972.52.670.353,
http://www.tcltek.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]




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




cache proxy again :-)

2000-07-17 Thread Mike Almogy

Hi.

Some additional questions if you don't mind.

but first some more info :
the server is PIII 733 133Mhz board clock, 2 GB RAM and 6 19 GB scsi 10K RPM
drives for the cache and one 9 GB for the system.
I will have 3 scsi cards, 1 for the system and 2 for the disks (3 on each).

The 2 cache disks controllers can act as raid 0 (i think - not the mirroring
raid but the other one)

The questions are :
1. i will use reiserfs, will it improve my I/O performance if i will use the
raid option ?
2. will it be better to use Async I/O transfer (squid supports that as a
file system type or something) ? i know that
there  will be some data lost and corruption.

What do you think ?

(i know that i'm bugging about this subject for a long time, BUT i just saw
the new Compaq TaskSmart and their really put Linux/Squid behind...it is
payback time :))

Mike



---
Mofet Institute - Computer Dpt.
+972-3-6901415

~



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




the new linux-il server

2000-07-16 Thread Mike Almogy

Hi.

Who is installing the new server at Actcom ?

Thanks,

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~



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




Proxy Hardware - was Re: Kernel 2.2.16 and Megaraid

2000-07-16 Thread Mike Almogy

yes i know.

anyway i think i solved the problem :-)
In the LH4000 (or 3000) you can choose if you want raid or simple scsi.
all i need to do is to transfer it to a simple scsi.
I do not need the raid controller anyway.

Now i got a new Q :-)

What is better, 1 CPU of 733 and 2 GIGA RAM or 2 733 CPU's and 1 GIGA RAM
for a proxy server.
I think that it is better to have more RAM then CPU's.
but in every configuration i saw in squid site they had there 2 cpu's.

Am i right ?


Mike


---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Tzafrir Cohen" [EMAIL PROTECTED]
To: "root" [EMAIL PROTECTED]
Sent: Sunday, July 16, 2000 12:52 PM
Subject: Re: Kernel 2.2.16 and Megaraid


 On Sun, 16 Jul 2000, root wrote:

  Hi list.
  I'm installing RedHat 6.2 on HP LC4 with 1 GB RAM. 2 disks of 18 GB, 4
  PIII 500 MHZ and 2 scsi cards.
  One of them is the megaraid that comes with HP disk array.
 
  When i'm installing the RedHat (kernel 2.2.14 that comes with RH
  distro)it recognize my scsi megaraid controller and install it ok.
  However, when i'm compailing new kernel (2.2.16) with the ami megaraid
  supportthe mkinitrd tells me that it can not find the module for it.
  silly to saythat when i reboot the system the kernel get panic due to
  the fact that it can't find the root filesystem.
 
  When i'm compailing new kernel i do it like this :
  make menuconfig
  make dep
  make modules
  make modules_install
  make bzImage
  make bzlilo
  edit the lilo.conf file
  then i use the mkinitrd to make the init image.
 
  Any idea why it happens ? and how to fix it ?
 
  Thanks,
 
  Mike

 Hi
 Keep in mind that the kernel package supplied by redhat is not the default
 kernel. The most notable change is that RH (as most other ditros) compile
 many things as modules (that were originally marked as "N").

 They also apply some patches.

 You can always download and install the updated RH kernel package. If you
 want to know exactly what patches they used (and their docs don't specify
 that) you can download the kernel source rpm (kernel-2.2.16*.src.rpm ,
 not the kernel-sources package), install it, and then look at
 /usr/src/RPM/SPECS/kernel.spec in the %prep section.

 --
 Tzafrir Cohen
 mailto:[EMAIL PROTECTED]
 http://www.technion.ac.il/~tzafrir





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




sendmail Q

2000-07-13 Thread Mike Almogy

Hi.

i received a mail from a user that does not exist on my server.
The content of the mail is sex, there for i assume that it was a Spam
advertising.

Now, I'm using the Sendmail macros that disallow users not from my own
domain name to use the server, and more then that , it can not be used as
mail relay.
mail from [EMAIL PROTECTED] can not be sent to [EMAIL PROTECTED]  from my server.

My question is, i there any log that shows who sent mail to who when and
from where ?
if such log does not exist,  how can i configure Sendmail to generate one ?


Thanks Allot,

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~



=
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: Subdomain

2000-07-12 Thread Mike Almogy

there is absolutely NO connection between DNS records to directories on the
server.

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Geva Guy" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, July 12, 2000 3:36 PM
Subject: Subdomain


 Hi all,

 Theres any other possibilty to add subdomains without
 dns A records ? and to point them to a directory ?

 xyz.com # /home/httpd/html
 xyz.xyz.com # /home/httpd/kdkd

 Regards,

 Guy Geva

 =
 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: Subdomain with apache

2000-07-12 Thread Mike Almogy

i think that you have to have some more configuration directives for each
domain.

like :

VirtualHost 192.114.206.209
DirectoryIndex index.htm index.html
DocumentRoot /home/lizard/Monitor_prog/htdocs
ServerName msg2you.lizard.macam.ac.il
/VirtualHost

Mike

---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Geva Guy" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, July 12, 2000 5:35 PM
Subject: Subdomain with apache


 Hello,

 Can someone tell me whats wrong with this conf ?

 i put those lines in the bottom of httpd.conf.

 NameVirualHost 127.0.0.1

 VirtualHost 127.0.0.1
 ServerName localhost
 DocumentRoot /home/httpd/html
 /VirtualHost

 VirtualHost 127.0.0.1
 ServerName xyz.localhost
 DocumentRoot /home/httpd/html1
 /VirtualHost

 -- ITS NOT WORKING, Any suggestions ?

 Guy Geva
 [EMAIL PROTECTED]
 03-6313930
 050-919906

 =
 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: need links to software rating sites

2000-07-09 Thread Mike Almogy

whats wronge with linuxberg.com ?


Mike


---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message - 
From: "Mevorach, Assaf" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, July 09, 2000 11:53 AM
Subject: need links to software rating sites


 Hello
 does anyone knows sites that rates software for Linux? something like
 Tucows, but more professional
 
 Thanks
 Assaf
 
 
 =
 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]




DDR and dial automatically

2000-06-29 Thread Mike Almogy

Hi list.

Does anyone knows how to configure Linux to automatically open a ppp
connection when traffic is going to the outside ?

In Cisco it called DDR - Dial on Demand Routing


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: pine

2000-06-28 Thread Mike Almogy

I have Pine 4.05_heb2.07 for about 2000 users.
In their .pinerc i have the following line :

smtp-server=YOUR.MAIL.SERVER

Works fine for me.
POP3 and SMTP

Mike


- Original Message -
From: "Ira Abramov" [EMAIL PROTECTED]
To: "LinuxGeek" [EMAIL PROTECTED]
Cc: "linux-il mailing list" [EMAIL PROTECTED]
Sent: Wednesday, June 28, 2000 11:21 PM
Subject: Re: pine


 On Wed, 28 Jun 2000, LinuxGeek wrote:

  hi all !
 
  i must be doing something very wrong here, or maybe it's 2 late now and
i
  gotta go and get some sleep...:-)
 
  i looked all over the setup screen and into the .pinerc file and i
cannot
  find where to define pop server address...is it possible in pine ?
  can it recive mail from another pop server (not local machine) ?
  help !

 pop support for pine is early alpha. if your provider doesn't support
 IMAP, I suggest you install fetchpop.


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




Kernel/Memory problem.

2000-06-24 Thread Mike Almogy
 reason the system killed the idle process.

Few days earlier to this error i fixed my swap and i saw that it did in fact
used it.
(i used cat /proc/swaps, free and top) I have 4 partitions of 512 MB each, 1
primary and 3 logical.

I will send the other errors as soon as i will be at the office. (tomorrow
hopefully)


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: SYN/ACK not forwarded to 2nd NIC

2000-06-15 Thread Mike Almogy

You MUST use masquerading, else ware it will not work.
I have the same configuration as you shown at my home.

Mike


---
Mofet Institute - Computer Dpt.
+972-3-6901415

~

- Original Message -
From: "Meir" [EMAIL PROTECTED]
To: "Mike Almogy" [EMAIL PROTECTED]
Cc: "Linux-il" [EMAIL PROTECTED]
Sent: Thursday, June 15, 2000 1:40 PM
Subject: Re: SYN/ACK not forwarded to 2nd NIC


 Mike Almogy wrote:

  Hi.
 
  did you configured the kernel with IPCHAINS as needed ?
 
  You can read the IP-MASQUERADING HOWTO , there is a detailed examples
how to
  do it.
  you need some rules in order to let Linux know that it supposed to do
the
  masquerading from one net to the other.

 Thanks for your answer, Mike,

 For now no masquerading is taking place: all rules default to ACCEPT.

 -- Meir

  - Original Message -
  From: "Meir" [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Sent: Thursday, June 15, 2000 12:20 PM
  Subject: SYN/ACK not forwarded to 2nd NIC
 
   Hi,
  
   I have a curious problem.
  
   My box (linux) is trying to send mail to a target.
   Between my box and the target there is a linux box 2.2.12
   with 4 NICs but (for now) _without_ any filtering rules
   at all (all default to ACCEPT).
  
   Only 2 NICs are up: eth0 to external net and eth1 to internal net.
  
   The problem is that when I tcpdump the 2 NICs from this middle-box,
   I can see a SYN getting out from eth1 and then passed to eth0
   (ip forwarding is enabled), and then I receive a SYN/ACK from the
   target box via eth0, but this SYN/ACK _never_ reach
   eth1 (which point to internal net) !!!
  
   The figure describe what's happen:
  
 ___
|   |
  |   - SYN|- SYN  - SYN |  | 192.168.9.133
   Target | |eth0 eth1  |--| My box
  |   192.168.0.29  192.168.9.150  | run
  |  SYN/ACK - | -  ???   |  | telnet Target 25
|_  |
  
   ^
   |
   |_ SYN/ACK never reach eth1
!!!
  
   # /sbin/route
  
   Kernel IP routing table
   Destination Gateway Genmask Flags Metric Ref
Use
   Iface
   192.168.0.29*   255.255.255.255 UH0  0
0
   eth0
   192.168.9.150   *   255.255.255.255 UH0  0
0
   eth1
   192.168.0.24*   255.255.255.248 U 0  0
0
   eth0
   192.168.9.128   *   255.255.255.224 U 0  0
0
   eth1
   127.0.0.0   *   255.0.0.0   U 0  0
0
   lo
   default 192.168.0.250.0.0.0 UG0  0
0
   eth0
  
   eth0: 192.168.0.29  netmask 255.255.255.248
   eth1: 192.168.9.150 netmask 255.255.255.224
   default route: 192.168.0.25
  
   My box: 192.168.9.133 netmask 255.255.255.224
   default route: 192.168.9.150
  
   The same thing occures when telneting Target on ports 7/9/79 etc...
  
   _But_ when I telnet Target 80 or 21  from My Box, it works !
   Why ?
   Sure, I am missing something, but what ?
  
   I try with kernel 2.2.5, 2.2.12, 2.2.14.
  
   /proc/sys/net/ipv4/conf/{all,eth*}/rp_filter are set to 1
   /proc/sys/net/ipv4/ip_forwardis  set to 1
  
   Thanks in advance,
  
   -- Meir
  
  
   =
   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]




=
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

2000-06-15 Thread Mike Almogy

who linux-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]




  1   2   3   >