Re: Wrong behaviour of x:panelTabbedPane

2005-01-06 Thread Alessandro Polverini
Hello Sylvain, and thanks very much for your reply.

On Wed, 2005-01-05 at 19:07 -0400, Sylvain Vieujot wrote:
 I think this is the same as the bug we had for several components
 (using the uiComponent.getValue() instead of the
 uiComponent.getSubmittedValue() ).
 
 As for the x:inputDate, it should be solved in version that should be
 released in a few days.

Ok, I'll wait the new release and test again.

 For the checkbox, I just committed a fix that I hope will work.

I compiled from cvs and the checkbox works fine now! Thanks!

 Looking at the HtmlCheckBoxRendererBase, I think we have a similar
 issue for renderCheckboxList (HtmlCheckBoxRendererBase, line 139).
 If somebody can check this please.

Please explain me which test I have to do and I'll be glad to do them.
In the meantime I can say that also the tag x:selectOneRadio has the
problem to forget current values as checkbox had.

Thanks,
Alex




Wrong behaviour of x:panelTabbedPane

2005-01-05 Thread Alessandro Polverini
Hello,
I'm reposting this to -dev because I got no feedback at all on -user.
I just want someone to confirm the problem so that I can open a bug report
on Jira if it's correct to do so.

I'm experimenting a little with tab panels but I've some problems and
I can't understand if I'm doing something wrong or the implementation
of tab panels is buggy.
The only values saved between tab switches are the ones inside
inputTexts, the other components (in this example a checkbox and a
date).

To test the wrong behaviour is simple: check the checkBox and select a
date, then switch to tab2, and then on tab1 again: everything is reset
to default.

Also, it can be noted the bug of the popup calendar: the popup opened is
wrong if the year field is empty, but I've opened a bug report for that
at http://issues.apache.org/jira/browse/MYFACES-73 .

This is the JSP code I'm using:

[EMAIL PROTECTED] contentType=text/html%
[EMAIL PROTECTED] pageEncoding=UTF-8%
%@ taglib uri=http://java.sun.com/jsf/html; prefix=h %
%@ taglib uri=http://java.sun.com/jsf/core; prefix=f %
%@ taglib uri=http://myfaces.apache.org/extensions; prefix=x%
html
  body

f:view
  x:panelTabbedPane bgcolor=#CC 

x:panelTab id=tab1 label=Tab1 
  h:outputLabel for=bool1 value=Bool1/
  h:selectBooleanCheckbox id=bool1 value=#{myMap.bool1} /
  h:outputText value=Date1/
  x:inputDate id=date1 value=#{myMap.date1}
popupCalendar=true/
  h:message for=date1/
/x:panelTab

x:panelTab id=tab2 label=Tab2 
  h:outputText value=Date2/
  x:inputDate id=date2 value=#{myMap.date2}
popupCalendar=true/
  h:message for=date2/
/x:panelTab

  /x:panelTabbedPane
/f:view

  /body
/html

and this is the managed bean declaration:
  managed-bean
managed-bean-namemyMap/managed-bean-name
managed-bean-classjava.utils.HashMap/managed-bean-class
managed-bean-scopesession/managed-bean-scope
  /managed-bean

Thanks for any help,
Alex




Bug in x:panelTabbedPane ?

2005-01-04 Thread Alessandro Polverini
Hello,
I'm experimenting a little with tab panels but I've some problems and
since I'm a n00b I can't understand if I'm doing something wrong or the
implementation of tab panels is buggy.
The only values saved between tab switches are the ones inside
inputTexts, the other components (in this example a checkbox and a
date).

This is the JSP code I'm using:

[EMAIL PROTECTED] contentType=text/html%
[EMAIL PROTECTED] pageEncoding=UTF-8%
%@ taglib uri=http://java.sun.com/jsf/html; prefix=h %
%@ taglib uri=http://java.sun.com/jsf/core; prefix=f %
%@ taglib uri=http://myfaces.apache.org/extensions; prefix=x%
html
  body

f:view
  x:panelTabbedPane bgcolor=#CC 

x:panelTab id=tab1 label=Tab1 
  h:outputLabel for=bool1 value=Bool1/
  h:selectBooleanCheckbox id=bool1 value=#{myMap.bool1} /
  h:outputText value=Date1/
  x:inputDate id=date1 value=#{myMap.date1}
popupCalendar=true/
  h:message for=date1/
/x:panelTab

x:panelTab id=tab2 label=Tab2 
  h:outputText value=Date2/
  x:inputDate id=date2 value=#{myMap.date2}
popupCalendar=true/
  h:message for=date2/
/x:panelTab

  /x:panelTabbedPane
/f:view

  /body
/html

and this is the managed bean declaration:
  managed-bean
managed-bean-namemyMap/managed-bean-name
managed-bean-classjava.utils.HashMap/managed-bean-class
managed-bean-scopesession/managed-bean-scope
  /managed-bean

To test the wrong behaviour is simple: check the checkBox and select a
date, then switch to tab2, and then on tab1 again: everything is reset
to default.

Also, it can be noted the bug of the popup calendar: the popup opened is
wrong if the year field is empty, but I've opened a bug report for that
at http://issues.apache.org/jira/browse/MYFACES-73 .

Thanks for any help,
Alex




Re: Mailing list archive?

2004-12-30 Thread Alessandro Polverini
On Thu, 2004-12-30 at 01:49 +0100, [EMAIL PROTECTED] wrote:
 
 I would like to hear about your first experience with MyFaces and
 different implementations like suns reference implementation or other
 (comercials).

Actually I'm using only MyFaces and I also never tried the reference
implementation.

Alex



Re: Problems while trying to share myfaces jars among various web applications

2004-12-30 Thread Alessandro Polverini
On Thu, 2004-12-30 at 08:27 -0600, Heath Borders wrote: 
 The problem is that JSF needs access to the jars in a uniform spot to
 configure the runtime.  The spec says that it should act this way.

I've read and understood the documents Martin Cooper in another mail
pointed me at (thanks), anyway, this is what I read on the JSF specs,
paragraph 10.2.5 and 10.2.6:

These classes and resources comprise the implementation of the JSF APIs
that is provided by a JSF implementor. Typically, such classes will be
provided in the form of one or more JAR files, which can be either
installed with the container s shared class facility, or included in
the /WEB-INF/lib directory of a web application archive.

So, if I'm not mistaken, the specs explicitly says that those jar can be
shared among all applications.

That is of course also a golden rule of software distribution: imagine
if I have N web applications using JSF and a security issue comes out:
in a shared context I just replace the updated jars while in the other
case I must manually check all the webapps using them and substitute
them one by one. Slow and error prone.

 Probably the best way around this is to see if your servlet container
 supports aliasing the jars.  I'm running websphere, and i think
 there's a way that I could keep my jars in a common directory, but
 have my apps all reference them as though they were in their
 WEB-INF/lilb directories.

That's a nice feature from websphere but I'm stuck with tomcat 5.0.28
right now: maybe it has something equivalent? I did a quick search but
without any success.

Best regards,
Alex




Bug#285337: apache2-mpm-worker: Apache is unable to serve a file of 4Gb size

2004-12-12 Thread Alessandro Polverini
Package: apache2-mpm-worker
Version: 2.0.52-3
Severity: normal

Hello,
I would like to set up a system that creates DVD images and enables to
download them via web.

I'm unable to make it serve a 4Gb file, the error I got on the log is:
(75)Value too large for defined data type: access to /Backup1.iso failed

Is there any workaround?

Thanks,
Alex

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages apache2-mpm-worker depends on:
ii  apache2-common  2.0.52-3 Next generation, scalable, extenda
ii  libapr0 2.0.52-3 The Apache Portable Runtime
ii  libc6   2.3.2.ds1-18 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-17Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.8-1 XML parsing C library - runtime li
ii  libldap22.1.30-3 OpenLDAP libraries
ii  libssl0.9.7 0.9.7e-2 SSL shared libraries
ii  zlib1g  1:1.2.2-3compression library - runtime

-- no debconf information




[Asterisk-Users] Skinny and CISCO 7905G

2004-08-05 Thread Alessandro Polverini
Hello,
I tried to configure a cisco 7905 IP phone using the skinny channel but
I had not much luck.

The relevant portion of skinny.conf is:

[cisco1]
device=SEP000F3487F8E3
callerid=Alex 123-456-789
mailbox=500
callwaiting=1
transfer=1
context=default
threewaycalling=1
line = 500 ; Dial(Skinny/[EMAIL PROTECTED])

I set up the tftp server, and prepared the following XMLDefault.cnf.xml:

Default
callManagerGroup
members
member  priority=0
callManager
ports
ethernetPhonePort2000/ethernetPhonePort
/ports
processNodeName10.123.123.33/processNodeName
/callManager
/member
/members
/callManagerGroup
/Default

The phone get recognised and registered by asterisk, the problem is that
when I pick up the phone I get no dial tone, I think this is because
this event is not noted by asterisk.

In fact I'm able to dial the cisco from another phone (a budge tone
101), but when I pick up the phone the 7905 still rings. The funny thing
is that on the cisco I can hear what i say into the budge tone. The
other way around does not work: if I speak on the cisco nothing is heard
on the other phone.

Is there something I can do to improve the situation or simply that
device is not supported (without using a SIP image, that I'm unable to
buy, for the moment) ?

Thanks for the help,
Alex


___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Bug#263221: Please package newer version of atftpd

2004-08-03 Thread Alessandro Polverini
Package: atftpd
Version: 0.6.3
Severity: wishlist

Hello,
atftpd 0.7 is out since a while, please package it :)

Alex

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (600, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26-1-686
Locale: LANG=C, LC_CTYPE=C

Versions of packages atftpd depends on:
ii  debconf 1.4.29   Debian configuration management sy
ii  libc6   2.3.2.ds1-13 GNU C Library: Shared libraries an
ii  libwrap07.6.dbs-4Wietse Venema's TCP wrappers libra
ii  netkit-inetd0.10-9   The Internet Superserver

-- debconf information excluded



Bug#257945: apache2-common: wrong behaviour when downloading .php files using webdav and mod_dav

2004-07-06 Thread Alessandro Polverini
Package: apache2-common
Version: 2.0.49-1
Severity: grave
Justification: renders package unusable

I recently upgraded from apache1 to apache2, mainly due the fact that
apache2 is needed for subversion.

Anyway, I use mod_dav to access the files on my virtual hosts, but I
experienced this bad behaviour: when I download a .php file, the source
is not downloaded but instead it seems like the output of the php
processing is taken, as if it was a normal http request.

The same configuration worked well with apache1 and mod_dav.

Here is an excerpt of my config:

VirtualHost *:80
  ServerName mysite.com

  Location /
Dav On
AuthType Basic
AuthName Auth Required
AuthUserFile users.basic
Options Indexes FollowSymLinks
Limit DELETE PROPFIND PROPPATCH MKCOL COPY MOVE LOCK UNLOCK
  Require user myuser
/Limit
  /Location

/VirtualHost

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (600, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8

Versions of packages apache2-common depends on:
ii  debconf 1.4.28   Debian configuration management sy
ii  debianutils 2.8.3Miscellaneous utilities specific t
ii  libapr0 2.0.49-1 The Apache Portable Runtime
ii  libc6   2.3.2.ds1-13 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-16Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.23-1 OpenLDAP libraries
ii  libmagic1   4.09-1   File type determination library us
ii  libssl0.9.7 0.9.7d-3 SSL shared libraries
ii  mime-support3.26-1   MIME files 'mime.types'  'mailcap
ii  net-tools   1.60-10  The NET-3 networking toolkit
ii  openssl 0.9.7d-3 Secure Socket Layer (SSL) binary a
ii  ssl-cert1.0-7Simple debconf wrapper for openssl
ii  zlib1g  1:1.2.1.1-3  compression library - runtime

-- no debconf information




Bug#256178: apache2-mpm-threadpool: Logfiles are limited to 2Gb

2004-06-25 Thread Alessandro Polverini
Package: apache2-mpm-threadpool
Version: 2.0.49-1
Severity: important

Hello,
Apache2 does not depends on logrotate, so I forgot to install it by
hand.

After a while the logfile hit the 2Gb mark and I started to loose access logs.

This is bad, because on a very busy site it is possible to reach 2Gb log
file also on a single day, and all recent software on linux should be able to
handle big files.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (600, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8

Versions of packages apache2-mpm-threadpool depends on:
ii  apache2-common  2.0.49-1 Next generation, scalable, extenda
ii  libapr0 2.0.49-1 The Apache Portable Runtime
ii  libc6   2.3.2.ds1-13 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-16Berkeley v4.2 Database Libraries [
ii  libexpat1   1.95.6-8 XML parsing C library - runtime li
ii  libldap22.1.23-1 OpenLDAP libraries
ii  libssl0.9.7 0.9.7d-3 SSL shared libraries
ii  zlib1g  1:1.2.1.1-3  compression library - runtime

-- no debconf information




Bug#243024: Unable to install servers using the DAC960 driver

2004-04-10 Thread Alessandro Polverini
Package: installation-reports
Severity: critical

Debian-installer-version: sarge-i386-netinst of 7 April
Method: Boot from CD
Machine: Athlon64 with Mylex Acceleraid 170 RAID Controller

Problem:
The installer is unable to create partitions.
If I do partitions with other tools (or Woody), the installer lists them
but is unable to select them and set properties (as type of file system,
mount point, etc).

In other words, D-I is unable to do anything on server with DAC960 driver.

I think that the problem could be that the partition scheme used by
the driver is unusual. Here are some examples:
/dev/rd/c0d0 : first logical disk
/dev/rd/c0d0p1 for first partition of first disk
/dev/rd/c0d1p2 for second partition of second disk

And so on.

Thanks,
Alex




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



Bug#239478: D-I beta3 unable to install on system with Mylex RAID Controller

2004-03-23 Thread Alessandro Polverini
On Tue, 2004-03-23 at 04:42, Geert Stappers wrote:
 On Mon, Mar 22, 2004 at 11:11:05PM +0100, Alessandro Polverini wrote:
  Package: installation-reports
  snip/
  
  Root Size/partition table:
  
  /dev/rd/c0d0p1 : ext3, 3Gb, /
  /dev/rd/c0d0p2 : swap, 512M
  /dev/rd/c0d0p3 : reiserfs, 15Gb, /home
  snip/
  
  After setting up the system the installer stops telling Unable to
  install the selected kernel.
  
  Looking at the logs in the third console, i see that error:
  
  /usr/sbin/mkinitrd: constituent device /dec/disc0/part1 does not exist
  Failed to create inirtd image.
 
 What is the name of the kernel module that supports your RAID controller?

 Tell us the PCI information ( `lspci`  `lspci -n` ) of the RAID controller?

The module is correctly detected and loaded by the installer. His name
is DAC960 and the relevant lspci lines are:
00:0d.1 RAID bus controller: Mylex Corporation DAC960PX (rev 03)
00:0d.1 Class 0104: 1069:0010 (rev 03)

I think the problem is something regarding mkinitrd because it uses
/dev/disc* as device while it should be /dev/rd/c0d*.

Thanks,
Alex



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



Bug#239478: D-I beta3 unable to install on system with Mylex RAID Controller

2004-03-22 Thread Alessandro Polverini
Package: installation-reports

Debian-installer-version: sarge-i386-netinst.iso
uname -a: d-i kernel 2.4.25
Date: 2004-03-21
Method: network
Machine: Custom made server with Mylex Acceleraid 150 RAID Controller
Processor: Athlon 64 3200+
Memory: 1.5Gb
Root Device: HW RAID /dev/rd/c0d0p1
Root Size/partition table:

/dev/rd/c0d0p1 : ext3, 3Gb, /
/dev/rd/c0d0p2 : swap, 512M
/dev/rd/c0d0p3 : reiserfs, 15Gb, /home

Base System Installation Checklist:

Initial boot worked:[ ]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[E]
Install boot loader:[ ]
Reboot: [ ]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

After setting up the system the installer stops telling Unable to
install the selected kernel.

Looking at the logs in the third console, i see that error:

/usr/sbin/mkinitrd: constituent device /dec/disc0/part1 does not exist
Failed to create inirtd image.

Thanks for your attention,
Alessandro Polverini
nibbles.it




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



d-i beta3 can't install kernel on a DAC960 (Mylex Acceleraid 150) raid controller

2004-03-21 Thread Alessandro Polverini
Hello,
I did a default install except for manually edit the partition table,
made in this way:

first  : ext3, 3Gb, /
second : swap, 512M
third  : reiserfs, 15Gb, /home

After setting up the system the installer stops telling Unable to
install the selected kernel.

Looking at the logs in the third console, i see that error:

/usr/sbin/mkinitrd: constituent device /dec/disc0/part1 does not exist
Failed to create inirtd image.

I'm stuck.

Any ideas?

Thanks,
Alex


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



Re: d-i beta3 can't install kernel on a DAC960 (Mylex Acceleraid 150) raid controller

2004-03-21 Thread Alessandro Polverini
On Sun, 2004-03-21 at 13:55, Finn-Arne Johansen wrote:
 On Sun, Mar 21, 2004 at 12:22:41PM +0100, Alessandro Polverini wrote:
  Hello,
  I did a default install except for manually edit the partition table,
  made in this way:
  first  : ext3, 3Gb, /
  second : swap, 512M
  third  : reiserfs, 15Gb, /home
  After setting up the system the installer stops telling Unable to
  install the selected kernel.
  Looking at the logs in the third console, i see that error:
  /usr/sbin/mkinitrd: constituent device /dec/disc0/part1 does not exist
  Failed to create inirtd image.
  I'm stuck.
  Any ideas?
 
 Take a look at http://bugs.skolelinux.no/show_bug.cgi?id=510
 
 and see if the mentioned solution there works for you. 

Thank you for your fast reply.
The problem you mention there seems like problem on installing grub,
while in my case I can't go so far, deboostrap (at least I suppose)
fails after trying to setup the kernel, I can't reach the grub
installation phase.

I've reverted to using 3.0r2 installer right now (must install the
server this evening), but I'll try again on an equivalent hw if the
problem get corrected.

Thanks,
Alex


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



[kaffe] Re: [Java-gnome-developer] Java-Gnome: jni or cni

2004-03-11 Thread Alessandro Polverini
I'm not a contributor too, but I'm a (quite experienced) java developer.

I just want to subscribe everything Elias wrote on this mail, I
completely agree.

Thanks,
Alex

On Thu, 2004-03-11 at 20:04, Elias Martenson wrote:
 tor 2004-03-11 klockan 18.44 skrev Mark Howard:
  Dear Java Developers,
  
  I am writing to you on behalf of the java-gnome project for advice
  regarding a major change we are currently considering. I apologise if
  this is off topic for this mailing list but we really need input and you
  are the most knowledgeable open source java developers; it may also
  help determine whether we will be using your projects in the future.
  Sorry for cross posting - we think members of each list are likely to
  have different opinions on this topic and want to hear them all.
  
  The big question is: should we switch to CNI?
 
 I'm not a contributor (yet?), and I'm currently merely playing around
 with Java-GNOME. However, I like it very much.

 I am what could be considered an expert Java programmer. This is,
 however, not the place to publish ones resumé. I do have 7 years of Java
 development experience.
 
 Reading peoples suggestions calling for CNI makes me very frightened.
 I'll try to explain why:
 
 In the current environment, Sun controls Java. I am not going to go into
 whether this is good or not, but this is the way it is. Sun releases a
 new version of java every 18 months or so, and every time they do there
 are huge improvements. With 1.4 we got the IO channels, giving us
 multiplexed IO and memory mapped files. 1.5 gives us the largest set of
 improvements to Java we have ever seen, including generics, covariant
 return types, shared VM's, etc... GCJ and CLASSPATH has to play the
 catchup game all the time, and I don't think I can even use the 1.4 IO
 channels in it yet.
 
 Even if you don't use the new features yourself, what are you going to
 do if your JDBC driver uses some new features? Don't forget that one of
 the great strengths of Java is it's great open source community where
 you can find pretty much every component you'd ever want freely
 downloadable. Going CNI-only would severely limit the number of 3'rd
 party component you'd be able to integrate.
 
 The fact that Java is heavily dynamic (sandboxed execution, etc...) is
 an enormous advantage, and I fail to see how an experienced Java
 developer who uses these things could ever even consider turning the
 back on everything that is Java, just to gain a little perceived
 performance.
 
 Speaking of performance advantage, has anyone even done any benchmarking
 to decide how much of a performance difference we're talking about here?
 
 Since Java is dynamic, I can, at runtime, detect whether Java-GNOME is
 available, and select a Java-GNOME or a Swing-based user interface at
 runtime. This makes it possible to ship an app that is both native
 GNOME, and completely cross-platform (naturally, the practicality of
 this depends heavily on the type of application). This app can still use
 the same features available to all application running on the Java
 platform.
 
 Another thing: with Linux making more and more inroads into the
 enterprise, things like JMX become increasingly important. How would you
 go about hooking a GCJ-compiled application into a JMX container? My
 guess it would be difficult at beast, if not completely impossible.
 That's just one of many examples.
 
 In summary, I don't think many of the pro-CNI people really use Java to
 its fullest extent. I certainly want all the 1.5 features _and_
 Java-GNOME. If Java-GNOME went CNI-only I myself would probably go back
 to Swing.
 
 Regards
 
 Elias Mårtenson
 
 


___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe


Re: [Java-gnome-developer] Java-Gnome: jni or cni

2004-03-11 Thread Alessandro Polverini
I'm not a contributor too, but I'm a (quite experienced) java developer.

I just want to subscribe everything Elias wrote on this mail, I
completely agree.

Thanks,
Alex

On Thu, 2004-03-11 at 20:04, Elias Martenson wrote:
 tor 2004-03-11 klockan 18.44 skrev Mark Howard:
  Dear Java Developers,
  
  I am writing to you on behalf of the java-gnome project for advice
  regarding a major change we are currently considering. I apologise if
  this is off topic for this mailing list but we really need input and you
  are the most knowledgeable open source java developers; it may also
  help determine whether we will be using your projects in the future.
  Sorry for cross posting - we think members of each list are likely to
  have different opinions on this topic and want to hear them all.
  
  The big question is: should we switch to CNI?
 
 I'm not a contributor (yet?), and I'm currently merely playing around
 with Java-GNOME. However, I like it very much.

 I am what could be considered an expert Java programmer. This is,
 however, not the place to publish ones resumé. I do have 7 years of Java
 development experience.
 
 Reading peoples suggestions calling for CNI makes me very frightened.
 I'll try to explain why:
 
 In the current environment, Sun controls Java. I am not going to go into
 whether this is good or not, but this is the way it is. Sun releases a
 new version of java every 18 months or so, and every time they do there
 are huge improvements. With 1.4 we got the IO channels, giving us
 multiplexed IO and memory mapped files. 1.5 gives us the largest set of
 improvements to Java we have ever seen, including generics, covariant
 return types, shared VM's, etc... GCJ and CLASSPATH has to play the
 catchup game all the time, and I don't think I can even use the 1.4 IO
 channels in it yet.
 
 Even if you don't use the new features yourself, what are you going to
 do if your JDBC driver uses some new features? Don't forget that one of
 the great strengths of Java is it's great open source community where
 you can find pretty much every component you'd ever want freely
 downloadable. Going CNI-only would severely limit the number of 3'rd
 party component you'd be able to integrate.
 
 The fact that Java is heavily dynamic (sandboxed execution, etc...) is
 an enormous advantage, and I fail to see how an experienced Java
 developer who uses these things could ever even consider turning the
 back on everything that is Java, just to gain a little perceived
 performance.
 
 Speaking of performance advantage, has anyone even done any benchmarking
 to decide how much of a performance difference we're talking about here?
 
 Since Java is dynamic, I can, at runtime, detect whether Java-GNOME is
 available, and select a Java-GNOME or a Swing-based user interface at
 runtime. This makes it possible to ship an app that is both native
 GNOME, and completely cross-platform (naturally, the practicality of
 this depends heavily on the type of application). This app can still use
 the same features available to all application running on the Java
 platform.
 
 Another thing: with Linux making more and more inroads into the
 enterprise, things like JMX become increasingly important. How would you
 go about hooking a GCJ-compiled application into a JMX container? My
 guess it would be difficult at beast, if not completely impossible.
 That's just one of many examples.
 
 In summary, I don't think many of the pro-CNI people really use Java to
 its fullest extent. I certainly want all the 1.5 features _and_
 Java-GNOME. If Java-GNOME went CNI-only I myself would probably go back
 to Swing.
 
 Regards
 
 Elias Mårtenson
 
 


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



Bug#235418: Various blocking problems installing on a RAID server -- d-i snapshot of 23/02/2004

2004-02-29 Thread Alessandro Polverini
 the megaraid2 driver for my raid
controller but the driver megaraid is not used on the initrd image, 
so, after the reboot, the old and limited driver is used on the system
instead.

That's all for now, thanks for your work and don't esitate to ask me
details if they are needed, but pls mail me directly since I'm not
subscribed to the list.

Alessandro Polverini
nibbles.it




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



Detailed Installation report on a RAID server for d-i snapshot of 23/02/2004

2004-02-25 Thread Alessandro Polverini
 the megaraid2 driver for my raid
controller but the driver megaraid is not used on the initrd image, 
so, after the reboot, the old and limited driver is used on the system
instead.

That's all for now, thanks for your work and don't esitate to ask me
details if they are needed, but pls mail me directly since I'm not
subscribed to the list.

Alessandro Polverini
nibbles.it



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



New Debian Boot logo proposal

2004-02-11 Thread Alessandro Polverini
Hello,
we have prepared a couple of proposals of the new boot logo for the
Sarge installer.

You can find screenshots, and RLE encoded pictures at:

http://nibbles.it/debian/

Feedback is welcome,
Alessandro Polverini  Andrea Mottola
nibbles.it



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



Apache 2.0.48 still not in testing

2004-01-27 Thread Alessandro Polverini
Hello,
it's now more than 71 days that the latest release of apache is stuck in
sid and does not enter testing.

Looking at the critical bug reports, the only one I find is applicable
also to apache 2.0.47 which is already in testing.

Of course having apache2 multi threaded in Sarge would be great, but
most of all, not entering it stops also latest subversion package, that
needs libapr 2.0.48.

Is the problem solvable?

Thanks,
Alex

P.S.: I'm not subscribed to the list, so pls cc me if you reply, thanks




Bug#228964: Sarge beta2 installer and LSI Logic MegaRaid controller

2004-01-21 Thread Alessandro Polverini
Package: installation-reports

Debian-installer-version: beta2
uname -a: Linux svr1 2.4.24-1-686-smp #1 SMP Tue Jan 6 22:37:23 EST 2004 i686 GNU/Linux
Date: 21-1-2004 23:00
Method: net cd, then from network, using debian.fastweb.it mirror

Machine: hand made server with LSI Logic MegaRaid 320-1 controller
Processor: Pentium IV 2.6Ghz
Memory: 1Gb ECC
Root Device: /dev/sda1
Root Size/partition table:
/dev/sda1   /   ext3defaults,errors=remount-ro  0 1
/dev/sda3   /home   reiserfsdefaults0 2
/dev/sda2   noneswapsw  0 0
/dev/fd0/floppy autorw,user,noauto  0 0
/dev/hdc/cdrom  autoro,user,noauto  0 0
proc/proc   procdefaults0 0

Output of lspci:
00:00.0 Host bridge: Intel Corp. 82875P Memory Controller Hub (rev 02)
00:01.0 PCI bridge: Intel Corp. 82875P Processor to AGP Controller (rev 02)
00:1d.0 USB Controller: Intel Corp. 82801EB USB (rev 02)
00:1d.1 USB Controller: Intel Corp. 82801EB USB (rev 02)
00:1d.2 USB Controller: Intel Corp. 82801EB USB (rev 02)
00:1d.3 USB Controller: Intel Corp. 82801EB USB (rev 02)
00:1d.7 USB Controller: Intel Corp. 82801EB USB2 (rev 02)
00:1e.0 PCI bridge: Intel Corp. 82801BA/CA/DB/EB PCI Bridge (rev c2)
00:1f.0 ISA bridge: Intel Corp. 82801EB LPC Interface Controller (rev 02)
00:1f.1 IDE interface: Intel Corp. 82801EB Ultra ATA Storage Controller (rev 02)
00:1f.3 SMBus: Intel Corp. 82801EB SMBus Controller (rev 02)
00:1f.5 Multimedia audio controller: Intel Corp. 82801EB AC'97 Audio Controller (rev 
02)
01:00.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1)
02:05.0 Ethernet controller: 3Com Corporation 3c940 1000Base? (rev 12)
02:0a.0 Ethernet controller: MYSON Technology Inc SURECOM EP-320X-S 100/10M Ethernet 
PCI Adapter
02:0b.0 RAID bus controller: LSI Logic / Symbios Logic PowerEdge Expandable RAID 
Controller 4 (rev 01)
02:0c.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ 
(rev 10)

Base System Installation Checklist:

Initial boot worked:[O]
Configure network HW:   [E]
Config network: [E]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Comments/Problems:

1) After boot, the two ethernet cards were swapped
   Is there any way to ensure that 'discover' gives each time the
   same order to ethernet cards?

2) No driver could be found for the integrate 3Com 3c940 gigabit network card

3) A old 2.4.22 kernel has been installed.
Not only this kernel has security problems, but has an old megaraid driver.
I suggest using 2.4.24 kernel and the new and much improved megaraid2 driver.
Also, I'm not really sure of what is the best method to tell the system to use
the 'megaraid2' driver on boot and not the 'megaraid'.
A reply on that issue would be very welcome :)

4) It would be nice to have the possibility to choose postfix and grub instead
   of exim and lilo during install.

Thanks for the excellent work and keep up making the best linux distro ever! ;)

Alex




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



Debian installer beta2 - After the first boot after the install, usb keyboard not working any more

2004-01-20 Thread Alessandro Polverini
Hello,
I've not well understood how to report bugs for the installer so I try
writing here...

I find this a grave bug: I can make all the firs part of the install
(booting from the cd), but after having installed lilo and rebooting, I
can proceed no more in base-setup since it does not recognise my USB
keyboard any more.

I had to plug in a PS/2 keyboard to continue.

Thanks,
Alex



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



Re: mod_jk and mod_jk2

2004-01-06 Thread Alessandro Polverini
On Tue, 2004-01-06 at 01:26, Arnaud Vandyck wrote:
 Alessandro Polverini [EMAIL PROTECTED] writes:
 
  Hello,
  anybody knows why I seems unable to find mod_jk nor mod_jk2 also in
  unstable?
 
  In particular I need mod_jk2, I tried to recompile it from the sources,
  but without success :(
 
  Anybody can help me?
 
 I think Stefan Gybas is working on that at the moment and I think he has
 a snapshot on his website. Maybe you can browse the list archive from
 november and december.

Thanks for the tip,
I'm using his package right now (why is it not in the debian archive
btw?), but it's only for apache 1.3.29, while I need mod_jk2 for
apache2.

Any help on how to build mod_jk2 with either apache2 of testing or
unstable would be very welcome: I followed the instructions with the
package from apache.org but they seems to not work on debian (or more
probably I'm dumb, but I made my best).

Thanks,
Alex


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



mod_jk and mod_jk2

2004-01-05 Thread Alessandro Polverini
Hello,
anybody knows why I seems unable to find mod_jk nor mod_jk2 also in
unstable?

In particular I need mod_jk2, I tried to recompile it from the sources,
but without success :(

Anybody can help me?

Thanks,
Alex


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



apache2, tomcat4 and mod_jk/mod_jk2

2003-12-24 Thread Alessandro Polverini
Hello,
I've originally posted this message to debian-java but I got no answers, I 
cross post here since I think it's relevant anyway.
Thanks,
Alex

-
Hello,
I was unable to find mod_jk2 in Debian, so I tried to compile it myself
from sources got from apache site, but I went in trouble :(

Packages installed includes:
apache2-common 2.0.47-1
apache2-dev2.0.47-1
apache2-mpm-wo 2.0.47-1
libapr02.0.47-1
libtomcat4-jav 4.1.28-1
tomcat44.1.28-1
tomcat4-admin  4.1.28-1

I then got jakarta-tomcat-connectors-jk-1.2-src-current.tar.gz from
jakarta site, untarred it, and following build instructions:

./configure -with-apxs=/usr/bin/apxs2

After that I do a make, and after a couple file compiled fine it stops
telling me it does not find apr header files like apr_network_io.h and
apr_errno.h.

After researching a bit, I find these files in the dir
/usr/include/apr-0, so  I modify by hand a couple makefiles including
this dir in the include sources and I try to recompile.
This time some more files are compiled but the process fails with this
error:

make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/common'
Making all in apache-2.0
make[1]: Entering directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/apache-2.0'
Makefile:21: /build/config_vars.mk: No such file or directory
make[1]: *** No rule to make target `/build/config_vars.mk'.  Stop.
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/apache-2.0'
make: *** [all-recursive] Error 1

I also tried to compile the newest version of the connector (jk2) from
the following sources:
jakarta-tomcat-connectors-jk2-src-current.tar.gz

but this time the process does not even starts, here is the output of
make after having ./configure-d it:
list=' server/apache2'; \
for i in $list; do \
echo Making $target in $i; \
if test $i != .; then \
(cd $i  make) || exit 1; \
fi; \
done;
Making  in server/apache2
make[1]: Entering directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'
mkdir -p ../../../build/jk2/apache2
/build/libtool  --mode=compile gcc  -pipe -I/usr/include/xmltok
-I/usr/include/openssl -O2 -pipe -I/usr/include/xmltok
-I/usr/include/openssl -O2 -pthread-DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-I../../include -I/usr/include/apache2  -I /usr/lib/j2sdk1.4.2/include
-I /usr/lib/j2sdk1.4.2/include/linux  -DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
-DHAS_APR   -c ../../common/jk_channel.c -o
../../../build/jk2/apache2/jk_channel.lo
make[1]: /build/libtool: Command not found
make[1]: *** [../../../build/jk2/apache2/jk_channel.lo] Error 127
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'
make: *** [jk2-build] Error 1

I'm really stuck.

Con anyone help me having mod_jk or mod_jk2 (preferred) for apache2?

Thanks very much for any help,
Alex

P.S.: Please be kind with me, I'm relatively new to Debian with source
packages...




apache2, tomcat4 and mod_jk/mod_jk2

2003-12-22 Thread Alessandro Polverini
Hello,
I was unable to find mod_jk2 in Debian, so I tried to compile it myself
from sources got from apache site, but I went in trouble :(

Packages installed includes:
apache2-common 2.0.47-1
apache2-dev2.0.47-1
apache2-mpm-wo 2.0.47-1
libapr02.0.47-1
libtomcat4-jav 4.1.28-1
tomcat44.1.28-1
tomcat4-admin  4.1.28-1

I then got jakarta-tomcat-connectors-jk-1.2-src-current.tar.gz from
jakarta site, untarred it, and following build instructions:

./configure -with-apxs=/usr/bin/apxs2

After that I do a make, and after a couple file compiled fine it stops
telling me it does not find apr header files like apr_network_io.h and
apr_errno.h.

After researching a bit, I find these files in the dir
/usr/include/apr-0, so  I modify by hand a couple makefiles including
this dir in the include sources and I try to recompile.
This time some more files are compiled but the process fails with this
error:

make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/common'
Making all in apache-2.0
make[1]: Entering directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/apache-2.0'
Makefile:21: /build/config_vars.mk: No such file or directory
make[1]: *** No rule to make target `/build/config_vars.mk'.  Stop.
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk-1.2.5-src/jk/native/apache-2.0'
make: *** [all-recursive] Error 1

I also tried to compile the newest version of the connector (jk2) from
the following sources:
jakarta-tomcat-connectors-jk2-src-current.tar.gz

but this time the process does not even starts, here is the output of
make after having ./configure-d it:
list=' server/apache2'; \
for i in $list; do \
echo Making $target in $i; \
if test $i != .; then \
(cd $i  make) || exit 1; \
fi; \
done;
Making  in server/apache2
make[1]: Entering directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'
mkdir -p ../../../build/jk2/apache2
/build/libtool  --mode=compile gcc  -pipe -I/usr/include/xmltok
-I/usr/include/openssl -O2 -pipe -I/usr/include/xmltok
-I/usr/include/openssl -O2 -pthread-DLINUX=2 -D_REENTRANT
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
-I../../include -I/usr/include/apache2  -I /usr/lib/j2sdk1.4.2/include
-I /usr/lib/j2sdk1.4.2/include/linux  -DCHUNK_SIZE=4096 -DUSE_APACHE_MD5
-DHAS_APR   -c ../../common/jk_channel.c -o
../../../build/jk2/apache2/jk_channel.lo
make[1]: /build/libtool: Command not found
make[1]: *** [../../../build/jk2/apache2/jk_channel.lo] Error 127
make[1]: Leaving directory
`/root/jakarta-tomcat-connectors-jk2-2.0.2-src/jk/native2/server/apache2'
make: *** [jk2-build] Error 1

I'm really stuck.

Con anyone help me having mod_jk or mod_jk2 (preferred) for apache2?

Thanks very much for any help,
Alex

P.S.: Please be kind with me, I'm relatively new to Debian with source
packages...


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



Jpackage JDK (Was: Re: [FW] Accepted kaffe 1:1.1.1-5.1 (i386 source))

2003-12-16 Thread Alessandro Polverini
On Tue, 2003-12-16 at 12:25, Dalibor Topic wrote:
[...]

 Btw, how did your conversation with JPackage guys end up? They seem to 
 have some ideas in common with with debian-java, so I was wondering if a 
 distribution independant Java application/library packaging effort would 
 have a standing chance.

Yes, I'm interested in knowing some news too: I use jpackage since
version 1.0 and it's really great.
Having the same thing for Debian would be awesome, actually, good
support for java sdk and java packages is the _only_ thing I miss from
the redhat world since I switched.

BTW: I was wondering if I install rpm, would I be able to use jpackage
rpms? That would be something.

Another question: for my projects I need Sun JDK 1.4.2, and I'm
currently using packages from innovationsw:

deb http://debian.innovationsw.com/debian unstable/i386/
deb http://debian.innovationsw.com/debian unstable/all/

Is there any other options? I would like a better packaged SDK, similar
to the one of jpackage, where I can choose to _not_ install things like
documentation, sources and demos that I don't need on my servers.

Thanks for the attention,
Alex


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



Re: Can hear xawtv, but can't record audio

2002-11-05 Thread Alessandro Polverini
On Mon, 2002-11-04 at 23:20, Jack Bowling wrote:
 [...]
 Anybody with a Creative SB Live should run, not walk, to
 http:/freshmeat.net and search for emu-tools.

Just did it, but got 0 results.
Can we have an URL please?

Thanks,
Alex








Re: Can hear xawtv, but can't record audio

2002-11-05 Thread Alessandro Polverini
On Tue, 2002-11-05 at 10:00, Jack Bowling wrote:
 [...]
 
 It's on Sourceforge.
 
 http://sourceforge.net/projects/emu10k1

Hello Jack,
thanks for your reply.
Can you, or anyone else, explain me in which respects why this driver is
better of the one included with redhat kernel or ALSA?

On the home page of emu10k1 I can't find any useful information of this
kind.

Thanks,
Alex







Re: Konqueror plugins

2002-10-25 Thread Alessandro Polverini
On Fri, 2002-10-25 at 08:42, Warren Togami wrote:
 [...]
 
 I think it isn't possible to get old plugins to work in Konqueror
 because it was compiled with GCC 3.2.  You will need to convince the
 vendor to supply a GCC 3.2 compiled version.  I highly doubt they would
 do so.
 
 It works in Mozilla only because it is compiled with the old GCC 2.96.

Hello Warren,
this was true until kde 3.0.4.
This release include a work around that allows plugins to be executed
also if compiled with different version of the compiler that compiled
KDE (i.e. GCC 3.2).

We installed kde 3.0.4 from rawhide, the problem anyway it's not that
the plugin does not work, it's that it's impossible to access the
preference page netscape plugins in the control panel of konqueror.
This page (if I remember well) is the one where you can set the search
path for plugins and some other options related to the use of netscape
plugins (so, it does not use the plugin itself).

I'm still looking for a way to solve this issue, any help is very
welcome.

Alex







Re: sound dropouts

2002-10-25 Thread Alessandro Polverini
On Fri, 2002-10-25 at 11:01, Thomas Vander Stichele wrote:
 [...]
 I used stock kernels on both 7.2, 7.3 and 8.0, and every audio app I use 
 (xmms, rhythmbox, gst-player) has this problem.  I have tried with both 
 OSS sound output, ALSA oss emulation, and pure ALSA.  pure ALSA gives the 
 best result up to now, but still unacceptably worse than with 7.3.

Hello Thomas,
I have the exact same problem.

My setup is an athlon XP2000+ and a sounblaster live, and the sound
quality is very low due to these bad droputs.
I've been told that it's possible to solve the problem by installing
ALSA, but I've not yet tryied it, an official package from Red Hat would
be very welcome :)

If there is a way to solve that (very annoying) problem without
replacing the entire sound system I would be glad to know it.

Bye,
Alex







RE: Mylex DAC960 problem (additional info)

2002-10-23 Thread Alessandro Polverini
Hello Nicholas,
I had the same problem, but I seem to have solved it switching the bios
option PCI Bus 2.1 Compliance to off.
If this is not sufficient try switching the PIC mode from APIC to
PIC (always in bios).

Also, be sure to have installed the latest kernel (2.4.18-17.x).

Good luck,
Alex

On Wed, 2002-10-23 at 17:49, Nicholas Tang wrote:
 Additional info:
 
 The VA model is the Full-On 2240, and it has 3 drives in a RAID 5
 configuration.
 
 Adaptec AIC-7896 Scsi BIOS2.20S1B1 
 DAC960 BIOS4.10-38 
 DAC960PRL Firmaware 4.07-0-07 
 
 
 The error looks like this:
 
  Waiting Queue entries 
  Disconnected queue entries 
  QUOTFIFO entries 
  Sequencer free SCB list 
   
  Bunch of numbers here 1 2 4 0x2 etc 
   
   
  Pending List: 
  Kernel Free SCB Kust: 2 1 0 
  scsi:0:15:0: Command already completed 
  aic7xx_abort returns 0x2002 
  scsi device sert offline - not ready or command retry failed after bus
 reset host 1 channel 0 id 15 lun 0 
  loading DAC960  Module 
  PCI: Found IRG 11 for device 00:09.1 
  PCI:  Sharing IRQ 11 with 00:0c.l1 
  DAC960: * DAC960 Raid driver version 2.4.11 of October 2001 * 
   
 The machine generally freezes at this point.
 
 Nicholas Tang
 
 
 
 -- 
 Psyche-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/psyche-list








Error during named restart (bug in named or service)

2002-10-21 Thread Alessandro Polverini
Hello,
I noticed a strange behaviour while restarting named.
When it works I get:
---
[rootxxx root]# service named restart
Stopping named:
Starting named:[  OK  ]
---
As you can see the [OK] is missing on the stopping procedure.
But sometimes instead it happens that:
---
[rootxxx root]# service named restart
Stopping named:
named: already running[rootxxx root]#
---
and if I do it again:
---
[rootxxx root]# service named restart
Stopping named: rndc: connect failed: connection refused
   [FAILED]
Starting named:[  OK  ]
---

So what it seems is that the first time the command thinks that named
is running, while in reality it's not, and I have to run it again.

That behaviour never showed on redhat 7.2 and 7.3.

Can anybody confirm that?

Thanks,
Alex







Re: Error during named restart (bug in named or service)

2002-10-21 Thread Alessandro Polverini
That's what's logged on /var/log/messages while doing the restart:

Oct 21 18:30:28 japot named[14010]: shutting down: flushing changes
Oct 21 18:30:28 japot named[14010]: stopping command channel on
127.0.0.1#953
Oct 21 18:30:28 japot named[14010]: no longer listening on 127.0.0.1#53
Oct 21 18:30:28 japot named[14010]: no longer listening on 10.0.0.90#53
Oct 21 18:30:28 japot named[14010]: no longer listening on 10.0.0.1#53
Oct 21 18:30:28 japot named[14007]: exiting
Oct 21 18:30:28 japot named[14185]: starting BIND 9.2.1 -u named
Oct 21 18:30:28 japot named[14185]: using 1 CPU
Oct 21 18:30:28 japot named[14188]: loading configuration from
'/etc/named.conf'
Oct 21 18:30:28 japot named[14188]: no IPv6 interfaces found
Oct 21 18:30:28 japot named[14188]: listening on IPv4 interface lo,
127.0.0.1#53
Oct 21 18:30:28 japot named[14188]: listening on IPv4 interface eth0,
10.0.0.90#53
Oct 21 18:30:28 japot named[14188]: listening on IPv4 interface vmnet8,
10.0.0.1#53
Oct 21 18:30:28 japot named[14188]: command channel listening on
127.0.0.1#953
Oct 21 18:30:28 japot named[14188]: zone 0.0.127.in-addr.arpa/IN: loaded
serial 1997022700
Oct 21 18:30:28 japot named[14188]: zone localhost/IN: loaded serial 42
Oct 21 18:30:28 japot named[14188]: running
Oct 21 18:30:28 japot named: named startup succeeded

And the service named restart output is the usual:

Stopping named:
Starting named:[  OK  ]

Alex

On Mon, 2002-10-21 at 18:03, H M Kunzmann wrote:
 On Mon, 2002-10-21 at 17:37, Alessandro Polverini wrote:
  Hello,
  I noticed a strange behaviour while restarting named.
  When it works I get:
  ---
  [root@xxx root]# service named restart
  Stopping named:
  Starting named:[  OK  ]
  ---
  As you can see the [OK] is missing on the stopping procedure.
  But sometimes instead it happens that:
  ---
  [root@xxx root]# service named restart
  Stopping named:
  named: already running[root@xxx root]#
  ---
  and if I do it again:
  ---
  [root@xxx root]# service named restart
  Stopping named: rndc: connect failed: connection refused
 [FAILED]
  Starting named:[  OK  ]
  ---
  
  So what it seems is that the first time the command thinks that named
  is running, while in reality it's not, and I have to run it again.
  
  That behaviour never showed on redhat 7.2 and 7.3.
  
  Can anybody confirm that?
  
 
 Looks to me that named doesn't successfully shutdown by the time that
 'service' tries to start it. As soon as the shutdown is completed, the
 second call the restart has an error because now ndc is no longer
 running. 
 
 Whatever the reason, this shouldn't be happening.
 Have you done a tail -f /var/log/messages and then the service named
 restart ?
 
 
 
 
 -- 
 Psyche-list mailing list
 [EMAIL PROTECTED]
 https://listman.redhat.com/mailman/listinfo/psyche-list








Re: Flash 6 plugin now available!

2002-10-19 Thread Alessandro Polverini
On Sat, 2002-10-19 at 19:36, Christopher A. Williams wrote:
 Just downloaded it. Installed it. Thanks!
 
 Installed without a hitch and worked the first time.
 
 ...Now if I could only find a beta copy of Dreamweaver MX (Studio MX
 would be even better!) for Linux. That would make my need for Windows
 (even in a VMware session) pretty much Zero!

Ohh yes!!
I'm _so_ happy to have flash player6 for linux!

For all our office, the only thing that stops us to migrate under linux
is the (non) availability of:
- Flash MX
- Dreamweaver MX
- Adobe After Effects

If we could do something to convince Macromedia to port his
applications, life would be wonderful :)

But I bet microslug is putting big $ for not pushing Macromedia to
develop under linux :(((

Bye all,
Alex







Prelinking problem

2002-10-15 Thread Alessandro Polverini
Hello,
following the release notes instructions I did the following command:

prelink --verbose --all conserve-memory

It seems like it does a lot of work but after some time I get the
following error:

[...]
/usr/lib/kword.so   4149c000-414a1000
/usr/X11R6/lib/libXrandr.so.1   41146000-4114b000
/usr/lib/libpcreposix.so.0  41151000-41156000
/usr/lib/karbon.so  4149c000-414a
/usr/lib/kchart.so  4149c000-414a
/usr/lib/libqthreads.so.0   41146000-4114a000
Aborted

Anybody can help me and explain me why the prelink process aborts?

Thanks,
Alex







Re: Prelinking problem

2002-10-15 Thread Alessandro Polverini
On Tue, 2002-10-15 at 16:46, Jakub Jelinek wrote:
 On Tue, Oct 15, 2002 at 04:09:02PM +0200, Alessandro Polverini wrote:
 [...]
  following the release notes instructions I did the following command:
  
  prelink --verbose --all conserve-memory
  
  It seems like it does a lot of work but after some time I get the
  following error:
  
  [...]
  /usr/lib/kword.so   4149c000-414a1000
  /usr/X11R6/lib/libXrandr.so.1   41146000-4114b000
  /usr/lib/libpcreposix.so.0  41151000-41156000
  /usr/lib/karbon.so  4149c000-414a
  /usr/lib/kchart.so  4149c000-414a
  /usr/lib/libqthreads.so.0   41146000-4114a000
  Aborted
  
  Anybody can help me and explain me why the prelink process aborts?
 
 Can you retry without --conserve-memory to find out if it is a layouting
 problem or some other bug?
 Can you send me a gdb backtrace where the abort happens?

Hello Jakub, and thanks for your fast reply.
I tried without the --conserve-memory but the result was exactly the
same.
I'm sorry I don't know how to use gdb, but if you tell me the exacts
steps to follow I'll try.

For now I tried gdb prelink -va but it says me gdb: unrecognized
option `-va'.

Thanks,
Alex







Re: Prelinking problem

2002-10-15 Thread Alessandro Polverini
On Tue, 2002-10-15 at 22:22, Thomas Dodd wrote:
 [... big snip ...]
  On Tue, 2002-10-15 at 16:46, Jakub Jelinek wrote:
 Can you send me a gdb backtrace where the abort happens?

Here is what I get:

[...]
/usr/lib/kchart.so 453b8000-453bc000
/lib/libBrokenLocale.so.1  453bc000-453c
/usr/lib/libqthreads.so.0  41146000-4114a000

Program received signal SIGABRT, Aborted.
0x0809e991 in kill ()
(gdb) bt
#0  0x0809e991 in kill ()
#1  0x0809e82b in raise ()
#2  0x08086a61 in abort ()
#3  0x0805bf2b in layout_libs ()
#4  0x0805c418 in main ()
#5  0x08080cd2 in __libc_start_main ()
(gdb)

Hope this helps,
Alex







Re: glibc 2.3

2002-10-06 Thread Alessandro Polverini
On Fri, 4 Oct 2002, Jakub Jelinek wrote:

 [...]
 If you want to see startup time differences because of dynamic reloc
 reduction, compare LD_DEBUG=statistics someprogram on RHL 7.2 and 8.0.
 As for prelink, you can run as root
 prelink -avm

Hello,
I just tried what you propose but, after a lot of output, I get:


[...]
/usr/lib/kword.so   4149c000-414a1000
/usr/X11R6/lib/libXrandr.so.1   41146000-4114b000
/usr/lib/libpcreposix.so.0  41151000-41156000
/usr/lib/karbon.so  4149c000-414a
/usr/lib/kchart.so  4149c000-414a
/usr/lib/libqthreads.so.0   41146000-4114a000
Aborted


Can u help me on knowing why the process aborted?
Is there anything I can do to fix this?

Thanks,
Alex









Psyche issus : Flash player plugin, fonts, mixer

2002-10-02 Thread Alessandro Polverini
Hello,
I just installed RH8, and I have the following issues:

- I can't install flash player plugin (everything locks up)

- Matrox G550 with DVI out is not supported (I had to download matrox 
drivers to make it work)

- The mixer for my sound card does not work. I have a C-Media Electronics

- Under Konqueror (I prefer it to mozilla) I'm unable to correctly display 
characters with accents (I'm Italian)

Anybody can help me?

Thanks,
Alex








<    1   2   3   4   5   6