Re: [Cooker] urpmi deleting already downloaded packages, and fails with dependencies

2002-04-03 Thread Franois Pons

David Hedbor [EMAIL PROTECTED] writes:

 Hello. Since apt-get no longer works (files used by apt-get aren't
 updated anymore), I am forced to use urpmi for auto-updating. In
 general it's ok, but there are a couple of major problems:
 
 1) urpmi deletes downloaded packages that are not installed. This
seems to occur when the application is started - any packages not
to be installed will be removed. This is extremely annoying, for
example in this scenario:
- start urpmi --auto-select
- stop process after downloading 200 MB
- start urpmi somepackage
- start urpmi --auto-select = downloading starts from the
  beginning
 
   Packages should be deleted only if they are obsolete (i.e older than
   installed) or installed. The best solution, used by apt-get is not
   to delete anything automatically, with a command by the user to
   flush when desired.

This is the current behaviour of urpmi, will be changed maybe.

You can use --noclean to avoid this.

 2) urpmi often fails with dependencies. For example I just upgraded
openssh. urpmi openssh' failed with a dependency on an old version
of openssh-askpass. I had to manually specify it. This was extra
annoying since I got the original failure after downloading 50 MB
rpms which weren't installed due to the failed dependencies, and
subsequently deleted as described in issue #1.
 
 Summary: I _really_ miss my apt-get!

This is a bug on urpmi which has to be fixed.

François.




Re: [Cooker] URPMI - hdlist.cz and FTPs

2002-04-03 Thread Franois Pons

Ron Stodden [EMAIL PROTECTED] writes:

 Borsenkow Andrej wrote:
  
  If you have several media defined you can use
  
  urpmi --media media1,media2,...
  
  to force install from specific sites only.
 
 Oh dear, we are supposed to be speaking English here.   Above
 obviously should be:
 
  If you have several media defined you can use
  
  urpmi --medium medium1,medium2,...
  
  to force install from specific sites only.
 
 media is the plural of medium.

It is undocumented but --mediums is accepted as --media, should I add --medium
too :-)

François.




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Robert Fox

So what's the proper command to use to install the KDE3 final RPMs into
Mandrake 8.2?  and, could you be more specific how Cooker is now
different from the 8.2 release?  This would be useful information . . 

Thanks,
R.Fox


On Wed, 2002-04-03 at 10:29, Laurent Montel wrote:
 Le Wednesday 03 April 2002 04:15, Salane King a écrit :
  kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
  it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on it
  and install the rpm for rpm-3.0.4 on cooker
 
 No no no no !!!
 When I build package for a mdk version use it on good version.
 So DON'T INSTALL 8.2 package on cooker 
 
 Perhaps you don't know but cooker is DIFFERENT from 8.2 !
 
 Regards.
 
 
 
  ftp://ftp.kde.org/pub/kde/stable/3.0/
 
 






[Cooker] hardrake and isa-pnp module

2002-04-03 Thread Guillaume Rousse

For a large amount a sounds cards, harddrake try first to load isa-pnp 
module, and fails, as it is currently build in kernel... It makes configuring 
those cards impossible.
-- 
Guillaume Rousse [EMAIL PROTECTED]
GPG key http://lis.snv.jussieu.fr/~rousse/gpgkey.html




[Cooker] Requests regarding PHP

2002-04-03 Thread Alexander Skwar

Hello!

I've got some requests regarding the PHP package in cooker.

a) The php-devel package contains the PEAR repository.  However, I don't
think php-devel is a good name for this kind of package.  Would it be
possible to move the PEAR files from php-devel to, let's say, php-pear?

b) The PEAR files are located in /usr/lib/php.  IMO it would be nicer if
those files were in /usr/lib/php/pear.

c) The /etc/php.ini file sets include_path to /usr/lib/php.  I cannot
include/require files from /usr/lib/php with a simple include
'file.php'.  When I change the include_path line to /usr/lib/php/ (note
the trailing slash), I'm able to do so.  Could this please be changed?

d) For whatever reason, I'm unable to build extension modules for PHP.
I tried to compile a php-recode package, basically doing:

%{phpsource}/buildext recode recode.c

install -m 755 -s recode.so $RPM_BUILD_ROOT%{phpdir}/extensions/

When I start PHP, it always complains that iconv.so is not a valid php
library.  I really don't know what I did do wrong.  The error message I
get is:

PHP Warning:  Invalid library (maybe not a PHP library) 'recode.so'  in
Unknown on line 0

I'll attach the spec used for building the RPM to this message.

e) Would it be possible to compile/ship PHP with --with-recode?

I can provide SRPMS/RPMS for all of this, if required.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 1 day 23 hours 0 minutes


%define phpversion 4.1.2
%define phprelease 2mdk
%define phpdir %{_libdir}/php 
%define phpsource /usr/src/php-devel
%define release 1mdk

%define modname recode
%define dirname %{modname}
%define soname  %{modname}.so

Summary:lib%{modname} module for PHP4
Name:   php-%{modname}
Version:%{phpversion}
Release:%{release}
Group:  System/Servers
URL:http://www.php.net
License:PHP License
BuildRoot:  %{_tmppath}/%{name}-root
Prereq: php-common = %{phpversion}, perl
BuildRequires:  php-devel = %{phpversion}

%description
The %{name} package is a dynamic shared object (DSO) that adds %{modname}
support to PHP4. PHP4 is an HTML-embedded scripting language. If you need
%{modname} support for PHP4 applications, you will need to install this package in
addition to the php package.

%build
[ -e ./%{dirname} ]  rm -fr ./%{dirname}
cp -dpR %{phpsource}/extensions/%{dirname} .
cd %{dirname}
#ln -vs php_xmlrpc.h xmlrpc.h

#%{phpsource}/buildext xmlrpc xmlrpc-epi-php.c -lexpat -DCOMPILE_DL_XML 
-DHAVE_LIBEXPAT -DHAVE_DLFCN_H 
#%{phpsource}/buildext iconv iconv.c -Ilibxmlrpc
%{phpsource}/buildext %{modname} %{modname}.c


%install
cd %{dirname}
[ %{buildroot} != / ]  rm -rf %{buildroot} 
mkdir -p %{buildroot}%{phpdir}/extensions

install -m 755 -s %{soname} %{buildroot}%{phpdir}/extensions/

mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}
echo  %{buildroot}%{_docdir}/%{name}-%{version}/README EOF
The %{name} package contains a dynamic shared object (DSO) for PHP4. 
To activate it, make sure the line 'extension=%{modname}' is uncommented
in your /etc/php.ini file.
EOF
#cp EXPERIMENTAL %{buildroot}%{_docdir}/%{name}-%{version}

%clean
[ %{buildroot} != / ]  rm -rf %{buildroot}
[ -e ./%{dirname} ]  rm -fr ./%{dirname}

%post
if [ $1 = 1 ]; then
  if [ -f %{_sysconfdir}/php.ini ]; then
perl -pi -e 's|^;extension\s*=\s*%{soname}|extension = %{soname}|' 
%{_sysconfdir}/php.ini
LINE=`grep %{soname} %{_sysconfdir}/php.ini |grep extension`
if [ x$LINE = x ]; then
  echo extension = %{soname}  %{_sysconfdir}/php.ini
fi
  fi
fi
if [ $1 -gt 1 ]; then
   #We're in *upgrade mode*. Since we can't be sure the configuration files
   #are sane, remove module from the conf files to clean them, re-add again
   #in a way that the older module we're replacing won't try to erase (the
   #post scripts were broken on some packages)
   #Also, there could be extra lines, so make sure we uncomment one
   #Finally, don't check for presence of php.ini, if it's not there,
   #we have a problem, so it should generate an error message.
   perl -pi -e 's|^extension\s*=\s*%{soname}|;extension = %{soname}|g' 
%{_sysconfdir}/php.ini
   perl -pi -e 's|^;extension\s*=\s*%{soname}|extension = %{soname}|' 
%{_sysconfdir}/php.ini
fi
if [ -e %{_sbindir}/AESctl ]; then %{_sbindir}/AESctl reload;fi 

%preun
if [ $1 = 0 ]; then
  if [ -f %{_sysconfdir}/php.ini ]; then
perl -pi -e 's|^extension\s*=\s*%{soname}|;extension = %{soname}|g' 
%{_sysconfdir}/php.ini
  fi
  if [ -e %{_sbindir}/AESctl ]; then %{_sbindir}/AESctl reload;fi 
fi

%files 
%defattr(-,root,root)
%{phpdir}/extensions/%{soname}
%dir %{_docdir}/%{name}-%{version}
%doc %{_docdir}/%{name}-%{version}/README
#%doc %{_docdir}/%{name}-%{version}/EXPERIMENTAL

%changelog
* Tue Mar 19 2002 Alexander Skwar 

[Cooker] heavy X problems with old matrox cards

2002-04-03 Thread Guillaume Rousse

I encounter heavy problems with two old matrox cards. The first one seems to 
be completly unsuported by current XFree mga driver, the second freeze 
regulary. I've already submited a bug report to XFree maintainers directly 
for first one, with no responde sofar. Is there any interest for more details 
here, or should i switch to expert list instead ?
-- 
Guillaume Rousse [EMAIL PROTECTED]
GPG key http://lis.snv.jussieu.fr/~rousse/gpgkey.html




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread SI Reasoning

On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
 kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
 it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on it
 and install the rpm for rpm-3.0.4 on cooker

 ftp://ftp.kde.org/pub/kde/stable/3.0

some initial problems on 8.2:
no mandrake or other menus (kde,gnome)
kdesplash segfault
kcontrol is empty
inability to set preferences in konqueror (or any kde app I tried)
KDE3 was not created in kdm







Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread SI Reasoning

On Wednesday 03 April 2002 04:18 am, SI Reasoning wrote:
 On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
  kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
  it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on
  it and install the rpm for rpm-3.0.4 on cooker
 
  ftp://ftp.kde.org/pub/kde/stable/3.0

 some initial problems on 8.2:
 no mandrake or other menus (kde,gnome)
 kdesplash segfault
 kcontrol is empty
 inability to set preferences in konqueror (or any kde app I tried)
 KDE3 was not created in kdm

h, I tried regular kde in kdm and kde3 came up with my prior kde2 
settings. This is a bit odd, since I could not upgrade kde but instead 
installed kde3 new in the /opt directory.  Most of the problems above remain 
though as referenced below:
limited mandrake menus 
kcontrol is empty
inability to set preferences in konqueror (or any kde app I tried)




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 12.10, Alexander Skwar wrote:
 Hello!

 I've got some requests regarding the PHP package in cooker.

My request is that we drop the current way of packaging php. The Redhat or 
PLD way is way smarter and easier...

-- 
Regards // Oden Eriksson




Re: [Cooker] After an upgrade

2002-04-03 Thread Stéphane Teletchéa

Le Mercredi 3 Avril 2002 19:44, Stéphane Teletchéa a écrit :
 Being unabled to boot on my computer, il decided to upgrade manually via
 rpmdrake.
 i had to proceed carefully, but except for nvidia (mknod needed),
 everything went smooth).
 But when i boot, i have these messages (again and again) :
 1 - changing / to /dev/root in fstab ...
 Nothing is made in fstab

 2 - creating /dev/ttyxx (until z5 or something similar ... very huge)
 changing permissions /dev/ttyxx to /smthing/root.tty

 It is not really clear, but after that, linuxconf pops and asks me what to
 do.

 If, from the beginning, it touch nothing, everything goes to the boot, so
 it is really a minor features, but i would like to know why this happens.

 Last, supermount doesn't work, although i did a supermount -i enable, so
 /etc/fstab is modified :
 /mnt/cdrom  /mnt/cdrom  supermount
 fs=iso9660,dev=/dev/cdrom,ro,nosuid,noauto,nodev,exec 0 0
 /mnt/floppy /mnt/floppy supermount
 fs=vfat,dev=/dev/fd0,nosuid,noauto,nodev,unhide 0 0

 but no supermount module is loaded.
 (although present).

 May be those two are related, and linked to devfs ...

 I am using the kernel bundled with 8.2.
 Stef

Reply to myself :
i used the second cd-rom to upgrade and it worked.
All problems solved.
Stef




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Laurent Montel

Le Wednesday 03 April 2002 07:36, Robert Fox a écrit :
 So what's the proper command to use to install the KDE3 final RPMs into
 Mandrake 8.2?  

Use the good package.
It's not difficult to download on kde.org good package no ?



and, could you be more specific how Cooker is now
 different from the 8.2 release?  This would be useful information . .

Check changelog !
Regards


 Thanks,
 R.Fox

 On Wed, 2002-04-03 at 10:29, Laurent Montel wrote:
  Le Wednesday 03 April 2002 04:15, Salane King a écrit :
   kde 3 is out for 8.2 all will install on cooker except for kdeadmin3,
   but it doesn't take long to do a rpm --rebuild
   kdeadmin3-3.0-1mdk.src.rpm on it and install the rpm for rpm-3.0.4 on
   cooker
 
  No no no no !!!
  When I build package for a mdk version use it on good version.
  So DON'T INSTALL 8.2 package on cooker 
 
  Perhaps you don't know but cooker is DIFFERENT from 8.2 !
 
  Regards.
 
   ftp://ftp.kde.org/pub/kde/stable/3.0/





Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Laurent Montel

Le Wednesday 03 April 2002 10:18, SI Reasoning a écrit :
 On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
  kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
  it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on
  it and install the rpm for rpm-3.0.4 on cooker
 
  ftp://ftp.kde.org/pub/kde/stable/3.0

 some initial problems on 8.2:
 no mandrake or other menus (kde,gnome)
 kdesplash segfault

Qt bugs !

 kcontrol is empty

No here kcontrol is full !

 inability to set preferences in konqueror (or any kde app I tried)
 KDE3 was not created in kdm

I will fix it in cooker package.
Regards.





Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Salane King

You are correct they are there. (Noise of hands being slapped for being 
impatient). I promise I will be good and install the correct ones now.
 
On Wednesday 03 April 2002 08:25 am, Laurent Montel wrote:
 Le Wednesday 03 April 2002 07:36, Robert Fox a écrit :
  So what's the proper command to use to install the KDE3 final RPMs into
  Mandrake 8.2?

 Use the good package.
 It's not difficult to download on kde.org good package no ?

 and, could you be more specific how Cooker is now
  different from the 8.2 release?  This would be useful information . .

 Check changelog !
 Regards

  Thanks,
  R.Fox
 
  On Wed, 2002-04-03 at 10:29, Laurent Montel wrote:
   Le Wednesday 03 April 2002 04:15, Salane King a écrit :
kde 3 is out for 8.2 all will install on cooker except for kdeadmin3,
but it doesn't take long to do a rpm --rebuild
kdeadmin3-3.0-1mdk.src.rpm on it and install the rpm for rpm-3.0.4 on
cooker
  
   No no no no !!!
   When I build package for a mdk version use it on good version.
   So DON'T INSTALL 8.2 package on cooker 
  
   Perhaps you don't know but cooker is DIFFERENT from 8.2 !
  
   Regards.
  
ftp://ftp.kde.org/pub/kde/stable/3.0/

-- 
If you sell diamonds, you cannot expect to have many customers.
But a diamond is a diamond even if there are no customers.
-- Swami Prabhupada





Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread Nelson Bartley

On Tue, 2002-04-02 at 19:20, Murray J. Root wrote:
 Did you edit /etc/modules.conf and change /dev/nvidia/* to /dev/nvidia* ?
 (Notice the number of /s )
 
 
Can you go into a little more detail what is required here? I didnot edit modules.conf 
however I have the following line in my modules.conf:
alias char-major-195 NVdriver

Somehow this line does not seem right.

At any rate, more detail on what you're discuessing would be greatly
apprecaited, or rather a link to where I can obtain this information
myself.

Thanks,
Nelson Bartley
[EMAIL PROTECTED]





Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread Nelson Bartley

No. I downloaded the .src.rpm and rpmbuild --rebuild.

NB

On Tue, 2002-04-02 at 19:27, Peter Ruskin wrote:
 On Wednesday 03 Apr 2002 01:11, Nelson Bartley wrote:
  Hi.
 
  I downloaded 2.4.18-8mdk kernel and source, installed them, downloaded
  latest NVIDIA GLX and kernel drivers (in Src), recompilled nvidia GLX
 
 By recompiled, I guess you installed the NVidia drivers from tarballs.  I 
 have found that, with the latest kernels, if you've used the kernel 
 driver on another kernel, you can only compile the kernel driver 
 sucessfully if you delete it (all the *.d and *.o files) and untar the 
 tarball again.
 
  and kernel drivers, installed the rpms, modified my XF86Config-4 to:
  Load glx
  and the driver from nv to nvidia, just as I've done for many
  kernels before, and I was completely unsucessful. When the computer
  boots (or when X is restarted) the computer will lock solid, and no
  errors message is dumped out to the XF log, nor the kernel log.
 
  Has anyone else experienced similar problems with the most recent
  nvidia and kernel?
 
  Nelson Bartley
  [EMAIL PROTECTED]
 -- 
 Peter Ruskin, Wrexham, Wales.  AMD Athlon XP 1600+, 512MB RAM.
 Registered Linux User 219434.  Mandrake Linux release 8.2 (Bluebird) 
 Kernel 2.4.18-6mdk-win4lin,  XFree86 4.2.0, patch level 9mdk.
 KDE: 2.2.2.  Qt: 2.3.1.  Up 1 day 7 hours 27 minutes.
 
 






Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Alexander Skwar

»Oden Eriksson« sagte am 2002-04-03 um 13:02:06 +0200 :
 My request is that we drop the current way of packaging php. The Redhat or 
 PLD way is way smarter and easier...

Care to explain a little?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 2 days 0 hours 45 minutes




[Cooker] Manuals for the boxed sets.

2002-04-03 Thread Colin Murphy

Can anyone tell me if the manuals for the boxed sets have been reworked 
from those that came with 8.1.

I always felt that the manuals let the product down previously, especially 
when compared to RH and SuSE.

-- 
Colin Murphy
[EMAIL PROTECTED]

A man for all seasons, 'specially pepper.




[Cooker] More PHP problems #2

2002-04-03 Thread Alexander Skwar

Hmm, when I enable the mysql.so extension, PHP just core dumps.  I also
recompiled/rebuild the php-mysql.src.rpm and installed this, but php
still core dumps.

Any ideas about the reason?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 2 days 0 hours 49 minutes




[Cooker] More PHP problems

2002-04-03 Thread Alexander Skwar

Okay, I've now figured that I need to compile php-recode a little
differently:

%{phpsource}/buildext %{modname} %{modname}.c -lrecode
%-DCOMPILE_DL_RECODE -DHAVE_LIBRECODE

Fine.  recode now works.  However, I've also recompiled php-imap, and
when I try to start php, I get this error:

PHP Warning:  Unable to load dynamic library
'/usr/lib/php/extensions/imap.so' - /usr/lib/php/extensions/imap.so:
undefined symbol: gss_nt_service_name in Unknown on line 0

Where should gss_nt_service_name be defined?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 2 days 0 hours 47 minutes




Re: [Cooker] sarg-1.2.0-0.Beta2.1mdk

2002-04-03 Thread Florin

[EMAIL PROTECTED] (David Relson) writes:

 sarg expects file /etc/cron.daily/sarg to have -rw-rw, i.e. installs it 
 without execute permission.  Surely, this is wrong...
 
 
Hello,

I was in vacation but now that I'm back in business, you'll see it fixed
in no time ... 

cheers,
-- 
Florin  http://www.mandrakesoft.com




[Cooker] Gnome image background

2002-04-03 Thread Michal 'hramrach' Suchanek

In my current setup in Gnome Control Center I can select background 
image (as opposed to simple fill) and specify none should be used.
This results in gnome putting random parts of previosly displayed 
windows on the desktop (in fact, the bitmaps do not neccessarily come 
from the same X session or X server, seems that part of the graphics 
memory is allocated for bitmap but never painted) .
Although this is a cool effect which could not be easily achieved on 
purpose it is probably not the intended behavior.


XFree86-server-4.1.0-22mdk
libgnome-db0-0.2.93-3mdk
libgnome-vfs0-1.0.2-2mdk
gnome-control-center-plus-1.5.11-3mdk
libgdk-pixbuf-gnomecanvas1-0.14.0-1mdk
gnome-libs-1.4.1.4-1mdk
libgnomeprint15-devel-0.34-1mdk
libgnome-db0-devel-0.2.93-3mdk
libgnome32-devel-1.4.1.4-5mdk
gnome-core-1.4.0.6-12mdk
gnome-control-center-1.5.11-4mdk
libgnome32-1.4.1.4-1mdk
libglade-gnome-db0-0.17-2mdk
rep-gtk-gnome-0.15-4mdk
libglade-gnome0-0.17-2mdk

i740 graphics card





Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Laurent CREPET

On Tue, Apr 02, 2002 at 07:14:41PM +0200, Laurent CREPET wrote:
 On Tue, Apr 02, 2002 at 12:31:32PM +0200, Thierry Vignaud wrote:
  Laurent CREPET [EMAIL PROTECTED] writes:
  
view: Symbol `ospeed' has different size in shared object,
consider re-linking
  
  i don't see that behaviour.
  
   Something to do ?
  
  have you rebuild your own libstdc++ ?
  or not updated your libstdc++ ?
 
 not updated to the last one, I think. I'll check this tomorrow.
 
 Laurent.

Here are my libstdc++ RPMS installed:
 libstdc++2.10-2.96-0.78mdk
 libstdc++3.0-devel-3.0.4-5mdk
 libstdc++2.10-devel-2.96-0.78mdk
 libstdc++3.0-3.0.4-5mdk

Still the same message:
 vim: Symbol `ospeed' has different size in shared object, consider re-linking

I forgot to say that vim works, but before reading the file to be edited, it
displays the previous error message on stderr.

Laurent.
-- 
Laurent CREPET -- [EMAIL PROTECTED]
http://megrapet.free.fr/




Re: [Cooker] More PHP problems

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 13.48, Alexander Skwar wrote:
 Okay, I've now figured that I need to compile php-recode a little
 differently:

 %{phpsource}/buildext %{modname} %{modname}.c -lrecode
 %-DCOMPILE_DL_RECODE -DHAVE_LIBRECODE

 Fine.  recode now works.  However, I've also recompiled php-imap, and
 when I try to start php, I get this error:

 PHP Warning:  Unable to load dynamic library
 '/usr/lib/php/extensions/imap.so' - /usr/lib/php/extensions/imap.so:
 undefined symbol: gss_nt_service_name in Unknown on line 0

 Where should gss_nt_service_name be defined?

 Alexander Skwar

I belive you must add:

export LIBS=$LIBS -lpthread -L/usr/kerberos/lib -lgssapi_krb5 -lkrb5 
-lk5crypto -lcom_err

and

--with-openssl when building php.

Also:

%{phpsource}/buildext imap php_imap.c \
%{_libdir}/libc-client.a -lpam -lpthread \
-L/usr/kerberos/lib -lgssapi_krb5 -lkrb5 -lk5crypto \
-lcom_err -DCOMPILE_DL_IMAP -DHAVE_IMAP_SSL

when building php-imap since the recent changes with imap-devel-2001a-4mdk

Or you could try:

%{phpsource}/buildext imap php_imap.c \
%{_libdir}/libc-client-nossl.a -lpam -DCOMPILE_DL_IMAP


But I don't know if that will work. I guess no one has had the time to dig 
through this yet...

-- 
Regards // Oden Eriksson




Re: [Cooker] Manuals for the boxed sets.

2002-04-03 Thread Guillaume Cottenceau

Colin Murphy [EMAIL PROTECTED] writes:

 Can anyone tell me if the manuals for the boxed sets have been reworked 
 from those that came with 8.1.

Of course, things are corrected, added, removed, etc between
versions.
 
 I always felt that the manuals let the product down previously, especially 
 when compared to RH and SuSE.

-- 
Guillaume Cottenceau - http://www.frozen-bubble.org/




Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Geoffrey Lee

  libstdc++3.0-3.0.4-5mdk
 
 Still the same message:
  vim: Symbol `ospeed' has different size in shared object, consider re-linking
 
 I forgot to say that vim works, but before reading the file to be edited, it
 displays the previous error message on stderr.
 


I've seen this before, this means that the libraries on your own computer
and the kibraries that vim was compield against doesn't match, at
preliminary investigation this seems to be ncurses ...

- G.




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 13.45, Alexander Skwar wrote:
 »Oden Eriksson« sagte am 2002-04-03 um 13:02:06 +0200 :
  My request is that we drop the current way of packaging php. The Redhat
  or PLD way is way smarter and easier...

 Care to explain a little?

Take a look at how they have done it.

Also take a look at what can be done when php is built from source here:

http://d-srv.com/phpinfo.html

It would be extremly difficult to accomplish this with the current way of 
packaging php. I belive it would be easier to do it the Redhat or PLD way 
(ie. the old way of doing it). 

-- 
Regards // Oden Eriksson




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Christian Belisle

Alexander Skwar wrote:
 
 Hello!
 
 I've got some requests regarding the PHP package in cooker.
 
 a) The php-devel package contains the PEAR repository.  However, I don't
 think php-devel is a good name for this kind of package.  Would it be
 possible to move the PEAR files from php-devel to, let's say, php-pear?
 
 b) The PEAR files are located in /usr/lib/php.  IMO it would be nicer if
 those files were in /usr/lib/php/pear.
 
 c) The /etc/php.ini file sets include_path to /usr/lib/php.  I cannot
 include/require files from /usr/lib/php with a simple include
 'file.php'.  When I change the include_path line to /usr/lib/php/ (note
 the trailing slash), I'm able to do so.  Could this please be changed?
 
 d) For whatever reason, I'm unable to build extension modules for PHP.
 I tried to compile a php-recode package, basically doing:
 
 %{phpsource}/buildext recode recode.c
 
 install -m 755 -s recode.so $RPM_BUILD_ROOT%{phpdir}/extensions/
 
 When I start PHP, it always complains that iconv.so is not a valid php
 library.  I really don't know what I did do wrong.  The error message I
 get is:
 
 PHP Warning:  Invalid library (maybe not a PHP library) 'recode.so'  in
 Unknown on line 0
 
 I'll attach the spec used for building the RPM to this message.
 
 e) Would it be possible to compile/ship PHP with --with-recode?
 
 I can provide SRPMS/RPMS for all of this, if required.
 

Send us only the SPEC file you modified (to jmdault and me).

I also saw your other PHP problems. I don't think we will work on it for
php 4.1.2. 4.2.0 RC 1 is out since march 21st so I think the final
release is about to come out really soon. We will wait this version to
rebuild/upgrade all the PHP-related packages. I keep your requests in my
mailbox so as soon as 4.2.0 is out, jmdault and me will work on it.

Thanks! And if you have other suggestions, include it in the SPEC (or
the mail) you will send us.

Chris




Re: [Cooker] Re: [CHRPM] postgresql-7.2-13mdk

2002-04-03 Thread Christian Belisle

Charles A Edwards wrote:
 
 On Tue,  2 Apr 2002 23:46:00 +0200 (CEST)
 Christian Belisle [EMAIL PROTECTED] wrote:
 
[...]
 
 
 Probably already known but there was a -13 update for postgresql-tcl
 but there Was Not one for postgresql-tk
 

There is one now in cooker. It had been a little late, but it's there.

Chris




[Cooker] Re: [SNF] Is SNF going to have it's own cooker ie cookfire?

2002-04-03 Thread Florin

Randy Welch [EMAIL PROTECTED] writes:

 Just reading through the various messages and thinking that since SNF 8.2
 will be a stand alone product I would expect that it would have it's own
 installer.  Yes?  If so will we get to try it out before it is released?

for the moment it will be available on its package form but we'll have to
add a real VPN support for the end of he month and create a separate
product with its own installer. 

The installer will only update the nework configuration, choose the
right packages and set up the admin user password and skip the X-window
part.  

cheers,
-- 
Florin  http://www.mandrakesoft.com




Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread wyrmzr

On Wednesday 03 April 2002 05:37 am, you wrote:
 On Tue, 2002-04-02 at 19:20, Murray J. Root wrote:
  Did you edit /etc/modules.conf and change /dev/nvidia/* to /dev/nvidia* ?
  (Notice the number of /s )

 Can you go into a little more detail what is required here? I didnot edit
 modules.conf however I have the following line in my modules.conf: alias
 char-major-195 NVdriver

 Somehow this line does not seem right.

 At any rate, more detail on what you're discuessing would be greatly
 apprecaited, or rather a link to where I can obtain this information
 myself.

 Thanks,
 Nelson Bartley
 [EMAIL PROTECTED]
that line looks ok. just checked it on my system with NVidia driver, GeForce2 
Ultra card, and it shows the same thing.  Mine works fine




Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Gwenole Beauchesne

 have you rebuild your own libstdc++ ?
 or not updated your libstdc++ ?

What does the ospeed symbol have to do with libstdc++?





Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Geoffrey Lee

  I've seen this before, this means that the libraries on your own
  computer and the kibraries that vim was compield against doesn't
  match, at preliminary investigation this seems to be ncurses ...
 
 all i can say is that :
 1) i build on latest librairies


we all do because everything is built on the cluster ;p


 2) i test on latest librairies (cron run urpmi several times per day)
 
 for his problem: libncurses does seem to be the only lib used by vim
 that uses the ospeed symbol.


yep, that's exactly the problem I targeted at, so he really needs to 
upgrade his libncurses.


- G.




Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Gwenole Beauchesne

 for his problem: libncurses does seem to be the only lib used by vim
 that uses the ospeed symbol.

Actually, I don't think that libncurses has the ospeed symbol. That's 
libermcap2. ncurses defines its own ospeed symbol as _nc_ospeed.





Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Michael Andreen

On Wednesday 03 April 2002 10.29, Laurent Montel wrote:
 Perhaps you don't know but cooker is DIFFERENT from 8.2 !

When this is up.. It's been said that it's dangerous to run cooker, but how 
dangerous is it really?

I've been idling on this mailinglist for a few months now and I can't see 
that it's more dangerous than always compiling and running the latest release 
of everything (which I tend to be doing after a while, or stealing a cooker 
package once in a while and get it into the stable dist), actually it seems 
less dangerous since you mdk guys are more experianced and follows the 
development of your packages better than me (I guess).

So what's recommended? Running a stable release and compiling the latest 
software/ using a few cooker packages in the stable release or running a pure 
cooker system?

Michael Andreen
[EMAIL PROTECTED]




Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Gwenole Beauchesne

 all i can say is that :
 1) i build on latest librairies
 2) i test on latest librairies (cron run urpmi several times per day)

BTW, make sure that you have properly build with the right includes. 
e.g. including plain termcap.h would lead to the libtermcap2 one if 
not instructed to grab ncurses includes *first*.





Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread Thierry Vignaud

Geoffrey Lee [EMAIL PROTECTED] writes:

  Still the same message:
   vim: Symbol `ospeed' has different size in shared object,
   consider re-linking
  
  I forgot to say that vim works, but before reading the file to be
  edited, it displays the previous error message on stderr.

 I've seen this before, this means that the libraries on your own
 computer and the kibraries that vim was compield against doesn't
 match, at preliminary investigation this seems to be ncurses ...

all i can say is that :
1) i build on latest librairies
2) i test on latest librairies (cron run urpmi several times per day)

for his problem: libncurses does seem to be the only lib used by vim
that uses the ospeed symbol.
-- 
Still untested beyond 'it compiles' (davej)





Re: [Cooker] printerdrake freezes (pdq, cups, dhcp, lpstat)

2002-04-03 Thread Christophe Combelles

Guillaume Rousse wrote:
 Ainsi parlait Christophe Combelles :
 
printerdrake often runs lpstat to check the config :

If there is a problem with the network config or the cups config, lpstat
never returns, and printerdrake never finishes to tell me to wait. So I
must kill it, and I cannot configure any printer with it.

I've got the problem with the following procedure :

- fresh 8.2 install with a printer using PDQ
- configure the network with dhcp (cable modem)
- change the printer manager to CUPS

...hangs... : lpstat doesnt return.

I have run into this problem just by using mdk config tools, without
manually editing any config file.

I had to disable the dhcp, configure a static IP, configure the printer,
reconfigure the dhcp.

I think a GUI for a config tool should never be blocked by a single
command launched in background, and should not suppose it will return in
short delays.
 
 I suspect it could come from mdk GUI tools actually.
 Please see my mail X freeze when launching drakconf under 8.2, and test if 
 using mcc triggers the same problem...

No, the problem is just that printerdrake waits for ever that lpstat 
returns. But in certain cases, lpstat won't return, so printerdrake 
never close its window named please wait while checking installed 
software.




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread andre

On Wednesday 03 April 2002 12:43, SI Reasoning wrote:
 On Wednesday 03 April 2002 04:18 am, SI Reasoning wrote:
  On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
   kde 3 is out for 8.2 all will install on cooker except for kdeadmin3,
   but it doesn't take long to do a rpm --rebuild
   kdeadmin3-3.0-1mdk.src.rpm on it and install the rpm for rpm-3.0.4 on
   cooker
  
   ftp://ftp.kde.org/pub/kde/stable/3.0
 
  some initial problems on 8.2:
  no mandrake or other menus (kde,gnome)
  kdesplash segfault
  kcontrol is empty
  inability to set preferences in konqueror (or any kde app I tried)
  KDE3 was not created in kdm

 h, I tried regular kde in kdm and kde3 came up with my prior kde2
 settings. This is a bit odd, since I could not upgrade kde but instead
 installed kde3 new in the /opt directory.  Most of the problems above
 remain though as referenced below:
 limited mandrake menus
 kcontrol is empty
 inability to set preferences in konqueror (or any kde app I tried)

/opt/kde3/bin is for /usr/bin so those programs are used first. Kde2 doesn't 
like that




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Maks Orlovich

On Wednesday 03 April 2002 03:29 am, you wrote:
 Le Wednesday 03 April 2002 04:15, Salane King a écrit :
  kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
  it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on
  it and install the rpm for rpm-3.0.4 on cooker

 No no no no !!!
 When I build package for a mdk version use it on good version.
 So DON'T INSTALL 8.2 package on cooker 

 Perhaps you don't know but cooker is DIFFERENT from 8.2 !

Any chance you could try building kdelibs in Cooker with 
--enable-fast-malloc=full sometimes? It is experimental, but it makes a big 
difference in speed...

Thanks,
Maks Orlovich




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Maks Orlovich

On Wednesday 03 April 2002 08:26 am, you wrote:
 Le Wednesday 03 April 2002 10:18, SI Reasoning a écrit :
  On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
   kde 3 is out for 8.2 all will install on cooker except for kdeadmin3,
   but it doesn't take long to do a rpm --rebuild
   kdeadmin3-3.0-1mdk.src.rpm on it and install the rpm for rpm-3.0.4 on
   cooker
  
   ftp://ftp.kde.org/pub/kde/stable/3.0
 
  some initial problems on 8.2:
  no mandrake or other menus (kde,gnome)
  kdesplash segfault

 Qt bugs !

Any chance you can apply the Qt patch from qt-copy from Qt? Or there is a 
1-line workaround for KSplash crashing -- doing setStyle(highcolor) early 
on in the initialization of the app...

Thanks,
Maks Orlovich





[Cooker] KDE3 and kdm

2002-04-03 Thread Jeremy Salch

I installed kde3 and i tryed to uninstall kde2 also  so that i would only have 
kde 3 but when i do kdm is gone and i can't seem to log into kde3
unless i type  kde3  at  the prompt in init 3





[Cooker] KDE3 firstime wizard

2002-04-03 Thread Jeremy Salch

Every time i log into kde3 the firstime settings wizard comes up.. ?  any 
ideas





Re: [Cooker] siag-3.5.1-2

2002-04-03 Thread Charles A Edwards

On Mon, 1 Apr 2002 13:12:49 -0500
Charles A Edwards [EMAIL PROTECTED] wrote:

 With the 3 new siag rpms it would appear that there is now no way to run Pathetic 
Writer.
 
 /usr/share/siag/pw exist But neither /usr/lib/menu/pw Nor /usr/bin/pw are created.
 

Since no one else provided an answer I decided to track down the problem.

When saig is installed, 3 pkgs will be pulled saig, saig-common, and saig-plugins and 
if not all ready installed a couple other misc pkgs as depends.

But this is Wrong.
In order to have and run all saig components you must have installed 
 siag-3.5.1-2mdk.i586.rpm
 siag-common-3.5.1-2mdk.i586.rpm
 siag-plugins-3.5.1-2mdk.i586.rpm
 egon-3.5.1-2mdk.i586.rpm
 pw-3.5.1-2mdk.i586.rpm
 tsiag-3.5.1-2mdk.i586.rpm
 
egon, pw, and tsiag need to be added to the depends when saig is installed so that 
they will also be auto pulled and installed.


Charles




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Alexander Skwar

»Oden Eriksson« sagte am 2002-04-03 um 15:06:12 +0200 :
 packaging php. I belive it would be easier to do it the Redhat or PLD way 
 (ie. the old way of doing it). 

Hm, you mean to have php.src.rpm build php-imap, php-mysql, php-this,
php-that?  Well, I disagree.  If the buildext is called with the correct
parameters, building extensions is rather easy.  And (at least in
theory) it should also be somewhat easier to maintain, I think.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 0 hours 22 minutes




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 19.06, Alexander Skwar wrote:
 »Oden Eriksson« sagte am 2002-04-03 um 15:06:12 +0200 :
  packaging php. I belive it would be easier to do it the Redhat or PLD way
  (ie. the old way of doing it).

 Hm, you mean to have php.src.rpm build php-imap, php-mysql, php-this,
 php-that?  Well, I disagree.  If the buildext is called with the correct
 parameters, building extensions is rather easy.  And (at least in
 theory) it should also be somewhat easier to maintain, I think.

Yes in theory it works just fine, but it's not easy to accomplish... It would 
take me forever to do it this way and have the stuff working that i mentioned 
here: http://d-srv.com/phpinfo.html

-- 
Regards // Oden Eriksson




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Alexander Skwar

»Oden Eriksson« sagte am 2002-04-03 um 19:19:44 +0200 :
 Yes in theory it works just fine, but it's not easy to accomplish... It would 
 take me forever to do it this way and have the stuff working that i mentioned 
 here: http://d-srv.com/phpinfo.html

Well, to be honest, for my private use, I also recompile PHP with the
needed --with's.  But as far as the distribution is concerned, I can
understand the current way of doing things.  In theory, you won't need
to recompile the main php package and thus can easily upgrade to new
RPM releases without losing anything.  Not so with the RedHat way of
doing things, or am I wrong?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 0 hours 46 minutes




Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 19.30, Alexander Skwar wrote:
 »Oden Eriksson« sagte am 2002-04-03 um 19:19:44 +0200 :
  Yes in theory it works just fine, but it's not easy to accomplish... It
  would take me forever to do it this way and have the stuff working that i
  mentioned here: http://d-srv.com/phpinfo.html

 Well, to be honest, for my private use, I also recompile PHP with the
 needed --with's.  But as far as the distribution is concerned, I can
 understand the current way of doing things.  In theory, you won't need
 to recompile the main php package and thus can easily upgrade to new
 RPM releases without losing anything.  Not so with the RedHat way of
 doing things, or am I wrong?

The only benefit the ML way of doing it is that you _can_ add extensions 
afterworth, but as you have noticed it's damn difficult. The fact that you 
_can_ do this and what's practical is two different things. It depends so 
much on if this and that is supported in the main php package.

For instance, the changes I made to the imap-2000a package (the ssl aware 
devel package). To even build the php-imap package since this change will 
also require changes to the main php package. So what's the use of doing it 
this way? Next time one would like some other support in php, it may all 
start all over again, and it might even require that all php-* stuff is 
rebuilt.


-- 
Regards // Oden Eriksson




Re: [Cooker] siag-3.5.1-2

2002-04-03 Thread Charles A Edwards

On Wed, 03 Apr 2002 19:58:07 +0200
Thierry Vignaud [EMAIL PROTECTED] wrote:

 Charles A Edwards [EMAIL PROTECTED] writes:
 
   With the 3 new siag rpms it would appear that there is now no way
   to run Pathetic Writer.
   
   /usr/share/siag/pw exist But neither /usr/lib/menu/pw Nor
   /usr/bin/pw are created.
 
  Since no one else provided an answer
 
 i've already answered on this topic in
 [EMAIL PROTECTED] message on Tue Apr 2 11:09:22
 2002 ! 
 
Sorry, but I never received and so thought had been unanswered. 

 
 nothing is wrong.
 you can install whatever you need and not all the full siag.
 
  In order to have and run all saig components you must have installed 
 
 you don't see the point: i splited the siag package so that one can
 have pw without egon, ...
 
Now having received this post I do understand the point,
but as the pkg has been split I Do have a problem in the saig pkg describe:

Description :
Siag Office consists of :
- the word processor Pathetic Writer,
- the spreadsheet Siag,
- the animation program Egon Animator,
- the file manager Xfiler,
- the text editor Xedplus,
- the Postscript viewer Gvu.

reading this leads to the belief that once saig is installed all the noted apps will 
be available which they are not.

Now do you see my point.


Charles




[Cooker] background-properties-capplet goes insane!

2002-04-03 Thread Nick Murtagh

Hi

I posted yesterday about a problem I was having with gnome. I've got a bit 
more information about the problem. If I try to change the background in 
gnome after I su to root and run background-properties-capplet, everything is 
ok. If I don't run it as root, after I click the Browse button to choose a 
pixmap, background-properties-capplet takes up all the memory in the machine 
and gets killed by the VM, after about 20 seconds.

kernel: __alloc_pages: 0-order allocation failed (gfp=0x1d2/0)
kernel: VM: killing process background-prop

Is anyone else seeing this frankly bizarre behaviour? I'm running a fresh 
install of 8.2 set to Paranoia mode :)

Nick




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread trax

I have it on my laptop, are we really sure that this is KDE3 Final?
I do not see any proper announcement yet on kde.org (makes me wonder)

trax
:)

On Wed, 2002-04-03 at 12:18, SI Reasoning wrote:
 On Tuesday 02 April 2002 10:15 pm, Salane King wrote:
  kde 3 is out for 8.2 all will install on cooker except for kdeadmin3, but
  it doesn't take long to do a rpm --rebuild kdeadmin3-3.0-1mdk.src.rpm on it
  and install the rpm for rpm-3.0.4 on cooker
 
  ftp://ftp.kde.org/pub/kde/stable/3.0
 
 some initial problems on 8.2:
 no mandrake or other menus (kde,gnome)
 kdesplash segfault
 kcontrol is empty
 inability to set preferences in konqueror (or any kde app I tried)
 KDE3 was not created in kdm
 
 
 




_
Do You Yahoo!?
Get your free yahoo.com address at http://mail.yahoo.com





[Cooker] problem building 0.10.99 -- libpisock++.so.0.0.0U ??

2002-04-03 Thread Stefan van der Eijk

I'm trying to build a package out of the 0.10.99 pilot-link software, 
and some things aren't working (ietf2datebook, sync-plan and 
pilot-undelete aren't being compiled). A closer look revealed:

gcc -shared  address.lo appInfo.lo datebook.lo dlp.lo iambicExpense.lo 
memo.lo todo.lo  -L/usr/lib -lpisock   -Wl,-soname -Wl,libpisock++.so.0 
-o .libs/libpisock++.so.0.0.0
/usr/bin/ld: cannot find -lpisock
collect2: ld returned 1 exit status
libtool: install: error: relink `libpisock++.la' with the above command 
before installing it
libtool: install: warning: remember to run `libtool --finish /usr/lib'

I then tool a look in 
/home/stefan/RPM/BUILD/pilot-link-0.10.99/libpisock++/.libs/ and found 
the following:

$ ls -l
total 256
-rw-r--r--1 stefan   stefan  63872 Apr  3 21:21 libpisock++.a
lrwxrwxrwx1 stefan   stefan 17 Apr  3 21:21 libpisock++.la 
- ../libpisock++.la
-rw-r--r--1 stefan   stefan750 Apr  3 21:21 libpisock++.lai
lrwxrwxrwx1 stefan   stefan 20 Apr  3 21:21 libpisock++.so 
- libpisock++.so.0.0.0
lrwxrwxrwx1 stefan   stefan 20 Apr  3 21:21 libpisock++.so.0 
- libpisock++.so.0.0.0
-rwxr-xr-x1 stefan   stefan 183412 Apr  3 21:21 
libpisock++.so.0.0.0U*

I'm not sure what libpisock++.lai and libpisock++.so.0.0.0U  are 
doing there, and the symlinks to libpisock++.so.0.0.0 are dead and 
probably what's causing the error above. Any idea's?

Stefan





Re: [Cooker] vim 6.1-1mdk - re-linking message

2002-04-03 Thread skidley

On Wed, Apr 03, 2002 at 04:12:30PM +0200, Gwenole Beauchesne wrote:
 for his problem: libncurses does seem to be the only lib used by vim
 that uses the ospeed symbol.
 
 Actually, I don't think that libncurses has the ospeed symbol. That's 
 libermcap2. ncurses defines its own ospeed symbol as _nc_ospeed.
 
 
 
upgrading libncurses5 fixed the problem here.
-- 
Never underestimate the bandwidth of a station wagon full of tapes
hurtling down the highway.  -- Andrew S. Tanenbaum

Chad Young - Registered Linux User #195191  http://counter.li.org
---
Linux localhost 2.4.19-pre5 #1 Fri Mar 29 20:00:12 AST 2002 i686 GenuineIntel
  3:45pm  up   0:25,  6 users,  load average: 1.74, 1.34, 0.79




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Brad Felmey

On Wed, 2002-04-03 at 11:55, Robert Fox wrote:

 On Wed, 2002-04-03 at 15:25, Laurent Montel wrote:
  Le Wednesday 03 April 2002 07:36, Robert Fox a écrit :
   So what's the proper command to use to install the KDE3 final RPMs into
   Mandrake 8.2?  
  
  Use the good package.
  It's not difficult to download on kde.org good package no ?
  
 Would you mind speaking ENGLISH here?  I don't understand what you mean
 when you say use the good package

I didn't understand anything except the kde.org part, so I went looking
and found that Mandrake rpms are available on the kde mirrors. I presume
this is what he meant by good package.
-- 
Brad Felmey





[Cooker] kde3 rpm - trouble with arts

2002-04-03 Thread Matt and Sarah

I have installed the new kde3 rpms from ftp.kde.org.  When i log into
kde3, i get a message that the sound server couldn't autodetect which
I/O method to use, and nothing running through arts works, although
non-kde apps still work ok (xmms, mplayer).

Any clues on a fix?  Is this a bug in the rpms.  I note a couple of
other people have had the same issue.

Matt







Re: [Cooker] kde3 rpm - trouble with arts

2002-04-03 Thread Maks Orlovich

On Wednesday 03 April 2002 03:11 pm, you wrote:
 I have installed the new kde3 rpms from ftp.kde.org.  When i log into
 kde3, i get a message that the sound server couldn't autodetect which
 I/O method to use, and nothing running through arts works, although
 non-kde apps still work ok (xmms, mplayer).

 Any clues on a fix?  Is this a bug in the rpms.  I note a couple of
 other people have had the same issue.

I've just e-mailed kde@mandrake with the fix... Basically, disabling patch1 
works around the issue -- what happens is that the patch triggers an another 
autoconf run, which aborts due to autocofn 2.13 being selected, and clobbers 
config.h...






Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Christian Belisle

[EMAIL PROTECTED] wrote:
 
 In the subject of packaging practices, I like the way this guy makes his php
 packages
 
 http://rpms.arvin.dk/php/source/
 
 The spec is huge but very feature complete and easy to mantain (I think)
 
 It would be cool if Chris could check it out.
 

I'll look at it with jmdault, so we will be two to check it for php
4.2.0.

Thanks for the information,

Chris




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread anyone

Robert Fox wrote:
 
 On Wed, 2002-04-03 at 15:25, Laurent Montel wrote:
  Le Wednesday 03 April 2002 07:36, Robert Fox a écrit :
   So what's the proper command to use to install the KDE3 final RPMs into
   Mandrake 8.2?
 
  Use the good package.
  It's not difficult to download on kde.org good package no ?
 
 
 Would you mind speaking ENGLISH here?  I don't understand what you mean
 when you say use the good package
 
 Thx,
 R.Fox
 
 
on ftp servers /contrib folder has it.

Irek




[Cooker] Re: problem building 0.10.99 -- libpisock++.so.0.0.0U ??

2002-04-03 Thread Stefan van der Eijk

JP Rosevear wrote:

On Wed, 2002-04-03 at 14:37, Stefan van der Eijk wrote:

I'm trying to build a package out of the 0.10.99 pilot-link software, 
and some things aren't working (ietf2datebook, sync-plan and 
pilot-undelete aren't being compiled). A closer look revealed:

gcc -shared  address.lo appInfo.lo datebook.lo dlp.lo iambicExpense.lo 
memo.lo todo.lo  -L/usr/lib -lpisock   -Wl,-soname -Wl,libpisock++.so.0 
-o .libs/libpisock++.so.0.0.0
/usr/bin/ld: cannot find -lpisock
collect2: ld returned 1 exit status
libtool: install: error: relink `libpisock++.la' with the above command 
before installing it
libtool: install: warning: remember to run `libtool --finish /usr/lib'

I then tool a look in 
/home/stefan/RPM/BUILD/pilot-link-0.10.99/libpisock++/.libs/ and found 
the following:

$ ls -l
total 256
-rw-r--r--1 stefan   stefan  63872 Apr  3 21:21 libpisock++.a
lrwxrwxrwx1 stefan   stefan 17 Apr  3 21:21 libpisock++.la 
- ../libpisock++.la
-rw-r--r--1 stefan   stefan750 Apr  3 21:21 libpisock++.lai
lrwxrwxrwx1 stefan   stefan 20 Apr  3 21:21 libpisock++.so 
- libpisock++.so.0.0.0
lrwxrwxrwx1 stefan   stefan 20 Apr  3 21:21 libpisock++.so.0 
- libpisock++.so.0.0.0
-rwxr-xr-x1 stefan   stefan 183412 Apr  3 21:21 
libpisock++.so.0.0.0U*

I'm not sure what libpisock++.lai and libpisock++.so.0.0.0U  are 
doing there, and the symlinks to libpisock++.so.0.0.0 are dead and 
probably what's causing the error above. Any idea's?


What platform/compiler is this?

Mandrake cooker distro.

$ uname -a
Linux bi.mandrakesoft.com 2.4.16-6mdksmp #1 SMP Sat Dec 8 04:02:48 CET 
2001 i686 unknown
[stefan@bi libpisock++]$ gcc -v
Reading specs from /usr/lib/gcc-lib/i586-mandrake-linux-gnu/2.96/specs
gcc version 2.96 2731 (Mandrake Linux 8.3 2.96-0.78mdk)

Stefan





Re: [Cooker] Requests regarding PHP

2002-04-03 Thread Oden Eriksson

On Wednesdayen den 3 April 2002 22.23, Christian Belisle wrote:
 [EMAIL PROTECTED] wrote:
  In the subject of packaging practices, I like the way this guy makes his
  php packages
 
  http://rpms.arvin.dk/php/source/
 
  The spec is huge but very feature complete and easy to mantain (I think)
 
  It would be cool if Chris could check it out.

 I'll look at it with jmdault, so we will be two to check it for php
 4.2.0.

 Thanks for the information,

Wow..., that was a complex spec file!!!

PLD uses a similar approach to make those extensions, but not _that_ far out 
as this guy.

I like this one http://rpms.arvin.dk/gd-with_gif/ :-)

-- 
Regards // Oden Eriksson




Re: [Cooker] KDE3 firstime wizard

2002-04-03 Thread psic4t

On Wed, 3 Apr 2002, Jeremy Salch wrote:

 Every time i log into kde3 the firstime settings wizard comes up.. ?  any 
 ideas
nope, same here.

maybe it's the 'startkde3' script?

greets, psic4t. 





[Cooker] BUG report for Netstat

2002-04-03 Thread Saint-Michel Laurent

Hello,

the command netstat -c -ip just crash after the first run. See the output :

[laurent@linux laurent]$ netstat -c -ip
Table d'interfaces noyau
Iface   MTU Met   RX-OK RX-ERR RX-DRP RX-OVR   TX-OK TX-ERR TX-DRP TX-OVR Flg
eth0   1500   0 542  0  0  0 674  0  0  0
 BMRU lo16436   0 685  0  0  0 685  0  0 
 0 LRU ppp0   1500   0   30075  0  0  0   22412  0  0
  0 MOPRU
Iface   MTU Met   RX-OK RX-ERR RX-DRP RX-OVR   TX-OK TX-ERR TX-DRP TX-OVR Flg
Erreur de segmentation

The command strace netstat -c -ip gives : (see t.txt attached)

Finally, I got :

[laurent@linux laurent]$ netstat --version
net-tools 1.60
netstat 1.42 (2001-04-15)
Fred Baumgarten, Alan Cox, Bernd Eckenfels, Phil Blundell, Tuan Hoang and
others
+NEW_ADDRT +RTF_IRTT +RTF_REJECT +FW_MASQUERADE +I18N
AF: (inet) +UNIX +INET +INET6 +IPX +AX25 +NETROM +X25 +ATALK +ECONET +ROSE
HW:  +ETHER +ARC +SLIP +PPP +TUNNEL +TR +AX25 +NETROM +X25 +FR +ROSE +ASH
+SIT +FDDI +HIPPI +HDLC/LAPB
(out of the box of the Mdk 8.2)

And I am using a 2.4.18 modified by Mandrake.

The command 'netstat -c -udp' is working properly.

Please ask if you need any more informations.

Thanks and best regards

Laurent

--

Abstenez-vous de raconter à votre femme les infamies que vous ont faites les
précédentes . Ce n'est pas la peine de lui donner des idées ...
-+-+ Sacha Guitry
---
Envoyé par / Send by Laurent Saint-Michel [EMAIL PROTECTED]
Le : mer avr  3 23:37:57 CEST 2002
Machine : Linux 2.4.18-6mdk i686






Re: [Cooker] kde3 rpm - trouble with arts

2002-04-03 Thread Boban M. Jelica

Matt and Sarah wrote:
 I have installed the new kde3 rpms from ftp.kde.org.  When i log into
 kde3, i get a message that the sound server couldn't autodetect which
 I/O method to use, and nothing running through arts works, although
 non-kde apps still work ok (xmms, mplayer).
 
 Any clues on a fix?  Is this a bug in the rpms.  I note a couple of
 other people have had the same issue.
 
 Matt
 
 
 
 
 
 

Hi
It seems like it's a bug in the RPM, Texstar has put together a new RPM 
for 8.2 with this arts thingie worked out.
Check it out http://pclinuxonline.com/

Mvh
Boban Jelica
Gothenburg,Sweden






Re: [Cooker] BUG report for Netstat

2002-04-03 Thread Thierry Vignaud

Saint-Michel Laurent [EMAIL PROTECTED] writes:

 [laurent@linux laurent]$ netstat -c -ip
 Table d'interfaces noyau
 Iface   MTU Met   RX-OK RX-ERR RX-DRP RX-OVR   TX-OK TX-ERR TX-DRP TX-OVR Flg
 eth0   1500   0 542  0  0  0 674  0  0  0
  BMRU lo16436   0 685  0  0  0 685  0  0 
  0 LRU ppp0   1500   0   30075  0  0  0   22412  0  0
   0 MOPRU
 Iface   MTU Met   RX-OK RX-ERR RX-DRP RX-OVR   TX-OK TX-ERR TX-DRP TX-OVR Flg
 Erreur de segmentation

strange, i cannot reproduce it despite net-tools hasn't be rebuilded
since january.

florin, could you test on a mdk8.2 ?

-- 
Still untested beyond 'it compiles' (davej)





[Cooker] Question about Liquid on KDE3

2002-04-03 Thread Timothy R. Butler

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi everyone,
  I was wondering, do you know if  Liquid 0.9.2 should work on KDE 
3.0-Release? I'm running the official Mandrake RPM's and I believe I have all 
the needed development libraries installed, but I can't get Liquid to 
compile.

  Here is the error that I'm receiving:

- - - 
c++ -O2 -fno-exceptions -fno-check-new -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST 
- - - -o libkcm_liquid.la.closure .libs/libkcm_liquid_la_closure.o .libs/main.o 
.libs/liquid.o .libs/libkcm_liquid_la_meta_unload.o  -L/usr/X11R6/lib 
- - - -L/usr/lib/qt3/lib -L/usr/lib /usr/lib/libkdeui.so /usr/lib/libkdecore.so 
- - - -L/usr/lib/qt2/lib -ldl /usr/lib/libDCOP.so -lqt -lpng -lz 
/usr/lib/libjpeg.so -lXext -lX11 -lSM -lICE 
- - - -L/usr/lib/gcc-lib/i586-mandrake-linux-gnu/2.96 
- - - -L/usr/lib/gcc-lib/i586-mandrake-linux-gnu/2.96/../../.. -lresolv 
- -lXinerama 
- - - -lstdc++ -lm -lc -lgcc
.libs/liquid.o: In function `LiquidConfig::save(void)':
.libs/liquid.o(.text+0x2c): undefined reference to 
`QSettings::QSettings(void)'
.libs/liquid.o(.text+0x3c): undefined reference to 
`QButtonGroup::selected(void) const'
.libs/liquid.o(.text+0x7d): undefined reference to 
`QSettings::writeEntry(QString const , int)'
.libs/liquid.o(.text+0xe2): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x15a): undefined reference to 
`QSettings::writeEntry(QString const , int)'
.libs/liquid.o(.text+0x1c5): undefined reference to 
`QSettings::writeEntry(QString const , int)'
.libs/liquid.o(.text+0x223): undefined reference to 
`QSettings::writeEntry(QString const , int)'
.libs/liquid.o(.text+0x28e): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x2f9): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x364): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x3cf): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x452): undefined reference to 
`QSettings::writeEntry(QString const , int)'
.libs/liquid.o(.text+0x4bd): undefined reference to 
`QSettings::writeEntry(QString const , bool)'
.libs/liquid.o(.text+0x505): undefined reference to 
`QSettings::~QSettings(void)'
.libs/liquid.o: In function `LiquidConfig::load(void)':
.libs/liquid.o(.text+0x560): undefined reference to 
`QSettings::QSettings(void)'
.libs/liquid.o(.text+0x57d): undefined reference to 
`QSettings::readNumEntry(QString const , int, bool *)'
.libs/liquid.o(.text+0x5fd): undefined reference to 
`QSettings::readNumEntry(QString const , int, bool *)'
.libs/liquid.o(.text+0x67f): undefined reference to 
`QSettings::readNumEntry(QString const , int, bool *)'
.libs/liquid.o(.text+0x6eb): undefined reference to 
`QSettings::readNumEntry(QString const , int, bool *)'
.libs/liquid.o(.text+0x763): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0x7da): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0x851): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0x8c8): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0x93f): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0x9d2): undefined reference to 
`QSettings::readNumEntry(QString const , int, bool *)'
.libs/liquid.o(.text+0xa8e): undefined reference to 
`QSettings::readBoolEntry(QString const , bool, bool *)'
.libs/liquid.o(.text+0xaee): undefined reference to 
`QSettings::~QSettings(void)'
.libs/liquid.o: In function `LiquidConfig::LiquidConfig(QWidget *, char const 
*)':
.libs/liquid.o(.text+0x17c1): undefined reference to `QHBox::QHBox(QWidget *, 
char const *, unsigned int)'
.libs/liquid.o(.text+0x1a58): undefined reference to 
`QButtonGroup::selected(void) const'
.libs/liquid.o: In function `LiquidConfig::tr(char const *, char const *)':
.libs/liquid.o(.text+0x1b86): undefined reference to 
`QApplication::translate(char const *, char const *, char const *, 
QApplication::Encoding) const'
.libs/liquid.o: In function `LiquidConfig::trUtf8(char const *, char const 
*)':
.libs/liquid.o(.text+0x1be6): undefined reference to 
`QApplication::translate(char const *, char const *, char const *, 
QApplication::Encoding) const'
.libs/liquid.o: In function `LiquidConfig::staticMetaObject(void)':
.libs/liquid.o(.text+0x1c54): undefined reference to 
`QMetaObject::new_metaobject(char const *, QMetaObject *, QMetaData const *, 
int, QMetaData const *, int, QMetaProperty const *, int, QMetaEnum const *, 
int, QClassInfo const *, int)'
.libs/liquid.o(.text+0x1c66): undefined reference to 
`QMetaObjectCleanUp::setMetaObject(QMetaObject *)'
.libs/liquid.o: In function 

Re: [Cooker] Manuals for the boxed sets.

2002-04-03 Thread Hoyt

On Wednesday 03 April 2002 07:54 am, you wrote:

  I always felt that the manuals let the product down previously,
  especially when compared to RH and SuSE.

Specifically, what would you like to see done differently?

-- 
Hoyt




[Cooker] Fw: ERoaster 2.1.0 snapshot

2002-04-03 Thread Tim McKenzie

Any chance of adding this to cooker and then to 8.2 errata once it's a
little more stable? Haven't had a chance to check it out yet but I plan on
installing it tonight. I'm at work so I don't have access to my rpm db to
see who the maintainer is.

-Tim
- Original Message -
From: Martin Preishuber [EMAIL PROTECTED]
To: Tim McKenzie [EMAIL PROTECTED]; ERoaster List
[EMAIL PROTECTED]
Sent: Wednesday, April 03, 2002 3:55 PM
Subject: ERoaster 2.1.0 snapshot


 Hi all,

 I've just uploaded a snapshot of eroaster 2.1.0 on

 ftp://eclipt.uni-klu.ac.at/pub/projects/eroaster/snapshots/

 It should fix all the problems with python=2 as well as some new
 features, such as basic mp3 encoding support (via lame), .cue/.bin to
 .iso conversion (via bchunk), burnfree support and some other tweaks
 here and there. The reason for the version number change is a beginning
 separation of the backend and the frontend (you may notice the new
 cdrtools.py, lame.py and bchunk.py modules)

 Let me know what you think.

 Martin

 --
 Martin Preishuber - IT Expert, Student, SysAdmin
 http://www.eclipt.at, mailto:[EMAIL PROTECTED]

 They that can give up essential liberty to obtain a little temporary
 saftey deserve neither liberty not saftey.
 -- Benjamin Franklin, 1759





Re: [Cooker] URPMI - hdlist.cz and FTPs

2002-04-03 Thread Ron Stodden

François Pons wrote:
 
 It is undocumented but --mediums is accepted as --media, should I add --medium
 too :-)

Incorrect usage of media for medium is very common in English 'as
she is spoke'.

But the incorrection only applies to the English language, and not
necessarily to programming languages.  For exanple in a language that
supports lists, you can have a list variable called media which at
any point in time might contain 0, 1, 2 or more members and be
perfectly correct in all cases.

So, yes, I think you should add --medium, just for those who are picky
about their use of language.  Strictly, you should remove mediums
because there is no such word in English and one should not encourage
misusages.

In the case of naming of an argument that supports lists, medium,
mediums, media (and medias? - yes, I have heard it!) would all be
synonyms.

Does French have a similar problem?

-- 
Ron. [au]




Re: [Cooker] kde 3 is out for 8.2

2002-04-03 Thread Digital Wokan

Cooker is normally pretty stable until they change something major like
RPM or GLIBC or possibly the conversion to compiling everything with
GCC3.
For home use, I normally mix a little cooker with my stable.  For work,
it's strictly stable.  I'm not costing the company money if there is a
problem with my home system.

Michael Andreen wrote:
 
 On Wednesday 03 April 2002 10.29, Laurent Montel wrote:
  Perhaps you don't know but cooker is DIFFERENT from 8.2 !
 
 When this is up.. It's been said that it's dangerous to run cooker, but how
 dangerous is it really?
 
 I've been idling on this mailinglist for a few months now and I can't see
 that it's more dangerous than always compiling and running the latest release
 of everything (which I tend to be doing after a while, or stealing a cooker
 package once in a while and get it into the stable dist), actually it seems
 less dangerous since you mdk guys are more experianced and follows the
 development of your packages better than me (I guess).
 
 So what's recommended? Running a stable release and compiling the latest
 software/ using a few cooker packages in the stable release or running a pure
 cooker system?
 
 Michael Andreen
 [EMAIL PROTECTED]




Re: [Cooker] Question about Liquid on KDE3

2002-04-03 Thread Timothy R. Butler

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Maks,
 qt2/lib? -lqt? Uninstall qt2-devel, remove config.cache, reconfigure, and
 try again

  I don't know how I missed that. Thanks for spotting that, removing that and 
setting QTDIR did the trick. Mosfet Liquid .9.2 for KDE3 is definately the 
best yet!

  -Tim

- -- 
- 
Timothy R. Butler[EMAIL PROTECTED] 
Universal  Networks   http://www.uninet.info
Christian Portal and Search Tool:   http://www.faithtree.com
Open Source Migration Guide:  http://www.ofb.biz
= Christian Web Services Since 1996 ==
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8q7a/K37Cns9gJ0gRAlR9AJ41dXk7A5DddmqOwwA3CBDJkjW9fACeN41z
yismcQnhpZxPrSAGqQsxd9c=
=YyLN
-END PGP SIGNATURE-





Re: [Cooker] KDE3 firstime wizard

2002-04-03 Thread Kevin Huntly

see if theres a disabling option.. sometimes there are.. but then again im
assuming you wouldve checked that..




Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread Murray J. Root

On 03 Apr 2002 06:37:06 -0500 Nelson Bartley [EMAIL PROTECTED] wrote:

 On Tue, 2002-04-02 at 19:20, Murray J. Root wrote:
  Did you edit /etc/modules.conf and change /dev/nvidia/* to /dev/nvidia* ?
  (Notice the number of /s )
  
  
 Can you go into a little more detail what is required here? I didnot edit 
modules.conf however I have the following line in my modules.conf:
 alias char-major-195 NVdriver
 
 Somehow this line does not seem right.
 
 At any rate, more detail on what you're discuessing would be greatly
 apprecaited, or rather a link to where I can obtain this information
 myself.
 

If you are using devfs, nvidia install detects it and puts a line
alias /dev/nvidia/* NVdriver
into /etc/modules.conf. This line has a typo - specifically, the last / doesn't
belong there.
Some people have worked around it by putting
  NVdriver
into /etc/modules, but I prefer doing fixes the right way.

-- 
Murray J. Root

Mandrake on irc.openprojects.net:
  #mandrake  #mandrake-linux = help for newbies
  #mandrakeguru = advanced discussions
  #mdk-cooker = Mandrake Cooker discussions




Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread Murray J. Root

On Wed, 3 Apr 2002 12:00:10 -0600 Sergio Korlowsky [EMAIL PROTECTED] wrote:

 On Wednesday 03 April 2002 05:37 am, you wrote:
  On Tue, 2002-04-02 at 19:20, Murray J. Root wrote:
   Did you edit /etc/modules.conf and change /dev/nvidia/* to /dev/nvidia* ?
   (Notice the number of /s )
 
  Can you go into a little more detail what is required here? I didnot edit
  modules.conf however I have the following line in my modules.conf: alias
  char-major-195 NVdriver
 
  Somehow this line does not seem right.
 
  At any rate, more detail on what you're discuessing would be greatly
  apprecaited, or rather a link to where I can obtain this information
  myself.
 
  Thanks,
  Nelson Bartley
  [EMAIL PROTECTED]
 
 This is what mine shows.. and it working fine.
 alias /dev/nvidia/*  NVdriver
 

Then you are either a) not using devfs or b) have NVdriver in
/etc/modules.

-- 
Murray J. Root

Mandrake on irc.openprojects.net:
  #mandrake  #mandrake-linux = help for newbies
  #mandrakeguru = advanced discussions
  #mdk-cooker = Mandrake Cooker discussions




Re: [Cooker] 2.4.18-8mdk Nvidia 2802 failure

2002-04-03 Thread Murray J. Root

On Wed, 3 Apr 2002 08:06:21 -0600 wyrmzr [EMAIL PROTECTED] wrote:

 On Wednesday 03 April 2002 05:37 am, you wrote:
  On Tue, 2002-04-02 at 19:20, Murray J. Root wrote:
   Did you edit /etc/modules.conf and change /dev/nvidia/* to /dev/nvidia* ?
   (Notice the number of /s )
 
  Can you go into a little more detail what is required here? I didnot edit
  modules.conf however I have the following line in my modules.conf: alias
  char-major-195 NVdriver
 
  Somehow this line does not seem right.
 
  At any rate, more detail on what you're discuessing would be greatly
  apprecaited, or rather a link to where I can obtain this information
  myself.
 
  Thanks,
  Nelson Bartley
  [EMAIL PROTECTED]
 that line looks ok. just checked it on my system with NVidia driver, GeForce2 
 Ultra card, and it shows the same thing.  Mine works fine
 

That is the correct line - if devfs is not used.

-- 
Murray J. Root

Mandrake on irc.openprojects.net:
  #mandrake  #mandrake-linux = help for newbies
  #mandrakeguru = advanced discussions
  #mdk-cooker = Mandrake Cooker discussions




Re: [Cooker] Question about Liquid on KDE3

2002-04-03 Thread Salane King

you get further than I do.
 mosfet-liquid0.9.2]# make -f Makefile.cvs
This Makefile is only for the CVS repository
This will be deleted before making the distribution

*** Creating acinclude.m4
!!! If you get recursion errors from autoconf, it is advisable to set the
environment variable M4 to something including --nesting-limit=500
*** Creating list of subdirectories
*** Creating configure.in
*** Creating aclocal.m4
*** Creating configure
*** Creating config.h template
WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot'
WARNING: and `config.h.top', to define templates for `config.h.in'
WARNING: is deprecated and discouraged.

WARNING: Using the third argument of `AC_DEFINE' and
WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without
WARNING: `acconfig.h':

WARNING:   AC_DEFINE([NEED_MAIN], 1,
WARNING: [Define if a function `main' is needed.])

WARNING: More sophisticated templates can also be produced, see the
WARNING: documentation.
autoheader-2.5x: `config.h.in' is unchanged
*** Creating Makefile templates
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'
aclocal.m4:1649: invalid unused variable name: `KDE_LDFLAGS'
aclocal.m4:560: invalid unused variable name: `DCOP_DEPENDENCIES'
aclocal.m4:993: invalid unused variable name: `X_LDFLAGS'
aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
aclocal.m4:1235: invalid unused variable name: `KDE_MT_LDFLAGS'
aclocal.m4:3636: invalid unused variable name: 

[Cooker] Re: Requests regarding PHP

2002-04-03 Thread Jean-Michel Dault

Thanks for your comments/feedback/patches. I don't promise 100%, but
most of your requests will be integrated.

There's a new Apache, a new db4, and an upcoming PHP 4.2.0 release very
soon, so instead of rebuilding everything, I'll bundle all the changes
in a week or so.

If I forget, don't hesitate to harrass me ;-)

Jean-Michel

On Wed, 2002-04-03 at 05:10, Alexander Skwar wrote:
 Hello!
 
 I've got some requests regarding the PHP package in cooker.
 
 a) The php-devel package contains the PEAR repository.  However, I don't
 think php-devel is a good name for this kind of package.  Would it be
 possible to move the PEAR files from php-devel to, let's say, php-pear?
 
 b) The PEAR files are located in /usr/lib/php.  IMO it would be nicer if
 those files were in /usr/lib/php/pear.
 
 c) The /etc/php.ini file sets include_path to /usr/lib/php.  I cannot
 include/require files from /usr/lib/php with a simple include
 'file.php'.  When I change the include_path line to /usr/lib/php/ (note
 the trailing slash), I'm able to do so.  Could this please be changed?
 
 d) For whatever reason, I'm unable to build extension modules for PHP.
 I tried to compile a php-recode package, basically doing:
 
 %{phpsource}/buildext recode recode.c
 
 install -m 755 -s recode.so $RPM_BUILD_ROOT%{phpdir}/extensions/
 
 When I start PHP, it always complains that iconv.so is not a valid php
 library.  I really don't know what I did do wrong.  The error message I
 get is:
 
 PHP Warning:  Invalid library (maybe not a PHP library) 'recode.so'  in
 Unknown on line 0
 
 I'll attach the spec used for building the RPM to this message.
 
 e) Would it be possible to compile/ship PHP with --with-recode?
 
 I can provide SRPMS/RPMS for all of this, if required.
 
 Alexander Skwar
 -- 
 How to quote: http://learn.to/quote (german) http://quote.6x.to (english)
 Homepage: http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
iso-top.de - Die günstige Art an Linux Distributionen zu kommen
Uptime: 1 day 23 hours 0 minutes
 
 

 %define phpversion 4.1.2
 %define phprelease 2mdk
 %define phpdir %{_libdir}/php 
 %define phpsource /usr/src/php-devel
 %define release 1mdk
 
 %define   modname recode
 %define dirname   %{modname}
 %define soname%{modname}.so
 
 Summary:  lib%{modname} module for PHP4
 Name: php-%{modname}
 Version:  %{phpversion}
 Release:  %{release}
 Group:System/Servers
 URL:  http://www.php.net
 License:  PHP License
 BuildRoot:%{_tmppath}/%{name}-root
 Prereq:   php-common = %{phpversion}, perl
 BuildRequires:  php-devel = %{phpversion}
 
 %description
 The %{name} package is a dynamic shared object (DSO) that adds %{modname}
 support to PHP4. PHP4 is an HTML-embedded scripting language. If you need
 %{modname} support for PHP4 applications, you will need to install this package in
 addition to the php package.
 
 %build
 [ -e ./%{dirname} ]  rm -fr ./%{dirname}
 cp -dpR %{phpsource}/extensions/%{dirname} .
 cd %{dirname}
 #ln -vs php_xmlrpc.h xmlrpc.h
 
 #%{phpsource}/buildext xmlrpc xmlrpc-epi-php.c -lexpat -DCOMPILE_DL_XML 
-DHAVE_LIBEXPAT -DHAVE_DLFCN_H 
 #%{phpsource}/buildext iconv iconv.c -Ilibxmlrpc
 %{phpsource}/buildext %{modname} %{modname}.c
 
 
 %install
 cd %{dirname}
 [ %{buildroot} != / ]  rm -rf %{buildroot} 
 mkdir -p %{buildroot}%{phpdir}/extensions
 
 install -m 755 -s %{soname} %{buildroot}%{phpdir}/extensions/
 
 mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}
 echo  %{buildroot}%{_docdir}/%{name}-%{version}/README EOF
 The %{name} package contains a dynamic shared object (DSO) for PHP4. 
 To activate it, make sure the line 'extension=%{modname}' is uncommented
 in your /etc/php.ini file.
 EOF
 #cp EXPERIMENTAL %{buildroot}%{_docdir}/%{name}-%{version}
 
 %clean
 [ %{buildroot} != / ]  rm -rf %{buildroot}
 [ -e ./%{dirname} ]  rm -fr ./%{dirname}
 
 %post
 if [ $1 = 1 ]; then
   if [ -f %{_sysconfdir}/php.ini ]; then
 perl -pi -e 's|^;extension\s*=\s*%{soname}|extension = %{soname}|' 
%{_sysconfdir}/php.ini
 LINE=`grep %{soname} %{_sysconfdir}/php.ini |grep extension`
 if [ x$LINE = x ]; then
   echo extension = %{soname}  %{_sysconfdir}/php.ini
 fi
   fi
 fi
 if [ $1 -gt 1 ]; then
#We're in *upgrade mode*. Since we can't be sure the configuration files
#are sane, remove module from the conf files to clean them, re-add again
#in a way that the older module we're replacing won't try to erase (the
#post scripts were broken on some packages)
#Also, there could be extra lines, so make sure we uncomment one
#Finally, don't check for presence of php.ini, if it's not there,
#we have a problem, so it should generate an error message.
perl -pi -e 's|^extension\s*=\s*%{soname}|;extension = %{soname}|g' 
%{_sysconfdir}/php.ini
perl -pi -e 's|^;extension\s*=\s*%{soname}|extension = %{soname}|' 
%{_sysconfdir}/php.ini
 fi
 if [ -e 

Re: [Cooker] KDE3 firstime wizard

2002-04-03 Thread Jeremy Salch

On Wednesday 03 April 2002 11:45 pm, Kevin Huntly wrote:
 see if theres a disabling option.. sometimes there are.. but then again im
 assuming you wouldve checked that..
 

I think that it is only supposed ot run the FIRST time you log in..  like with 
a new user..and it doesn't seem to have any special disable feature..   
soo..  i guess i just have to cancle it out every time..  which sucks 
vigerously..  oh well  its all in the fun of running cooker :-)





Re: [Cooker] Question about Liquid on KDE3

2002-04-03 Thread Maks Orlovich

On Wednesday 03 April 2002 10:00 pm, you wrote:
 you get further than I do.
  mosfet-liquid0.9.2]# make -f Makefile.cvs
 This Makefile is only for the CVS repository
 This will be deleted before making the distribution

 *** Creating acinclude.m4
 aclocal.m4:1711: invalid unused variable name: `USER_LDFLAGS'
 aclocal.m4:3703: invalid unused variable name: `IDL_DEPENDENCIES'
 aclocal.m4:3636: invalid unused variable name: `MICO_LDFLAGS'
 aclocal.m4:1470: invalid unused variable name: `QT_LDFLAGS'

Automake1.6 by any chance?





Re: [Cooker] 8.2 problems...

2002-04-03 Thread Malcolm-Rannirl

On Wednesday 27 March 2002 05:15 pm, Malcolm-Rannirl wrote:

 KDE is pretty much unusable for me. Within about five minutes, kmail
 will crash either killing any ability to create a network connection
 (no ioslaves work) or taking X down entirely. Clicking on a link
 within an email seems guarenteed to do this instantly, but it seems
 to happen at other times (possibly on checking mail). I haven't been
 able to find any reason behind this. 

Well I've narrowed this down somewhat. Extensive disk access seems to be part 
of the cause (I've been doing development work that involved copying large 
amounts of data around my drive), and it's not all kioslaves that die, as 
outgoing smtp seems to stay up even when http, pop, etc have died. They don't 
die when running gnome rather than the kde desktop though. It's very 
reproduceable, but as this is my work box, I haven't had time to isolate it 
very far.

 X (4.2.0) also shows a significant number of visual artifacts. (I
 believe this is due to the drivers for the i810 chipset, as I've had
 this before and it was only solved by manually upgrading the drivers
 using a hand built X and kernel).

Not managed to fix that one though. :(


-- 
Understanding is a three-edged sword.
- Kosh to Talia Winters in Babylon 5:Deathwalker

--
  This email is monitored by the US government under the auspice  
 of the USA act. For private communication, ask me for my PGP key 




[Cooker] Does Mandrake include blinux?

2002-04-03 Thread Timothy R. Butler

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi everyone,
  I had someone write me after reading my Mandrake Linux review 
(http://www.ofb.biz/article.php?sid=75) who asked if Mandrake supported 
screen readers for the blind/visually impaired. I seem to remember from my 
SuSE days there was thing include in SuSE called blinux that worked with 
screen readers. Is there any such thing in Mandrake? Any other useful details 
I might provide this gentleman?

  Thanks,
   Tim

- -- 
- 
Timothy R. Butler[EMAIL PROTECTED] 
Universal  Networks   http://www.uninet.info
Christian Portal and Search Tool:   http://www.faithtree.com
Open Source Migration Guide:  http://www.ofb.biz
= Christian Web Services Since 1996 ==
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8q+V0K37Cns9gJ0gRAt2fAJ9S+SlK7I0PcUkt3EyXBmhEjVCL0ACfebFo
M4mtqq4eLO4BIz7LyY8KMJw=
=GGdm
-END PGP SIGNATURE-





[Cooker] Re: Requests regarding PHP

2002-04-03 Thread Alexander Skwar

»Jean-Michel Dault« sagte am 2002-04-03 um 16:33:58 -0500 :
 Thanks for your comments/feedback/patches. I don't promise 100%, but
 most of your requests will be integrated.

Thanks.

 
 There's a new Apache, a new db4, and an upcoming PHP 4.2.0 release very
 soon, so instead of rebuilding everything, I'll bundle all the changes
 in a week or so.

Yes, that's in line with what Christian said and it makes perfect sense
to me.

 
 If I forget, don't hesitate to harrass me ;-)

Oh, no problem what so ever ;)

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.iso-top.de  | Jabber: [EMAIL PROTECTED]
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
   Uptime: 13 hours 13 minutes




Re: [Cooker] KDE3 firstime wizard

2002-04-03 Thread Justin T.

On Thursday 04 April 2002 05:20, Jeremy Salch wrote:
 On Wednesday 03 April 2002 11:45 pm, Kevin Huntly wrote:
  see if theres a disabling option.. sometimes there are.. but then again
  im assuming you wouldve checked that..

 I think that it is only supposed ot run the FIRST time you log in..  like
 with a new user..and it doesn't seem to have any special disable
 feature.. soo..  i guess i just have to cancle it out every time..  which
 sucks vigerously..  oh well  its all in the fun of running cooker :-)

Heya!

If you have gone through and it still pops up you can also edit your local 
kpersonalizerrc:

$KDEHOME/.kde3/share/config/kpersonalizerrc

To have the following in it:

[General]
FirstLogin=false

The KDE login script that Mandrake uses looks there, however for some reason 
this isn't always updated after the first login.

Justin T




[Cooker] KDE3 NOATUN bug from kde2 is back

2002-04-03 Thread Jeremy Salch

Well the bug is back in kde3

Whenever noatun is executed artsd seg faults






[Cooker] mandrake kde3 for 8.2 is a mess !

2002-04-03 Thread valter m

when will be fixed the kde3 version for 8.2 installation?

thanks,
valter

_
Chat with friends online, try MSN Messenger: http://messenger.msn.com





Re: [Cooker] URPMI - hdlist.cz and FTPs

2002-04-03 Thread Franois Pons

Ron Stodden [EMAIL PROTECTED] writes:

 Does French have a similar problem?

media and medium are used, not mediums, I kept it because I misnamed it
initialy and I take a little time to check this. I will replace mediums by
medium so.

François.




Re: gnome-control-center

2002-04-03 Thread David BAUDENS

On Tuesday 02 April 2002 23:34, Luis M wrote:
 very good...

 is anybody working on the gnome 2.0 betas ( 3 ) for Mandrake PPC ?

/.../

The Mandrake's Gnome packager is at the Guadec at present time, so 
nobody is working on Gnome 2.0 packages until he is back.

Please also note that there will be no Gnome 2.0 packages in 8.2 PPC 
but 1.4.

-- 
David BAUDENS
MandrakeSoft - http://www.mandrakesoft.com




Install on early 2000 iMac 400 MHz DV

2002-04-03 Thread Jeroen Diederen

Hi all,

did anyone of you try to install the beta2 on an iMac 400 MHz DV (early
2000) ?

- I had troubles during expert install to do the bootloader while I had
a mismapped keyboard whereas during the rest of the installation before
that procedure, my keyboard mapping was ok.

- Another problem is that when I startup the freshly prepared 'meal',
that during the Mandrake configuration, my mouse didn' work properly
anymore (XFree driver).

- By the way, Xpmac does not work either.

Jeroen Diederen
Leiden, The Netherlands





Re: Install Beta2 on Beige G3

2002-04-03 Thread Stew Benedict


On Wed, 3 Apr 2002, Stephen wrote:

 Thanks Stew
 
  
  1) a kernel (vmlinux or vmlinux-2.2)
  2) a stage1 image (all.gz or all-2.2.gz), (under Options)
  3) set ramdisk size to 34000
  4) possibly add some video options (video=x, see yaboot.conf for
  examples), or use text to do the text-mode install (kernel arguments)
  
 Used vmlinux, all.gz, 34000, and text, and the system installed fine.A 
 Have installed Beta2.
 
 Now Mandrake is in, I've got two issues
 (1) On boot, the G3 loads up the Mac OS, and then I have to manually
 start BootX to go into Linux. In comparision, YellowDog Linux starts up
 BootX automatically at boot time. So how does one enable autoboot via
 BootX into Linux as per YellowDog?

Install BootX: move the BootX entension, Linux kernels and ?? to the
System Folder.  See the BootX docs. 

 (2) After install, modules aren't being loaded. Here are some relevant
 entries from the /var/log/boot
 
 depmod: Can't open lib/modules/2.4.18-4mdkBOOT/modules.dep for writing
 rc.sysinit: finding module dependencies failed
 
 Note: authorisation on modules.dep is  -rw--r--r--
 Also, if I run modprobe as root, I get the following response...
  Can't open dependencies file
 /lib/modules/2.4.18-4mdkBOOT/modules.dep (No such file or directory)
 
 Please advise, how to fix the module loading problem?
 

Use the correct kernel and initrd.  You're using the installer kernel to
boot the system.  See the BootX folder for the kernel and initrd to use
for the installed system.

Stew Benedict

-- 
MandrakeSoft
PPC FAQ: http://www.linux-mandrake.com/en/demos/PPC/FAQ/





Re: PowerBook G3 (FireWire, 2000) Gnome, Sound, and Samba. 8.2Beta2

2002-04-03 Thread Stew Benedict


On Wed, 3 Apr 2002, Art Napor wrote:

 A few Things I've noticed since I've installed mandrake on
 my powerbook.
  
  
 Gnome: Application bonibo-moniker-archiver Segfaults when
 gnome is starting just before nautilus begins.  (I'm left with the red
 root backround similar to KDE's.)   (if I try and access it through
 the gnome control panel same thing happens.)
  

Known, see the updated control panel and xscreensaver on my web-space.
http://people.mandrakesoft.com/~sbenedict

update xscreensaver (rpm -Uvh)
possibly uninstall gnome-pilot, gnome-control-center,
gnome-control-center-plus (rpm -e)
clean out /usr/share/control-center
(first rpm -qif /usr/share/control-center, to make sure it's not owned by
anything, then rm -fr /usr/share/control-center)
install the new gnome-control-center (rpm -i)

 Sound: While a sound card was detected during the
 installation, at bootup it loads the sound module (dmasound_pmac), and
 there is a slight tick I can hear through the speakers at the point when
 it loads.  When gnome loads Application
 /usr/bin/sound-properties-control Segfaults, and Crashes.  

Same problem as above.

(if I start
 in KDE I get the error SNDCTL_DSP_SETMFT Failed -Invalid Argument, the
 sound server will continue to use the null output device.)
  

Switch artsd to 8 bit sound.

 Samba: At Startup Both SMB, and NMB services fail.   
  

Missing libattr1. Should be on the mirrors.

Stew Benedict

-- 
MandrakeSoft
PPC FAQ: http://www.linux-mandrake.com/en/demos/PPC/FAQ/





Re: Install on early 2000 iMac 400 MHz DV

2002-04-03 Thread David BAUDENS

On Wednesday 03 April 2002 12:21, Jeroen Diederen wrote:
 Hi all,

 did anyone of you try to install the beta2 on an iMac 400 MHz DV
 (early 2000) ?

/.../


I did. It worked fine (except for the dri/r128 problem). I haven't any 
of problems you had.

About mouse: check that /dev/mouse points on /dev/usbmouse which should 
point on /dev/input/mice. Please also check that your 
/etc/X11/XF86Config-4 contains something like that if you use the Apple 
mouse:

Section InputDevice

Identifier  Mouse1
Driver  mouse
Option ProtocolPS/2
Option Device  /dev/usbmouse
Option Emulate3Buttons
Option Emulate3Timeout50

# ChordMiddle is an option for some 3-button Logitech mice

#Option ChordMiddle

EndSection

About Xpmac: you don't need to use it. XFree 4.2.0 should work on your 
iMac.

-- 
David BAUDENS
MandrakeSoft - http://www.mandrakesoft.com




Re: Powerbook 3400: installer crash, everytime.

2002-04-03 Thread Henrik Farre

Yello

On Wed, 03 Apr 2002 11:27:05 +0200
Henrik Farre [EMAIL PROTECTED] wrote:

   If neither kernel works for you. there's not a lot I can do. The
   current kernel seems to work pretty well across a variety of
   machines. If you have a monolithic BenH kernele you built on one of
   your other distributions, you could give that a try.  Other than
   that, I would start to suspect media or hardware problems,

I got mdk 8.0 installed, but when it runs Aurora it locks up. I have tryed
to enter 'single' and 'linux single' in bootx kernel args but I can't get
into single user mode.

-- 
Mvh. / Kind regards 
Henrik Farre  enrique AT obel DOT auc DOT dk 
- If I were God, I would recompile the penguin with --enable-flying.




SCSI Zip drive support Missing Consoles

2002-04-03 Thread Xavier de Cardenas

When I try to access the scsi zip drive that I have
connected to an Adaptec SCSI Card 2906 I revieve an
error. When I try to access it from the desktop I get 
You do not have access rights even as root.  From
the CLI I get an input/output error Does it matter
that the zips are formated in HFS? 

I also have two zips mounted on the file system and
desktop when I have only one attached.

I was also wondering if there was any solution to the
missing consoles. I sent an email earlier regarding
this, and Stew said that some graphic cards have an
issue switching between GUI and command line mode.

Thanks,

Xavier

__
Do You Yahoo!?
Yahoo! Tax Center - online filing with TurboTax
http://taxes.yahoo.com/




Re: blue g3 scsi post install : wont boot

2002-04-03 Thread Jean-Marie Bernadet
Thanks very much. I guess initrd is the ramdisk i ought to use. i'll get kernel version vmlinux-2.4.18-6mdk. (can't wait to try a newer linux !)

Le mardi 2 avril 2002, à 03:46 PM, Stew Benedict a écrit :

On Tue, 2 Apr 2002, Jean-Marie Bernadet wrote:

i've eventually been through the install successfully (better have your 
cd drive on the proper channel !) but when it was time for the computer 
to boot into the freshly installed mandrake linux 8.2 beta 2, i had a 
black screen just after the install quits.

can i use bootx to boot in 8.2 ?
i understand i need a kernel and setting boot device. where can i get 
the good kernel ? how can i tell the partition device name (let's say 
it's partition 6 from the only SCSI disk in my machine (ID 0)) ? once i 
have the name, how do i tell bootx to boot that partition ???

Check the BootX folder of the ISO (are you using beta2 iso?).  Replace the
initrd with the one on:

http://people.mandrakesoft.com/~sbenedict/initrd-2.4.18-6mdk.img

kernel should be the same version: vmlinuz-2.4.18-6mdk

There's really no way for us to know what drive/partition you installed
on. You could try to use pdisk to figure out what partition "/" is on, or
boot the rescue image.

Stew Benedict

Re: SCSI Zip drive support Missing Consoles

2002-04-03 Thread Stew Benedict


On Wed, 3 Apr 2002, Xavier de Cardenas wrote:

 When I try to access the scsi zip drive that I have
 connected to an Adaptec SCSI Card 2906 I revieve an
 error. When I try to access it from the desktop I get 
 You do not have access rights even as root.  From
 the CLI I get an input/output error Does it matter
 that the zips are formated in HFS? 
 

The trick will be to locate the correct partition.  In the x86 world, most
typically it's going to be FAT or VFAT on the 4th partition.  You may need
to setup an fstab entry, as hfs, after finding out the correct partition.

try pdisk -l /dev/sdX (X=drive #)

And hope all your zips are setup the same.

 I also have two zips mounted on the file system and
 desktop when I have only one attached.
 
 I was also wondering if there was any solution to the
 missing consoles. I sent an email earlier regarding
 this, and Stew said that some graphic cards have an
 issue switching between GUI and command line mode.
 

You said it was a Radeon card?  I'm a little surprised you're seeing it
with that one.  The fix is either a new kernel of XFree or both with
appropriate patches or compile options, but what those are for your
particular case, I don't know.

Stew Benedict

-- 
MandrakeSoft
PPC FAQ: http://www.linux-mandrake.com/en/demos/PPC/FAQ/





Problem burning ISO image on PC and read from mac

2002-04-03 Thread Eduardo Kushima

I downloaded mandrake 8.2beta2 and burned it on my pc using nero and
blindwrite, checked the iso and it was hybrid, 2048b/sector, everything ok I
think, but mac can't boot from this cd, but can read it normally.

Some suggestions?

Thank's!






Re: Install Beta2 on Beige G3

2002-04-03 Thread Stew Benedict

On Thu, 4 Apr 2002, Stephen wrote:

 Got it. Thanks heaps for your help.
 
 Running very sweet.
 
 Stew Benedict wrote:
 
 
 Install BootX: move the BootX entension, Linux kernels and ?? to the
 System Folder.  See the BootX docs. 
 
 
 Moved the extension and linux kernel and initrd as per docs. What is ??  ?
 

There was another piece of BootX to move, I wasn't at a Mac and couldn't
remember offhand.  Sounds like you got it though.


Stew Benedict

-- 
MandrakeSoft
PPC FAQ: http://www.linux-mandrake.com/en/demos/PPC/FAQ/





Re: Problem burning ISO image on PC and read from mac

2002-04-03 Thread Stew Benedict


On Wed, 3 Apr 2002, Eduardo Kushima wrote:

 I downloaded mandrake 8.2beta2 and burned it on my pc using nero and
 blindwrite, checked the iso and it was hybrid, 2048b/sector, everything ok I
 think, but mac can't boot from this cd, but can read it normally.
 
 Some suggestions?
 

You don't say what kind of Mac, but only NewWorld machines can boot from
the CD.

Stew Benedict

-- 
MandrakeSoft
PPC FAQ: http://www.linux-mandrake.com/en/demos/PPC/FAQ/





Re: PowerBook G3 (FireWire, 2000) Gnome, Sound, and Samba. 8.2 Beta2

2002-04-03 Thread Peter R. Wood


 update xscreensaver (rpm -Uvh)
 possibly uninstall gnome-pilot, gnome-control-center,
 gnome-control-center-plus (rpm -e)
 clean out /usr/share/control-center
 (first rpm -qif /usr/share/control-center, to make sure it's not owned by anything, 
then rm -fr
 /usr/share/control-center)
 install the new gnome-control-center (rpm -i)

The gnome-control-center on your site seems to be older than the version included with 
8.2b2 (1.4.0
vs. 1.5.11). Will it work just as well?






Re: PowerBook G3 (FireWire, 2000) Gnome, Sound, and Samba. 8.2 Beta2

2002-04-03 Thread Ben Reser

On Wed, Apr 03, 2002 at 11:14:48PM -0500, Peter R. Wood wrote:
 The gnome-control-center on your site seems to be older than the version included 
with 8.2b2 (1.4.0
 vs. 1.5.11). Will it work just as well?

You probably want to read this thread:
http://marc.theaimsgroup.com/?l=mandrake-cooker-ppcm=101777298316803w=2

-- 
Ben Reser [EMAIL PROTECTED]
http://ben.reser.org

What difference does it make to the dead, the orphans, and the homeless,
whether the mad destruction is wrought under the name of totalitarianism
or the holy name of liberty and democracy? - Ghandi