Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread Xavier Bertou

> # look for Java location
> if [ -n $JAVA_HOME ] ; then
>   JAVALOC=$JAVA_HOME
> else
>   if [ -n $JAVA_PATH] ; then
>   JAVALOC=$JAVA_PATH
>   else
>   if [ -n $JDK_HOME] ; then
>   JAVALOC=$JDK_HOME
>   else
>   if [ -n $JDK_PATH] ; then
>   JAVALOC=$JDK_PATH
>   fi
>   fi
>   fi
> fi

you should add a ' ' before ending ']'.
Also, let me remind you that this script is WRONG:
lpnp69 ~  /bin/sh
sh-2.04$ cat > a.sh
if [ -n $TOTO ] ; then
  echo "toto"
fi
sh-2.04$ chmod +x a.sh
sh-2.04$ ./a.sh 
toto
sh-2.04$ cat > b.sh
if [ -n "$TOTO" ] ; then
  echo "toto"
fi
sh-2.04$ chmod +x b.sh
sh-2.04$ ./b.sh 
sh-2.04$ export TOTO=""
sh-2.04$ ./a.sh 
toto
sh-2.04$ ./b.sh 
sh-2.04$ export TOTO=x
sh-2.04$ ./a.sh 
toto
sh-2.04$ ./b.sh 
toto


[ -n $VAR ] is ALWAYS true, whatever the value of $VAR, as if it is not
defined it will expand in [ -n ] which is true. So please, correct all
these damn [ -n $VAR ] into [ -n "$VAR" ] which expands in [ -n "" ]
which is false.

-- 
Xavier




[Cooker] Re: [CHRPM] pan-0.9.4-1mdk

2001-02-26 Thread Sérvio Túlio P. Amarante

Em Seg 26 Fev 2001 17:15, Renaud Chaillat escreveu:
> --=-=-=
> Name: pan  Relocations: (not relocateable)
> Version : 0.9.4 Vendor: MandrakeSoft
> Release : 1mdk  Build Date: Mon Feb 26 18:13:30
> 2001 Install date: (not installed)   Build Host:
> bi.mandrakesoft.com Group   : Networking/News   Source RPM:
> (none)
> Size: 1082009  License: GPL
> Packager: Renaud Chaillat <[EMAIL PROTECTED]>
> URL : http://pan.rebelbase.com/
> Summary : A USENET newsreader for GNOME
> Description :
> This is version 0.9.4 of PAN, the Pimp Ass Newsreader.  Its
> goal is to make a user-friendly and powerful USENET newsreadre for
> GNOME.  Its user interface is based loosely on popular newsreaders
> for Windows.
>
> This is alpha software, so don't expect everything to work
> correctly or even at all.
>
> --=-=-=
>
> * Mon Feb 26 2001 Renaud Chaillat <[EMAIL PROTECTED]> 0.9.4-1mdk
>
> - new version

I got the answer by myself. Pan depends on latest oaf. After 
liboaf0-0.6.3-1mdk is installed it runs fine. So, this rpm pack lacks that 
depency check.
-- 
Sérvio T P Amarante

[EMAIL PROTECTED]




[Cooker] Intellimouse still is not supported by drakmouse

2001-02-26 Thread Andrej Borsenkow


In -41mdk for sure. Still have to try -42mdk.

-andrej

Have a nice DOS!
B >> 




[Cooker] Cannot programmatically eject supermounted CD-ROM since 2.4.x

2001-02-26 Thread Andrej Borsenkow

I cannot use ``eject'' command to eject supermounted CD-ROM since
kernel-2.4.x. Older eject returns EBUSY, new one return EINVAL but this is
just because it tries several more (unsupported) ioctls after the first one
fails with EBUSY. It is IDE DVD-ROm on i815e internal IDE cintroller if it
matters.

-andrej

Have a nice DOS!
B >>





Re: [Cooker] [REQUEST] Linux Progress Patch and Aurora in cooker

2001-02-26 Thread Ian C. Sison


It doesn't have to be all or nothing.  For instance, Aurora has this
"textboot" kernel command line option that allows you to skip the
graphical screen and go right down to the nitty gritty.  I am not sure
about LPP, but a really well designed system should support both "debug"
and "end-user" modes.


On Tue, 27 Feb 2001, R.I.P. Deaddog wrote:

>
> This issue has been brought out before, but not quite accepted. The
> reason.. can only recall faintly, not really everybody are willing to
> ignore all kernel messages, and it's really useful to many users for
> debugging or determining problem during booting process..?
>
> Abel Cheung
>
>
>
> On Tue, 27 Feb 2001, Ian C. Sison wrote:
>
> >
> > Hello anyone on the mandrake team,
> >
> > Assuming we would like for a totally user friendly "face" to a mandrake
> > system booting up, Aurora seems to be a big step forward, could you
> > integrate the Linux Progress Patch as well - so end users would never have
> > to see "scary" text messages when the system is booting up?
>
>
>





RE: [Cooker] Why don't recent kernels build initrd?

2001-02-26 Thread Andrej Borsenkow

Hmm ... does not that happen when you install kernel-2.4.1-xxx RPM? I do not
remember exactly how it was in 2.4.0 - and cannot find it anyway :-)

Or do you mean rebuilding from SPRM?

-andrej

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Alexander Skwar
> Sent: Tuesday, February 27, 2001 1:54 AM
> To: Mandrake Cooker Mailing List
> Subject: [Cooker] Why don't recent kernels build initrd?
>
>
> Hi all!
>
> I've noticed that since, uhmm, kernel-2.4.0-xx no initrd is automatically
> built when updating the kernel package.  (Hmm, thinking of it, has it ever
> been built automatically?)
> Well, why is this?  IMO it would be better if the initrd were built.  As I
> imagine (without looking at the .spec), it's just one additional command for
> the %post section:
>
>   mkinitrd /boot/initrd-%{version}-%{release} %{version}-%{release}
>
> This should do it.  And so that fixing of /boot/grub/menu.lst is not
> necessary when updating kernels, I've also added a symlink
>
>   /boot/initrd -> /boot/initrd-%{version}-%{release}.img
>
> This way, if only /boot/initrd is referenced in /boot/grub/menu.lst,
> /boot/grub/menu.lst doesn't need to be touched.
>
> I assume that something similiar also holds true for LILO, but I don't use
> LILO anymore, so I can't say for sure.  I guess that a call to /sbin/lilo
> would be necessary if LILO is used.
>
> Alexander Skwar
> --
> How to quote: http://learn.to/quote (german) http://quote.6x.to (english)
> Homepage: http://www.digitalprojects.com   |   http://www.iso-top.de
>iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
>   Uptime: 0 hours 31 minutes
>
>





RE: [Cooker] All: *new* mirrors & cookerdevel page

2001-02-26 Thread r j

Hi:

Thanks for the 2 cents. FYI, there was ONE site on the cookerdevel page
list for Australia. There are several on the non-cooker download page. 

I'd like to have the full list of the " cooker " sites in Australia so
that we can get M'Soft to add them while it's still possible.  It is
not possible to get that list from here.  One of you resident
Australians must provide the list if you want the list of Australian
sites for cooker to be available to all of the other Australians by
having it posted at the cookerdevel site page.

So how about posting the list of URLs for the sites where you can get
cooker in Australia? - rsync too.  I'll try to get them added if you
do.

HAGD!

rj

Linux: Get it. Use it.  Improve it.
===
--- Steve Wray <[EMAIL PROTECTED]> wrote:
> Just to add my too scents worth,
> The only reason I'm on cooker at all is because of
> the australian sites.
> I pay by the meg if my useage goes over quota.
> The aussie sites count as local traffic tho so
> its small fry.
> 
> 
> > -Original Message-
> > From: [EMAIL PROTECTED]
> > [mailto:[EMAIL PROTECTED]]On Behalf Of Ron Stodden
> > Sent: Tuesday, February 27, 2001 5:37 PM
> > To: [EMAIL PROTECTED]
> > Subject: Re: [Cooker] All: *new* mirrors & cookerdevel page
> > 
> > 
> > r j wrote:
> > > 
> > > Hi all:
> > > 
> > > I modified and submitted a new cookerdevel.php3 page for all to
> use.
> > >  The mirror sites have been updated -many new ones- and organized
> by
> > > location(CoO). Alix and Frederic have dutifully posted the info
> for
> > > you.
> > > 
> > > Please review:
> > > 
> > > http://www.linux-mandrake.com/en/cookerdevel.new.php3 .
> > 
> > it's awful!  What happened to the Australian mirror sites?   They
> > work well, yet you dropped them!   Perhaps you are not aware that
> > because of cost considerations aarnet cannot accept connections
> from
> > outside Australia?
> > 
> > ftp: aarnet
> > ftp: planetmirror
> > ftp: unsw (University of New South Wales)
> > rsync: planetmirror
> > 
> > all work very well and the complete URLs have been published on
> your
> > list.
> > 
> > -- 
> > Regards,
> > 
> > Ron. [au]
> > 
> > 
> > 
> 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




RE: [Cooker] [REQUEST] Linux Progress Patch and Aurora in cooker

2001-02-26 Thread Steve Wray

> [mailto:[EMAIL PROTECTED]]On Behalf Of R.I.P. Deaddog
> 
> This issue has been brought out before, but not quite accepted. The
> reason.. can only recall faintly, not really everybody are willing to
> ignore all kernel messages, and it's really useful to many users for
> debugging or determining problem during booting process..?

You mean that there is no boot-prompt option to 
turn it off??



> 
> Abel Cheung
> 
> 
> 
> On Tue, 27 Feb 2001, Ian C. Sison wrote:
> 
> > 
> > Hello anyone on the mandrake team,
> > 
> > Assuming we would like for a totally user friendly "face" to a mandrake
> > system booting up, Aurora seems to be a big step forward, could you
> > integrate the Linux Progress Patch as well - so end users would 
> never have
> > to see "scary" text messages when the system is booting up?
> 
> 
> 
> 




RE: [Cooker] Default /etc/zshrc and russian loale problem

2001-02-26 Thread Andrej Borsenkow

>
>
> Andrej Borsenkow <[EMAIL PROTECTED]> writes:
>
> > To get russian locale on console you need to send special escape sequence
> > (\033(K). By default that happens in /etc/default.d/lang.sh that is NOT
> > sourced by zsh (it does not execute /etc/profile.d/*.sh by default).
>
> yes it was disabled as request by zsh-developer but i think i'm gonna
> to reactivate it.
>

Well, I am zsh-developer :-) I remeber that there was some discussion - can
you remind me article number(s)? In any case, please, move it in /etc/zprofile
where it belongs.

> > What is the reason for not doing it? Besides, why it in /etc/zshrc? It
> > actually belongs to /etc/zprofile. Suggestion is to move sourcing of
> > profile.d into /etc/zprofile and do it by default.
> >
> > This also is a good occasion to build zsh-4 rpm :-)
>
> humm as i said i wait for the final release
>

Hmm ... we have KDE beta and GCC alpha, I see no reason not having
zsh-almost-fnal-release ... after all you cannot test it until it is used.

-andrej





Re: [Cooker] [REQUEST] Linux Progress Patch and Aurora in cooker

2001-02-26 Thread R.I.P. Deaddog


This issue has been brought out before, but not quite accepted. The
reason.. can only recall faintly, not really everybody are willing to
ignore all kernel messages, and it's really useful to many users for
debugging or determining problem during booting process..?

Abel Cheung



On Tue, 27 Feb 2001, Ian C. Sison wrote:

> 
> Hello anyone on the mandrake team,
> 
> Assuming we would like for a totally user friendly "face" to a mandrake
> system booting up, Aurora seems to be a big step forward, could you
> integrate the Linux Progress Patch as well - so end users would never have
> to see "scary" text messages when the system is booting up?





Re: [Cooker] KDE 2.1 final

2001-02-26 Thread R.I.P. Deaddog


The source is there, I think binary will follow very soon, if not
earlier.

Abel Cheung


On Tue, 27 Feb 2001, Ron Stodden wrote:

> KDE 2.1 final in binary form for the various distributions was
> promised on the KDE site by Monday February 26.
> 
> It is now 3.5 hours into Tuesday GMT and there is no sign of the KDE
> 2.1 final update to Mandrake Cooker.
> 
> Where is it?   What is happening?   When and where will it appear?
> 
> 





Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread David Walluck

On Tue, 27 Feb 2001, Guillaume Rousse wrote:

> Ok, first problem solved. But i would raise an issue : while a file in
> /etc/logrotate.d could be considered a configuration file, a file in
> /etc/rc.d/init.d is really not a configuration file, but a launch script.

Right, technically it's not a conf file, but that's not really what %conf
is for, it's just a pointer for rpm.

> 
> Second one is still unresolved. Here is the part of the script making
> rpmlint complaints (commenting it turns this off), just in case a shell
> guru could help me... 
> # look for Java location
> if [ -n $JAVA_HOME ] ; then
>   JAVALOC=$JAVA_HOME

Everyone likes to use if [ -f blah ]; then ; fi.

Using if test -f blah; then fi is portable. No we are only on Mandrake so
we don't have to worry about portability beyond Mandrake in this case, but
as a general rule this method is more portable and you don't have to fuss
with brackets. Also because [ is just a symlink to test, it *must* have a
space before an after, similaryly with ] which is just a null link. Make
sure you have spaces on either side like [ blah ] not [ blah]. That could
be creating a problem.

Anyway, bedtime for me :)

-- 
Sincerely,

David Walluck
<[EMAIL PROTECTED]>





Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread Guillaume Rousse


On 2001.02.27 06:42:12 +0400 David Walluck wrote:
> On Mon, 26 Feb 2001, Guillaume Rousse wrote:
> 
> > Subject: [Cooker] i like being insulted by rpmlint :-)
> > 
> > Here is current rpmlint wrath on my shiny new tomcat rpm :
> > W: tomcat non-conffile-in-etc /etc/tomcat/tomcat.properties
> > W: tomcat non-conffile-in-etc /etc/tomcat/obj.conf
> > [..] and so on for every file... in /etc/tomcat
> > W: tomcat spurious-bracket-in-%post
> 
> mark /etc/tomcat as %conf
> the second warning looks like your post script may have a syntax error. I
> don't have the new rpmlint, but I am sure about the first error. Marking
> conf files makes sure RPM won't overwrite them.

Ok, first problem solved. But i would raise an issue : while a file in
/etc/logrotate.d could be considered a configuration file, a file in
/etc/rc.d/init.d is really not a configuration file, but a launch script.

Second one is still unresolved. Here is the part of the script making
rpmlint complaints (commenting it turns this off), just in case a shell
guru could help me... 
# look for Java location
if [ -n $JAVA_HOME ] ; then
JAVALOC=$JAVA_HOME
else
if [ -n $JAVA_PATH] ; then
JAVALOC=$JAVA_PATH
else
if [ -n $JDK_HOME] ; then
JAVALOC=$JDK_HOME
else
if [ -n $JDK_PATH] ; then
JAVALOC=$JDK_PATH
fi
fi
fi
fi

-- 
The administration will veiw the study hall as the teacher's preparation
time. 
-- Murphy's Laws of Teaching n°14




Re: [Cooker] All: *new* mirrors & cookerdevel page

2001-02-26 Thread r j

OK. Thanks. Will let them know.
FYI: The links are still there - just commented out and will not show
but can be reached with right-click/view source.
HAGD!
rj

--- Ron Stodden <[EMAIL PROTECTED]> wrote:
> r j wrote:
> > 
> > Hi all:
> > 
> > I modified and submitted a new cookerdevel.php3 page for all to
> use.
> >  The mirror sites have been updated -many new ones- and organized
> by
> > location(CoO). Alix and Frederic have dutifully posted the info for
> > you.
> > 
> > Please review:
> > 
> > http://www.linux-mandrake.com/en/cookerdevel.new.php3 .
> 
> it's awful!  What happened to the Australian mirror sites?   They
> work well, yet you dropped them!   Perhaps you are not aware that
> because of cost considerations aarnet cannot accept connections from
> outside Australia?
> 
> ftp: aarnet
> ftp: planetmirror
> ftp: unsw (University of New South Wales)
> rsync: planetmirror
> 
> all work very well and the complete URLs have been published on your
> list.
> 
> -- 
> Regards,
> 
> Ron. [au]
> 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




RE: [Cooker] All: *new* mirrors & cookerdevel page

2001-02-26 Thread Steve Wray

Just to add my too scents worth,
The only reason I'm on cooker at all is because of
the australian sites.
I pay by the meg if my useage goes over quota.
The aussie sites count as local traffic tho so
its small fry.


> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Ron Stodden
> Sent: Tuesday, February 27, 2001 5:37 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [Cooker] All: *new* mirrors & cookerdevel page
> 
> 
> r j wrote:
> > 
> > Hi all:
> > 
> > I modified and submitted a new cookerdevel.php3 page for all to use.
> >  The mirror sites have been updated -many new ones- and organized by
> > location(CoO). Alix and Frederic have dutifully posted the info for
> > you.
> > 
> > Please review:
> > 
> > http://www.linux-mandrake.com/en/cookerdevel.new.php3 .
> 
> it's awful!  What happened to the Australian mirror sites?   They
> work well, yet you dropped them!   Perhaps you are not aware that
> because of cost considerations aarnet cannot accept connections from
> outside Australia?
> 
> ftp: aarnet
> ftp: planetmirror
> ftp: unsw (University of New South Wales)
> rsync: planetmirror
> 
> all work very well and the complete URLs have been published on your
> list.
> 
> -- 
> Regards,
> 
> Ron. [au]
> 
> 
> 




Re: [Cooker] All: *new* mirrors & cookerdevel page

2001-02-26 Thread Ron Stodden

r j wrote:
> 
> Hi all:
> 
> I modified and submitted a new cookerdevel.php3 page for all to use.
>  The mirror sites have been updated -many new ones- and organized by
> location(CoO). Alix and Frederic have dutifully posted the info for
> you.
> 
> Please review:
> 
> http://www.linux-mandrake.com/en/cookerdevel.new.php3 .

it's awful!  What happened to the Australian mirror sites?   They
work well, yet you dropped them!   Perhaps you are not aware that
because of cost considerations aarnet cannot accept connections from
outside Australia?

ftp: aarnet
ftp: planetmirror
ftp: unsw (University of New South Wales)
rsync: planetmirror

all work very well and the complete URLs have been published on your
list.

-- 
Regards,

Ron. [au]




[Cooker] [REQUEST] Linux Progress Patch and Aurora in cooker

2001-02-26 Thread Ian C. Sison


Hello anyone on the mandrake team,

Assuming we would like for a totally user friendly "face" to a mandrake
system booting up, Aurora seems to be a big step forward, could you
integrate the Linux Progress Patch as well - so end users would never have
to see "scary" text messages when the system is booting up?


Just a suggestion.







Re: [Cooker] Kernel 2.4 into Mandrake Linux

2001-02-26 Thread Robert L Martin

Quoth Pixel
Robert L Martin <[EMAIL PROTECTED]> writes:

> that would be part of the "other deps" thing and besides if you have a

> SCSI drive
> and didn't do SCSI in kernel YOU ARE CRAZY!!

uh? yet again someone having something against modules? as for me, i
don't have
the time to build my own kernel (and my hd is scsi)
-
I have nothing against modules per say but then again im of the "when in
doubt hardwire" school of thinking. My own kernel is compiled with scsi
> imm and ppa
and ISA PNP and video for linux in kernel (sound and BTTV don't work in
kernel)
it only takes me 2 hours to do a compile (yes i do take a nap during the
compile)

Robert L Martin








Re: [Cooker] KDE 2.1 final

2001-02-26 Thread Salane King

Compiling each kde package takes hours on a very fast computer. I tried it 
once. I will wait for the packages for me it would be quicker. 

On Monday 26 February 2001 09:34 pm, you wrote:
> KDE 2.1 final in binary form for the various distributions was
> promised on the KDE site by Monday February 26.
>
> It is now 3.5 hours into Tuesday GMT and there is no sign of the KDE
> 2.1 final update to Mandrake Cooker.
>
> Where is it?   What is happening?   When and where will it appear?

-- 
Message sent from Linux-Mandrake 8.0 (Cooker)
Salane 
icq# 324306




[Cooker] Re: [CHRPM] pan-0.9.4-1mdk

2001-02-26 Thread Sérvio Túlio P. Amarante

Em Seg 26 Fev 2001 17:15, Renaud Chaillat escreveu:
> --=-=-=
> Name: pan  Relocations: (not relocateable)
> Version : 0.9.4 Vendor: MandrakeSoft
> Release : 1mdk  Build Date: Mon Feb 26 18:13:30
> 2001 Install date: (not installed)   Build Host:
> bi.mandrakesoft.com Group   : Networking/News   Source RPM:
> (none)
> Size: 1082009  License: GPL
> Packager: Renaud Chaillat <[EMAIL PROTECTED]>
> URL : http://pan.rebelbase.com/
> Summary : A USENET newsreader for GNOME
> Description :
> This is version 0.9.4 of PAN, the Pimp Ass Newsreader.  Its
> goal is to make a user-friendly and powerful USENET newsreadre for
> GNOME.  Its user interface is based loosely on popular newsreaders
> for Windows.
>
> This is alpha software, so don't expect everything to work
> correctly or even at all.
>
> --=-=-=
>
> * Mon Feb 26 2001 Renaud Chaillat <[EMAIL PROTECTED]> 0.9.4-1mdk
>
> - new version

Pan does not start, it freezes looking for something in /usr/share/oaf after 
a message telling that I have to delete its old data files.  A dependency 
problem? Currently I have oaf -0.5.1-3mdk installed.
-- 
Sérvio T P Amarante

[EMAIL PROTECTED]




Re: [Cooker] BSD Kernel + Mandrake

2001-02-26 Thread dam's

[EMAIL PROTECTED] (Denis Pelletier) writes:

> On Tue, 27 Feb 2001, andre wrote:
> 
> { >
> { >
> { > Wonderful suggestions. how about integrating XFree86 into kernel?
> { >
> {
> { I think a centralized, binary configuration-file would also be something
> { to contend over
> 
> Good idea. But first, we should force the computer to reboot if the list
> of DNS servers is modified.
> 

please stop this now.

-- 
dam's




Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread David Walluck

On Mon, 26 Feb 2001, Guillaume Rousse wrote:

> Subject: [Cooker] i like being insulted by rpmlint :-)
> 
> Here is current rpmlint wrath on my shiny new tomcat rpm :
> W: tomcat non-conffile-in-etc /etc/tomcat/tomcat.properties
> W: tomcat non-conffile-in-etc /etc/tomcat/obj.conf
> [..] and so on for every file... in /etc/tomcat
> W: tomcat spurious-bracket-in-%post

mark /etc/tomcat as %conf
the second warning looks like your post script may have a syntax error. I
don't have the new rpmlint, but I am sure about the first error. Marking
conf files makes sure RPM won't overwrite them.

 -- 
Sincerely,

David Walluck
<[EMAIL PROTECTED]>





[Cooker] KDE 2.1 final

2001-02-26 Thread Ron Stodden

KDE 2.1 final in binary form for the various distributions was
promised on the KDE site by Monday February 26.

It is now 3.5 hours into Tuesday GMT and there is no sign of the KDE
2.1 final update to Mandrake Cooker.

Where is it?   What is happening?   When and where will it appear?

-- 
Regards,

Ron. [au]




Re: [Cooker] chkconfig issues

2001-02-26 Thread R.I.P. Deaddog


Do you notice the SECURE_LEVEL? Still not?

Abel Cheung



On Mon, 26 Feb 2001, Ed Wilts wrote:

> On Sunday 25 February 2001 14:53, Pixel wrote:
> 
> > [root@leia pixel]# chkconfig --list portmap
> > portmap 0:off   1:off   2:off   3:on4:on5:on6:off
> > [root@leia pixel]# SECURE_LEVEL=4 rpm -U /RPMS/portmap-4.0-13mdk.i586.rpm
> > execution of portmap-4.0-13mdk script failed, exit status 1
> > [root@leia pixel]# chkconfig --list portmap
> > portmap 0:off   1:off   2:off   3:off   4:off   5:off   6:off
> > [root@leia pixel]# SECURE_LEVEL=2 chkconfig --add portmap
> > [root@leia pixel]# chkconfig --list portmap
> > portmap 0:off   1:off   2:off   3:on4:on5:on6:off
> > [root@leia pixel]# SECURE_LEVEL=4 chkconfig --add portmap ; echo $?
> > 1
> > [root@leia pixel]# chkconfig --list portmap
> > portmap 0:off   1:off   2:off   3:off   4:off   5:off   6:off
> >

[snip]

> [root@wierzbowski /root]# chkconfig --level 2345 ntpd on
> [root@wierzbowski /root]# chkconfig --list ntpd
> ntpd             0:off   1:off   2:on    3:on    4:on    5:on    6:off
> [root@wierzbowski /root]# chkconfig --add ntpd
> [root@wierzbowski /root]# echo $?
> 0
> [root@wierzbowski /root]# chkconfig --list ntpd
> ntpd             0:off   1:off   2:on    3:on    4:on    5:on    6:off





[Cooker] libpcap-0.6.1-4mdk & libpcap0-0.6.1-2mdk

2001-02-26 Thread R.I.P. Deaddog


Get confused. Aren't libpcap and libpcap0 the same thing?

Abel Cheung


On Tue, 27 Feb 2001, Jeff Garzik wrote:

> --=-=-=
> Name: libpcap  Relocations: (not relocateable)
> Version : 0.6.1 Vendor: MandrakeSoft
> Release : 4mdk  Build Date: Tue Feb 27 01:23:04 2001
> Install date: (not installed)   Build Host: no.mandrakesoft.com
> Group   : System/Libraries  Source RPM: (none)
> Size: 147906   License: BSD
> Packager: Jeff Garzik <[EMAIL PROTECTED]>
> URL : http://www.tcpdump.org
> Summary : A system-independent interface for user-level packet capture
> Description :
> Libpcap provides a portable framework for low-level network monitoring.
> Libpcap can provide network statistics collection, security monitoring
> and network debugging.  Since almost every system vendor provides a
> different interface for packet capture, the libpcap authors created this
> system-independent API to ease in porting and to alleviate the need for
> several system-dependent packet capture modules in each application.
> 
> --=-=-=
> 
> * Tue Feb 27 2001 Jeff Garzik <[EMAIL PROTECTED]> 0.6.1-4mdk
> 
> - Add more docs
> - Build with fPIC for shared libraries.
> 
> 





Re: [Cooker] chicken and egg problem

2001-02-26 Thread R.I.P. Deaddog


If you see my previous post, somebody told me at the same time I found it
myself, yet this problem becomes the first one:

compiling db3-devel needs db3-devel already installed.

Abel Cheung

PS I gonna make some patch, hope there is somebody that will pick
it up..


On Mon, 26 Feb 2001, Alexander Skwar wrote:

> So sprach R.I.P. Deaddog am Mon, Feb 26, 2001 at 03:36:02AM +0800:
> > -- it's running configure in nss_db, to be exact. I *REALLY* don't know
> > which package contains "/usr/include/db.h" !!! Can anybody tell me if I'm
> > wrong, and some package really contain /usr/include/db.h?
> 
> Poor answer, as it only touches one minor point of your questions:
> 
> [root@teich /RPMS-COOKER]# ll /usr/include/db.h ; rpm -qf /usr/include/db.h
> lrwxrwxrwx1 root root8 Feb 26 23:38 /usr/include/db.h -> db3/db.h
> db3-devel-3.1.14-2mdk
> 
> So, db.h is included in db3-devel - hmm, wasn't that what your problem was?
> 
> Alexander Skwar
> 





Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread R.I.P. Deaddog


To turn them off..

I am posting my ~/.rpmlintrc here.

=== 8< cut here 
addFilter("W: .* invalid-vendor .*")
addFilter("W: .* invalid-distribution .*")
addFilter("E: .* no-signature")
addFilter("W: .* no-documentation")
addFilter("W: .* invalid-license .*")
addFilter("E: .* no-packager-tag")
=== 8< cut here 



On Mon, 26 Feb 2001, Alexander Skwar wrote:

> > What about a list of errors message and their signification in rpmlint doc
> > ?
> 
> ... and how to turn them off.
> 
> Alexander Skwar
> 





Re: [Cooker] SCSI CD-ROM Drives

2001-02-26 Thread Sergio P. Korlowsky

Robin Cook wrote:

> Hello,
> 
> Well at the work test machine I am still unable to access the CD-ROM
> drives.  Same errors as I reported before.
> 
> Adaptec 2940UW card with a Plextor 40x CD-Rom Drive scsi ID 3 and
> Plexstor CD-RW Drive scsi ID 4.
> 
Well I am not alone in this... same thing
I just can't access the cdroms, one is a scsi
and the second is a Aopen cdrw 12x10x32x

any ideas... I can provide more details, such as model numbers etc etc

The problem with my NIC cards were solved just calling the right drivers...
eth0-Realtel RTL8139 eth1-3com 3c905bTX it uses 3c59x driver ok
the first uses the 8139too driver not the rtl-8139

Another item missing (or maybe removed) Netscape browser... (?)

and had a few problems configuring Cable.. but those have been fixed already

Sergio Korlowsky





Re: [Cooker] DrakConf, password dialog - different look'n'feel

2001-02-26 Thread Daouda LO

"dam's" <[EMAIL PROTECTED]> writes:

> [EMAIL PROTECTED] (Andrej Borsenkow) writes:
> 
> > Some plugins use kde_su (I think) while others obviously use there own

[...]

> > is porbably out of question (is there perl-qt or even perl-kde?)
> 
> It's kdesu. Run DrakConf with sudo, the next release will ask you for the root
> passwd only one time at the beginning.

done now .




Re: [Cooker] BSD Kernel + Mandrake

2001-02-26 Thread Denis Pelletier

On Tue, 27 Feb 2001, andre wrote:

{ >
{ >
{ > Wonderful suggestions. how about integrating XFree86 into kernel?
{ >
{
{ I think a centralized, binary configuration-file would also be something
{ to contend over

Good idea. But first, we should force the computer to reboot if the list
of DNS servers is modified.

Denis
___
Denis Pelletier
Étudiant au doctorat
sciences économiques, Université de Montreal





[Cooker] Does this idea have a Catch-22...?

2001-02-26 Thread Pierre Fortin

Got my DSL the other day and have started tracking Cooker via Ron's script...

Anyway, my system has 2 extra partitions which used to hold a previous distro,
and I've been pondering the possibility of installing Cooker onto these
partitions from my live system.  In other words, NOT with the install kernel...

So...  anyone know of any catch-22 (other than code not yet available :^) which
would prevent installations being done to separate / & /usr partitions while the
system is live?  The idea is to install a new version in background, get all the
parameters from the running system; then rebooting for a minimum of downtime...

The next challenge would be to switch to the new version on-the-fly; but I
believe that is already being worked on IIRC. :^)

Pierre




[Cooker] All: *new* mirrors & cookerdevel page

2001-02-26 Thread r j

Hi all:

I modified and submitted a new cookerdevel.php3 page for all to use.
 The mirror sites have been updated -many new ones- and organized by
location(CoO). Alix and Frederic have dutifully posted the info for
you.

Please review:

http://www.linux-mandrake.com/en/cookerdevel.new.php3 .

The goal was to make life easier for all cookers by 
(a) update the sites list ; 
(b) make it clearer that cooker is *NOT* for everyone and, thereby,
make it easier for 'Spam! Stop! quit! don't mail...' and other such
nonsense from bozos to never happen or to be easily reversed by them if
they are still too 'confused'; and 
(c) keep all the same text, style and humor in the page...as much as
possible.  It did not change very much, except for the mirrors list.

The sites list has already been added to 
http://www.linux-mandrake.com/en/cookerdevel.php3  if you just want the
list.  
A few sites were dropped.  If your fav site is gone and you *know* that
it works, it can be easily re-inserted now... later idunno.

Also, there are some Country of Origin's(CoO) city locations that I
could not pin down(easily).  If you know the city location for one that
is missing, please edify me. It's no big deal but would make the list
more complete = pretty.

Enjoy!

rj

Linux: Get it. Use it.  Improve it.
===

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: [Cooker] BSD Kernel + Mandrake

2001-02-26 Thread andre

> 
> 
> Wonderful suggestions. how about integrating XFree86 into kernel?
> 

I think a centralized, binary configuration-file would also be something to contend 
over

> 
> On Mon, 26 Feb 2001, josh mann wrote:
> 
> > Are there any plans to integrate the BSD Kernel into Mandrake?  Secondly, 
> > are there any plans to ditch RPM for DEB?  Why does Mandrake stay with RPM 
> > anyway (besides it is what is being used now)?  Thanks,
> > -Joshmann
> > _
> > Get your FREE download of MSN Explorer at http://explorer.msn.com
> > 
> > 
> > 
> 
> 
> 





[Cooker] chkconfig issues

2001-02-26 Thread Ed Wilts

On Sunday 25 February 2001 14:53, Pixel wrote:

> ok, here is the pb:
>
> [root@leia pixel]# chkconfig --list portmap
> portmap 0:off   1:off   2:off   3:on4:on5:on6:off
> [root@leia pixel]# SECURE_LEVEL=4 rpm -U /RPMS/portmap-4.0-13mdk.i586.rpm
> execution of portmap-4.0-13mdk script failed, exit status 1
> [root@leia pixel]# chkconfig --list portmap
> portmap 0:off   1:off   2:off   3:off   4:off   5:off   6:off
> [root@leia pixel]# SECURE_LEVEL=2 chkconfig --add portmap
> [root@leia pixel]# chkconfig --list portmap
> portmap 0:off   1:off   2:off   3:on4:on5:on6:off
> [root@leia pixel]# SECURE_LEVEL=4 chkconfig --add portmap ; echo $?
> 1
> [root@leia pixel]# chkconfig --list portmap
> portmap 0:off   1:off   2:off   3:off   4:off   5:off   6:off
>
> calling chkconfig --add when portmap is already "on" fails and turn it
> "off". It should return succeed and don't do anything.

I reported this to Redhat who told me it could be a Mandrake issue - their 
test case shows that it works just fine.

Here's the snippet from their e-mail:
--start cut--
Works fine for me here.

[root@wierzbowski /root]# chkconfig --level 2345 ntpd on
[root@wierzbowski /root]# chkconfig --list ntpd
ntpd             0:off   1:off   2:on    3:on    4:on    5:on    6:off
[root@wierzbowski /root]# chkconfig --add ntpd
[root@wierzbowski /root]# echo $?
0
[root@wierzbowski /root]# chkconfig --list ntpd
ntpd             0:off   1:off   2:on    3:on    4:on    5:on    6:off

It might be a problem with a Mandrake-specific customization.

--end cut--

-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]




Re: [Cooker] Driver for Matrox 450 dual head

2001-02-26 Thread Ed Wilts

On Monday 26 February 2001 17:11, you wrote:
> Alex Hulse wrote:
> > Yes, very much, as my online banking requires that I use Netscape 4 or IE
> > 4 onwards. Mozilla/Konqueror won't work and you don't think I'm mad
> > enough to install NS6 do you? :)
> >
> > Maybe make it a little less prominent, but still include it please.
>
> AFAIK, you can have konquerer identify itself as either Netscape or IE.

In theory.  In practise, I've already reported a bug in that the user agent 
is not "sticking" - ie, you set it and it forgets it.

Also, some sites want more than just the user agent.  For example, 
espn.go.com will ignore the user agent and uses the browser identity, and to 
helll with the standards.  So, you'll never have Konqueror work properly with 
this site, no matter how hard you try unless you modify the Konqueror source.

That said, Opera does lie and identify itself as IE or Netscape and it does 
display espn properly. although I haven't been able to make it happy with 
fonts yet.


-- 
Ed Wilts, Mounds View, MN, USA
mailto:[EMAIL PROTECTED]




Re: [Cooker] DrakConf, password dialog - different look'n'feel

2001-02-26 Thread dam's

[EMAIL PROTECTED] (Andrej Borsenkow) writes:

> Some plugins use kde_su (I think) while others obviously use there own
> widgets to request root passord. These are
> 
> drakfloppy
> harddrake
> userdrake
> drakfont
> 
> all others use KDE dialog.
> 
> KDE dialog differs much from what is used by DrakConf itself and all other
> pligins so I guess it is more appropriate. I personally like KDE style (I
> always disliked Gtk look'n'feel) but converting all plugins to KDE wodgets
> is porbably out of question (is there perl-qt or even perl-kde?)

It's kdesu. Run DrakConf with sudo, the next release will ask you for the root
passwd only one time at the beginning.


-- 
dam's




Re: [Cooker] Hi! (new member)

2001-02-26 Thread r j

Hey Juanma:

Not my place but since nobody else said it: 

Welcome!!

Goto 
http://www.linux-mandrake.com/en/cookerdevel.new.php3 
and follow instructions...Sorry not in Spanish yet but that would be a
really nice thing to have(hint :).  There are many links and
instructions on that page that can help you get oriented.
It is to be http://www.linux-mandrake.com/en/cookerdevel.php3 once
approved( The *new* cooker sites list is already updated. ) Having it
in Spanish would help many.

Good Luck with cooker!

rj


--- Juan Manuel García Molina <[EMAIL PROTECTED]> wrote:
> Hi!
> 
> I have just subscribed to the list, and I will introduce myself at
> first.
> 
> My name is Juan Manuel García Molina, I'm spanish and I'm 23 years
> old.
> I am a Computer Engineer, and I work in a small company related to
> the 
> Internet.
> 
> And ... what about Linux & Mandrake?
> Well, I started with Linux a few years ago (4 years. I think). In the
> 
> distros., I've worked with RedHat, Slackware, SuSe, Corel and
> Mandrake.
> Now, I've 2 machines: an AMD K6-2 with Mandrake 7.1, and an AMD
> Athlon with 
> Mandrake 7.2.
> Mainly, I work with K6 (Mandrake 7.1).
> Other things related to Linux: I translate a few packages into
> Spanish (KDE, 
> GNOME and Linux-Mandrake).
> 
> Well, and ... how may I help?
> I was thinking in contributing some packages related to multimedia.
> I am interested in XMPS, like XMMS, but allows to see audio/video
> contents, 
> and OMI (mainly, for playing DVD under Linux).
> I make a few rpms fot that packages, but they need "Mandrakizing" to
> suit 
> this distro, so I will have to work a little bit in them.
> 
> Mainly, this is me. Any comments, suggests, etc. will be wellcome.
> 
> Thanks.
> 
> ---
> Juanma
> 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: [Cooker] current draknet problem

2001-02-26 Thread dam's

[EMAIL PROTECTED] (Andrej Borsenkow) writes:

> bor@localhost ~ $ rpm -q drakxtools
> drakxtools-1.1.5-41mdk
> 
> srarted draknet out of DrakConf and got a list of LAN adapters to try.
> Pressed "Cancel" and that was all - ps -ef shows draknet running but no
> output.

Try the last drakxtools 42 mdk, it corrects this.

dam's




Re: [Cooker] SCSI CD-ROM Drives

2001-02-26 Thread Hilo4721

C6 45




Re: [Cooker] BSD Kernel + Mandrake

2001-02-26 Thread Rob Snow

[Gathers his troll hunting pike from the shed]

> Are there any plans to integrate the BSD Kernel into Mandrake?
Huh?  Double huh?

>Secondly, are there any plans to ditch RPM for DEB?
Slashdot seems to make everyone a instant expert.

> Why does Mandrake stay with RPM anyway (besides it is what is being used
now)?
And you have been using Mandrake for how long?  Wait, have you even bothered
to install any Linux or FreeBSD yet (or other OS for that matter)?

[Returns you to your normal program]

-Rob



- Original Message -
From: "josh mann" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, February 26, 2001 3:27 PM
Subject: [Cooker] BSD Kernel + Mandrake


> Are there any plans to integrate the BSD Kernel into Mandrake?  Secondly,
> are there any plans to ditch RPM for DEB?  Why does Mandrake stay with RPM
> anyway (besides it is what is being used now)?  Thanks,
> -Joshmann
> _
> Get your FREE download of MSN Explorer at http://explorer.msn.com
>
>





Re: [Cooker] BSD Kernel + Mandrake

2001-02-26 Thread R.I.P. Deaddog


Wonderful suggestions. how about integrating XFree86 into kernel?


On Mon, 26 Feb 2001, josh mann wrote:

> Are there any plans to integrate the BSD Kernel into Mandrake?  Secondly, 
> are there any plans to ditch RPM for DEB?  Why does Mandrake stay with RPM 
> anyway (besides it is what is being used now)?  Thanks,
> -Joshmann
> _
> Get your FREE download of MSN Explorer at http://explorer.msn.com
> 
> 
> 





Re: [Cooker] Driver for Matrox 450 dual head

2001-02-26 Thread John Cavan

Alex Hulse wrote:
> 
> Yes, very much, as my online banking requires that I use Netscape 4 or IE 4
> onwards. Mozilla/Konqueror won't work and you don't think I'm mad enough to
> install NS6 do you? :)
> 
> Maybe make it a little less prominent, but still include it please.

AFAIK, you can have konquerer identify itself as either Netscape or IE.

John




[Cooker] Why don't recent kernels build initrd?

2001-02-26 Thread Alexander Skwar

Hi all!

I've noticed that since, uhmm, kernel-2.4.0-xx no initrd is automatically
built when updating the kernel package.  (Hmm, thinking of it, has it ever
been built automatically?)
Well, why is this?  IMO it would be better if the initrd were built.  As I
imagine (without looking at the .spec), it's just one additional command for
the %post section:

mkinitrd /boot/initrd-%{version}-%{release} %{version}-%{release}

This should do it.  And so that fixing of /boot/grub/menu.lst is not
necessary when updating kernels, I've also added a symlink

/boot/initrd -> /boot/initrd-%{version}-%{release}.img

This way, if only /boot/initrd is referenced in /boot/grub/menu.lst,
/boot/grub/menu.lst doesn't need to be touched.

I assume that something similiar also holds true for LILO, but I don't use
LILO anymore, so I can't say for sure.  I guess that a call to /sbin/lilo
would be necessary if LILO is used.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 31 minutes




Re: [Cooker] Where to upload updated RPMs?

2001-02-26 Thread Alexander Skwar

So sprach Geoffrey Lee am Mon, Feb 26, 2001 at 12:47:57AM +0800:
> Why don't you send a spec patch and any source diffs if necessary ..

Is uploading to the incoming dir no longer possible?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 27 minutes




Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread Alexander Skwar

So sprach Guillaume Rousse am Mon, Feb 26, 2001 at 11:59:07PM +0400:
> Here is current rpmlint wrath on my shiny new tomcat rpm :
> W: tomcat non-conffile-in-etc /etc/tomcat/tomcat.properties
> W: tomcat non-conffile-in-etc /etc/tomcat/obj.conf
> [..] and so on for every file... in /etc/tomcat
> W: tomcat spurious-bracket-in-%post
> 
> I don't understand the reason of first message, nor the meaning of the
> second one.

1st) You've got a file in /etc that's not marked as %config in your spec.
2nd) Maybe there's a (, ), [, ], { or } that's not needed right there in
your %post section?

> What about a list of errors message and their signification in rpmlint doc
> ?

... and how to turn them off.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 24 minutes




[Cooker] Can't boot with kernel-2.4.2-2mdk

2001-02-26 Thread Alexander Skwar

Hi!

Booting with kernel-2.4.2-2mdk is not possible.  There are unresolved
dependencies in the reiserfs.o module.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 19 minutes




Re: [Cooker] chicken and egg problem

2001-02-26 Thread Alexander Skwar

So sprach R.I.P. Deaddog am Mon, Feb 26, 2001 at 03:36:02AM +0800:
> -- it's running configure in nss_db, to be exact. I *REALLY* don't know
> which package contains "/usr/include/db.h" !!! Can anybody tell me if I'm
> wrong, and some package really contain /usr/include/db.h?

Poor answer, as it only touches one minor point of your questions:

[root@teich /RPMS-COOKER]# ll /usr/include/db.h ; rpm -qf /usr/include/db.h
lrwxrwxrwx1 root root8 Feb 26 23:38 /usr/include/db.h -> db3/db.h
db3-devel-3.1.14-2mdk

So, db.h is included in db3-devel - hmm, wasn't that what your problem was?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 22 minutes




Re: [Cooker] how to recreate kernel rpm initrd

2001-02-26 Thread Alexander Skwar

So sprach [EMAIL PROTECTED] am Mon, Feb 26, 2001 at 07:33:20AM +:
> Stop this junk now this is spam mail and stop it now

Huh?  Are you talking to yourself?

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die guenstige Art an Linux Distributionen zu kommen
Uptime: 0 hours 14 minutes




[Cooker] SCSI CD-ROM Drives

2001-02-26 Thread Robin Cook

Hello,

Well at the work test machine I am still unable to access the CD-ROM
drives.  Same errors as I reported before.

Adaptec 2940UW card with a Plextor 40x CD-Rom Drive scsi ID 3 and
Plexstor CD-RW Drive scsi ID 4.

-- 
Best regards,
 Robin  mailto:[EMAIL PROTECTED]






R: [Cooker] how to recreate kernel rpm initrd

2001-02-26 Thread Alberto Vorano

First you have to enable modules and RAM filesystem (at present I don't
remember the exact message) in making xconfigur of your new kernel
Then, in /usr/src, mv   and ln linux .
E.G.: (Linux-2.2-18mdk and assuming you had already re-named your old Linux
directory so you compiled in Linux directory)
mv linux linux-2.2-18mdk
ln -s linux-2.2-18mdk linux
pay attention that your new /lib/modules are on a same name directory
copy to /boot bzImage and System.map:
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-2.2-18mdk
cp /usr/src/linux/System.map /boot/System.map-2.2-18mdk
and now it comes:
cd /boot
mkinitrd initrd-2.2-18mdk.img 2.2-18mdk
then you have to update your (LILO) bootloader
-- cross your fingers ;o) --
Bye
Alberto Vorano
- Original Message -
From: Andrej Borsenkow <[EMAIL PROTECTED]>
To: Mandrake cooker list <[EMAIL PROTECTED]>
Sent: Monday, February 26, 2001 7:24 AM
Subject: [Cooker] how to recreate kernel rpm initrd


> If I recompile kernel - what is exact command (or module set) used to
create
> initrd in kernel RPM?
>
> -andrej
>
> Have a nice DOS!
> B >>
>
>





RE: [Cooker] Installation issues from ISO cooker image

2001-02-26 Thread Gorwood, Steve
Title: RE: [Cooker] Installation issues from ISO cooker image





>>>Can you give me the exact error message?


   I select the  "Configure a DSL (or ADSL) connection." button, then click "OK" and immediately
   get a pop up box with the message:


 An error occurred 
   Not an ARRAY reference.
   OK


 
Regards,
Steven Gorwood


-Original Message-
From: dam's [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 26, 2001 4:11 AM
To: [EMAIL PROTECTED]
Subject: Re: [Cooker] Installation issues from ISO cooker image



[EMAIL PROTECTED] ("Gorwood, Steve") writes:


> 
> 2)  At the "How do you want to connect to the Internet?"  prompt I select
> "Configure a DSL (or ADSL) connection."
> I get an error message saying "An error occurred Not an ARRAY reference."
> Selecting the cable installation option
> allowed me to proceed and apparently succeed (even though I have DSL) since
> I was able to use Mozilla to 
> browse the internet.
> 


Can you give me the exact error message?



> 
> 5)  While trying to fix the mouse problem, I logged in as root and tried to
> use DrakConf to configure
> the mouse.  I was able to open the Mandrake Control Center and highlight the
> Hardware option, but
> was unable to expand the selection using the keyboard.    It would be useful
> to allow a complete navagation of this 
> program without requiring a mouse. 


yes, that's right. his will be improved


-- 
dam's





RE: [Cooker] Installation issues from ISO cooker image

2001-02-26 Thread Gorwood, Steve
Title: RE: [Cooker] Installation issues from ISO cooker image





>>What graphic card do you have?


  ATI 3D Rage Pro



>>>you mean the services? (like wu-ftpd, httpd...)


  No. The menu has a header line:  "Choose which services should bed automatically
  started at boot time."  The first few selctions are:  anacron, arpwatch, atd, autofs.


  Note:  while re-running through the installation to check this out, I do not see this
 problem now.  I chose a different package selection to minimize the install time,
 so that may have something do with it.



what kind of mouse do you have? i mean "Logitech Wheel Mouse" doesn't tell if
it's a PS/2, USB...


  Mouse = PS/2 Logitech Marble+


  Under Mandrake 7.0, if I install it as "Logitech MouseMan+/FirstMouse+(PS2)" it works well.


  If I look at /etc/X11/XF86Config, I see the same setting for both 7.2 and 8.0.


   Section "Pointer"
   Protocol  "MouseManPlusP/S2"
   Device    "/dev/psaux"
   ZAxisMapping  4 5
   EndSection


Regards,
Steven Gorwood


-Original Message-
From: Pixel [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 26, 2001 5:22 AM
To: [EMAIL PROTECTED]
Subject: Re: [Cooker] Installation issues from ISO cooker image



"Gorwood, Steve" <[EMAIL PROTECTED]> writes:


[...]


> 1)  In the initial splash screen, the user is prompted to press enter to
> continue or F1 for more
> options.  Pressing Enter locks the system.  Pressing F1 followed by Enter
> allows the user to proceed
> normally.  I had this same problem with Mandrake 7.2


what graphic card do you have?


[...]


> 3)  In the expert installation at the point that it asks for boot options,


you mean the services? (like wu-ftpd, httpd...)


[...]


> 4)  After installation completes and I reboot,  my mouse does not work at
> the log in screen even though it
> worked during the installation. When I select my mouse during the install, a


what kind of mouse do you have? i mean "Logitech Wheel Mouse" doesn't tell if
it's a PS/2, USB...





[Cooker] BSD Kernel + Mandrake

2001-02-26 Thread josh mann

Are there any plans to integrate the BSD Kernel into Mandrake?  Secondly, 
are there any plans to ditch RPM for DEB?  Why does Mandrake stay with RPM 
anyway (besides it is what is being used now)?  Thanks,
-Joshmann
_
Get your FREE download of MSN Explorer at http://explorer.msn.com





Re: [Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread R.I.P. Deaddog


non-conffile-in-etc = The files located in /etc are supposed to be config
files, and should be labeled as %config in spec [ or %config(noreplace) if
you don't want another complaint ].

Abel Cheung


On Mon, 26 Feb 2001, Guillaume Rousse wrote:

> Here is current rpmlint wrath on my shiny new tomcat rpm :
> W: tomcat non-conffile-in-etc /etc/tomcat/tomcat.properties
> W: tomcat non-conffile-in-etc /etc/tomcat/obj.conf
> [..] and so on for every file... in /etc/tomcat
> W: tomcat spurious-bracket-in-%post
> 
> I don't understand the reason of first message, nor the meaning of the
> second one.
> What about a list of errors message and their signification in rpmlint doc
> ?
> 





Re: [Cooker] Hi! (new member)

2001-02-26 Thread Juan Manuel García Molina

El Lun 26 Feb 2001 20:37, escribiste:
> On 2001.02.27 00:29:52 +0400 Juan Manuel García Molina wrote:
> > I was thinking in contributing some packages related to multimedia.
> > I am interested in XMPS, like XMMS, but allows to see audio/video
> > contents,
> > and OMI (mainly, for playing DVD under Linux).
> > I make a few rpms fot that packages, but they need "Mandrakizing" to suit
> >
> > this distro, so I will have to work a little bit in them.
>
> There is already a xmps package in contrib, that was not trivial to
> realize... You should have a look and merge with yours.
>
> Guillaume

Well, I'll begin to work in OMI, and later I'll see the XMPS package.




Re: [Cooker] 8139too.o is super slow on HP EN1207d-TX

2001-02-26 Thread R.I.P. Deaddog


Isn't it 8139.o in 2.2.x, and 8139too.o in 2.4.x?

Abel Cheung

On 26 Feb 2001, Chmouel Boudjnah wrote:

> Prana <[EMAIL PROTECTED]> writes:
> 
> > Hiya, 
> >  It seems 8139too is very slow on Linux compared to Windows. It seems
> > it's a driver problem. My card is HP EN-1206D TX Fast Ethernet. Here's
> > lspci + lspcidrake output:
> 
> 2.2.x ? or 2.4.x ?
> 
> > 00:0f.0 Ethernet controller: Accton Technology Corporation SMC2-1211TX
> > (rev 10)
> > Subsystem: Hewlett-Packard Company EN-1207D Fast Ethernet Adapter
> > Flags: bus master, medium devsel, latency 32, IRQ 11
> > I/O ports at e800
> > Memory at d900 (32-bit, non-prefetchable)
> > 
> >  Intel Corporation|440BX/ZX - 82443BX/ZX Host bridge (unknown ignore)
> >  Intel Corporation|440BX/ZX - 82443BX/ZX AGP bridge (unknown ignore)
> >  Intel Corporation|82371AB PIIX4 ISA (unknown unknown)
> >  Intel Corporation|82371AB PIIX4 IDE (STORAGE_IDE unknown)
> >  Intel Corporation|82371AB PIIX4 USB (SERIAL_USB usb-uhci)
> >  Intel Corporation|82371AB PIIX4 ACPI (unknown unknown)
> >  Ensoniq|ES1371 [AudioPCI-97] (MULTIMEDIA_AUDIO snd-card-ens1371)
> > SubVendor=0x1274 SubDevice=0x1371
> >  Accton|SMC2-1211TX (NETWORK_ETHERNET 8139too) SubVendor=0x103c
> > SubDevice=0x1207 US Robotics/3Com|56K FaxModem Model 5610
> > (COMMUNICATION_SERIAL unknown) SubVendor=0x12b9 SubDevice=0x00aa
> >  ATI|3D Rage Pro AGP 1X/2X (DISPLAY_VGA Card:ATI Mach64)
> > SubVendor=0x1002 SubDevice=0x0084
> 
> 





[Cooker] i like being insulted by rpmlint :-)

2001-02-26 Thread Guillaume Rousse

Here is current rpmlint wrath on my shiny new tomcat rpm :
W: tomcat non-conffile-in-etc /etc/tomcat/tomcat.properties
W: tomcat non-conffile-in-etc /etc/tomcat/obj.conf
[..] and so on for every file... in /etc/tomcat
W: tomcat spurious-bracket-in-%post

I don't understand the reason of first message, nor the meaning of the
second one.
What about a list of errors message and their signification in rpmlint doc
?
-- 
The subtlest bugs cause the greatest damage and problems. 
Corollary - A subtle bug will modify storage thereby masquerading as some
other problem. 
-- Murphy's Laws of Computer Programming n°3




Re: [Cooker] Hi! (new member)

2001-02-26 Thread Daouda LO

Juan Manuel García Molina <[EMAIL PROTECTED]> writes:

> Hi!
> 
> I have just subscribed to the list, and I will introduce myself at first.

welcome .

[...]

> I was thinking in contributing some packages related to multimedia.
> I am interested in XMPS, like XMMS, but allows to see audio/video contents, 
> and OMI (mainly, for playing DVD under Linux).
> I make a few rpms fot that packages, but they need "Mandrakizing" to suit 
> this distro, so I will have to work a little bit in them.

Read the mandrake rpm howto at :

http://www.linux-mandrake.com/en/howtos/mdk-rpm/




Re: [Cooker] Default /etc/zshrc and russian loale problem

2001-02-26 Thread Chmouel Boudjnah

Andrej Borsenkow <[EMAIL PROTECTED]> writes:

> To get russian locale on console you need to send special escape sequence
> (\033(K). By default that happens in /etc/default.d/lang.sh that is NOT
> sourced by zsh (it does not execute /etc/profile.d/*.sh by default).

yes it was disabled as request by zsh-developer but i think i'm gonna
to reactivate it.

> What is the reason for not doing it? Besides, why it in /etc/zshrc? It
> actually belongs to /etc/zprofile. Suggestion is to move sourcing of
> profile.d into /etc/zprofile and do it by default.
> 
> This also is a good occasion to build zsh-4 rpm :-)

humm as i said i wait for the final release

-- 
MandrakeSoft Inc http://www.chmouel.org
  --Chmouel




Re: [Cooker] 8139too.o is super slow on HP EN1207d-TX

2001-02-26 Thread Chmouel Boudjnah

Prana <[EMAIL PROTECTED]> writes:

> Hiya, 
>  It seems 8139too is very slow on Linux compared to Windows. It seems
> it's a driver problem. My card is HP EN-1206D TX Fast Ethernet. Here's
> lspci + lspcidrake output:

2.2.x ? or 2.4.x ?

> 00:0f.0 Ethernet controller: Accton Technology Corporation SMC2-1211TX
> (rev 10)
>   Subsystem: Hewlett-Packard Company EN-1207D Fast Ethernet Adapter
>   Flags: bus master, medium devsel, latency 32, IRQ 11
>   I/O ports at e800
>   Memory at d900 (32-bit, non-prefetchable)
> 
>  Intel Corporation|440BX/ZX - 82443BX/ZX Host bridge (unknown ignore)
>  Intel Corporation|440BX/ZX - 82443BX/ZX AGP bridge (unknown ignore)
>  Intel Corporation|82371AB PIIX4 ISA (unknown unknown)
>  Intel Corporation|82371AB PIIX4 IDE (STORAGE_IDE unknown)
>  Intel Corporation|82371AB PIIX4 USB (SERIAL_USB usb-uhci)
>  Intel Corporation|82371AB PIIX4 ACPI (unknown unknown)
>  Ensoniq|ES1371 [AudioPCI-97] (MULTIMEDIA_AUDIO snd-card-ens1371)
> SubVendor=0x1274 SubDevice=0x1371
>  Accton|SMC2-1211TX (NETWORK_ETHERNET 8139too) SubVendor=0x103c
> SubDevice=0x1207 US Robotics/3Com|56K FaxModem Model 5610
> (COMMUNICATION_SERIAL unknown) SubVendor=0x12b9 SubDevice=0x00aa
>  ATI|3D Rage Pro AGP 1X/2X (DISPLAY_VGA Card:ATI Mach64)
> SubVendor=0x1002 SubDevice=0x0084

-- 
MandrakeSoft Inc http://www.chmouel.org
  --Chmouel




[Cooker] timed-0.17-2mdk depend problem..

2001-02-26 Thread jorgp

It depends on inetd?

-- 
Thanks
Jorg




Re: [Cooker] Hi! (new member)

2001-02-26 Thread Guillaume Rousse


On 2001.02.27 00:29:52 +0400 Juan Manuel García Molina wrote:
> I was thinking in contributing some packages related to multimedia.
> I am interested in XMPS, like XMMS, but allows to see audio/video
> contents, 
> and OMI (mainly, for playing DVD under Linux).
> I make a few rpms fot that packages, but they need "Mandrakizing" to suit
> 
> this distro, so I will have to work a little bit in them.
There is already a xmps package in contrib, that was not trivial to
realize... You should have a look and merge with yours.

Guillaume
-- 
Clocks will run more quickly during free time. 
-- Murphy's Laws of Teaching n°15




Re: [Cooker] menudrake not embedded when started out of DrakConf

2001-02-26 Thread Daouda LO

Andrej Borsenkow <[EMAIL PROTECTED]> writes:

> Well, it looks like the only plugin left that is not embeddable. Just to
> make the whole more consistent ...

known :) , workin' on .. 




[Cooker] Hi! (new member)

2001-02-26 Thread Juan Manuel García Molina

Hi!

I have just subscribed to the list, and I will introduce myself at first.

My name is Juan Manuel García Molina, I'm spanish and I'm 23 years old.
I am a Computer Engineer, and I work in a small company related to the 
Internet.

And ... what about Linux & Mandrake?
Well, I started with Linux a few years ago (4 years. I think). In the 
distros., I've worked with RedHat, Slackware, SuSe, Corel and Mandrake.
Now, I've 2 machines: an AMD K6-2 with Mandrake 7.1, and an AMD Athlon with 
Mandrake 7.2.
Mainly, I work with K6 (Mandrake 7.1).
Other things related to Linux: I translate a few packages into Spanish (KDE, 
GNOME and Linux-Mandrake).

Well, and ... how may I help?
I was thinking in contributing some packages related to multimedia.
I am interested in XMPS, like XMMS, but allows to see audio/video contents, 
and OMI (mainly, for playing DVD under Linux).
I make a few rpms fot that packages, but they need "Mandrakizing" to suit 
this distro, so I will have to work a little bit in them.

Mainly, this is me. Any comments, suggests, etc. will be wellcome.

Thanks.

---
Juanma




[Cooker] kwin dies, no error

2001-02-26 Thread Justin S. Peavey

Fresh cooker install from last night.  There seems to be some
interaction between konquorer and kwin, after about 5-10 minutes of web
browsing, kwin dies.  I can't find any core or error message.  Any
thought on how to debug this?

-JSP

-- 
   __
  |_|  Collective  |_| Justin S. Peavey  <[EMAIL PROTECTED]>
  |_  technologies  _| Director of Technology, CollectiveInfrastructure 
[][]   tel:617.443.1144 fax:617.204.9226 
 "Managed Infrastructure for the Real World"  
 http://www.colltech.com   -- Managing Systems, Networks, and Databases --





[Cooker] rpmdrake - wrong list of installed packages

2001-02-26 Thread Andrej Borsenkow

-
bor@localhost ~ $ rpm -q gcc
gcc-2.96-0.38mdk

bor@localhost ~ $ rpm -q rpmdrake
rpmdrake-1.3-11mdk

rpmdrake shows in the list of installed packages both gcc-2.95.2-12mdk and
2.96-0.38mdk. Interesting, it shows both XFree86 4.0.1 and 4.0.2 as
installed bur shows XFree86-3.3.6 in the list of installable packages.

Is it possible that rpm database keeps log of all packages that ever have been 
installed?

-andrej





[Cooker] menudrake not embedded when started out of DrakConf

2001-02-26 Thread Andrej Borsenkow

Well, it looks like the only plugin left that is not embeddable. Just to
make the whole more consistent ...

-andrej





[Cooker] DrakConf, password dialog - different look'n'feel

2001-02-26 Thread Andrej Borsenkow

Some plugins use kde_su (I think) while others obviously use there own
widgets to request root passord. These are

drakfloppy
harddrake
userdrake
drakfont

all others use KDE dialog.

KDE dialog differs much from what is used by DrakConf itself and all other
pligins so I guess it is more appropriate. I personally like KDE style (I
always disliked Gtk look'n'feel) but converting all plugins to KDE wodgets
is porbably out of question (is there perl-qt or even perl-kde?)

-andrej





[Cooker] current draknet problem

2001-02-26 Thread Andrej Borsenkow


bor@localhost ~ $ rpm -q drakxtools
drakxtools-1.1.5-41mdk

srarted draknet out of DrakConf and got a list of LAN adapters to try.
Pressed "Cancel" and that was all - ps -ef shows draknet running but no
output.

-andrej





[Cooker] Small glitch in which-2.12-3mdk

2001-02-26 Thread Andrej Borsenkow

urpmi --auto-select
...
which
##install-info:
ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: × `/usr/share/info/which.info.bz2' ÎÅÔ ×ÈÏÖÄÅÎÉÑ ÄÌÑ
ËÁÔÁÌÏÇÁ Info

(translation: warning: /usr/share/info/which.info.bz2 does not contain
Info dir).

-andrej





Re: [Cooker] Driver for Matrox 450 dual head

2001-02-26 Thread Alex Hulse

Yes, very much, as my online banking requires that I use Netscape 4 or IE 4 
onwards. Mozilla/Konqueror won't work and you don't think I'm mad enough to 
install NS6 do you? :)

Maybe make it a little less prominent, but still include it please.

Alex

On Sunday 25 February 2001 21:02, you wrote:
> Redhat made netscape 4 obsolete actually. But.. it's still too
> popular, and many ppl will complain why it disappeared from Mandrake if
> there were no prior announcement..
>
> Abel Cheung
>
> On Sun, 25 Feb 2001, Ed Wilts wrote:
> > On Sunday 25 February 2001 13:40, Ron Stodden wrote:
> > > Ed Wilts wrote:
> > > > I find it amazing that Mandrake will ship Netscape, binary only, when
> > > > there is a good GPL alternative (Konqueror) but will not ship a
> > > > freely distributable binary-only driver for which there is no
> > > > alternative short of replacing the hardware.
> > >
> > > Konqueror is not a replacement for Netscape.   Konqueror does not do
> > > email, newsgroups, or let you compose web pages.
> >
> > True, but add Kmail, Quanta (or Bluefish or a few others) and Knode or
> > Pan and you do have true open source equivalents for the rest.
> >
> > In today's releases, Netscape should no longer be considered mandatory.




Re: [Cooker] Cooker-i586 20010225 4:16

2001-02-26 Thread Thomas Mangin, Systems

As well I don't get why cut is not in /bin ?

Regards,
Thomas
--
Thomas Mangin  [EMAIL PROTECTED]
Systems Manager[EMAIL PROTECTED]
Legend Internet Ltd.   http://www.legend.co.uk:/
- Original Message - 
From: Xavier Bertou <[EMAIL PROTECTED]>
To: Cooker ML <[EMAIL PROTECTED]>
Sent: Monday, February 26, 2001 5:53 PM
Subject: [Cooker] Cooker-i586 20010225 4:16


| Hi,
| some remarks about current cooker :
| 
| I'm concerned about the installation of vi. There are a number of points
| upon which I wouldn't agree :
| - put vim in /bin/vim and not /usr/bin/vim. It has "always" be in
|   /usr/bin, and should really be in /usr/bin.
| - put links to /etc/alternatives in /bin (vi is the only package I
|   installed to do so)
| 
| I had a (lot of) crash(es) and had to use /bin/vi without /usr mounted.
| It failed, and of course I used /bin/vim-minimal, but in automated
| scripts or the like it would fail.
| 
| I would really prefer vim-minimal package to install a /bin/vi, and
| vim-enhanced to install a /usr/bin/vim.
| 
| Then, kernel-2.4.1-22mdk does not work with my eth0 3c509 ISA PNP card,
| as I said in a previous mail. I run kernel22-2.2.18-14mdk currently...
| Any idea ?
| 
| Some things about mutt package. Could the compressed folder patch be
| added to mutt ? And also when I use mutt, the >128 charecters appear as 
| '?'. Of course it's Ok in xterm, vi, or whatever application I use. It
| never happened to me before with other mutts (I always compiled them
| myself because of the compressed folder patch). Any idea ?
| 
| At last, I tried to launch netscape to give the URL of the patch of mutt
| and the xterm in which I entered netscape disapeared. Surprised, I
| launched another xterm, another netscape and beep, my computer rebooted
| :(
| Included here is the log of what happened.
| (I have netscape-common-4.76-2mdk and netscape-communicator-4.76-2mdk)
| 
| Appart from that, it works well ;-)
| 
| -- 
| Xavier
| 





[Cooker] Cooker-i586 20010225 4:16

2001-02-26 Thread Xavier Bertou

Hi,
some remarks about current cooker :

I'm concerned about the installation of vi. There are a number of points
upon which I wouldn't agree :
- put vim in /bin/vim and not /usr/bin/vim. It has "always" be in
  /usr/bin, and should really be in /usr/bin.
- put links to /etc/alternatives in /bin (vi is the only package I
  installed to do so)

I had a (lot of) crash(es) and had to use /bin/vi without /usr mounted.
It failed, and of course I used /bin/vim-minimal, but in automated
scripts or the like it would fail.

I would really prefer vim-minimal package to install a /bin/vi, and
vim-enhanced to install a /usr/bin/vim.

Then, kernel-2.4.1-22mdk does not work with my eth0 3c509 ISA PNP card,
as I said in a previous mail. I run kernel22-2.2.18-14mdk currently...
Any idea ?

Some things about mutt package. Could the compressed folder patch be
added to mutt ? And also when I use mutt, the >128 charecters appear as 
'?'. Of course it's Ok in xterm, vi, or whatever application I use. It
never happened to me before with other mutts (I always compiled them
myself because of the compressed folder patch). Any idea ?

At last, I tried to launch netscape to give the URL of the patch of mutt
and the xterm in which I entered netscape disapeared. Surprised, I
launched another xterm, another netscape and beep, my computer rebooted
:(
Included here is the log of what happened.
(I have netscape-common-4.76-2mdk and netscape-communicator-4.76-2mdk)

Appart from that, it works well ;-)

-- 
Xavier

 a


[Cooker] [RPM] smssend-2.4-1mdk

2001-02-26 Thread Christian Zoffoli



---
Name: smssend  Relocations: (not relocateable)
Version : 2.4   Vendor: MandrakeSoft
Release : 1mdk  Build Date: lun 26 feb 2001 17:54:06 CET
Install date: (not installed)   Build Host: mercury.helium.net
Group   : Networking/Other  Source RPM: (none)
Size: 139048   License: GPL
Packager: Christian Zoffoli <[EMAIL PROTECTED]>
URL : http://zekiller.skytech.org/smssend_menu_en.html
Summary : Send free SMS to any GSM
Description :
SmsSend allows you to send free SMS to any GSM, connecting to Internet sites
using scripts. It is available both for Windows and Unix.

---

 lun gen 29 2001 Lenny Cartier <[EMAIL PROTECTED]> 2.4-1mdk

- updated to 2.4

-- 






[Cooker] [RPM] smssend-2.5-1mdk

2001-02-26 Thread Christian Zoffoli



---
Name: smssend  Relocations: (not relocateable)
Version : 2.5   Vendor: MandrakeSoft
Release : 1mdk  Build Date: lun 26 feb 2001 17:54:49 CET
Install date: (not installed)   Build Host: mercury.helium.net
Group   : Networking/Other  Source RPM: (none)
Size: 142319   License: GPL
Packager: Christian Zoffoli <[EMAIL PROTECTED]>
URL : http://zekiller.skytech.org/smssend_menu_en.html
Summary : Send free SMS to any GSM
Description :
SmsSend allows you to send free SMS to any GSM, connecting to Internet sites
using scripts. It is available both for Windows and Unix.

---

 lun feb 26 2001 Christian Zoffoli <[EMAIL PROTECTED]> 2.5-1mdk

- updated to 2.5

-- 






[Cooker] db3 is a mess, so ask/offer to split it...

2001-02-26 Thread R.I.P. Deaddog


Hi All,

The db3 spec was very ugly currently, is it copied from redhat? I guessed
so because of those "%%ifos linux" lines.. there were db3 packages for
Slowaris, I think? (Oh shouldn't ask, confirmed it myself) Mandrake
shouldn't need this "%%ifos"...

Besides, nss_db is merged inside, and building db3 also builds
nss_db/nss_db-compat  building 3 source trees in a package doesn't
look good at all. It's commented in spec that nss_db should be splited out
ASAP, yet seems nobody is willing/have time to do so. If there is no time
for everybody else, I can try it. Please give me a green light if there's
no problem!

Abel Cheung





Re: [Cooker] Fwctl and Perl-IPChains

2001-02-26 Thread Daouda LO

Eugenio Diaz <[EMAIL PROTECTED]> writes:

> --- Daouda LO <[EMAIL PROTECTED]> wrote:
> > Eugenio Diaz <[EMAIL PROTECTED]> writes:
> > 
> > > [root@fulgore:/home/ftp/pub/linux/mandrake-devel/cooker/Mandrake/RPMS]#
> > > rpm -iv h Fwctl-0.28-2mdk.noarch.rpm
> > > error: failed dependencies:
> > >  perl-IPChains   is needed by Fwctl-0.28-2mdk
> > 
> > what the heck ??
> > i don't get your point ? 
> > 
> > Install perl-IPChains 
> 
> Sorry for the lack of info. The point is that perl-IPChains is not on the
> mirrors. 

Fixed , Fwctl is now in contribs with perl-IPChains .




Re: [Cooker] Kernel 2.2.18 for mandrake 7.2 ?

2001-02-26 Thread Chmouel Boudjnah

r j <[EMAIL PROTECTED]> writes:

> Hello:
> The Mandrake Security 'cookfire' distr uses kernel 2.2.18, albeit
> compiled for i386.   There is a source RPM that you can use to rebuild
> for your arch. 
> kernel-2.2.18-1mdk.src.rpm can be found on the mirrors that contain
> 'cookfire' SRPMS(of course). It might work for you-dunno.  Check the
> linux-manmdrake.com download page; cookfire security package locations
> are at the bottom.

it should also be available from my webpage :

https://kenobi.mandrakesoft.com/~chmou/

-- 
MandrakeSoft Inc http://www.chmouel.org
  --Chmouel




Re: [Cooker] nfs-utils broken

2001-02-26 Thread Chmouel Boudjnah

Ed Wilts <[EMAIL PROTECTED]> writes:

> nfs-utils turns the service off during the installation.
> 
> [root@linux1 /root]# chkconfig nfs --list
> nfs 0:off   1:off   2:off   3:on4:on5:on6:off
> [root@linux1 cooker]# rpm -ivh nfs-utils-0.3.1-1mdk.i586.rpm --replacepkgs
> nfs-utils   ##
> execution of nfs-utils-0.3.1-1mdk script failed, exit status 1
> [root@linux1 cooker]# chkconfig nfs --list
> nfs 0:off   1:off   2:off   3:off   4:off   5:off   6:off
> [root@linux1 cooker]# chkconfig nfs on

ok it's my merge with the redhat script, i forgot to set the
start-run-level... i'll do an update soon...

-- 
MandrakeSoft Inc http://www.chmouel.org
  --Chmouel




Re: [Cooker] Soyo/ VIA chip built-in sound

2001-02-26 Thread Chmouel Boudjnah

"pablito" <[EMAIL PROTECTED]> writes:

> Soyo motherboards have a built in sound chip, the VIA VT82C686 (Apollo Super
> AC97 Audio).  The latest hard drake correctly identifies it and mentions a
> file called via82cxxx_audio, but does not turn the sound on.  Sndconfig says
> it's not supported.  Soyo has a redhat 7.1 driver which is outdated and
> doesn't work.  Does anyone know anything about this?  I could disable the
> sound chip and put my old sound card back but I'd rather not do that.  the
> windows driver works.

if you use a 2.4.x kernel use the via82cxxx_audio module if you use a 2.2.x
kernel use the module from Alsa snd-card-via686a.

-- 
MandrakeSoft Inc http://www.chmouel.org --Chmouel




Re: [Cooker] when will it be officially released?

2001-02-26 Thread Geoffrey Lee

> 
> In 7.2, my computer sometimes takes a few minutes to put all my memory to
> buffer, is this one of the features?  when I was running on windows Me it
> does the same thing, but doesn't that reduces the amount of memory I could
> use?  Is this going to be the same in 8.0?
> 

Sorry, I don't really get what you mean, memory management is handled by
the kernel not us ..

-- 
Geoffrey Lee <[EMAIL PROTECTED]>
李長風

http://devel.mandrakesoft.com/~snailtalk
ftp://devel.mandrakesoft.com/pub/people/snailtalk

$/usr/games/fortune
Anything that can go wrong will go
Segmentation fault (core dumped)
$





[Cooker] Re: [CHRPM] modutils-2.4.2-2mdk

2001-02-26 Thread David Odin

On Mon, Feb 26, 2001 at 01:45:00PM +0100, Matthias Badaire wrote:
> --=-=-=
> Name: modutils Relocations: (not relocateable)
> Version : 2.4.2 Vendor: MandrakeSoft
> Release : 2mdk  Build Date: Mon Feb 26 10:04:29 2001
> Install date: (not installed)   Build Host: ke.mandrakesoft.com
> Group   : System/Kernel and hardwareSource RPM: (none)
> Size: 215075   License: GPL
> Packager: Linux-Mandrake Team <[EMAIL PROTECTED]>
> Summary : The kernel daemon (kerneld) and kernel module utilities.
> Description :
> The modutils packages includes the kerneld program for automatic
> loading of modules under 2.0 kernels and unloading of modules under
> 2.0 and 2.2 kernels, as well as other module management programs.
> Examples of loaded and unloaded modules are device drivers and
> filesystems, as well as some other things.
> 
> --=-=-=
> 
> * Mon Feb 26 2001 Matthias Badaire <[EMAIL PROTECTED]> 2.4.2-2mdk
> 
> - enable zlib compression
> 
  It looks to me that the description of this package is a bit outdated.

 DindinX

-- 
  [EMAIL PROTECTED]




[Cooker] when will it be officially released?

2001-02-26 Thread Lin

hi, I probably didn't keep up very well, but when will Mandrake 8.0 be
officially released?  

In 7.2, my computer sometimes takes a few minutes to put all my memory to
buffer, is this one of the features?  when I was running on windows Me it
does the same thing, but doesn't that reduces the amount of memory I could
use?  Is this going to be the same in 8.0?

Thanks






[Cooker] KDE 2.1 in cooker

2001-02-26 Thread Bill Schweder

What is up with kde in cooker everytime i do something kicker and the bar
at the top my my programs vanish for a few second... Is this a KDE bug or
something in Mandrake?






RE: [Cooker] More urpmi problems

2001-02-26 Thread Andrej Borsenkow



> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of François Pons
> Sent: Monday, February 26, 2001 1:25 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [Cooker] More urpmi problems
>
>
> Andrej Borsenkow <[EMAIL PROTECTED]> writes:
>
> > bor@localhost ~ $ sudo urpmi basesystem
> > everything already installed
> > bor@localhost ~ $ urpmq -vd basesystem
> > read depslist file [/var/lib/urpmi/depslist.ordered]
> > cracklib-2.7
> > mount-2.10q
> > cracklib-dicts-2.7
> > mkinitrd-2.7
> > pwdb-0.61
> > isapnptools-1.24
> > 
> > ... etc
> >
> > bor@localhost ~ $ rpm -q isapnptools
> > isapnptools-1.22-2mdk
> > ^
> >
> > ???
>
> This is because basesystem is up-to-date problably.
>

Which basesystem do you mean - installed or in urpmi database? (You mean
``basesystem RPM'', do not you?)

In any case, I am pretty sure that *installed* baseystem RPM was out of date.
And --auto-select suggested correct packages.

> Use -c flag for urpmi, normally it should fixe this problem.
>

urpmi -c seems just to hang ... at least, it sits there doing nothing visible.

Anyway, I already updated base system (at least, if nothing new was released
already).

-andrej





Re: [Cooker] Installation issues from ISO cooker image

2001-02-26 Thread Pixel

"Gorwood, Steve" <[EMAIL PROTECTED]> writes:

[...]

> 1)  In the initial splash screen, the user is prompted to press enter to
> continue or F1 for more
> options.  Pressing Enter locks the system.  Pressing F1 followed by Enter
> allows the user to proceed
> normally.  I had this same problem with Mandrake 7.2

what graphic card do you have?

[...]

> 3)  In the expert installation at the point that it asks for boot options,

you mean the services? (like wu-ftpd, httpd...)

[...]

> 4)  After installation completes and I reboot,  my mouse does not work at
> the log in screen even though it
> worked during the installation. When I select my mouse during the install, a

what kind of mouse do you have? i mean "Logitech Wheel Mouse" doesn't tell if
it's a PS/2, USB...




Re: [Cooker] HD install

2001-02-26 Thread Pixel

Bill Schweder <[EMAIL PROTECTED]> writes:

> I was wondering do i really need all these dir to isntall cooker? I mena
> lnxw4in and dosutils seem like a waste for me to get same for tutorial and
> docs... since i don't need them. So can i still isntall Mandrake wiht out
> these dirs?

you can :)





[Cooker] Bug in mkcd.pl script

2001-02-26 Thread John Allen

The PATH is being set to
"$rep/misc;$ENV{PATH}"

Note the semi-colon!

-- 
John Allen,  Email:  mailto:[EMAIL PROTECTED]
Orbiscom Ltd,Web:http://www.orbiscom.com/
3 Sandyford Park,Direct: +353-1-2178610
Sandyford Industrial Estate, Office: +353-86-2315986
Dublin 18.   Fax:+353-1-2945119



**
The information contained in this message is confidential and 
is intended for the addressee(s) only.  If you have received 
this message in error or there are any problems please notify 
the originator immediately.  The unauthorised use, disclosure, 
copying or alteration of this message is strictly forbidden. This
message and any attachments have been scanned for viruses.
Orbiscom Ltd. will not be liable for direct, special, indirect or 
consequential damages arising from alteration of the contents 
of this message by a third party or as a result of any virus being
passed on.


www.Orbiscom.com
**




Re: [Cooker] More urpmi problems

2001-02-26 Thread François Pons

Andrej Borsenkow <[EMAIL PROTECTED]> writes:

> bor@localhost ~ $ sudo urpmi basesystem
> everything already installed
> bor@localhost ~ $ urpmq -vd basesystem
> read depslist file [/var/lib/urpmi/depslist.ordered]
> cracklib-2.7
> mount-2.10q
> cracklib-dicts-2.7
> mkinitrd-2.7
> pwdb-0.61
> isapnptools-1.24
> 
> ... etc
> 
> bor@localhost ~ $ rpm -q isapnptools
> isapnptools-1.22-2mdk
> ^
> 
> ???

This is because basesystem is up-to-date problably.

Use -c flag for urpmi, normally it should fixe this problem.

François.




Re: [Cooker] urpmi vs. urpmq - dependencies list

2001-02-26 Thread François Pons

Andrej Borsenkow <[EMAIL PROTECTED]> writes:

> On 23 Feb 2001, [iso-8859-1] François Pons wrote:
> 
> > Andrej Borsenkow <[EMAIL PROTECTED]> writes:
> > 
> > > root@localhost ~ # urpmq -d initscripts
> > > read depslist file [/var/lib/urpmi/depslist.ordered]
> > > initscripts 
> > 
> > strange, can you check what you have for initscripts in
> > /var/lib/urpmi/depslist.ordered ?
> > 
> 
> bor@localhost ~ $ rpm -q urpmi
> urpmi-1.5-6mdk
> bor@localhost ~ $ urpmq -d initscripts
> read depslist file [/var/lib/urpmi/depslist.ordered]
> initscripts
> bor@localhost ~ $ grep initscripts /var/lib/urpmi/depslist.ordered
> initscripts-5.27-37mdk 367959 32 12 31 9 26 29 27 34 6 10 3 11 1 2 25 30
> 33 35 18 16 0 24 5 
> initscripts-5.60-6mdk 535687
> bor@localhost ~ $

Ok, this is normal as urpmi take the best package, the problem is going with
base package, only the package before basesystem have all their dependancies,
after all base dependancies are removed. The correction of this side effect is
done by including basesystem in package to update, but it your case, there is a
bug that prevent to make the initscripts-5.60 a base package (as its ancestor
5.27) which will allow him to include all the dependancies.

I fix that soon.

François.




Re: [Cooker] Draknet

2001-02-26 Thread dam's

[EMAIL PROTECTED] ("Andrej Borsenkow") writes:

> >
> > draknet fills chap-secret and pap-secret. With kppp and kisdn you can choose
> > the way to connect. So you want draknet to be able to connect using both way
> > isn't it?
> >
> 
> I cannot make draknet work in curent cooker, so I can speak only about stock
> 7.2. There I did not have any option to select CHAP authentication; draknet
> suggested only PAP.
> 
> Yes, I can use kppp to select CHAP, but I'd like to be able to just say "ifup
> ppp0" without X running and get CHAP working.

ok, so I understand well. I'll do something for you...

> 
> About current problem - I open Draknet and press "Configure Using Wizard" and
> that's all. Nothing more happens.

I'm aware of that, that should be fixed soon.
-- 
dam's




Re: [Cooker] draknet broke totaly in latest cooker

2001-02-26 Thread dam's

[EMAIL PROTECTED] ("David Stanton") writes:

> draknet for modem and isdn is dead, i had to send this from a friends 
> computer... awaiting a fix thanks
> 

working on it. Sorry

-- 
dam's




Re: [Cooker] Installation issues from ISO cooker image

2001-02-26 Thread dam's

[EMAIL PROTECTED] ("Gorwood, Steve") writes:

> 
> 2)  At the "How do you want to connect to the Internet?"  prompt I select
> "Configure a DSL (or ADSL) connection."
> I get an error message saying "An error occurred Not an ARRAY reference."
> Selecting the cable installation option
> allowed me to proceed and apparently succeed (even though I have DSL) since
> I was able to use Mozilla to 
> browse the internet.
> 

Can you give me the exact error message?


> 
> 5)  While trying to fix the mouse problem, I logged in as root and tried to
> use DrakConf to configure
> the mouse.  I was able to open the Mandrake Control Center and highlight the
> Hardware option, but
> was unable to expand the selection using the keyboard.It would be useful
> to allow a complete navagation of this 
> program without requiring a mouse. 

yes, that's right. his will be improved

-- 
dam's




Re: [Cooker] KDB in Mandrake kernel?

2001-02-26 Thread Hilo4721

What verison is the keneral upto




Re: [Cooker] DrakX - time left

2001-02-26 Thread Hilo4721

Stop REMVE NOW




[Cooker] KDB in Mandrake kernel?

2001-02-26 Thread Andrej Borsenkow

I appreciate any pointers/directions how to use KDB in linux kernel (I
ubderstand, it is new in 2.4?) Is it included in Mandrake kernel RPM?

-andrej

Have a nice DOS!
B >>