Unknown message when starting Icedove

2007-02-05 Thread Niels Rasmussen

Hi list,

I'm running debian testing etch.

I have this line in my.xsession-errors:

DOUBLE-CLICK: 400 -- -1 THRESHOLD: 8 -- -1 Warning: unrecognized command 
line flag -P


It appears everytime I start Icedove.

What does this mean ??


--
/Niels
Registred Linux user #133791
Get counted at http://counter.li.org


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: unknown message

1999-06-22 Thread Mark Wagnon
scratch wrote:
 
 IIRC, this message probably means that you have recently updated to a 2.2
 kernel. In this kernel, ifconfig sets it own routes, so there is no more
 need for a manual 'route add'. Check your init.d scripts, especially
 '/etc/init.d/network'.
 
 OTOH, I could be completely wrong here, and this message seems like the
 thing i described, but really isn't and you *are* trying to set a wrong
 route.

I get this message too. Last night I was searching the archives on dmesg
and this error message came up several times. From some of the postings,
it would seem that you're right. There was a fix--commenting out some
line or another. I forgot what exactly and I haven't gone back to take
another look. A search on SIOCADDRT would turn up those fixes though.

hth
-- 
 __   _
Mark Wagnon Debian GNU/ -o) / /  (_)__  __   __
Chula Vista, CA /\\/ /__/ / _ \/ // /\ \/ /   
[EMAIL PROTECTED]  _\_v/_/_//_/\_,_/ /_/\_\
   http://www.debian.org


Re: unknown message

1999-06-22 Thread P. van Tilburg

Hi

scratch wrote:

 IIRC, this message probably means that you have recently updated to a 2.2
 kernel. In this kernel, ifconfig sets it own routes, so there is no more
 need for a manual 'route add'. Check your init.d scripts, especially
 '/etc/init.d/network'. 

 OTOH, I could be completely wrong here, and this message seems like the
 thing i described, but really isn't and you *are* trying to set a wrong
 route.   
   

I get this message too. Last night I was searching the archives on dmesg
and this error message came up several times. From some of the postings,
it would seem that you're right. There was a fix--commenting out some
line or another. I forgot what exactly and I haven't gone back to take
another look. A search on SIOCADDRT would turn up those fixes though.

I think you switched to Linux 2.2.x here.
With Linux 2.2 it's is no longer necessary to add the whole network to the
routing table manually/by script, it will be done automatically by
ifconfig... you can change the init script (/etc/init.d/network) to remove
the rather harmless error, I think it looks like this now:

-
source(/0):~$ cat /etc/init.d/network 
#! /bin/sh
ifconfig lo 127.0.0.1
route add -net 127.0.0.0   /* It tries to add the network, but that already
  has been done in the previous line */
-

the route add -net line is superfluous, you can comment it with # or
delete the whole line ;)

Watch it! This only counts for 2.2 kernels!!

Gtnx

Paul

~~  
Student @  |  Using the Power of Linux...
University of Technology   |  ICQ: 8678828
Eindhoven, The Netherlands |  email: [EMAIL PROTECTED]


- End forwarded message -


unknown message sloved

1999-06-22 Thread Harald Kretzschmar
Quoting P. van Tilburg [EMAIL PROTECTED]:
 
 -
 source(/0):~$ cat /etc/init.d/network 
 #! /bin/sh
 ifconfig lo 127.0.0.1
 route add -net 127.0.0.0   /* It tries to add the network, but that already
   has been done in the previous line */
 -
 
 the route add -net line is superfluous, you can comment it with # or
 delete the whole line ;)
 
 Watch it! This only counts for 2.2 kernels!!
 
 Gtnx
 
 Paul
 
 ~~
   
 Student @|  Using the Power of Linux...
 University of Technology   |  ICQ: 8678828
 Eindhoven, The Netherlands   |  email: [EMAIL PROTECTED]
 

Thanks to all, problem solved :)

bye Harald
-- 
E-Mail: [EMAIL PROTECTED]
[Debian-Slink/2.1 (i686)]


unknown message

1999-06-21 Thread Harald Kretzschmar
Hi,

during boot process I get the following message

  Checking all file systems...
  Parallelizing fsck version 1.14 (9-Jan-1999)
  Mounting local file systems...
  not mounted anything
  SIOCADDRT: Invalid argument
  ^

What does it mean?

bye Harald
-- 
E-Mail: [EMAIL PROTECTED]
[Debian-Slink/2.1 (i686)]


Re: unknown message

1999-06-21 Thread Sebastian Canagaratna
Hi:
  As far as I know that is a problem with how your network card
  id configured. The route or gateway has not been properly
  defined, so that addroute is having problems.
Read the HOWTO about networking about how to configure the
network and test it.

Hope this helps

Sebastian Canagaratna

  
 Hi,
 
 during boot process I get the following message
 
   Checking all file systems...
   Parallelizing fsck version 1.14 (9-Jan-1999)
   Mounting local file systems...
   not mounted anything
   SIOCADDRT: Invalid argument
   ^
 
 What does it mean?
 
 bye Harald
 -- 
 E-Mail: [EMAIL PROTECTED]
 [Debian-Slink/2.1 (i686)]
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 
 


Re: unknown message

1999-06-21 Thread Pollywog

On 21-Jun-99 Sebastian Canagaratna wrote:
 Hi:
   As far as I know that is a problem with how your network card
   id configured. The route or gateway has not been properly
   defined, so that addroute is having problems.
 Read the HOWTO about networking about how to configure the
 network and test it.

I get similar messages in my log, but I *am* able to connect, so I don't pay
too much attention to them:

Jun 21 20:04:02 lilypad pppd[12290]: Exit.
Jun 21 20:04:02 lilypad diald[121]: SIOCDELRT: No such process 
Jun 21 20:04:02 lilypad diald[121]: SIOCADDRT: File exists 
Jun 21 20:04:02 lilypad diald[121]: SIOCADDRT: File exists 
Jun 21 20:04:02 lilypad diald[121]: Nonzero exit status (7) on command
'/sbin/route add default metric 1  netmask 0.0.0.0 dev sl0'
Jun 21 20:04:03 lilypad diald[121]: Delaying 3 seconds before clear to dial.

--
Andrew


Re: unknown message

1999-06-21 Thread scratch

IIRC, this message probably means that you have recently updated to a 2.2
kernel. In this kernel, ifconfig sets it own routes, so there is no more
need for a manual 'route add'. Check your init.d scripts, especially
'/etc/init.d/network'.

OTOH, I could be completely wrong here, and this message seems like the
thing i described, but really isn't and you *are* trying to set a wrong
route.

--Nico

 On Mon, 21 Jun 1999, Sebastian Canagaratna
wrote:

 Hi:
   As far as I know that is a problem with how your network card
   id configured. The route or gateway has not been properly
   defined, so that addroute is having problems.
 Read the HOWTO about networking about how to configure the
 network and test it.
 
 Hope this helps
 
 Sebastian Canagaratna
 
   
  Hi,
  
  during boot process I get the following message
  
Checking all file systems...
Parallelizing fsck version 1.14 (9-Jan-1999)
Mounting local file systems...
not mounted anything
SIOCADDRT: Invalid argument
^
  
  What does it mean?
  
  bye Harald
  -- 
  E-Mail: [EMAIL PROTECTED]
  [Debian-Slink/2.1 (i686)]
  
  
  -- 
  Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
  
  
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 

:: Nico Galoppo ::  Linux - Free power for the masses  :  ::  :.
:: ::
::  scratch at ace.ulyssis.student.kuleuven.ac.be  ::
 : http://hq.narfum.org/~scratch  ::
   .   .::