Re: [expert] garbage collection ?

2003-11-18 Thread Adolfo Bello
On Tue, 2003-11-18 at 07:43, elPunishar wrote:
 On Tuesday 18 Nov 2003 9:42 am, Anne Wilson wrote:
  On Tuesday 18 Nov 2003 9:30 am, elPunishar wrote:
   hi everybody,
  
   i noticed that my 1 gig of ram is getting filled up real quick,
   which may be okay since i'm running a lot of programs.
   BUT it doesn't come down again even when i close the programs...
   memory use just grows and grows (slow but steady), then beginns to
   fill up the swap space...
 
  Linux uses memory very differently from Windows.  This is normal
  behaviour, making all memory quickly available at all times.  It
  dynamically releases memory least likely to be needed whenever
  something else requires it.  It's nothing to worry about at all.
 
   i hope you don't rip my head off for this, but that behaviour seems
   a little window-esque to me...
   granted, its a lot slower than on a windows box.
 
  It shouldn't be a lot slower.  Things that might affect it are
 
  How much RAM have you got?
 
  How full is your drive? In a console, type df
 
  Is the drive using dma? - try hdparm -d /dev/hda (assuming hda is your
  drive letter)
 
  Paste here what replies you get.
 
  Anne
 
 okay, your answer clarifies that. i'm reliefed :)
 
 what i meant was: the process of using up all avalable memory is much slower 
 than on windows.
 the machine runs a LOT faster than on windows! :))
 
 output:
 
 [EMAIL PROTECTED] root]# hdparm -d /dev/hda
 /dev/hda:
  using_dma=  1 (on)
 
What sounds a little strange to me is that the system starts filling the
swap space. Given the amount of memory you have (1Gb) it shouldn't use
the swap space (unless you have a lot of processes running
simultaneously).

I have read about some problems when using more than 768 Mb ram and the
advise has always been passing mem=860 at the lilo prompt or in
lilo.conf.

Just my 2 cents.

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Color with echo in shell script (was: [expert] menu in bash script)

2003-11-14 Thread Adolfo Bello
On Fri, 2003-11-14 at 18:06, jipe wrote:
 On Fri, 14 Nov 2003 16:24:29 -0500 (EST)
 Jean-Pierre Denis [EMAIL PROTECTED] wrote:
 
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
  
  Hi,
  
  jipe wrote:
  
   snip
   menuA[1]=$(echo -e  \e[1;34;46m-1-\e[0m\tCopy /etc/dhcpd.conf)
  
  
  I would like to get more details on how to display color in shell script
  and on terminal.
  
  I understand that 34 and 46 are the color.
  
  How does this actually work ? Are the color the same as the one in
  /etc/DIR_COLORS ?
  
  Can anybody point me the a good reference docuement. I did not find
  anything in the man pages.
  
  Thanks,
  Jean-Pierre Denis
  jp at msfree dot ca
 
 just have a look here:
 
 http://tldp.org/LDP/abs/html/colorizing.html
 
 bye
 jipe

Also take a look at:

http://www.tldp.org/HOWTO/Bash-Prompt-HOWTO/x329.html

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Calling on Mandrake Apache Expert (Vincent)

2003-11-01 Thread Adolfo Bello
On Sat, 2003-11-01 at 16:19, J. C. Woods wrote:
 What has changed in Mandrake's Apache2 (using current release
 apache2-2.0.47-1.4.91mdk on 9.1) with reference to running php scripts? I
 have a php script that run very well on Mandrake's Apache-1.3.26-6.1mdk
 running on 9.0. But it is kicking out some errors when I run the script on
 the apache2 version running on the 9.1 box. Examples:
 
 Warning: shell_exec() [function.shell-exec]: Cannot execute using
 backquotes in Safe Mode in /var/www/html/nqt.php on line 176
 
 Warning: shell_exec() [function.shell-exec]: Cannot execute using
 backquotes in Safe Mode in /var/www/html/nqt.php on line 317
 
 (as mentioned before, no such errors when running same script on
 apache-1.3.26-6.1mdk)
 
 Now I can see that this has something to do with processing backticks (`)
 with something called Safe Mode but after some google work, I am still
 in the dark. Can you suggest some correction or point me in a direction
 that would provide some insight. My thought is that a php script that runs
 on one version of apache should run all all versions of apache. Thanks.
 (If you want to take this offline, and have me send you the php script,
 just let me know.)
 
 Craig

Have you tried safe_mode=off in your php.ini?
Did you have safe_mode=on in your previous php setup under apache
1.3.26?

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Fetchmail problem

2003-10-31 Thread Adolfo Bello
On Fri, 2003-10-31 at 08:15, Bryan Phinney wrote:
 On Thursday 30 October 2003 08:49 pm, Praedor Atrebates wrote:
  Thanks.  Unfortunately, that doesn't make it any better than running it as
  a cron job.  My desire is that no matter how many users are using, only ONE
  fetchmail process is needed.  Instead of all users running their own
  fetchmail, have the system run ONE and have this one process check for
  ~/.fetchmailrc files in all user directories and go from there.  As a new
  user creates a .fetchmailrc, the fetchmail daemon would simply find it and
  use it on the next fetch.
 
 Fetchmail can be run as a user and will pull from the ~/.fetchmailrc file of 
 the user it is run as.  So, you can have user controlled processes of 
 fetchmail.  You can not have user controlled daemon processes of fetchmail 
 because this would violate security features to not allow users to have root 
 access.
 
  From your answer I assume that fetchmail is not capable of this.  To my
  thinking, this is a flaw in design.  Instead of designing a system that
  requires each and every user run independent instances of fetchmail, it is
  self evident that a single process handling the mail for any and all users
  is more logical and clean in design.  
 
 Well, not giving users root access to a daemon may seem like a design flaw to 
 you, but it certainly doesn't to me.  And I also agree that a single process 
 handling mail for all users is more logical which is why fetchmail is 
 designed to do exactly that.  It does not, however, include giving control of 
 that process to the user themselves, since that would provide a hook for a 
 user to potentially gain higher than their user level of access.  Centralized 
 processing should always be controlled by a central administrator with access 
 handed out only as needed and as limited as it can be.
 
  Fetchmail can't do this?  Is there a 
  fetchmail-alike that can?
 
 I do not know of any.  You may want to inquire on the Fetchmail mailing-list, 
 they would be experts and might have some suggestions.

Here I see two different philosophies:

.- The one used by fetchmail, in which you can either start it as a
daemon and have a centralized administration, usually on
/etc/fetchmailrc, or start it as a cron job leaving to each user the
task of maintaining his/her own ~/.fetchmailrc.

.- The other one, used by procmail, which is almost like fetchmail's,
but you may also include the ~/.procmailrc recipes with a line in
/etc/procmailrc:
INCLUDERC=/home/$USER/.procmailrc

There is a trade off: if you choose centralized administration you lower
the risk of breaking something but increase the the administrative
burden on root and vice versa.

I think that procmail philosophy give the administrator more choices,
something that most linux users love.

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Apache 2, SSL, Virtual Hosts

2003-08-03 Thread Adolfo Bello
On Sun, 2003-08-03 at 01:35, Vincent Danen wrote:
 On Sat Aug 02, 2003 at 05:10:31PM -0400, Adolfo Bello wrote:
 
  You can only have one virtual host serving SSL requests.
 
 Make that one virtual host per IP.  If you have multiple IPs on your
 machine, you can have one per IP.
 
 Because the SSL stuff is done before HTTP requests/headers/etc. are sent, it
 has to be done at an IP level, and not a name level (ie. the site has to
 have a unique IP).

Right. I forgot to mention it.

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Apache 2, SSL, Virtual Hosts

2003-08-03 Thread Adolfo Bello
On Sun, 2003-08-03 at 10:15, Stefano Pogliani wrote:
 do you mean that I have to change the _default_:443 into 192.168.0.2:443 
 and set the right ServerName (i.e. webmail.poglianis.net) ?
Right. Remember, just one HTTPS site per IP.
 
 Should I also generate a NEW self certificate for webmail.pogliani.net ?
Yes.
 
 Thanks so far !
 /stefano

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] keybaord layout

2003-08-02 Thread Adolfo Bello
On Fri, 2003-08-01 at 20:11, Alberto Castillo Pompeyo wrote:
 Hi, I just installed ML 9.1, I have a laptop with US keyboard, but
 sometimes I need to use a Spanish keyboard layout, with ML 9.0 I had
 configured KDE with both layouts by selecting them from the
 Configuration-KDE-peripherals-keyboard dialog, but with the new
 version the same dialog doesn't have the list of layouts.
 
 Does anyone knows if this is a ML 9.1 issue or a KDE 3.1 issue? and
 how can I get the keyboard layouts to work?
 
 Appreciate any help, thanks.
 
You can find them in  KDE Control Center-Accesibility-Keyboard Layout.

Saludos

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Apache 2, SSL, Virtual Hosts

2003-08-02 Thread Adolfo Bello
On Sat, 2003-08-02 at 16:38, Stefano Pogliani wrote:
 I am struggling in having an Apache virtual host defined to support SSL.
 
 I have seen, though, that in the ssl/sss.default_vhost.conf file, the 
 error log for the SSL connection is defined to be logs/ssl-error_log.
 Actually, in the /var/log/httpd directory I can only see a ssl_error_log 
 file (underscore instead of dash).
 This file does not contain any error that I could use to debug what I am 
 doing (i.e. if I use https://webmail.myname.myext). But, eah time 
 apachectl is restated, there are TWO lines telling me that the 
 certificate for
 
   localhost.L1HQJg does NOT match server name!?
 
 Ok, so, it seems that the ssl_error_log file is accessed at least at 
 startup.
 
 My system only accepts https://localhost/ and, in this case, I can 
 clearly see the famous certificate for localhost.L1HQJg.
 
 So, I am confused:
 
  1. why the ssl logs are written to the wrong file
  2. why in this wrong file I always get two lines of warning at
 startup ?
 
 Now, in addition to this, I wanted to create an SSL virtual host for a 
 new server, called webmail.poglianis.net. For this:
 
  1. I have created a server.key and a server.crt in a new directory
 for a server named webmail.poglianis.net
 I have duplicated the _default_:443 vhost directives (in
 ssl.default_vhost.conf) for my server 192.168.0.2:443 with
 ServerName=webmail.poglianis.net (I changed the location of crt
 and key files)
 
  2. Now, any time I type https://webmail.poglianis.net, I get a box
 telling me that the connection with webmail.poglianis.net has
 terminated unexpectedly. Some data may have been transferred. But
 actually I do not see my web page.
 
  3. And, in the standard error_log file (NOT the ssl_error_log NOR
 the unexistent ssl-error_log) I see the line Invalid method in
 request g^A^C
 
  4. In the standared access_log file (again, NOT the ssl_access_log
 NOR the expected ssl-access_log) I see the line:
 scarlet.poglianis.net - - [01/Aug/2003:18:35:34 +0200]
 \x80g\x01\x03 501 408 - -
 
 Could someone pls help me in understanding what I am doing wrong?
 
 Thanks a lot in advance. Best regards
 /stefano

Stefano:

You can only have one virtual host serving SSL requests.

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] regular expressions with quotes

2003-06-15 Thread Adolfo Bello
On Sun, 2003-06-15 at 09:43, Steven Broos wrote:
 Hai
 
 I'm trying to do a regular expression, which contains '
 As far as I know, I have to backslash the ' but that gives me an error.
 
 expr that returns the part of a string between (' '):
 $ expr dag('hello')goodafternoon : '.*(\(.*\)).*'
   'hello'
 $ expr dag('hello')goodafternoon : '.*('\(.*\)').*'
   0
 $ expr dag('hello')goodafternoon : '.*(\'\(.*\)\').*'
   bash: syntax error near unexpected token `)'
 $ expr dag('hello')goodafternoon : '.*(''\(.*\)'').*'
   'hello'
 $ expr dag('hello')goodafternoon : '.*(.\(.*\).).*'
   hello
 
 Anyone has an idea how to contain a single quote in the expression ?
 I managed to work around this using just a point (last command above)
 but I really want to check for the quote 
 
 tia
 Steven
Double quoting the regexp will do it:

expr dag('hello')goodafternoon : .*('\(.*\)').*

Adolfo


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Mail formats revisited

2003-06-08 Thread Adolfo Bello
On Sun, 2003-06-08 at 09:07, Anne Wilson wrote:
 On Sunday 08 Jun 2003 1:45 pm, Mark wrote:

 Mark, it may be easy, but it's a whole new ball game for me.  I'm 
 interested, though.  So, can you give me a quick outline of 
 
 a) what I'd need to install
 b) what I'd need to read up
 c) which order to do things
 
 Anne

Hi Anne:

The way I did it was with:
IMAP: cyrus (lot of people also use courier)
Fetchmail: to pick your mail from your mail server (i have read that it
can also be used for filtering).
Postfix: to send your mail (I read that it was easier to setup and safer
than sendmail)
Procmail: for filtering.

I created a test mail account and until I didn't feel every thing was
working fine I didn't migrate from my original setup.

I installed every thing from Mandrake CD's.

The HOWTO on cyrus was very helpful.

Googling for postfix procmail cyrus will give you lot of information.

In www.procmail.org you will find some very interesting and useful
links.


Having your mails available anywhere is perhaps the most valuable aspect
of IMAP.

It is worth the effort.
-- 
__ 
   / \\   @   __ __@   Adolfo Bello / [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //mobile: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax   : +58 212 952-6797
www.bisapi.com   //pager : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] how to add a custom feature to konqueror

2003-06-08 Thread Adolfo Bello
On Sun, 2003-06-08 at 09:21, Stephlub wrote:
 I found a solution for java/javascript, but I'm still looking for stuff for
 adding features myself
 
  Is it hard for add a button in toolbar of konqueror to swicht java or
  javascript on/off by just a click?
  Is it needed to recompile it for that?
  Do you know where I can find some stuff for this?

Maybe nobody knows if nobody answers.

Could you, please, post the solution?
-- 
__ 
   / \\   @   __ __@   Adolfo Bello / [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //mobile: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax   : +58 212 952-6797
www.bisapi.com   //pager : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Upgrading 9.0 to 9.1 with urpmi

2003-06-05 Thread Adolfo Bello
On Wed, 2003-06-04 at 20:50, Brian V Bonini wrote:

 FYI: The general consensus at the PHP farm is to avoid Apache 2.x for
 the time being as the two are not playing well together yet.
 
I have read some complains about Apache 2.0 in the php list.

However, I've been working with Apache 2 since version 2.0.44 and php
since version 4.3.0 without any problem. I started with 2.0.44 and 4.3.0
installing from tar under Mandrake 9. I am now using 2.0.45 (with last
security fixes) and php installed from Mandrake 9.1 cd's.

Again, no problem over here.
-- 
__ 
   / \\   @   __ __@   Adolfo Bello / [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //mobile: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax   : +58 212 952-6797
www.bisapi.com   //pager : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


RE: [expert] open source spreadsheet file format.

2003-04-06 Thread Adolfo Bello
On Tue, 2003-04-01 at 10:46, Frankie wrote:
 its not in xls format...
 
 its currently csv, and as far as I know, having a perl script create xls
 format data would be quiet hard..
 
 
 Also, I don't want to support M$ file formats..
 
 
 Thats why I was hoping there was an rtf type format for spreadsheets.
 
 
 rgds
 
 Franki

If you don't want to use *.xls, you can go with Lotus-123 format. You
can also open it in OO, Excel, Quattro.

-- 
 09:26:08 up 46 min,  3 users,  load average: 0.18, 0.08, 0.09
Sun, 06 Apr 2003 09:26:08 -0400
__ 
   / \\   @   __ __@   Adolfo Bello / [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //mobile: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax   : +58 212 952-6797
www.bisapi.com   //pager : [EMAIL PROTECTED]

The real voyage of discovery consists not in seeking new
  landscapes, but in having new eyes. (Marcel Proust)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] auto shut off

2003-04-05 Thread Adolfo Bello
On Sat, 2003-04-05 at 11:50, Norman Zhang wrote:
 Hi,
 
 How do I enable LM9.1 to automatically shutdown my system when I choose 
 turn off from the logoff menu? I see halt... power down... but I need to 
 press the power button.
 
 Regards,
 Norman
Add 'apm=off' to the append line in /etc/lilo.conf and run lilo.

Adolfo

-- 


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] ssl with apache2?

2003-03-27 Thread Adolfo Bello
On Thu, 2003-03-27 at 17:57, David Guntner wrote:
 I've just installed ML 9.1 (and will be joining the club as soon as I've 
 got 60 bucks free :), which installs Apache 2 by default.  I don't mind 
 using it (I think :), but I've got a question regarding configuring ssl for 
 it.
 
 With Apache 1.3, it was fairly straight forward to configuring your own 
 site certificiate with the stuff that appeared in the configuration 
 directories.  However, none of those directories or files seem to be 
 present in Apache 2.  At least, not in the places I'm looking for them. :-) 
 So, does anyone know how to go about generating your own site certificate 
 for use with Apache 2?  As much detail as possible would be helpful. :-)
 
 Thanks in advance for any help.
 
--Dave

Here is what I did with Apache 2.0.44 under Mandrake 9:

Creating and setting the key

.- create the key and request:
  openssl req -new  mysite.csr

.- remove the passphrase from the key (optional. read about security
risks):
  openssl rsa -in privkey.pem -out mysite.key

.- convert request into signed cert:
   openssl x509 -in mysite.csr -out mysite.cert -req -signkey mysite.key
\ -days 365

The Apache-SSL directives that you need to use the resulting cert are:
  SSLCertificateFile /path/to/certs/new.cert.cert
  SSLCertificateKeyFile /path/to/certs/new.cert.key

I created the subfolder /usr/local/apache2/certs and copied mysite.cert
and mysite.key to it. 

If you are going to use virtual hosts, enter in httpd.conf 

NameVirtualHost *:80

VirtualHost *:80
IfDefine SSL
SSLEngine off
/IfDefine
DocumentRoot /your/web/site/root/
ServerName www.yoursitename.com
ServerAdmin [EMAIL PROTECTED]
/VirtualHost

This is only needed if your site is going to have secure and insecure
pages.

.- In ssl.conf
VirtualHost _default_:443
DocumentRoot /mnt/windows/snc/codigo
#ServerName cualquier_cosa_pues_esta_comentada
ServerAdmin [EMAIL PROTECTED]
#.. rest of virtual host settings
#   Server Certificate:
SSLCertificateFile /usr/local/apache2/certs/yoursite.cert
#   Server Private Key:
SSLCertificateKeyFile /usr/local/apache2/certs/yoursite.key


.- Start apache using:
/usr/local/apache2/bin/apachectl -D SSL -k start

HTH
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] 100% steady processor load using RC2

2003-03-24 Thread Adolfo Bello
(This is part of a post to the newbie list. Sorry to those subscribed to
both lists).

I am back in Mandrake 9.0 after installing RC2 with all its updates. The
one to blame is a process named keventd which overload my processor
(Toshiba laptop 5005-S504, PIII 1.1Ghz, 512 Mb)

I downloaded the three iso images and checked their MD5 string. Then I
updated everything using the string that I got from the
plf.zarb.org/~nanardon/index.php.

I noticed that KDE was sort of slow, so I started gkrellm and the
processor load was at 100% all time. I assumed that there might be a
problem with ACPI (for the first time power management was working
nicely under Mandrake), so I turned it off using lilo noacpi and reboot.
The same: processor load at 100%. I turned ACPI back on.

I launched KDE System Guard and found the guilty process: keventd (no
idea about what it does or what it means). It kept using between 80 and
90% of processor computing power.

I remember having this sort of problem with kernel 2.4.20 but I gave up
and went back to 2.4.19

May somebody give me a hint, or link or reference (RTFM are also
welcome) related to this strange behavior?

Does anybody know what keventd is or what it does?

TIA
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] apache and ssl

2003-03-22 Thread Adolfo Bello
On Sat, 2003-03-22 at 10:23, Leonardo wrote:

 My apache is Apache-AdvancedExtranetServer/1.3.26 (Mandrake Linux/6mdk). The
 keys are the default that comes with apache. They were working fine until i
 changed the root directory, so I think that apache does have the openssl and
 that it is starting with it enable. When I try https://192.168.0.1 I get a
 Forbidden You don't have permission to access / on this server although in
 my commonhttpd.conf  i have Allow from all.
 
 Thanks,
 Leonardo

Did you also change the root directory for _default_:443?

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] apache and ssl

2003-03-21 Thread Adolfo Bello
On Fri, 2003-03-21 at 22:21, Leonardo wrote:
  Hi everyone,
 
  I'm get the following in my ssl logs:
 
  [Fri Mar 21 19:08:52 2003] [error] [client 192.168.0.5] client denied by
  server configuration: /var/www/html/
 
  I also can't connect to the server using the https:// but the http:// works
  very well. It's very strange because my root is not /var/www/html anymore.
  I've changed it to /web.
 
  Any suggestions?
 
  Leonardo Sá

Leonardo:

We need more information to help you.

What version of Apache are you using? What did you do for the keys? Did
you compile with support to openssl? Are you starting Apache with the
SSL option?

Saludos
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Update to Cooker?

2003-03-19 Thread Adolfo Bello
On Wed, 2003-03-19 at 22:05, Dave Sherman wrote:
 This is probably a silly question, but I have so far been unsuccessful 
 in finding the info I am looking for...
 
 Can anyone tell me how to update Mandrake 9.1rc2 to Cooker?
You have to create a urpmi source with a cooker mirror. Then do: 

urpmi.update -a

and

urpmi --autoselect

You will find instructions on how to add a cooker urpmi source at:

http://www.zarb.org/~nanardon/index.php

HTH
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Simple question about netstat - not in man pages.

2003-03-11 Thread Adolfo Bello
On Tue, 2003-03-11 at 03:50, Vox wrote:

   0.0.0.0 = any
 
   On TCP/IP networking, 0 as any octet of an IP is, for all purposes,
   a universal globing. That's why I hate people who set their LANs to
   use 192.168.0.x as their IPs...it drives me crazy, even if it's
   valid :) 
 
   Vox
Hi Vox:

I don't know if I understood what you meant by universal globing and why
you hate 0 in IPs.

As long as 0 is not the ending octet, it has no special meaning in IP
addresses. The same applies to 255, or to any power of 2 number.

Am I wrong or missing something?

Saludos

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Simple question about netstat - not in man pages.

2003-03-11 Thread Adolfo Bello
On Tue, 2003-03-11 at 07:58, Adolfo Bello wrote:
 Hi Vox:
 
 I don't know if I understood what you meant by universal globing and why
 you hate 0 in IPs.
 
 As long as 0 is not the ending octet, it has no special meaning in IP
 addresses. The same applies to 255, or to any power of 2 number.
Errata
or to any power of 2 octet minus 1
/Errata
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Simple question about netstat - not in man pages.

2003-03-11 Thread Adolfo Bello
On Tue, 2003-03-11 at 09:58, Pierre Fortin wrote:

 Get over it...  your statement is factually incorrect  what you are
 probably referring to is the old-style [sub]net broadcast address
 
 Classfull:
 192.0.0.0: old-style broadcast -- last 0 only (Class C)
 162.198.0.0: old-style broadcast (Class B)
 192.0.0.[1-254]: your statement is wrong (Class C)
 168.0.0.0: old style broadcast -- last two 0s only(Class B)
 12.12.12.12/255.240.0.0: why not complain about this?
^^   ^^^  : subnet = 0 (Class A w/4-bit subnet)
 
 Classless(no subnetting):
 192.168.1.0/16: valid non-zero host part
 12.0.1.0/23: valid non-zero host part
 129.0.0.0/7: valid non-zero host part
 
 Not to mention this is IP part only; not TCP/IP...

In other words, what has to be non zero is the part of the IP that is
not masked. You can always think of the IP as composed by two parts:
The network bits and the host bits.
IP = networkbits.hostbits

For a host, hostbits can not be all 0 (network id) or all 1 (broadcast).
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //celular: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager  : [EMAIL PROTECTED]


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-09 Thread Adolfo Bello
On Sun, 2003-03-09 at 05:32, Anne Wilson wrote:

 Probably true, but I generally start it from c/l, and it fires up with Konq, 
 so I've never used anything else.  Just to be sure, I've checked all the 
 other browsers I sometimes use for whatever purpose, but there is no cookie 
 in any of them that refers to webmin, localhost:1 or anything similar.  
 Wherever it is stored, it doesn't appear to be in the browser cookies.
 
 Anne
webmin cookie has a life span of just one session. When you login the
cookie localhost.* is created. You can log out of webmin and the cookie
will stay in there but as soon as you close Konq the cookie is erased.

Suerte
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Where Is Everyone?

2003-03-09 Thread Adolfo Bello
On Sun, 2003-03-09 at 15:54, Daryl Johnson wrote:
 OK, what's happening?
 
 regards
 
 Daryl
Well, maybe it is monday in Australia and Stephen is working hard, So no
activity in the list :-)
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-08 Thread Adolfo Bello
On Sat, 2003-03-08 at 18:27, Bob Brickey wrote:
 I don't know about Netscape or Mozilla.  However, MS Internet Explorer saves 
 cookies in two different folders.
In Netscape:
Edit-Preferences-Privacy  Security-Cookies-Manage Stored Cookies.

I guess it is the same in Mozilla.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-08 Thread Adolfo Bello
On Sat, 2003-03-08 at 18:47, Anne Wilson wrote:
 But why would webmin write to Mozilla?
 
 Anne

It might be that you enabled Remember Login.

Locate the cookie named localhost:1 (or localhost.localdomain:1000)
and delete it.

HTH
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-08 Thread Adolfo Bello
On Sat, 2003-03-08 at 19:16, Steffen Barszus wrote:
 On Sunday 09 March 2003 00:00, Anne Wilson wrote:
 
  Webmin uses Konqueror.  It is not stored as any cookie that I can see.
 
  Anne
 
 What does that mean ? 
 You have only used konquerror for webmin and now mozilla knows you login name 
 for webmin ? Kind of strange , isn't it ?

Not in mine. Two different sets of cookies.

I just did the same with Konqueror.

Settings-Configure Konqueror-Cookies-Management.

Delete in there localhost:1 or localhost.localdomain:1
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-08 Thread Adolfo Bello
On Sat, 2003-03-08 at 14:46, Anne Wilson wrote:
 On one occasion I logged in to webmin whilst otherwise distracted - except 
 that I made a very stupid mistake.  I typed 'root', then tab, then password - 
 but webmin login doesn't recognise tabbing to the next field.  Ever since 
 then as soon as I type 'r' I am shown root and the root+password entry.  I 
 can find no way of clearing this list.
 
 Can anyone help?  It must be possible, since it's obviously a dangerous state 
 of affairs.
 
 Anne

Anne:

I just recreated your problem: I entered the userid and password in the
user id box. Even when the login was unsuccessful, Konqueror saved that
userid which shows the password.

You can disable the entire feature in Settings-Configure
Konqueror-Konqueror Browser. Set the Maximum completions value to 1.

Login a couple of times and that's it. Your useridpassword thing will
disappear.

HTH
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to mend a stupid slip?

2003-03-08 Thread Adolfo Bello
On Sat, 2003-03-08 at 19:49, Adolfo Bello wrote:

 Anne:
 
 I just recreated your problem: I entered the userid and password in the
 user id box. Even when the login was unsuccessful, Konqueror saved that
 userid which shows the password.
 
 You can disable the entire feature in Settings-Configure
 Konqueror-Konqueror Browser. Set the Maximum completions value to 1.
 
 Login a couple of times and that's it. Your useridpassword thing will
 disappear.
 
 HTH
Forgot something: after doing that you can set back the Maximum
completion to the original value.

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] OT - Not ready while 123 runs

2003-03-07 Thread Adolfo Bello
On Fri, 2003-03-07 at 03:37, Ric Tibbetts wrote:
 And just what does any of this have to do with MDK?
 I don't particularly care what will, or will not install on XP. This
 isn't the place for it.
 
 Ric
Nothing. And everything.

BTW, it was supposed to go to the OT list. A careless click did it all.

In the 90s, when OS/2 version 3 was launched and NT 3.5 was still
vaporware, I read somewhere that software companies were massively
commiting suicide by developing only for Winblows and not for OS/2. At
that time I learned about the new DOS version and Lotus 123 story.

Companies like Borland (Quattro Pro, Paradox, TurboC, TurboPascal),
WordPerfect, Lotus (123, WordPro, Organizer) and Ashton-Tate (dBase)
kept developing only for Winblows, while M$ kept hiding secrets API that
were needed for program to work in an acceptable way. And every new
version of Winblows made those program behave even weirder or slower.

That article was prophetic. Those company are gone, downsized to
molecular level or serving a niche market. Also OS/2 is gone.

History is repeating again. Companies are not developing for Linux
because it doesn't have a significant market share in the desktop arena
and instead they kept developing for Winblows.

Meanwhile M$ is doing everything it can to show people that competing
software quality is inferior. And if they can't, then they do something
to make people life harder installing the competing packages.

Could you imagine the position of Linux if there were the products I
already mentioned for this platform? Well, my guess is that right now
would be a massive move from Winblows to Linux.

It would be the end of this chicken-egg history: companies don't develop
for a platform because there are not enough customers working on it, but
customers don't adopt the platform because there are not enough
application to work with on it. Meanwhile the only winner stay healthy
in the US Northwest coast.

I would hate going back to Winblows. Right now I make most of my living
with Windows and live happily in Linux. By the end of the year that
sentence will only contains the word Linux. My clients are now open to
make the move.

Again sorry for posting a non technical subject in this list. But it
has a lot to do with Mandrake future as a significant desktop operating
system from the point of view of market share.

Moving to the OT list.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] OT - Not ready while 123 runs

2003-03-07 Thread Adolfo Bello
On Fri, 2003-03-07 at 09:18, Sridhar Dhanapalan wrote:

 Is the subject header a reference to the old Microsoft internal slogan, Windows
 is not done until Lotus 123 won't run?
Yes, it is.


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Another kde(?) oddity

2003-03-07 Thread Adolfo Bello
On Fri, 2003-03-07 at 10:12, Anne Wilson wrote:
 If, from an email, I click on 
 http://www.theregister.co.uk/content/53/29632.html
 
 Netscape opens up with 
 
 file:///home/anne/.kde/share/apps/kfmexec/tmp/9857.0.29632.html in the address 
 box, and links do not work.  I have to delete the url, then go back to the 
 email and copy and paste the correct address in.
 
 I presume that I have accidentally set something ridiculous in the kde 
 options, but what?
 
 Anne
You are in better shape than I am. Since I installed Netscape when I
click on a link nothing happens. I have to copy/paste.

And no change was made to the ~/.gnome/Gnome!
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] How to check for open ports?

2003-03-06 Thread Adolfo Bello
On Thu, 2003-03-06 at 20:52, Bill Mullen wrote:
 On Thu, 2003-03-06 at 12:45, Vox wrote:
 
I don't advocate for a MSCE-like test for computer
users...theoretical tests don't mean a thing, IMNSHO...but let's
start giving out practical tests to everybody before allowing them
to use a computer unsupervised...that'd be paradise :)
 
 There is hope that we can now someday end the (mutual) suffering!
 
 http://www.satirewire.com/features/siliconpines/acf.shtml

Excellent
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 01:13, Sevatio wrote:
 Pierre Fortin wrote:
  On Tue, 04 Mar 2003 20:35:06 -0800 Sevatio [EMAIL PROTECTED] wrote:
  
  
 OS: Mandrake 9.0
 
 I'm not sure if this is possible but I'll see if any of you guys know 
 how to do this.
 
 I have a cable modem connected to a hub.  Then two linux boxes connected
 
 to that hub.  They each have their own IP addresses.  When I transfer 
 files from one to the other, the speed is limited by the speed of my 
 internet connection (which is around 256kbps).
 
 How do I make it so that my linux boxes can transfer files at the 
 maximum LAN speed of the hub?  Or to rephrase:  how do I route the 
 packets so that they don't have to go out to the internet and then come 
 back to the other pc but instead go straight through the hub from one pc
 
 to another?
  
  
  Are the IP addresses in the same subnet?  What are the IP addresses _and_
  netmasks on each* host?
  
  * asymmetric routing is a possibility if all hosts don't agree on their
  view of the subnet.  
   
  
 
 Yes, same subnets (255.255.255.248) for both pcs.

Can you traceroute one box from the other and post the output?
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 08:55, Pierre Fortin wrote:

 OK... let's try again...  for a start, can you give the output of route
 -n for each host?
 
 Somehow, I've always believed what a system tells me over what a user
 tells me...  :)
I back this one, at least regarding to system config :-)
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 08:55, Pierre Fortin wrote:
 OK... let's try again...  for a start, can you give the output of route
 -n for each host?
 

Or the output of ifconfig eth0 for each box.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] 8.2 - 9.0, msec ran and now cups unable to bindsocket

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 09:48, David Whiting wrote:

 I get this message in /var/log/messages though.  Any chance it is
 related?
 
 [alert] httpd: Could not determine the server's fully qualified domain
 name, using 127.0.0.1 for ServerName
 
 If not, I'll worry about this one another day.

It shows a DNS problem that might be related to your printing problem. 

It is not resolving the server name and it defaulting it to IP
127.0.0.1. Is the printer a local or network printer? Is it attached to
the server whose name can not be resolved?
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 10:02, Pierre Fortin wrote:
 On 05 Mar 2003 09:50:02 -0400 Adolfo Bello [EMAIL PROTECTED] wrote:
 
  On Wed, 2003-03-05 at 08:55, Pierre Fortin wrote:
   OK... let's try again...  for a start, can you give the output of
   route-n for each host?
   
  
  Or the output of ifconfig eth0 for each box.
   ^^
 I'm looking forward to learning how you discover a _routing_ problem from
 the output of ifconfig...  :
Answer: are the two boxes in the same subnet?
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 10:02, Pierre Fortin wrote:
 On 05 Mar 2003 09:50:02 -0400 Adolfo Bello [EMAIL PROTECTED] wrote:
 
  On Wed, 2003-03-05 at 08:55, Pierre Fortin wrote:
   OK... let's try again...  for a start, can you give the output of
   route-n for each host?
   
  
  Or the output of ifconfig eth0 for each box.
   ^^
 I'm looking forward to learning how you discover a _routing_ problem from
 the output of ifconfig...  :
In theory, if the two boxes are the same subnet they communicate
directly and don't even need a gateway to talk to each other.

That's the reason why I asked for the output of ifconfig. An untrabasic
routing problem.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] 8.2 - 9.0, msec ran and now cups unable to bindsocket

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 09:27, Anne Wilson wrote:
 On Wednesday 05 Mar 2003 3:08 pm, David Whiting wrote:
  On Wed, Mar 05, 2003 at 11:13:19AM +, Anne Wilson wrote:
   On Wednesday 05 Mar 2003 1:48 pm, David Whiting wrote:
I get this message in /var/log/messages though.  Any chance it is
related?
   
[alert] httpd: Could not determine the server's fully qualified domain
name, using 127.0.0.1 for ServerName
  
   I don't know whether it's related or not, but have you checked that  you
   haven't a corruption in /etc/sysconfig/network ?
 
  It looks okay to me (i.e. no garbage characters, but it could be
  misconfigured without me having a clue)
 
  NETWORKING=yes
  FORWARD_IPV4=false
  DHCP_HOSTNAME=ganymede
  HOSTNAME=ganymede
  DOMAINNAME=ammp.net
  GATEWAY=192.168.57.1
 
 
  I'm pretty sure that this has not changed for a long time though so I
  do not think it should be related to my cups problem.
 
 Hmm - I don't have the dhcp line, so I can't comment on that, but I have the 
 FQDN, so I would have expected HOSTNAME=ganymede.ammp.net?
 
 It's worth a try, anyway.
 
 Anne
I also will try DHCP_HOSTNAME=ganymedy.ammp.net
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 11:48, Pierre Fortin wrote:

 Here's a concrete example to illustrate my point -- NO changes were made
 which would be visible to ifconfig output...  feel free to try it
 yourself...
 
 Here, routing is direct between the hosts...
 # route -n
 Kernel IP routing table
 Destination Gateway Genmask Flags Metric RefUse
 Iface
 192.168.1.0 0.0.0.0 255.255.255.0   U 0  00
 eth0
 127.0.0.0   0.0.0.0 255.0.0.0   U 0  00 lo
 0.0.0.0 192.168.1.1 0.0.0.0 UG0  00
 eth0
 # traceroute bones
 traceroute to bones.pfortin.com (192.168.1.100), 30 hops max, 38 byte
 packets
  1  www (192.168.1.100)  0.873 ms  0.315 ms  0.202 ms
 
 Here, the routing is through my gateway... sound like the original
 issue...?
 # route del -net 192.168.1.0 netmask 255.255.255.0
 # route -n
 Kernel IP routing table
 Destination Gateway Genmask Flags Metric RefUse
 Iface
 127.0.0.0   0.0.0.0 255.0.0.0   U 0  00 lo
 0.0.0.0 192.168.1.1 0.0.0.0 UG0  00
 eth0
 
 # traceroute bones
 traceroute to bones.pfortin.com (192.168.1.100), 30 hops max, 38 byte
 packets
  1  r41 (192.168.1.1)  0.628 ms  3.133 ms  0.212 ms  --
  2  linux (192.168.1.100)  0.340 ms  0.603 ms  0.247 ms
 
 Working backwards without benefit of the above, can traceroute positively
 confirm the missing entry in route...?

I would say that it can: one hop implies a direct connection, two or
more hops implies the connection is going through the gateway.

However I get your point. But then again you have to manually delete the
destination subnet you belong to from the routing table. There are two
things that I asked to help this guy: the output of the traceroute
command from one box to the other (in your first example there is one
hop, then it is a direct connection). If for some reason there is more
than one hop, then either the boxes are in different subnets or you
manually delete the subnet you belong to, which I assumed that nobody
might.

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] No Power Management

2003-03-05 Thread Adolfo Bello
I upgraded to kernel-2.4.19-24 (this time from MandrakeClub) and turned
on all ACPI settings but DEBUG.

I hoped I could suspend or hibernate my laptop and mostly, spend more
time working on battery (only like 30 minutes while in XP using ACPI
more than 90 minutes).

For some reason that I have no idea, the laptop power management applet
doesn't work and it gives the message:
Your computer seems to have a partial ACPI installation. Probably ACPI
was enabled, but some of the sub-options were not enabled - you need to
enable at least 'AC Adaptor' and 'Control Method Battery' and rebuild
your kernel

However, as I already said, I enabled about every ACPI parameter before
compiling. The relevant output of my .config is:
linux cat .config | grep -i ACPI
# CONFIG_HOTPLUG_PCI_ACPI is not set
# ACPI Support
CONFIG_ACPI=y
# CONFIG_ACPI_HT_ONLY is not set
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_BUS=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SYSTEM=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_TOSHIBA=y
# CONFIG_ACPI_DEBUG is not set

Should I try recompiling setting the options as modules?

Is something that I am missing? (which I am sure it is but I don't know
what)

I don't care about recompiling the kernel. It has become my personal
hobby :-)
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 13:45, Pierre Fortin wrote:

 But the route table might have a host route added... you're right that
 no-one would deliberately delete their subnet route; but adding a host
 route would give the same net result...   I used the phrase positively
 confirm -- the answer is no in this case if a host route is added...
 
 *My* point was that routing problems per se (not firewall related) are
 best viewed with route than traceroute and/or ifconfig...
I agree totally with you about this. But you also wanted to learn how to
use ifconfig for a routing problem and I answered you :-)
 
 Anyway...  the original poster is not forthcoming with the info... can we
 assume that somewhere in the forest there was the sound of Ooopsss...
 Duh! that we didn't hear?  :^)
grin

I should say that I never expected the kind of problem that you pointed
out: somebody deleting his/her own subnet from the routing table.
Definitely, I learned something today.

Saludos

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] OK, what am I doing wrong when compiling a newkernel?!?

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 17:40, Adrian Golumbovici wrote: 
 I do:
 make menuconfig
 make dep
 make clean
 make bzlilo
 make modules
 make modules_install
 lilo
What I have done and work just fine is:

make clean
make mrproper
(optionally, to start from an old .config, cp /an/old/.config .config)
make menuconfig
make dep
make bzImage
su
make modules
make modules_install
(now on /boot)
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-VERSION
cp /usr/src/linux/System.map /boot/System.map-VERSION
mkinitrd initrd-VERSION.img VERSION
vi lilo
lilo

You are missing 'make mrproper' which I read somewhere that can get you
into troubles.

HTH


-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Routing Question

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 13:45, Pierre Fortin wrote:

 But the route table might have a host route added... you're right that
 no-one would deliberately delete their subnet route; but adding a host
 route would give the same net result...   I used the phrase positively
 confirm -- the answer is no in this case if a host route is added...
 
 *My* point was that routing problems per se (not firewall related) are
 best viewed with route than traceroute and/or ifconfig...
I agree totally with you about this. But you also wanted to learn how to
use ifconfig for a routing problem and I answered you :-)
 
 Anyway...  the original poster is not forthcoming with the info... can we
 assume that somewhere in the forest there was the sound of Ooopsss...
 Duh! that we didn't hear?  :^)
grin

I should say that I never expected the kind of problem that you pointed
out: somebody deleting his/her own subnet from the routing table.
Definitely, I learned something today.

Saludos

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] did anyone succeed in compiling the 2.5.64 kernel?

2003-03-05 Thread Adolfo Bello
On Wed, 2003-03-05 at 21:35, Adrian Golumbovici wrote:
 thx. but btw, what is with the su -c?

Just one command as root.

man su
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Find /dev -type f command hangs

2003-03-04 Thread Adolfo Bello
On Tue, 2003-03-04 at 15:36, Albert E. Whale, CISSP wrote:
 Does anyone have any idea why this command will hang?
 
 find /dev -type f
 
 I would like to find/correct this issue.  
 
 TIA.

Not in my box. It works Ok.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] Slipstreaming 9.0 Updates

2003-02-19 Thread Adolfo Bello
On Wed, 2003-02-19 at 20:41, Greg Meyer wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Does anybody know how I would create a slipstreamed set of installation disks 
 for 9.0 that included all the security updates.  Is it as easy as copying the 
 new packages to the cd images and removing the older version? or is there 
 some kind of remastering process that must happen?
 - -- 
 Greg

I was about to ask if there is any way to create a new set of Mandrake
CDs with a kernel customized for my PC. May I add my question to yours?
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Slipstreaming 9.0 Updates

2003-02-19 Thread Adolfo Bello
On Wed, 2003-02-19 at 22:13, Greg Meyer wrote:

 I certainly do not mind, but the answers might be technically different.  If 
 your custom kernel is packaged as an rpm, I think it is the same question.  
 If it consists of just the compiled vmlinuz and modules, it might be more 
 difficult because the installer installs everything with rpm.  Let's see what 
 others say though.
 - -- 
 Greg

Thanks Greg. It doesn't look like a piece of cake to me.

-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Kernel Upgrade to 2.4.19-24

2003-02-09 Thread Adolfo Bello
On Sun, 2003-02-09 at 09:52, Simon Ree wrote:

 
 What video card are you running? What kernel are you trying to boot? Is
 dm running? What does startx say when it presumibly fails?  What
 runlevel is being selected on boot?  
Everything is working fine now.

Carelessly, I disabled frame buffer support in make menuconfig. After
restoring it back and recompiling, I am back in business.

Thanks for your response.
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] Kernel Upgrade to 2.4.19-24

2003-02-07 Thread Adolfo Bello
I have tried twice to update the kernel from 2.4.19-16 to 2.4.20 the first
time and to 2.4.19-24 the second one.

The only problem that I am facing is that I can not get X to start. Now
(after enabling ACPI) doing shutdown -h now my machine power-off (Femme, I
know somebody said that it doesn't have anything to do with powering off,
but in my case it does), my sound card is recognized (this problem has been
a major PITA with Mandrake and this Toshiba laptop) and every service is
starting fine but the graphical environment.

Now I am absolutely clueless on what to do or where to go and will consider
installing Mandrake again just a last resource(several installs in last 2
months in the process of learning but now I have a fairly decent setup that
I don't want lose).

I started with original /boot/config and only added support to ACPI and
dropped a lot of modules, mainly ethernet cards that I don't use or need,
old disks support, radio amateur support, SMP and picked Pentium
III/Coopermine/Celeron as processor.

Upgrade was made using gcc 3.2 (after doing the upgrade I read advises
against it).

Hints, clues, tips, advises or RTFM links will be truly appreciated.

Adolfo



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] mysql install problem

2003-01-26 Thread Adolfo Bello
On Sun, 2003-01-26 at 03:02, Benjamin Pflugmann wrote:

 PS: I completely agree regarding my.cnf. For 08/15 usage there is no
 need for it.
Gosh, something new every day! What does 08/15 usage mean?



__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] mysql install problem

2003-01-25 Thread Adolfo Bello
On Sat, 2003-01-25 at 14:30, Vincent Danen wrote:
 On Fri Jan 24, 2003 at 11:15:03PM -0600, jerry wrote:

 You don't need a my.cnf.  I don't use one (never have) and have never
 had a problem because I don't have one.  Mind you, MySQL may not be
 optimized without it, but it isn't necessary for it to run.
This is true as long as you don't need transactions, rollbacks, commits,
referencial integrity (in version 4.0.9) and so on.

Without /etc/my.cnf you are restricted to MYISAM and BDB tables.

Regards,
-- 
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] mysql install problem

2003-01-25 Thread Adolfo Bello
On Sat, 2003-01-25 at 18:52, Vincent Danen wrote:

 True, but last I checked, we haven't touched MySQL 4.x yet so it's a
 moot point until we move to 4.x (ie. cooker has 3.23.54a which should
 be updated to .55 shortly).
 
 Actually, speaking of which, has anyone used 4.x at all?  Any initial
 reactions to it compared to 3.x?

I really like 4.0.9-gamma. I upgraded from 3.23.54 when referencial
integrity was totally supported. UPDATE-DELETE-RESTRICT-CASCADE are
working just fine.

I recommend you to take a detailed look at this version. Stability
reports sound good.
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] mysql install problem

2003-01-23 Thread Adolfo Bello
On Thu, 2003-01-23 at 21:41, jerry wrote:
 I installed mysql from the 9.0 CD's
 everything was ok during install.
 
 did a service mysql start
 and get the following error message:
 
 030123 19:18:50  mysqld started
 030123 19:18:51  Can't start server : Bind on unix socket: Permission denied
 030123 19:18:51  Do you already have another mysqld server running on socket: 
 /var/lib/mysql/mysql.sock ?
 030123 19:18:51  Aborting
 030123 19:18:51  /usr/sbin/mysqld: Shutdown Complete
 030123 19:18:51  mysqld ended
 
 I do not have a mysql.sock in /var/lib/mysql
 
 anyone had this same problem?
I have also had some weird problems with mysql. One of those problem was
that after installing mysql without any apparent error, there was mo
/var/lib/mysql. Check this one.

Also, you may get into problems if you have not created /etc/my.cnf.

What I now do and always works it installing from the RPMs obtained at
mysql.com. int the following order.

rmp -i MySQL-client-x.rpm
rpm -i MySQL-4.0.9-.rpm

It used to work installing both RPM at the same time, but for some
reason it doesn't work this way any more.
__   
   / \\   @   __ __@   Adolfo Bello [EMAIL PROTECTED]
  /  //  // /\   / \\   // \  //   Bello Ingenieria S.A, ICQ: 65910258
 /  \\  // / \\ /  //  //  / //cel: +58 416 609-6213
/___// // / _/ \__\\ //__/ // fax: +58 212 952-6797
www.bisapi.com   //pager: www.tun-tun.com (609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] MySQL control centre query

2003-01-19 Thread Adolfo Bello
On Sun, 2003-01-19 at 06:53, Patricia Fraser wrote:
 Hi folks,
 
 If anyone's using MySQL and testing the control center (0.8.7), maybe you 
 could give me an idea what's going wrong here?
 
 When I run mysqlcc, it returns:
 
 relocation error: mysqlcc: undefined symbol: _ZTI15QCheckTableItem
 
 I have libmysqlcc-0.8.7-2mdk and mysqlcc-0.8.7-2mdk installed, and I'm using 
 MySQL-3.23.47-5.2mdk, MySQL-client-3.23.47-5.2mdk, and 
 libmysql10-3.23.47-5.2mdk. MySQL starts fine, and the client works fine; I'm 
 wondering if I have a dependency issue or a version issue?
MySQLCC requires glibc 2.3. Did you upgrade to this version?
Mandrake 9 comes with version 2.2.5.

HTH
__ 
   / \\  @  ____@   Adolfo Bello [EMAIL PROTECTED]
  /  // // /\  / \\  // \  //   Bello Ingenieria S.A. / ICQ: 65910258 
 /  \\ // / \\/  // //  / //cel: +58 416 609-6213
/___ / _/\__\\//__/ // fax: +58 212 952-6797
  www.bisapi.com  //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Evolution crashes with targa attachments

2003-01-19 Thread Adolfo Bello
On Sun, 2003-01-19 at 03:45, Brian Parish wrote:

 I had my customer forward a copy to me (using a Hotmail account) and
 sure enough, it crashes mine too.
Have you setup your Hotmail account in Evolution? If so, could you
please post ho to set it up?

Thanks in advance.

__ 
   / \\  @  ____@   Adolfo Bello [EMAIL PROTECTED]
  /  // // /\  / \\  // \  //   Bello Ingenieria S.A. / ICQ: 65910258 
 /  \\ // / \\/  // //  / //cel: +58 416 609-6213
/___ / _/\__\\//__/ // fax: +58 212 952-6797
  www.bisapi.com  //pager: www.tun-tun.com (# 609-6213)



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Mixing files and messages in IMAP folders

2003-01-09 Thread Adolfo Bello
 I have mixed files (ppt, doc and others) and mail messages in the IMAP 
 folders that I have on my Linux box.
 I did it by means of a windows client using Outlook.
 
 Now, Outlook is still able to deal with them, clearly understanding when 
 something is a file and when something is a mail (with, possibly, 
 attachments). But, it seems, Outlook is the only one able to do this.
 
 Does anybody know if there is any Linux mailer capable of doing the same?

Have you tried Evolution 1.2?

Adolfo



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [expert] dhcp incomplete on mandrake??

2003-01-02 Thread Adolfo Bello
I have no problem. I am using XP/Pro in a computer with 2 ethernet
cards, one hoooked to an ADSL router and the other one to a home lan,
using Internet Connection Sharing. My Linux machine connect to the home
lan, DHCP is served by the ¨minimalist DHCP server on XP. The Linux
machine DNS server points to the XP home-lan-card, which is at the same
time its default gateway.

During Mandrake 9 installation, I set the name of the machine as
pc-mdk-9.mshome.net because the NDS proxy built into XP serves that
domain.

Take a look at your DNS settings in /etc/resolv.conf and make sure that
all your machines belong to the same domain.

Adolfo

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED]] On Behalf Of Matthew 
 O. Persico
 Sent: Wednesday, January 01, 2003 6:11 PM
 To: [EMAIL PROTECTED]
 Subject: [expert] dhcp incomplete on mandrake??
 
 
 I am using DHCP on my home network. The DHCP server is my 
 Linksys wireless router. I have XPPro (ethernet), XPHome 
 (wireless ethernet) and Mandrake 9.0 (ethernet) on the boxes.
 
 DHCP assigns addresses to all boxes.
 I can ping all boxes by ip addresses from all boxes.
 I can ping all boxes by name from the XP boxes.
 When I ping by name on Mandrake, I get unknown host.
 I do not have any DNS servers running or any hosts files configured.
 
 Why does the Gates-ware figure out the names, but Linux does 
 not? What other information can I provide to be helpful?
 --
 Matthew
 
 
 
 



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] No sound using i810_audio

2002-12-21 Thread Adolfo Bello
I'm about to give up, not without posting this message to the list,
showing all what I've done trying to get the soung to work.

Since I installed Mandrake 9, every time the machine is booted I get the
following message:

/lib/modules/2.4.19-16mdk/kernel/drivers/sound/i810_audio.o.gz:
init_module: No such device
Hint: insmod errors can be caused by incorrect module parameters,
including invalid IO or IRQ parameters.

After following directions from many sites, I downloaded and installed
the NVIDIA nvaudio driver, with:

rpm --rebuild NVIDIA_nforce-1.0-0233.src.rpm
perl -pi -e 's/i810_audio/nvaudio/g' /etc/modules.conf

Now I get the following message:

Warning: loading
/lib/modules/2.4.19-16mdk/kernel/drivers/sound/nvaudio.o will taint the
kernel: no license
  See http://www.tux.org/lkml/#export-tainted for information about
tainted modules
/lib/modules/2.4.19-16mdk/kernel/drivers/sound/nvaudio.o: init_module:
No such device
Hint: insmod errors can be caused by incorrect module parameters,
including invalid IO or IRQ parameters.
   You may find more information in syslog or the output from dmesg
modprobe: insmod
/lib/modules/2.4.19-16mdk/kernel/drivers/sound/nvaudio.o failed
modprobe: insmod sound-slot-0 failed

The output from lspcidrake reports 2 entries for i810:

i810-tco: Intel Corporation|82820 815e (Camino 2) Chipset ISA Bridge
(ICH2)
i810_audio: Intel Corporation|ICH2 810 Chipset AC'97 Audio Controller

From dmesg I get the following two lines:

i810: Intel ICH2 found at IO 0x1040 and 0x1400, IRQ 0
nvaudio: unable to allocate irq 0

From these two lines I guess the problem is an IRQ conflict, but I have
no idea on how to solve it.

No sound or soundcore is reported by lsmod.

Am I missing something?

Any help will be truly appreciated.

Adolfo



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



RE: [expert] DNS trouble on MDK 9.0

2002-12-18 Thread Adolfo Bello
I will assume that the domain you have set in your DNS is network.net

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED]] On Behalf Of Jim C
 Sent: Wednesday, December 18, 2002 3:34 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [expert] DNS trouble on MDK 9.0
 
 
 Grr!!
 It just started working again.  Friggin thing is haunted or 
 something. Hmmm... Either that or perhaps I was just tired lastnight.
 
 I did notice that this syntax for clients works:
 
  hostname1IN AXXX.XXX.X.252
  hostname2   IN AXXX.XXX.X.251
  hostname3IN AXXX.XXX.X.239

As the names are not ending with a period, these 3 lines are equivalents
to
hostname1.network.net.IN AXXX.XXX.X.252
hostname2.network.net.   IN AXXX.XXX.X.251
hostname3.network.net.IN AXXX.XXX.X.239


 while this does not:
 
  hostname1.IN AXXX.XXX.X.252
  hostname2.   IN AXXX.XXX.X.251
  hostname3.IN AXXX.XXX.X.239

In these lines, because the names are ending with a period, you are
telling that the full qualified name are just what typed, i.e,
hostname1, hostname2 and hostname3.

 
 I also noticed that if you use this:
 
  hostname1.network.netIN AXXX.XXX.X.252
  hostname2.network.net   IN AXXX.XXX.X.251
  hostname3.network.netIN AXXX.XXX.X.239

Again, as in these lines the names are not are not ending with a period,
these are equivalents to:
hostname1.network.net.network.net.IN AXXX.XXX.X.252
hostname2.network.net.network.net.   IN AXXX.XXX.X.251
hostname3.network.net.network.net.IN AXXX.XXX.X.239
 
 You can't then use hostname1 as an alias for hostname1.network.net

In other words, if you don't place a period after the name, the domain
name is implicitly placed after the name. If you place a period after
the name, that's going to be the real name, without the domain name
being implicitly attached.

Finally, to set an alias, use a CNAME register.

Hope these few lines will help you.

Adolfo



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com