RE: [Cooker] Re: how many times is an upgrade going to trash my password file?

2002-02-18 Thread Borsenkow Andrej


> 
> On Tue, Feb 19, 2002 at 09:14:48AM +0300, Borsenkow Andrej wrote:
> >
> > It never did it for me (and judging by small number of reports for
> > others) so what so different in your password file?
> 
> I recall seeing quite a few reports.  I dunno what is so different on
> mine.  One of the accounts that I constantly have to put back is this
> one:
> 
> amanda:x:33:6:Amanda user:/var/lib/amanda:/bin/bash
> 

It is not in standard system accounts

[root@cooker bor]# grep -i amanda /etc/passwd.rpmnew
[root@cooker bor]#

and it has low (=system) UID ... so I guess it is not preserved by
update-passwd. 

-andrej





Re: [Cooker] xmms-arts segfaults on close (beta2)

2002-02-18 Thread Mattias Dahlberg

On 18 Feb 2002, Lonnie Borntreger wrote:

> I switched from using the arts plugin, to setting it to using OSS and
> then wrapping it with soundwrapper or artsdsp directly.  Works fine.

Yes, 'artsdsp xmms' works so well it really should replace Noatun as the
standard player in KDE for Mandrake 8.2. The reason: Look at all the
trouble people are having with Noatun.

Regards,
Mattias





RE: [Cooker] how many times is an upgrade going to trash my password file?

2002-02-18 Thread Eugenio Diaz

--- Borsenkow Andrej <[EMAIL PROTECTED]> wrote:
> > Every time I upgrade the damn "setup" packages it trashes my passwd
> > file.  This problem gets reported over and over and over and over
> > again on this list and it still happens.  I always have to back to
> > passwd.org and get some of the accounts back.
> > 
> > Can we please stop this madness?
> > 
> 
> It never did it for me (and judging by small number of reports for
> others) so what so different in your password file?

It does for me every time I upgrade the setup rpm. Any way, there are four
issues I can think of regarding the password and group files:

1. addition/removals of permanent system accounts, ex. recent addition of gica
2. changes in UID/GID of permanent system accounts, ex. change the floppy group
GID from 80 to 70
3. preservation of rpm added system accounts, ex. pppusers, xfs, etc.
4. preservation of user added accounts, ex foo, bar, etc.

I would say management of 1 and 2 under a development distro like cooker can be
tricky, since the changes are to be made differ depending on the version
installed vs the one to be installed, and on cooker there could potentially be
lots of versions. However, I think that for released versions of mandrake,
updates of the setup rpm should work flawlessly; at least within all versions
of a major release (for example 8.0-->8.1, 8.0-->8.2 8.1-->8.2, etc.)

Now, what most people bith about is 3 and 4, and in my opinion these are no
brainers unless their UID/GID conflict with a permanet system account.

My temporary solution is to use the following script to compare the installed
files against the master files, and edit the installed files maually:

[root@fulgore:~/rsync]# more ./acc_compare 
#!/bin/bash

PWD=/etc/passwd
GRP=/etc/group
MPWD=/usr/share/base-passwd/passwd.master
MGRP=/usr/share/base-passwd/group.master

TMPDIR=/tmp
PTMP=$TMPDIR/$0.pcurrent
MPTMP=$TMPDIR/$0.pmaster
GTMP=$TMPDIR/$0.gcurrent
MGTMP=$TMPDIR/$0.gmaster

gawk -F: '{print $1":"$3}' $PWD |sort > $PTMP
gawk -F: '{print $1":"$3}' $MPWD |sort > $MPTMP

gawk -F: '{print $1":"$3}' $GRP |sort > $GTMP
gawk -F: '{print $1":"$3}' $MGRP |sort > $MGTMP

echo "Changes in accounts:"
echo ""
echo
echo "unique in unique in"
echo " current   master"
echo "- -"
echo
comm -3 $PTMP $MPTMP
rm -f $PTMP $MPTMP

echo
echo "___"
echo
echo

echo "Changes in groups:"
echo "--"
echo
echo "unique in unique in"
echo " current   master"
echo "- -"
echo
comm -3 $GTMP $MGTMP
rm -f $GTMP $MGTMP
[root@fulgore:~/rsync]# 


=

Eugenio Diaz, BSEE/BSCE   
Linux Engineer
[EMAIL PROTECTED]

__
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com




[Cooker] Re: how many times is an upgrade going to trash my password file?

2002-02-18 Thread Brian J. Murrell

On Tue, Feb 19, 2002 at 09:14:48AM +0300, Borsenkow Andrej wrote:
> 
> It never did it for me (and judging by small number of reports for
> others) so what so different in your password file?

I recall seeing quite a few reports.  I dunno what is so different on
mine.  One of the accounts that I constantly have to put back is this
one:

amanda:x:33:6:Amanda user:/var/lib/amanda:/bin/bash

b.


-- 
Brian J. Murrell




Re: [Cooker] syslog reports

2002-02-18 Thread guran

On Tuesday 19 February 2002 8:10 am, Borsenkow Andrej wrote:
>
> > Feb 19 06:19:09 One09 devfsd[72]: error calling: "unlink" in "GLOBAL"
>
> Ignore this. It comes from rm /dev/mouse in rc.sysinit, at this point
> root is read-only and devfsd tries to remove /lib/dev-state/mouse
>
> Folks, the only reason to have it at here (so early at least) is Aurora.
> Now when Aurora if gone may be this code can safely be removed. Strictly
> speaking even Aurora does not need it - it takes mouse device from
> /etc/sysconfig/mouse that is /dev/psaux in case of normal mouse, I guess
> it is never /dev/mouse?
>
> -andrej

Thanks, I was just vacuum cleaning for pb's.
guran

-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




Re: [Cooker] Compupic anyone ?

2002-02-18 Thread Hoyt

On Tuesday 19 February 2002 01:42 am, you wrote:

>
> Same results in 16 bit depth as with 32 bit depth. If memory serves it was
> about the time that XFree 4.2 came out that Compupic quit working, so it's
> probably not a Mandrake thing 

No, it works fine in 8.1.

-- 
Hoyt

http://www.maximumhoyt.com




Re: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread vernie

On Tuesday 19 February 2002 02:53, Borsenkow Andrej wrote:
> > On Tuesday 19 February 2002 02:12, Borsenkow Andrej wrote:
> > > Do not answer three times for the same message.
> > >
> > > > > > 1. What version are you speaking about? It is pretty ancient
>
> bug
>
> > > > > Are you using devfs by any chance ? They ware problems related
>
> to
>
> > > early
> > >
> > > > > loading of part of alsa drivers
> > > >
> > > > I'm not using devfs.
> > >
> > > "I'm not using devfs" means
> > >
> > > * "I do not boot with devfs=mount"
> > >   - or -
> > > * "I compiled my own kernel without devfs support"?
> >
> > that's right. : )
>
> right what?

I'm not using devfs=mount
and I compiled my own kernel without devfs support.

I used the kernel source provided by Mandrake 8.2 Beta2.





RE: [Cooker] I cannot believe!!! Is it Windows or Linux?

2002-02-18 Thread Franki

perhaps that is something that should be initially filled out at install,
then, should it require changes later, you should be able to start it from
control panel.

One last thing, Mandrake should not make any GUI tools that don't have
console
alternatives, so I'd like to see a setup for this from the console also.
(the servers that can potentially benefit most from this don't always run
GUI.)

rgds

Frank

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Bill Greenwood
Sent: Tuesday, 19 February 2002 4:37 AM
To: [EMAIL PROTECTED]
Subject: Re: [Cooker] I cannot believe!!! Is it Windows or Linux?



I agree with you George-- Msec is definitely one of the tools that
could use a frontend, just like we have one for rsync (DrakSync).

I say again too these Drak tools should all be in the 'Mandrake
*Control* Center', where we can *Control* all aspects of our Mandrake
system.  Maybe another heading? 'Other Drak Tools' ?

===

George Mitchell wrote:

> Msec is a nice tool.  But it would be wonderful to have a  graphical
> front end for it, where parameters get explained and open themselves
> to local customization.  Sort of like the nice firewall tools.  Any
> thoughts on this?
>
> Claudio wrote:
>
>> Il 19:29, lunedì 18 febbraio 2002, H.McM ha scritto:
>> [...]
>>
 NO! It seems OK, but it will be 711 again after a system reboot I
 cannot believe it!!!

>> [...]
>>
>>> 3) remove msec.
>>>
>>
>> msec is a very useful tool. WAS a very useful tool until 8.1, but now
>> he's  becoming the owner my system!   =;p
>>
 So now
 auto-mount,
 auto-device-generation,
 auto-permission,
 auto-script-generation
 auto-*

>>> If you dont like these auto packages, deselect them during the install
>>> phase.
>>>
>>
>> That's what I usually do! But not everything can be decided while
>> installing the system, you know...
>>
>
>
>
>





Re: [Cooker] Gave up on via-rhine drivers :(

2002-02-18 Thread Alexander Skwar

»Bill Greenwood« sagte am 2002-02-19 um 18:15:28 +1300 :
> drivers.  None of the latest kernels would get fixed.  I had to keep 
> going back to 2.4.13-12 to get the good drivers. :(  Kudzu even found 

Hmm, I'm also using via-rhine and am currently still runinng 2.4.17-2.
No network problems here.

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: 5 days 23 hours 37 minutes




RE: [Cooker] syslog reports

2002-02-18 Thread Borsenkow Andrej


> The "GLOBAL" thing I get in evey boot:
> Feb 19 05:19:28 One09 kernel: IPVS: ipvs loaded.
> Feb 19 05:19:28 One09 random: Initializing random number generator:
> succeeded
> Feb 19 05:19:28 One09 rpc.statd[1002]: unable to register (statd, 1,
udp).
> Feb 19 05:19:28 One09 netfs: Mounting other filesystems:  succeeded
> Feb 19 05:19:28 One09 atd: atd startup succeeded
> Feb 19 06:19:08 One09 rc.sysinit: Setting default font:  succeeded
> Feb 19 06:19:09 One09 rc.sysinit: Mounting proc filesystem succeeded
> Feb 19 06:19:09 One09 devfsd: Started device management daemon v1.3.23
for
> /dev
> Feb 19 06:19:09 One09 rc.sysinit: Running DevFs deamon succeeded
> Feb 19 06:19:09 One09 devfsd[72]: error calling: "unlink" in "GLOBAL"

Ignore this. It comes from rm /dev/mouse in rc.sysinit, at this point
root is read-only and devfsd tries to remove /lib/dev-state/mouse

Folks, the only reason to have it at here (so early at least) is Aurora.
Now when Aurora if gone may be this code can safely be removed. Strictly
speaking even Aurora does not need it - it takes mouse device from
/etc/sysconfig/mouse that is /dev/psaux in case of normal mouse, I guess
it is never /dev/mouse? 

-andrej




Re: [Cooker] Re: [Contrib-Rpm] tuxpuck-0.7.9-1mdk

2002-02-18 Thread Alexander Skwar

»Blue Lizard« sagte am 2002-02-18 um 20:48:23 -0500 :
> No, care to tell us about it?

You don't remember?  Whaddashame Shufflepuck Cafe Ah
Memories from the distant ;)

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: 5 days 23 hours 35 minutes




RE: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread Borsenkow Andrej

> On Tuesday 19 February 2002 02:12, Borsenkow Andrej wrote:
> > Do not answer three times for the same message.
> >
> > > > > 1. What version are you speaking about? It is pretty ancient
bug
> > > >
> > > > Are you using devfs by any chance ? They ware problems related
to
> >
> > early
> >
> > > > loading of part of alsa drivers
> > >
> > > I'm not using devfs.
> >
> > "I'm not using devfs" means
> >
> > * "I do not boot with devfs=mount"
> >   - or -
> > * "I compiled my own kernel without devfs support"?
> 
> that's right. : )

right what?





Re: [Cooker] syslog reports

2002-02-18 Thread guran

On Tuesday 19 February 2002 7:18 am, Borsenkow Andrej wrote:
> > I just want to report this:
>
> If you want such report be useful in any way please send full contents
> or at least enough context around offending lines. Because no one knows
> what "enough context" is just cut messages since last boot. There should
> no be too many if you do it immediately after bootup.
Ok - point taken:

Just skip this if it is of no importance.

Here is the syslog part again, but now taken from messages:
Feb 19 07:39:00 One09 CROND[5526]: (root) CMD (   
/usr/share/msec/promisc_check.sh)
Feb 19 07:39:32 One09 kernel:  I/O error: dev 0b:00, sector 64
Feb 19 07:39:32 One09 kernel: isofs_read_super: bread failed, dev=0b:00, 
iso_blknum=16, block=16

That is what I get in messages when I click on the desktop icon for cdrom.

The "GLOBAL" thing I get in evey boot:
Feb 19 05:19:28 One09 kernel: IPVS: ipvs loaded.
Feb 19 05:19:28 One09 random: Initializing random number generator:  succeeded
Feb 19 05:19:28 One09 rpc.statd[1002]: unable to register (statd, 1, udp).
Feb 19 05:19:28 One09 netfs: Mounting other filesystems:  succeeded
Feb 19 05:19:28 One09 atd: atd startup succeeded
Feb 19 06:19:08 One09 rc.sysinit: Setting default font:  succeeded
Feb 19 06:19:09 One09 rc.sysinit: Mounting proc filesystem succeeded
Feb 19 06:19:09 One09 devfsd: Started device management daemon v1.3.23 for 
/dev
Feb 19 06:19:09 One09 rc.sysinit: Running DevFs deamon succeeded
Feb 19 06:19:09 One09 devfsd[72]: error calling: "unlink" in "GLOBAL"
Feb 19 06:19:10 One09 rc.sysinit: Unmounting initrd:  succeeded
Feb 19 06:19:10 One09 rc.sysinit: Configuring kernel parameters:  succeeded
Feb 19 05:19:11 One09 date: Tue Feb 19 05:19:11 CET 2002
Feb 19 05:19:11 One09 rc.sysinit: Setting clock  (localtime): Tue Feb 19 
05:19:11 CET 2002 succeeded

regards
guran

-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




Re: [Cooker] Compupic anyone ?

2002-02-18 Thread Peter Polman

On February 18, 2002 12:42 pm, you wrote:
> Op ma 18-02-2002, om 11:30 schreef M.Demirtas:
> > with me the same problem, I think it's XFree86 related problem nothing to
> > do with cooker, because on my production machine i upgraded only the
> > XFree86 to 4.2 and it also refused, which is Mandrake 8.1.
> >
> > regards
> >
> > On Monday 18 February 2002 09:37, Peter Polman wrote:
> > > Anybody using Compupic with the latest Cooker?
> > >
> > > With the latest packages Compupic refuses to start. Has anyone noted
> > > the same?
> > >
> > >
> > > [peterp@Arthur peterp]$ compupic
> > > X Error of failed request:  BadValue (integer parameter out of range
> > > for operation)
> > >   Major opcode of failed request:  18 (X_ChangeProperty)
> > >   Value in failed request:  0x0
> > >   Serial number of failed request:  50
> > >   Current serial number in output stream:  52
>
> Try X in  an other depth

Same results in 16 bit depth as with 32 bit depth. If memory serves it was 
about the time that XFree 4.2 came out that Compupic quit working, so it's 
probably not a Mandrake thing 




Re: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread vernie

On Tuesday 19 February 2002 02:12, Borsenkow Andrej wrote:
> Do not answer three times for the same message.
>
> > > > 1. What version are you speaking about? It is pretty ancient bug
> > >
> > > Are you using devfs by any chance ? They ware problems related to
>
> early
>
> > > loading of part of alsa drivers
> >
> > I'm not using devfs.
>
> "I'm not using devfs" means
>
> * "I do not boot with devfs=mount"
>   - or -
> * "I compiled my own kernel without devfs support"?

that's right. : )




Re: [Cooker] ssh in msec level 4

2002-02-18 Thread avs

Well, the reason for it lies in your /etc/hosts.deny file. ssh uses the tcp 
wrapper and so it uses that file. And I bet that if you look into your file, 
it says deny to all. Not I believe that even if you change the file by hand, 
msec overwrites it priodically. Either change msec by hand, go to a lower 
level, or don't use it.

Quoting Jeremy Salch <[EMAIL PROTECTED]>:

> no it does it when i try to connect to it as anyone 
> 
> 
> On Tuesday 19 February 2002 12:09 am, you wrote:
> > > whenever I go to msec level 4 i always get this message when trying to
> > > connect to it
> > >
> > >
> > > ssh_exchange_identification: Connection closed by remote host
> > >
> > >
> > > how do i fix this.  it works fine in level 3 but when i go to level 4
> >
> > it all
> >
> > > craps out
> >
> > As root?
> 






RE: [Cooker] ssh in msec level 4

2002-02-18 Thread Borsenkow Andrej


> Subject: Re: [Cooker] ssh in msec level 4
> 
> no it does it when i try to connect to it as anyone
> 

strange, I have server at msec 4 and can ssh into it without any
problem.

What is in /etc/hosts.{alow,deny}? By default level 4 closes everything
except localhost

> 
> On Tuesday 19 February 2002 12:09 am, you wrote:
> > > whenever I go to msec level 4 i always get this message when
trying to
> > > connect to it
> > >
> > >
> > > ssh_exchange_identification: Connection closed by remote host
> > >
> > >
> > > how do i fix this.  it works fine in level 3 but when i go to
level 4
> >
> > it all
> >
> > > craps out
> >
> > As root?





Re: [Cooker] ssh in msec level 4

2002-02-18 Thread Jeremy Salch

no it does it when i try to connect to it as anyone 


On Tuesday 19 February 2002 12:09 am, you wrote:
> > whenever I go to msec level 4 i always get this message when trying to
> > connect to it
> >
> >
> > ssh_exchange_identification: Connection closed by remote host
> >
> >
> > how do i fix this.  it works fine in level 3 but when i go to level 4
>
> it all
>
> > craps out
>
> As root?




RE: [Cooker] syslog reports

2002-02-18 Thread Borsenkow Andrej

> 
> I just want to report this:
>

If you want such report be useful in any way please send full contents
or at least enough context around offending lines. Because no one knows
what "enough context" is just cut messages since last boot. There should
no be too many if you do it immediately after bootup.


-andrej




RE: [Cooker] how many times is an upgrade going to trash my password file?

2002-02-18 Thread Borsenkow Andrej

> Every time I upgrade the damn "setup" packages it trashes my passwd
> file.  This problem gets reported over and over and over and over
> again on this list and it still happens.  I always have to back to
> passwd.org and get some of the accounts back.
> 
> Can we please stop this madness?
> 

It never did it for me (and judging by small number of reports for
others) so what so different in your password file?

-andrej

Sorry, it has done it once in pre-8.1




RE: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread Borsenkow Andrej


Do not answer three times for the same message.

> > > 1. What version are you speaking about? It is pretty ancient bug
> >
> > Are you using devfs by any chance ? They ware problems related to
early
> > loading of part of alsa drivers
> 
> I'm not using devfs.
> 

"I'm not using devfs" means

* "I do not boot with devfs=mount"
  - or -
* "I compiled my own kernel without devfs support"?






RE: [Cooker] ssh in msec level 4

2002-02-18 Thread Borsenkow Andrej

> whenever I go to msec level 4 i always get this message when trying to
> connect to it
> 
> 
> ssh_exchange_identification: Connection closed by remote host
> 
> 
> how do i fix this.  it works fine in level 3 but when i go to level 4
it all
> craps out
> 

As root?





RE: [Cooker] lilo alternate kernels and intrd

2002-02-18 Thread Borsenkow Andrej


> 
> When lilo locates more kernels in /boot
> and generates appropiate entries in /etc/lilo.conf

lilo does not locate or generate anything.

-andrej




[Cooker] Gave up on via-rhine drivers :(

2002-02-18 Thread Bill Greenwood


Well I finally gave up on via-rhine drivers working again (unresolved 
symbols), even though I reported them here 2 times.  This was a D-Link 
(DFE-530TX) network card for my DSL connection, and ran on via-rhine 
drivers.  None of the latest kernels would get fixed.  I had to keep 
going back to 2.4.13-12 to get the good drivers. :(  Kudzu even found 
that D-Link card when it was installed and configured it (and it is now 
unconfigured by Kudzu), and the latest card I just purchased also (which 
Kudzu beautifully configured), which was fondly enough, advertised as 
*Linux compatible*.  This allowed eth0 to load immediately at system 
startup, with no other intervention.

I just hope that the via-rhine situation gets resolved before release 
for the next person that needs them.

-Bill







[Cooker] 1.654 - still no mcc

2002-02-18 Thread guran

the subject

regards
guran
-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




[Cooker] syslog reports

2002-02-18 Thread guran

Hi

Version:(fmirror ftp.uninett.no)
/ChangeLog/1.654/Mon Feb 18 19:56:32 2002//
Mandrake Linux Cooker-i586 20020219  1:09

I just want to report this:
..
Feb 19 06:20:26 One09 devfsd[72]: error calling: "unlink" in "GLOBAL"
...
(the following is probably from my try to get at /mnt/cdrom and /mn/zip as 
reported elsewhere.
Feb 19 05:30:54 One09 kernel:  I/O error: dev 0b:00, sector 64
Feb 19 05:30:54 One09 kernel: isofs_read_super: bread failed, dev=0b:00, 
iso_blknum=16,
block=16
Feb 19 05:31:00 One09 CROND[4270]: (root) CMD (   
/usr/share/msec/promisc_check.sh)
Feb 19 05:31:58 One09 kernel: end_request: I/O error, dev 02:00 (floppy), 
sector 0
Feb 19 05:31:58 One09 kernel:  I/O error: dev 0b:00, sector 64
Feb 19 05:31:58 One09 kernel: isofs_read_super: bread failed, dev=0b:00, 
iso_blknum=16,
block=16

regards
guran
-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




[Cooker] xfs in syslog

2002-02-18 Thread guran

Hi

Version:(fmirror ftp.uninett.no)
/ChangeLog/1.654/Mon Feb 18 19:56:32 2002//
Mandrake Linux Cooker-i586 20020219  1:09

This is from syslog:
...
Feb 19 05:20:55 One09 xfs: ignoring font path element 
/usr/X11R6/lib/X11/fonts/drakfont
(unreadable)
...
Feb 19 05:20:56 One09 xfs: ignoring font path element 
/usr/X11R6/lib/X11/fonts/pcf_drakfont:unscaled (unreadable)

regards
guran
-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




[Cooker] 1.654 - Install report

2002-02-18 Thread guran

Hi

Version:(fmirror ftp.uninett.no)
/ChangeLog/1.654/Mon Feb 18 19:56:32 2002//
Mandrake Linux Cooker-i586 20020219  1:09

Nice install.

1)
There is a graphic miss in individual package selection where every group is 
'checked' with an extra blue front slash on top of the yellow checked sign.

2)
DcopServer might be missing sync sometime. When I installed RealPlayer to 
test for streaming radio, the keyboard was not activated but the mouse was. I 
click on the bullseye, to activate and then on the desktop to kill the devil, 
and everything comes to life again. This have happened several times.

3)
LyX internal error ( when started )
Could not test if directory is writeable.
No such file or directory.

(this have been for a long time, last time I didn't get the following though.)
( unable as user to open /mnt/zip for my saved -.lyx files.)

4)
AbiWord - opens with:
AbiWorld was not able to add its fonts to the X font path.
(medium security + mediocre security in BastilleChooser)

5)
Got sound as before, but unable as user to play a music CD in noatun, as /mnt 
contained no cdrom, floppy or zip.

6)
Mozilla still has iso8859-1 as default when using en_GB.
Likewise KMail has language set as DefaultC.

regards
guran

-- 
Mandrake Linux 8.2 Cooker kernel-2.4.17.18mdk-1-1mdk version:2002-02-19-01:09




[Cooker] how many times is an upgrade going to trash my password file?

2002-02-18 Thread Brian J. Murrell

Every time I upgrade the damn "setup" packages it trashes my passwd
file.  This problem gets reported over and over and over and over
again on this list and it still happens.  I always have to back to
passwd.org and get some of the accounts back.

Can we please stop this madness?

b.


-- 
Brian J. Murrell




[Cooker] package updates during install

2002-02-18 Thread vernie



I installed Mandrake 8.2Beta2 and tried the option which update packages. 
I selected one a mirror site where to get the updates and for some reason 
there was a failure upon installing the updated packages.  It also halted the 
installation process and force me to reboot without even reaching the part 
where I have to install the boot loader and X window configuration.  I 
would like to suggest for good that such an option on installation be move 
to the last part after everything to make sure that the system would still 
work in case there's an error during the updating of packages.  This is to 
avoid the whole installation process all over again.

--
Vernie




Re: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread vernie

On Monday 18 February 2002 05:17, you wrote:
> Ainsi parlait Borsenkow Andrej :
> > > The /etc/rc.d/init.d/alsa and /etc/rc.d/init.d/sound  were enabled to
> >
> > start
> >
> > > at boot up but
> > > alsa drivers seems not loaded properly and I cannot use my sound card
> >
> > at
> >
> > > that time. My
> > > workaround was to put the following in /etc/rc.d/rc.local
> > >
> > > /etc/rc.d/init.d/alsa restart
> > > /etc/rc.d/init.d/sound restart
> > >
> > > to make things work.
> > >
> > > During the first run of /etc/rc.d/init.d/alsa at boot up tells me that
> >
> > Alsa
> >
> > > driver already running.
> > > Note that /etc/rc.d/init.d/alsasound was not set to run at boot up.
> >
> > 1. What version are you speaking about? It is pretty ancient bug
>
> Are you using devfs by any chance ? They ware problems related to early
> loading of part of alsa drivers

I'm not using devfs.

> > 2. There is no such thing as alsasound in Mandrake.
>
> It is installed by manual alsa compilation. You can remove it safely.






Re: [Cooker] /etc/rc.d/init.d/alsa at boot up

2002-02-18 Thread vernie

On Monday 18 February 2002 02:24, Borsenkow Andrej wrote:
> > The /etc/rc.d/init.d/alsa and /etc/rc.d/init.d/sound  were enabled to
>
> start
>
> > at boot up but
> > alsa drivers seems not loaded properly and I cannot use my sound card
>
> at
>
> > that time. My
> > workaround was to put the following in /etc/rc.d/rc.local
> >
> > /etc/rc.d/init.d/alsa restart
> > /etc/rc.d/init.d/sound restart
> >
> > to make things work.
> >
> > During the first run of /etc/rc.d/init.d/alsa at boot up tells me that
>
> Alsa
>
> > driver already running.
> > Note that /etc/rc.d/init.d/alsasound was not set to run at boot up.
>
> 1. What version are you speaking about? It is pretty ancient bug

I'm using Mandrake 8.2 Beta2.  I believed the /etc/rc.d/init.d/alsasound was generated 
when I compiled the alsa drivers from 
Mandrake kernel-source for my compiled kernel.

> 2. There is no such thing as alsasound in Mandrake.
> -andrej

I know, that's why I did not enable it since there's the /etc/rc.d/init.d/alsa script 
that I can use.






Re: [Cooker] network.img

2002-02-18 Thread andre

Op ma 18-02-2002, om 21:53 schreef Pixel:
> Oden Eriksson <[EMAIL PROTECTED]> writes:
> 
> > On Mondayen den 18 February 2002 21.22, Pixel wrote:
> > > Oden Eriksson <[EMAIL PROTECTED]> writes:
> > > > Could someone please remember to upgrade "network.img" too along with the
> > > > "cdrom.img" an "hd.img" images.
> > >
> > > a broken mirror?
> > 
> > I donno..., I'm rsyncing each hour from sunet... Here's what I have:
> 
> at least this one seems ok:
> 
> lftp sunsite.uio.no:/pub/unix/Linux/Mandrake/Mandrake-devel/cooker/i586/images> ll
> -rw-r--r--   1 7382 usit  306 Feb 18 20:03 MD5SUM
> -rw-r--r--   1 7382 usit 5575 Dec  4 14:38 README
> drwxr-xr-x   2 7382 usit 4096 Feb 18 20:45 alternatives
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 blank.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 cdrom.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 hd.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 network.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 other.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 pcmcia.img
> -rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 usb.img

It is rsync_exclude. It has 
- *.img 
and no 
+ network.img

Ron, i would suggest dropping - *.img because we also download the
alternatives.




[Cooker] ssh in msec level 4

2002-02-18 Thread Jeremy Salch

whenever I go to msec level 4 i always get this message when trying to 
connect to it


ssh_exchange_identification: Connection closed by remote host


how do i fix this.  it works fine in level 3 but when i go to level 4 it all 
craps out






[Cooker] LVM 1.0.2

2002-02-18 Thread mandrake

Howdy,

I was wondering if there was going to be an update to the 1.0.1 cooker
version reflecting the 24 Jan release of 1.0.2 that will hopefully make
it onto 8.2.

Cheers,

-Charlie
-- 
GPG Key fingerprint = 4F36 EC4F 2F2C 5F59 9690  09E5 4C0F 9DB0 8623 53CE
They are relatively good but absolutely terrible.
-- Alan Kay, commenting on Apollos




[Cooker] Mosix

2002-02-18 Thread Blue Lizard

Hallo TV.
Koennen Sie der Mosix 1.5.7 machen bitte?

Danke
-MG (erm...ich spreche Deutsch nicht so gut)






Re: [Cooker] noatun still not working

2002-02-18 Thread RA

Here we go again 
(root, removed  /tmp/*, ~/DCOP*, ~/.kde/tmp*, ~/.kde/socket* before startx)

$ rpm -q kdelibs-sound kdebase arts 
kdelibs-sound-2.2.2-38mdk
kdebase-2.2.2-54mdk
arts-2.2.2-38mdk

(artsplay is working)

$ noatun
and then opening a .wav file results in:

[root@trine root]# unix_connect: can't connect to server 
(unix:/tmp/mcop-root/trine_biologie_Uni-Osnabrueck_DE-0030-3c71603c)
Launched ok, pid = 7993
unix_connect: can't connect to server 
(unix:/tmp/mcop-root/trine_biologie_Uni-Osnabrueck_DE-0030-3c71603c)
(The previous message was repeated 1 times.)
file flowsystem.cc: line 117 (void Arts::RemoteScheduleNode::connect 
(basic_string, __default_alloc_template >, Arts::ScheduleNode *, basic_string, 
__default_alloc_template >)): assertion failed: (!fs.isNull())





[Cooker] Re: [Contrib-Rpm] tuxpuck-0.7.9-1mdk

2002-02-18 Thread Blue Lizard

On Mon, 2002-02-18 at 18:25, Guillaume Cottenceau wrote:
> [Contrib-RPM]
> 
> --=-=-=
> Name: tuxpuck  Relocations: (not relocateable)
> Version : 0.7.9 Vendor: MandrakeSoft

> Description :
> Anyone remember "Shufflepuck Cafe" for the Amiga/AtariST ?
> 
No, care to tell us about it?

(In other words, more descriptive description please?)




[Cooker] 8.2 Beta 2 Report

2002-02-18 Thread Luc Roseberry

Big problem with the install. My partitions were:
hda1  /boot
hda5  /
hda6 /usr
hda7 /tmp
...
hdb1swap
...
hds1/home

The last step, lilo and boot program, was stopping. I tried 6 
installations before deciding to change my partitions for
hda1/
removing the  /boot and keeping all the other ones. Then I was able to 
install.

Also the installation is unable to umount the cdrom 2 to mount CD1 when 
requested for the last steps.
Also the installation freezes if I choose to donwload the new fixes 
during the installation.
Also the graphical screen to log in is not displaying correctly.

So some problems of beta 1 fixed (like dcopserver, CD burner not 
running) but new problems. Hope the beta 3 will better.

Luc

-- 
Luc Roseberry
Consultant Tivoli certifié / Certified Tivoli Consultant
Facilité Informatique Canada 






[Cooker] X/OpenGL crash

2002-02-18 Thread Richard Garand

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I'm running a cooker system updated in the last two days, and I seem to get a 
lot of crashes with OpenGL programs. Whenever it happens, the program will 
freeze, and a few seconds later the system goes with it and I have to reboot. 
It just happened again half an hour ago and this time I lost some KDE and 
lIcq settings. I have the latest nVidia drivers installed.
- -- 
Richard Garand   - r i c h a r d @ g a r a n d n e t . n e t
(L)ICQ: 12190132 - http://www.garandnet.net
"This is a test of the Emergency Broadcast System.  If this had been an 
actual emergency, do you really think we'd stick around to tell you?"
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8caobjuZKnjxs0fMRAhcaAKDDpnSSzZVKPmzAy5+7d9P5pYoq2gCbByeX
kVTYR3RKXfY/isgBXBP6TuQ=
=Ob5g
-END PGP SIGNATURE-




Re: [Cooker] Network install & DHCP fails

2002-02-18 Thread Alkis Evlogimenos

On Monday 18 February 2002 02:08 pm, you wrote:
> Radek Vybiral <[EMAIL PROTECTED]> writes:
> > Hi cookers,
> >
> > I tried install Beta2 from network, using HTTP server and DHCP option.
> > Installation fails in this case.
>
> where/when/why
>

Meybe because dhcpcd segfaults? (dhcp-client-3.0-1rc6.2mdk.i586.rpm)

> > Network installation with static IP was OK.
> >
> > My /var/log/httpd/access.log:
> >
> > 192.168.0.249 - - "GET /cooker/Mandrake/base/mdkinst_stage2.bz2
> > HTTP/0.9" 200 10521482 "-" "-"
> > 192.168.0.249 - - "GET //cooker//tftpboot/nbgrub HTTP/1.0" 404 315
> > "-" "DrakX/vivelinuxabaszindozs"
>
> report.bug ?




Re: [Cooker] insmod of SCSI Driver fails in stage 1 and stage 2 of beta 2 instal

2002-02-18 Thread ENE 100




>From: Guillaume Cottenceau <[EMAIL PROTECTED]>
>"ENE 100" <[EMAIL PROTECTED]> writes:
>
> > During install of the latest cooker, (Drakx v. 1.647) I get the
> > following error message upon booting from hd.img in stage 1:
> > (from stage1.log)
> >
> > * have to insmod sd_mod
> > * needs scsi_mod
> > * needs sd_mod
> > *   succeeded sd_mod
> > * PCI: device 1000 008f is "Symbios|53c875J" (sym53c8xx)
> > * have to insmod sym53c8xx
> > * needs sym53c8xx
> > * init_module: sym53c8xx: No such device
>
>Yes :-(. As far as it appears, it's probably a kernel bug/problem
>if the driver not supporting this chipset/device anymore :-(. I
>don't know what's the current status of this problem (yet).
>
>Guillaume Cottenceau - http://www.frozen-bubble.org/

Hm, I remember reading something about sym53c8xx being replaced by 
sym53c8xx_2 ; could this have anything to do with the problem?

It would be strange if it were no longer supported--as far as I know it's 
one of the most popular SCSI chipsets around.

--Ian E.



_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx





Re: [Cooker] xmms-arts segfaults on close (beta2)

2002-02-18 Thread Guillaume Cottenceau

Danny Tholen <[EMAIL PROTECTED]> writes:

> When using the xmms-arts plugin, xmms segfaults on closing.

Yes there are many problems with xmms-arts ; the problem is that
it is no longer supported so we don't have a solution for that. I
like to suggest using kde native multimedia stuff but I've been
told that kde media player is not very good (which I don't know
because I don't use kde).


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




[Cooker] lilo alternate kernels and intrd

2002-02-18 Thread Keld Jørn Simonsen

When lilo locates more kernels in /boot
and generates appropiate entries in /etc/lilo.conf
it generates lines with initrd that are the standard 
initrd instead of looking of an initrd with the 
same version as the kernel in question. I would just
recommend that it looked for that version first
(would have saved me an hour or so before I found out).
That is if the kernel is /boot/vmlinuz-2.2.17-21mdk
the initrd should be /boot/initrd-2.2.17-21mdk.img
(and not /boot/initrd.img)

Kind regards
Keld




Re: [Cooker] Audigy Support

2002-02-18 Thread Anthony Symons

Yes, a mate of mine has an audidy and has seen support go from partial
to most if not all in the last few months. 

Check:

http://opensource.creative.com/

if thats down just go to:

http://sourceforge.net/projects/emu10k1

The more hits creative get on their page the better it looks though :)

It is a vary good card. Mandrake support out of the box would be
excellent.

Ant

On Tue, 2002-02-19 at 10:06, Nelson Bartley wrote:
> Hi Guys,
> 
> I was wondering if Audigy support would make it into 8.2? Actually a
> better question is, Is there any audigy support available at all?
> (downloading my own drivers etc...)
> 
> NB
> 
> 
> 
> 
-- 
Systems Administrator   
Pracom Ltd. 
+61 8 82029074 -=- +61 402 100 671 
[EMAIL PROTECTED]

PRIVILEGED - PRIVATE AND CONFIDENTIAL
This electronic mail is solely for the use of the addressee and may
contain information which is confidential or privileged.
If you receive this electronic mail in error, please delete it from
your system immediately and notify the sender by electronic mail or
using any of the above contact details.





Re: [Cooker] pcmcia not successfully ifup eth0 when card removed then reinserted

2002-02-18 Thread SI Reasoning

I tried it but I knew it would not resolve this
problem. It happens even when I remove/insert a lan
card or run "service pcmcia restart"

--- Keld_Jørn_Simonsen <[EMAIL PROTECTED]> wrote:
> On Mon, Feb 18, 2002 at 11:55:04AM -0800, SI
> Reasoning wrote:
> > 
> > Now if only we could get pcmcia to restart the
> network
> > properly
> 
> What I did under previous versions of Mandrake was
> to change
> in /etc/sysconfig/apmd :
> PCMCIARESTART="yes"
> 
> have not tried it in cooker
> 
> Try and see if it works
> 
> Keld
> 


=
SI Reasoning
[EMAIL PROTECTED]

A requirement of creativity is that it contributes to change.  Creativity keeps
the creator alive.

-FRANK HERBERT, unpublished notes

__
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com




Re: [Cooker] xmms-arts segfaults on close (beta2)

2002-02-18 Thread Lonnie Borntreger

I switched from using the arts plugin, to setting it to using OSS and
then wrapping it with soundwrapper or artsdsp directly.  Works fine.

On Mon, 2002-02-18 at 14:52, Guillaume Cottenceau wrote:
Danny Tholen <[EMAIL PROTECTED]> writes:

> When using the xmms-arts plugin, xmms segfaults on closing.

Yes there are many problems with xmms-arts ; the problem is that
it is no longer supported so we don't have a solution for that. I
like to suggest using kde native multimedia stuff but I've been
told that kde media player is not very good (which I don't know
because I don't use kde).


-- 
Guillaume Cottenceau - http://www.frozen-bubble.org/
-- 
TTFN,
Lonnie Borntreger





[Cooker] iptables

2002-02-18 Thread tsmets



Following the content of the very  good article in GNU/Linux magazine France
& in Linux Journal
I end up being able to ping any host (inside or outside my private network),
but I cannot do any TCP connexions what so ever 
I did a 8.1 simple install  & worked out that S03iptables is invoked in
/etc/rc.d
The file iniitalizes a default tables with the "iptables-restore" command.
With "that" the traffic doe not go out of my local network 

I made a script base on LJ 09/2001 : Taming the wild Netfilter... but only
pings reach the outside & I cannot worl out why it does when I alter some
lines & why it stops when altering others.

Could someone explain what i shoud modify to let TCP / UDP traffic reach out
?

Config is like that :

   eth0 (dhcpd)  eth1
   +---+ FW ++
   internet |
Internal network 192.168.1.xxx
   |






Thomas,



#!/bin/bash
# set -x
echo -n "Firewall "
echo 0 > /proc/sys/net/ipv4/ip_forward
echo "deactivated"

# echo "Defining the routes"
# route add default eth0

echo "Defining the interfaces & some variables"
source net.vars

# Remove all the rules from the table
# 
IPT=/sbin/iptables
${IPT} -F

for i in filter nat mangle
do
echo "Flushing ${i}"
${IPT} -t ${i} -F
${IPT} -t ${i} -X
done

for i in INPUT OUTPUT FORWARD
do
echo "Flushing ${i}"
${IPT} -F ${i}
done

echo "Deleting the filter table"
${IPT} -t filter -F
${IPT} -t filter -X

echo "Activation de la masquarade"
${IPT} -t nat -A POSTROUTING -o eth0 -s 192.168.1.0/24 -d 0/0 -j MASQUERADE

echo "Created filter rule"
${IPT} -t filter -N tcprules
${IPT} -t filter -A tcprules -i eth0   -m state --state
ESTABLISHED,RELATED -j ACCEPT
${IPT} -t filter -A tcprules -i ! eth0 -m state --state
-j ACCEPT
${IPT} -t filter -A tcprules -i eth0   -m state --state
LID -j DROP

${IPT} -t filter -A tcprules -i eth1 -m state --state ESTABLISHED,RELATED -j
ACCEPT
${IPT} -t filter -A tcprules -i eth1 -m state --state NEW -j
ACCEPT
${IPT} -t filter -A tcprules -i eth1 -m state --state NEW,INVALID -j
ACCEPT

${IPT} -t filter -A INPUT   -j tcprules
${IPT} -t filter -A FORWARD -j tcprules

# ${IPT} -t filter -P INPUT DROP
# ${IPT} -t filter -P FORWARD   DROP

echo -n "Firewall"
echo 1 > /proc/sys/net/ipv4/ip_forward
echo " activated"
echo



--
Thomas SMETS
rue J. Wytsmanstraat 62
1050 Bruxelles
yahoo-id : smetsthomas







Re: [Cooker] Failure dependances on last drakxtools-newt ???

2002-02-18 Thread Guillaume Cottenceau

Ben V <[EMAIL PROTECTED]> writes:

> The following message appears when trying to install
> drakxtools-1.1.7-70mdk :
>  drakxtools-newt is necessary for drakxtools-1.1.7-33mdk

# urpmi drakxtools


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




Re: [Cooker] chbg-1.5-5mdk (nautilus)

2002-02-18 Thread Alexander Skwar

»Martin Ma?ok« sagte am 2002-02-19 um 00:32:00 +0100 :
> Configure Nautilus to not change/use background image. (?)

Can't test right now, but wouldn't this mean that I also don't get
desktop icons?

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: 5 days 16 hours 21 minutes




[Cooker] Audigy Support

2002-02-18 Thread Nelson Bartley

Hi Guys,

I was wondering if Audigy support would make it into 8.2? Actually a
better question is, Is there any audigy support available at all?
(downloading my own drivers etc...)

NB







Re: [Cooker] chbg-1.5-5mdk (nautilus)

2002-02-18 Thread Martin Mačok

On Mon, Feb 18, 2002 at 11:58:19PM +0100, Alexander Skwar wrote:
> How can I use chbg to set the background if Nautilus is running?

Configure Nautilus to not change/use background image. (?)

-- 
 Martin Mačok http://underground.cz/
   [EMAIL PROTECTED]http://Xtrmntr.org/ORBman/




Re: [Cooker] Re: [Contrib-Rpm] endeavour-2.1.9-1mdk

2002-02-18 Thread Alexander Skwar

»Alexander 'Digital Projects' Skwar« sagte am 2002-02-18 um 23:51:24 +0100 :
> Are you sure the URL is correct?  I only get "connection refused".

Nevermind, I'm now able to connect to the site.

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: 5 days 15 hours 55 minutes




Re: [Cooker] lilo alternate kernels and intrd

2002-02-18 Thread Pixel

Keld Jørn Simonsen <[EMAIL PROTECTED]> writes:

> When lilo locates more kernels in /boot
> and generates appropiate entries in /etc/lilo.conf
> it generates lines with initrd that are the standard 
> initrd instead of looking of an initrd with the 
> same version as the kernel in question. I would just
> recommend that it looked for that version first
> (would have saved me an hour or so before I found out).

well, one of the advantage of using the symlink is that you can keep the same
config after upgrading the kernel... Ok, I know nowadays with installkernel
it's a moot point but...




Re: [Cooker] mozilla-0.9.8-5mdk

2002-02-18 Thread skidley

On Mon, 18 Feb 2002, Frederic Crozat wrote:

> On Sat, 16 Feb 2002 04:54:57 +0100, skidley wrote:
> 
> > On Fri, 15 Feb 2002, skidley wrote:
> > 
> >> What's up with the latest mozilla? The PSM is not rolled in like other
> >> versions and there's no mozilla-psm. Yes I have installed the
> >> corresponding libnss3 and libnspr4 rpms.
> >> 
> >> 
> > It seems for some strange reason I get the "you must have PSM..." in
> > several versions of cooker 0.9.8 rpms that i downgraded to to see if SSL
> > sites worked. It bugs me because they have always worked til now. I
> > haven't changed anything and I searched the preferences and there is
> > nothing there to even select for PSM so I couldn't deselect it if I even
> > wanted to. Any ideas why PSM would stop working out of the blue
> 
> This was supposed to be fixed with 0.9.8-3mdk :(
> 
> How did you installed mozilla ? Upgrade ? (from which version ?) New
> install ? (by hand or full cooker install through Drakx ?)
> 
> 
I used rpm -U but now all of a sudden it works after going back to -2 and -3 to
see what would happen(using rpm --oldpackage) and then rpm -U back to
-5. SSL is there as if it never disappeared. weird.
-- 
"Of all the things I've lost I miss my mind the most." -- Ozzy Osbourne

Chad Young   
Registered Linux User #195191
@ http://counter.li.org
---
Linux localhost 2.4.18-rc1 #4 Thu Feb 14 23:17:04 AST 2002 i686 unknown
  6:55pm  up 29 min,  1 user,  load average: 1.84, 1.49, 1.00





Re: [Cooker] I cannot believe!!! Is it Windows or Linux?

2002-02-18 Thread Alexander Skwar

»Claudio« sagte am 2002-02-18 um 19:15:02 +0100 :
> 2)
> In /home.
> First of all we are going out of any Unix philosophy: since 1970 homedirs are 
> 700, now they are created as 711. I don't think this is the right default, 
> anyway it's just a personal opinion, so I simply run "chmod 700 ". 
> OK.
> NO! It seems OK, but it will be 711 again after a system reboot I cannot 
> believe it!!!

That's a feature of msec.  Check the files in /etc/security/msec

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: 5 days 15 hours 31 minutes




Re: [Cooker] Re: [CHRPM] mozilla-0.9.8-5mdk

2002-02-18 Thread skidley

On Mon, 18 Feb 2002, Frederic Crozat wrote:

> On Fri, 15 Feb 2002 16:44:41 +0100, David Walluck wrote:
> 
> > Frederic Crozat wrote:
> >> --=-=-=
> >> Name: mozilla  Relocations: (not
> >> relocateable) Version : 0.9.8 Vendor:
> >> MandrakeSoft Release : 5mdk  Build Date:
> >> Thu Feb 14 19:24:27 2002 Install date: (not installed) Build Host:
> >> bi.mandrakesoft.com Group   : Networking/WWW
> >> Source RPM: (none) Size: 27436984
> >> License: MPL Packager: Mandrake Linux Team
> >>  URL : http://www.mozilla.org
> >> Summary : Mozilla, open-source web browser Description : Mozilla is
> >> an open-source web browser, designed for standards compliance,
> >> performance and portability.
> >> 
> >> --=-=-=
> >> 
> >> * Thu Feb 14 2002 Frederic Crozat <[EMAIL PROTECTED]> 0.9.8-5mdk
> >> 
> >> - Add trigger for FlashPlayer package
> >> 
> >> 
> >> 
> > After seeing this, I installed FlashPlayer and then the latest moilla
> > package. However, it does not start flash by default, and recognizes the
> > files as a "Binary Application".
> 
> This support is only for Flashplayer package which will be in boxed
> version of Mdk 8.2
> 
Flashplayer works fine here with 0.9.8-5mdk and Shockwave Flash 5.0 r47

-- 
"Of all the things I've lost I miss my mind the most." -- Ozzy Osbourne

Chad Young   
Registered Linux User #195191
@ http://counter.li.org
---
Linux localhost 2.4.18-rc1 #4 Thu Feb 14 23:17:04 AST 2002 i686 unknown
  6:55pm  up 29 min,  1 user,  load average: 1.84, 1.49, 1.00





Re: [Cooker] chbg-1.5-5mdk

2002-02-18 Thread Alexander Skwar

»Digital Wokan« sagte am 2002-02-17 um 14:51:19 -0700 :
> Using chbg-1.5-5mdk hides the icons of the KDE desktop from use.  Have
> not tried with other WM's.

How can I use chbg to set the background if Nautilus is running?  chbg
has an option for this (something like "force for Nautilus"), however
when this option is set, the image is just stretched, and not tiled
like the properties in chbg are set to.

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: 5 days 15 hours 27 minutes




Re: [Cooker] pcmcia not successfully ifup eth0 when card removed then reinserted

2002-02-18 Thread Keld Jørn Simonsen

On Mon, Feb 18, 2002 at 11:55:04AM -0800, SI Reasoning wrote:
> 
> Now if only we could get pcmcia to restart the network
> properly

What I did under previous versions of Mandrake was to change
in /etc/sysconfig/apmd :
PCMCIARESTART="yes"

have not tried it in cooker

Try and see if it works

Keld




[Cooker] Re: [Contrib-Rpm] endeavour-2.1.9-1mdk

2002-02-18 Thread Alexander Skwar

»Guillaume Rousse« sagte am 2002-02-18 um 16:51:37 +0100 :
> URL : http://wolfpack.twu.net/Endeavour2

Are you sure the URL is correct?  I only get "connection refused".

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: 5 days 15 hours 21 minutes




[Cooker] Re: [CHRPM] sawfish-1.0.1-5mdk

2002-02-18 Thread Alexander Skwar

»Frederic Crozat« sagte am 2002-02-18 um 17:02:42 +0100 :
> - Patch3 : replace Source7 and disable tooltips, they are more annoying than helpful

But a user can enable them again, correct?

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: 5 days 15 hours 18 minutes




Re: [Cooker] X crashing, killin kernel too

2002-02-18 Thread Keld Jørn Simonsen

On Mon, Feb 18, 2002 at 08:42:02PM +0100, Frederic Crozat wrote:
> On Mon, 18 Feb 2002 20:28:08 +0100, Keld Jørn Simonsen wrote:
> 
> > Hi
> > 
> > I have a problem with ML 8.2b1 that X was crashing, and it took down the
> > kernel too - got it hanging. Well, I can crash, but it really should not
> > affect the kernel. I have tried to have another system logged in via
> > ssh, and this goes dead too.
> 
> Your bug reports are useless since they are about 8.2 beta1 which has
> been superceded by beta2 more than one week ago and many things are also
> fixed in cooker..
> 
> Please, read cooker mailing list before posting and try to keep your
> computer in sync with cooker

Sorry, tried to do that but qa.mandrakesoft.com was not available to me.
Will not report more on beta1.

keld




Re: [Cooker] autoirpm-3.3-8 install error

2002-02-18 Thread Pixel

huug <[EMAIL PROTECTED]> writes:

> Well, it's an old one, but as it doesn't seem to go away by itself,
> I'll report again:
> 
> Died at /usr/sbin/autoirpm.uninstall line 8.
> error: execution of %preun scriptlet from autoirpm-3.3-7mdk failed, exit status 2

ok, for now i remove the package.




Re: [Cooker] network.img

2002-02-18 Thread Pixel

Oden Eriksson <[EMAIL PROTECTED]> writes:

> On Mondayen den 18 February 2002 21.22, Pixel wrote:
> > Oden Eriksson <[EMAIL PROTECTED]> writes:
> > > Could someone please remember to upgrade "network.img" too along with the
> > > "cdrom.img" an "hd.img" images.
> >
> > a broken mirror?
> 
> I donno..., I'm rsyncing each hour from sunet... Here's what I have:

at least this one seems ok:

lftp sunsite.uio.no:/pub/unix/Linux/Mandrake/Mandrake-devel/cooker/i586/images> ll
-rw-r--r--   1 7382 usit  306 Feb 18 20:03 MD5SUM
-rw-r--r--   1 7382 usit 5575 Dec  4 14:38 README
drwxr-xr-x   2 7382 usit 4096 Feb 18 20:45 alternatives
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 blank.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 cdrom.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 hd.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 network.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 other.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 pcmcia.img
-rw-r--r--   1 7382 usit  1474560 Feb 17 23:36 usb.img




Fwd: Re: [Cooker] kpackage

2002-02-18 Thread Peter Ruskin

For kde team.  Sorry, but you have tried to post a message to an internal 
mailing list.  Only mandrakesoft employees are allowed to do so: your 
message will not appear on the list
--  Forwarded Message  --

Subject: Re: [Cooker] kpackage
Date: Wed, 13 Feb 2002 18:54:42 +
From: Peter Ruskin <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]

On Wednesday 13 Feb 2002 18:07, Peter Ruskin wrote:
> The install window is wider than the screen - and I'm using 1280x1024.

I forgot to say kdeadmin-2.2.2-6mdk.i586.rpm
--
Peter Ruskin, Wrexham, Wales.  AMD Athlon XP 1600+, 512MB RAM.
Registered Linux User 219434.  Mandrake Linux release 8.1 (Vitamin)
Kernel 2.4.8-34.1mdk-win4lin,  XFree86 4.1.0, patch level 21mdk.
KDE: 2.2.2.  Qt: 2.3.2.  Up 3 hours 43 minutes.

---

-- 
Peter Ruskin, Wrexham, Wales.  AMD Athlon XP 1600+, 512MB RAM.
Registered Linux User 219434.  Mandrake Linux release 8.1 (Vitamin) 
Kernel 2.4.8-34.1mdk-win4lin,  XFree86 4.1.0, patch level 21mdk.
KDE: 2.2.2.  Qt: 2.3.2.  Up 8 hours 14 minutes.




Re: [Cooker] xmms-arts segfaults on close (beta2)

2002-02-18 Thread Martin Mačok

On Mon, Feb 18, 2002 at 09:52:38PM +0100, Guillaume Cottenceau wrote:
> > When using the xmms-arts plugin, xmms segfaults on closing.
> 
> Yes there are many problems with xmms-arts ; the problem is that
> it is no longer supported so we don't have a solution for that.

artsdsp - attempt to reroute audio device to artsd

It is already used in MDK. See "soundwrapper" and menu entries.
"soundwrapper xmms" is already there.

(if I'm missing the point of discussion, excuse me plz)

And BTW, emu10k1 already mixes the sound itself, so I don't need to
use artsd or esd. Could this be handled by soundwrapper? Or
installation procedure?

-- 
 Martin Mačok http://underground.cz/
   [EMAIL PROTECTED]http://Xtrmntr.org/ORBman/




Re: [Cooker] Mandrake 8.x killed my Tk Checkboxes

2002-02-18 Thread Gary Lawrence Murphy

> "D" == David Walser <[EMAIL PROTECTED]> writes:

D> I get problems with Mandrake 8.x and Tk apps too.  Running the
D> XFree86 4.x X server on an nVidia card (either open-source or
D> proprietary module I believe) all Tk apps are all yellow and
D> black, and that's it.

The yellow comes from /etc/X11/xdm/Xresources' "*Background: #f0"
which is the most awful pale lemon-cream colour -- much better to use
the colour of the cosmos #c4e3d7 ;)

What's curious here, though, is the loss of markers in checkboxes and
the state of radio buttons.  I wonder if it is because of a Tcl/Tk
upgrade that my older programs can't handle.

-- 
Gary Lawrence Murphy <[EMAIL PROTECTED]> TeleDynamics Communications Inc
Business Innovations Through Open Source Systems: http://www.teledyn.com
"Computers are useless.  They can only give you answers."(Pablo Picasso)





Re: [Cooker] bad paper size default

2002-02-18 Thread Fabrice FACORAT

le lun 18-02-2002 à 20:46, andre a écrit :

> Localisation to not_us always seems to be the problem. A4 should be the
> standard anyhow

true, same pb for french

 
-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
- Allo ! HotLine xyz ?
- J'ai un PC avec Windows 95.
- Oui et alors ?
- Il ne marche pas !
- Oui vous me l'avez deja dit !





Re: [Cooker] 8.2BETA2: can not install via network, because missing modules (pcmcia.img)

2002-02-18 Thread Guillaume Cottenceau

Juergen Krause <[EMAIL PROTECTED]> writes:

> I tried to install Mandrake 8.2BETA2 on my notebook today.
> But I can not start the installation via ftp, nfs, etc because some modules 
> are missing (using pcmcia.img).

Can you try with "network.img" please? And tell me. It should
work with it.


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




Re: [Cooker] Tried to enable share (under directory) - No Go

2002-02-18 Thread Danny Tholen

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Try kio_fish from apps.kde.org. It is really fast and gives you browing in 
konqi(fish://) through an ssh tunnel.
Actually, it would be nice to have in the distro, but prolly to late now for 8.2.
you can also try the sftp io slave for konqueror, never tried it though.


Danny


On Monday 18 February 2002 14:53, you wrote:
> Any tips on using SSH file transfer using gFTP or similar GUI?
>
> Cheers,
> R.Fox

- -- 
"Arthur felt at a bit of a loss. There was a whole Galaxy 
of stuff out there for him, and he wondered if it was 
churlish of him to complain to himself that it lacked just 
two things: the world he was born on and the woman he 
loved. "
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8cWEoaeiN+EU2vEIRAu/VAJ95Fifdh7dq28wyslnhr6PPW7kqUwCgpIsw
ptS8we+mNLSrFbAUQ8RGjq0=
=ITIq
-END PGP SIGNATURE-




Re: [Cooker] Linux progress patch

2002-02-18 Thread Chmouel Boudjnah


Well i looked at this and the progress bar is completely wrong in the
kernel.. 

-- 
http://www.chmouel.org/




Re: [Cooker] Laggy sound performance (addendum)

2002-02-18 Thread Fabrice FACORAT

le dim 17-02-2002 à 23:19, Digital Wokan a écrit :
> Added info:
> Scrolling slowly in Konqueror makes the effect worse.
> Occurs when XMMS using OSS or Arts output plugin.
> Occurs even when it's just Konqueror and XMMS (shut down rpmdrake and
> shell).
> Worse with Konqueror maximized than default opening size.
> Doesn't occur while starting other software.
> Hasn't occurred yet with other KDE apps (such as KWord).
> Occurs on any web site brought up in Konqeror large enough to require
> scrolling.
> 
> So I'm guessing the screen repaint routines Konq's calling on must be
> doing something serious to the system underneath to be affecting the
> performance of other running apps.

does you HD are optimized ?
can you see the output of gkrellm or top ?
did you try with a custom preempt or low latency kernel ?
do you use default buffer settings for xmms ?

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
Ben Fong-Torres: You're not there to party. We've already got
*one* Hunter Thompson.

   -- "Almost Famous"





Re: [Cooker] frozen bubble icon

2002-02-18 Thread Guillaume Cottenceau

Meles MELES <[EMAIL PROTECTED]> writes:

> Hi,
>   it seems that Frozen-bubbles icon has weird rights :
> -rwxr-xr-x1 root root 1.7K fév  8 13:46 
> /usr/share/icons/frozen-bubble.png*

thx, fixing.

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




Re: [Cooker] [cooker] (8.2 beta 2) programs fails to detect SDL1.2Library

2002-02-18 Thread Fabrice FACORAT

le lun 18-02-2002 à 18:36, Stefan van der Eijk a écrit :
> M. L. wrote:
> 
> > Hi,
> >
> > I am new programmer in this mailing list. I recently installed 
> > Mandrake 8.2 beta 2 to test it.
> >
> > I tried to compile the stable version of Mplayer-0.60 
> > (http://www.mplayerhq.hu/homepage/)
> >
> > Even if i try with the latest CVS, i get message "Checking for SDL ... 
> > no"
> >
> > Note : The problem is not limited to Mplayer. 
> 
> Try installing esound-devel and alsa-lib-devel (with urpmi -p).
> 
> The Requires are probably missing in the SDL-devel package.

how come alsa-lib-devel help to detect SDL ?!
 
-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
La guerre justifie l'existence des militaires en les supprimant
Henri Jeanson





Re: [Cooker] Re: [CHRPM] frozen-bubble-0.9.2-1mdk

2002-02-18 Thread Guillaume Cottenceau

Han <[EMAIL PROTECTED]> writes:

> David Walser ([EMAIL PROTECTED]) wrote:
> > No kidding!  Like I said I was ready to try and prove mathematical
> > impossibility, but I beat it.  When I did I had only one line left and
> > I was shooting right into the remaining bubbles.  Also, I took quite a
> > few shots at that level, so I think if I needed one more shot I'd have
> > died.
> 
> Exactly, I also had it _nearly_ done. Just didn't get that purple ball.
> All I needed was one bit of luck.

On this topic -> I'd like to go as far as 100 levels for the
"stable" 1.0 version of Frozen Bubble so I'd like to see level
submission (not on this list! to me personally), and more
important, don't forget to rate the difficulty of the levels so
that I can insert them at the correct place of the existing ones.


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




Re: [Cooker] Network install & DHCP fails

2002-02-18 Thread Guillaume Cottenceau

Radek Vybiral <[EMAIL PROTECTED]> writes:

> Hi cookers,
> 
> I tried install Beta2 from network, using HTTP server and DHCP option.
> Installation fails in this case.

where/when/why
 
> Network installation with static IP was OK.
> 
> My /var/log/httpd/access.log:
> 
> 192.168.0.249 - - "GET /cooker/Mandrake/base/mdkinst_stage2.bz2
> HTTP/0.9" 200 10521482 "-" "-"
> 192.168.0.249 - - "GET //cooker//tftpboot/nbgrub HTTP/1.0" 404 315
> "-" "DrakX/vivelinuxabaszindozs"

report.bug ?


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




[Cooker] Installation on Laptops

2002-02-18 Thread Edward Tandi

All,

I am new to this newsgroup, so I apologise if you already know about the 
issues mentioned below. I am sharing my experiences with Mandrake 8.2 
Beta 2 in the hope that it may become easier to install on laptops in 
the future...


Sony PCG-Z600NE
---
This machine has a PCMCIA CD-ROM drive with 128MB RAM and USB floppy.
Booting with ide2=0x180,0x386 succeeds in loading the installation GUI 
and all goes well until it comes to selecting packages. It can't find 
the rpmlist -but from the error message this is not immediately obvious. 
Repeating the attempt in text mode reveals that it can't find the pcmcia 
drivers. So how does it succeed in loading the GUI installer in the 
first place? Why are the pcmcia drivers not detected/included?

Having to resort to a disk install, I copy the contents of the two disks 
onto one of the FAT partitions, each disk under a different directory. 
Thank GOD the USB floppy works! Unfortunately, the disk install wants 
all files under one directory, so I have to re-boot into windows again, 
and manually merge the two directories. Why can't the installer ask for 
the location of the second directory? It manages this OK with CDs. 
Anyway, this time it manages to install the packages. Unfortunately, the 
machine hangs during the network configuration stage.

Having re-booted, I then go into maintenance mode and have to configure 
X (NeoMagic NM2380 MagicMedia 256XL) and the networking manually (pain). 
Also, it appears that none of the GUI tools set NETWORKING=yes in 
/etc/sysconfig/network so one has much fun trying to work out what's 
wrong with it all.

Setting up a new user -why can I no longer select the user id from 
userdrake? This is definitely a retrograde step. I need to have my user 
ids vaguely in step with other systems so that I can occasionally do a 
NFS mount (without the hassle and boot delays incurred using NIS). Back 
to the command-line then. Having set up my X preferences (Gnome and 
Enlightenment), I can't get the sound to work. The mixer works fine 
(turn the mike gain up and you get acoustic feedback), but no audio 
output from Gnome/Enlightnment/xmms. The chip is a Yamaha YMF744B 
[DS-12].  I'm still working on this -any ideas?


Clevo 2700C
--
This is an unusual beast with the SiS 630 Chipset, 128MB RAM, but with a 
built-in CD and floppy.
This install, at first, seems much easier. It installs straight away 
-until it comes to setting up X. The Mandrake installer prompts you to 
use XFree86-3.3.6 with or without an accelerated driver. Glad that it 
has detected the SiS chip and being brave, I choose the accelerated 
option and promptly get a solarising screen followed by a sure hang. Oh 
dear, re-boot. Again in maintenance mode, I manage (eventually) to tweak 
things so that X starts in some recognisable form but the screen 
"shimmers" and will not switch back to text mode, so you're stuck in X. 
Much hair-loss later, I find an example XFree86-4.x configuration on the 
SiS web site. I delete the silly resolutions from the file and Bingo! 
XFree86-4.2 works without the "shimmering" and returns back to the 
console. The only problem I have with it is that xosview appears in the 
wrong colours -anyone have any ideas as to why? All other applications 
so far seem OK. Again, I can't get the sound working (SiS 7018).


Guys, this has to get better.

Edward Tandi.



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





[Cooker] Linux progress patch

2002-02-18 Thread Fabrice FACORAT

mdksoft seems to have a more polish and professional boot. Maybe they
should be interested with this project : Linux progress patch
basically this patch hide kernel ( hardware detection/probe, ... ) with
a picturz and a progress bar ( that's remind me something ... )
For further informations :
http://lpp.freelords.org/About.phtml

for screenshots :
http://lpp.linuxfreak.nl/Themes_Distributions.phtml

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
- Allo ! HotLine xyz ?
- J'ai un PC avec Windows 95.
- Oui et alors ?
- Il ne marche pas !
- Oui vous me l'avez deja dit !





Re: [Cooker] network.img

2002-02-18 Thread Oden Eriksson

On Mondayen den 18 February 2002 21.22, Pixel wrote:
> Oden Eriksson <[EMAIL PROTECTED]> writes:
> > Could someone please remember to upgrade "network.img" too along with the
> > "cdrom.img" an "hd.img" images.
>
> a broken mirror?

I donno..., I'm rsyncing each hour from sunet... Here's what I have:

-rw-r--r--1 1137 1100  306 Feb 18 00:36 MD5SUM
-rw-r--r--1 1137 1100  1474560 Feb 18 00:36 cdrom.img
-rw-r--r--1 1137 1100  1474560 Feb 18 00:36 hd.img
-rw-r--r--1 1137 1100  1474560 Feb 14 22:01 network.img
-rw-r--r--1 1137 1100  1474560 Feb 14 22:01 other.img
-rw-r--r--1 1137 1100  1474560 Feb 14 22:01 pcmcia.img

The network image is useless because of the wild kernel shifting, the kernel 
in the network image is too old and unsupported down the install line...





Re: [Cooker] insmod of SCSI Driver fails in stage 1 and stage 2 of beta 2 install

2002-02-18 Thread Guillaume Cottenceau

"ENE 100" <[EMAIL PROTECTED]> writes:

> During install of the latest cooker, (Drakx v. 1.647) I get the
> following error message upon booting from hd.img in stage 1:
> (from stage1.log)
> 
> * have to insmod sd_mod
> * needs scsi_mod
> * needs sd_mod
> *   succeeded sd_mod
> * PCI: device 1000 008f is "Symbios|53c875J" (sym53c8xx)
> * have to insmod sym53c8xx
> * needs sym53c8xx
> * init_module: sym53c8xx: No such device

Yes :-(. As far as it appears, it's probably a kernel bug/problem
if the driver not supporting this chipset/device anymore :-(. I
don't know what's the current status of this problem (yet).


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




Re: [Cooker] pcmcia not successfully ifup eth0 when card removedthen reinserted

2002-02-18 Thread Chmouel Boudjnah

SI Reasoning <[EMAIL PROTECTED]> writes:

> :-}
> works perfectly without the patch on this end?

Humm with latest dhcp right ?

> Now if only we could get pcmcia to restart the network
> properly

What do you mean ?

-- 
http://www.chmouel.org/




Re: [Cooker] error in installation when switching mousetype to wheelmouse Beta2

2002-02-18 Thread Paul Pak

> He means the sitebar. I have the same problem with a microsoft PS2 wheel
> mouse.

Yes today I installed again, and there is no posibility to get the left 
sidebar without a mouse!




Re: AGAIN! Re: [Cooker] Last cooker: XcdRoast cannot start.

2002-02-18 Thread Claudio

Il 12:36, lunedì 18 febbraio 2002, Warly ha scritto:
> Claudio <[EMAIL PROTECTED]> writes:
> > Il 16:27, domenica 17 febbraio 2002, Daouda LO ha scritto:
> >> Claudio <[EMAIL PROTECTED]> writes:
> >> > [root@monster root]# xcdroast
> >> >
> >> > ** WARNING **: Invalid cdrecord version 1.11a14 found. Expecting
> >> > version 1.11a13
> >>
> >> fixed => 15mdk.
> >>
> >> BTW, could you test eroaster and tell me if it works please?
> >
> > Now xcdroast start, but cannot read any cd. Here you are the log:
> >
> > [...]
> > recording 5852.03466 seconds stereo with 16 bits @ 44100.0 Hz
> > ->'/home/master/track-01'...
> > cdda2wav: Operation not permitted. cannot set posix realtime scheduling
> > policy 0%Fatal error:  did not drop group privilege.
> > child reader sem request failed
> >
> > W Child exited with 1
> >
> > [...]
> >
> > [claudio@monster master]$ ls /usr/bin/cdda2wav
> > -rwxr-xr-x1 root cdwriter   189208 feb 13 16:47 /usr/bin/cdda2wav
>
> if you use cdda2wav directly, does it work ?

Some more test about it right now.

xcdroast-0.98-15mdk
eroaster-2.0.12-2mdk
cdrecord-1.11-0.a14.1mdk

[XCDROAST]
as user)
[claudio@monster claudio]$ xcdroast

** WARNING **: Installation problem? No set-uid bit on /usr/bin/cdrecord


** WARNING **: Installation problem? No set-uid bit on /usr/bin/mkisofs


** WARNING **: Installation problem? No set-uid bit on /usr/bin/readcd


** WARNING **: Installation problem? No set-uid bit on /usr/bin/cdda2wav



Trying to rip audio-tracks ==>

recording 7274.07600 seconds stereo with 16 bits @ 44100.0 Hz 
->'/home/master/track-01'...
cdda2wav: Operation not permitted. cannot set posix realtime scheduling policy
0%Fatal error:  did not drop group privilege.
2%child reader sem request failed
W Child exited with 1



Trying to chmod +s cdrecord mkisofs readcd cdda2wav ==> The same!

Working as root ==> exactly the same!  :o(




[EROASTER]

Won't work, both as Root and as User


[CDDA2WAV]

[claudio@monster tmp]$ cdda2wav -D /dev/scd0
cdrom device (/dev/scd0) is not of type generic SCSI. Setting interface to 
cooked_ioctl.
86016 bytes buffer memory requested, 4 buffers, 8 sectors
#Cdda2wav version 1.11a14_linux_2.4.16-6mdksmp_i586_i586 real time sched. 
soundcard support
AUDIOtrack pre-emphasis  copy-permitted tracktype channels
  1-19   no  no audio2
Table of Contents: total tracks:19, (total time 79:10.39)
  1.( 3:03.23),  2.( 4:04.04),  3.( 2:58.70),  4.( 5:22.70),  5.( 4:49.50)
  6.( 4:13.49),  7.( 4:43.11),  8.( 5:10.26),  9.( 3:36.13), 10.( 3:12.72)
 11.( 5:13.14), 12.( 4:49.64), 13.( 4:10.21), 14.( 3:42.08), 15.( 4:08.06)
 16.( 3:52.64), 17.( 3:24.10), 18.( 4:41.28), 19.( 3:51.36),
Table of Contents: starting sectors
  1.(   0),  2.(   13748),  3.(   32052),  4.(   45472),  5.(   69692)
  6.(   91417),  7.(  110441),  8.(  131677),  9.(  154953), 10.(  171166)
 11.(  185638), 12.(  209127), 13.(  230866), 14.(  249637), 15.(  266295)
 16.(  284901), 17.(  302365), 18.(  317675), 19.(  338778), lead-out(  
356139)
CDINDEX discid: 445Lfj2CQXA6HkZ2fTwYXSX1jMg-
CDDB discid: 0x05128c13
CD-Text: not detected
CD-Extra: not detected
samplefile size will be 32335340 bytes.
recording 183.03066 seconds stereo with 16 bits @ 44100.0 Hz ->'audio'...
overlap:min/max/cur, jitter, percent_done:
??/??/??/???   0%Fatal error:  did not drop group privilege.
 1/ 1/ 1/  0   0%child reader sem request failed

W Child exited with 1

What else?...
C.
-- 
Claudio Panichi, System/Network Admin at Dept. of Physics
"Tor Vergata" University and INFN - Sec. "Roma II"
Remote System is: LINUX!




[Cooker] XFdrake layout

2002-02-18 Thread Fabrice FACORAT


Many times people ask how they could change their monitor after they
change it or choose a bad one after the installation.
The pb is that it is not obvious to them that they should look in
XFdrake. Why , because they will see this option only when the test will
fails ( if they try thet test ).
To my mind, if something is not obvious for a newbie, it seems that
there's a pb. XFdrake seems to be more like a wizard than a graphic
config tool
So does XFdrake have a layoput closed to the windows equivalent one ?
Does hit expert button should provide a selection menu with all the
options ?
Does XFdrake should display more options in its main window ?

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
Une femme se soucie de son avenir jusqu'au jour ou elle se marie.
Un homme se soucie de son avenir a partir du jour ou il se marie.
- Lucky Luke par Morris





Re: [Cooker] mdk82b2: misc rpm dependency issues. perl-SDL doesn't require perl?

2002-02-18 Thread Guillaume Cottenceau

Doug McClendon <[EMAIL PROTECTED]> writes:

> I'm trying to build minimal installations.  I took
> the minimal of minimal installations, then installed
> urpmi and its 9 needed rpms.  Then I used urpmi to
> add frozen-bubble, which also installed perl-SDL.
> frozen-bubble uses perl scripts.  Then I tried removing
> in reverse order urpmi and its 9 dependencies, one of
> which is perl.  I was dismayed to find that it let me
> remove perl.  It seems that perl-SDL doesn't depend on
> perl, nor does frozen-bubble.  (even though they clearly
> should)

Actually yes it should depend on perl-base at least, I have to
see that (hopefully, now rpmlint also reports these errors).

# rpmlint perl-SDL-1.11-1mdk.i586.rpm 
E: perl-SDL no-dependancy perl 5.6.1


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




Re: [Cooker] diskdrake + removable detection pb + GUI issues

2002-02-18 Thread Pixel

Fabrice FACORAT <[EMAIL PROTECTED]> writes:

> 1°/ disdrake seems to parse incorrectly /etc/fstab : 
> 
> [root@bastard rpms]# grep cdrom /etc/fstab 
> /mnt/cdrom /mnt/cdrom supermount
> dev=/dev/cdrom,fs=iso9660,ro,exec,--,nosuid,nodev 0 0 
> /dev/cdrom2 /mnt/cdrom2 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 
> /dev/cdrom5 /mnt/cdrom3 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 
> /dev/cdrom7 /mnt/cdrom4 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 
> 
> 
> and diskdrake show incorrectly /mnt/cdrom3 and /mnt/cdrom4, it only show
> : 
> Périphérique : scd0 
> Périphérique : scd2 


you're using "diskdrake --removable", is that it?

there'll be a new drakxtools soon. Please tell me if it fix things. If it
doesn't, give me the fstab & /proc/scsi/scsi & /proc/ide/hd*
(and beware giving /proc/ide/hd* is not easy!)




[Cooker] uninstalling msec breaks kdm/kde (WAS: I cannot believe!!! Is it Windows or Linux?)

2002-02-18 Thread Martin Mačok

On Mon, Feb 18, 2002 at 09:33:38PM +0100, Claudio wrote:
> Well, tried to remove msec. Result is:
> 
> rpm -e msec + reboot =
> 
> kde won't start (dcop intercomunication error, wrong permission and so on)
> gnome won't start (permission errors and applett errors)

I have already found that and reported to this list:

=
Date: Sat, 16 Feb 2002 19:20:50 +0100
From: Martin Mačok <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [Cooker] uninstalling msec breaks kdm/kdeinit startup ($PATH problem)

I uninstalled msec because I do my security by my own. Then when I
tried to login from KDM, starting KDE stopped in the beginning with an
ERROR (couln't read networking info from /tmp/.dcop make sure
dcopserver is running). When I started KDE with "startx" or from GDM
then KDE started ok.

So I looked into .xsession-errors and found that kdeinit cannot find
"iceauth" binary. So uninstalling msec make KDM environment missing
/usr/X11R6/bin PATH element and that causes kdeinit/dcopserver failing
to start. Installing msec (particularly /etc/profile.d/msec* files)
again makes to problem go away).

I think that uninstalling msec should cause problems with starting KDE
:-)
==

There are many simple workarounds how to add PATH setting somewhere, I
let the decision on MDK maintainers

P.S. PLEASE STOP USING STUPID SUBJECTS! THINK TWICE!

-- 
 Martin Mačok http://underground.cz/
   [EMAIL PROTECTED]http://Xtrmntr.org/ORBman/




Re: [Cooker] 8.2b1 hangs on install

2002-02-18 Thread Guillaume Cottenceau

"Jeremy Wilkins" <[EMAIL PROTECTED]> writes:

> Hi,
> 
> Tried to run 'lspcidrake -v' but it hung the machine solid - wouldn't
> respond to anything, I don't have a network at home so can't try pinging it.

Ok so it may be the pci scan of the X configuration which locked
the machine - Francois, do you always pci scan? can it be
disabled in some way?
 
> I don't think it's running with the FB anyway, when the kernel comes up it
> displays just text (no picture of tux at the top). And X is shown in 640x480
> in what I guess is 16 colours.
> 
> Any other ideas? Do you want me to redirect lspcidrake to a file and see how
> far it gets before hanging?

First, try "lspcidrake" without the "-v" and send the output.
Then you can try to do what you say..


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




Re: [Cooker] r128 still not good with -18mdk kernel

2002-02-18 Thread Fabrice FACORAT

le lun 18-02-2002 à 12:05, RA a écrit :
> On Saturday, 16. February 2002 20:09, you wrote:
> > On Sat, 16 Feb 2002 18:47:24 +0100
> >
> > Guillaume Rousse <[EMAIL PROTECTED]> wrote:
> > > As title says, dri is still broken with ignominious error message:
> > > [drm:r128_cce_indirect] *ERROR* process 2493 using buffer owned by 0
> > > --
> 
> kernel 2.4.17-17mdk
> 
> $ lspci | grep 128
> 01:00.0 VGA compatible controller: ATI Technologies Inc Rage 128 RL
> 
> same drm error message
> 
> When dri and glx is enabled (and AGPMode '2'), and using fb:
> kdm without root background
> glxgears works and is fast. 
> I had some stability issues in normal day by day use without 3D progs (see 
> bugzilla #5918, but haven't tested enough with current kernel).
> If I use a molecular viewer program ("vmd", not in dist), X freezes during 
> generating of a text label.

I don't know how you did it but since I swith to my old AIW128 I'm
unable to activate DRI. I got unresolved symbol. but ... this may come
from my side ... I just remember that there was still the old nvidia
files !!
I'll give it a try

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
- Le mariage est une lotterie.
- Faux ! A la lotterie, on a une chance de gagner !
- Lucky Luke par Morris





Re: [Cooker] sound in KDE

2002-02-18 Thread Fabrice FACORAT

le lun 18-02-2002 à 15:05, Jeremy Salch a écrit :
> 
> If you open a terminal and run artsd then go into another terminal and run 
> noatun you will see that noatun is causing the sound server to crash.  Why it 
> does that I don't know but that is what i've seen.  So from that I'm not sure 
> weather its a noatun problem or a arts problem

really when I see all this pb I wonder why KDE develop arts and noatun.
At this time it's more painfull than helpfull/usefull !
Many times newbies got pb with this
 
I just can hope that alsa default inclusion in kernel will provide full
duplex for every soundcard so that we no longer need to use arts to mix
sound input ( even if arts got others advantages )

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
Si l'on y réfléchit bien, le Christ est le seul anarchiste 
qui ait vraiment réussi. André Malraux.





Re: [Cooker] 2.4.17.18 - Install report

2002-02-18 Thread Fabrice FACORAT

le dim 17-02-2002 à 22:44, andre a écrit :
> Op zo 17-02-2002, om 22:00 schreef Fabrice FACORAT:
> > le dim 17-02-2002 à 21:15, andre a écrit :
> > > Op zo 17-02-2002, om 20:48 schreef Fabrice FACORAT:
> > > > 
> > > > or that UK make as 12 others european countries : join euro
> > > >  
> > > 
> > > I wouldn't wish that upon them. They are not ready for it
> > 
> > In fact they'd better leave EU for a while and decide what they want :
> > trans-channel friendship or trans-atlantic friendship
> > 
> > Pablo what do you mean when you're talking about more modularity in
> > localdrake ?

does flexibility means that a user can select locales that doesn't
correspond to his country ? Indeed linux is not very flexible concerning
this point. KDE can cope with this ( see keyboard layout change ) but
everything else rely on LANG&cie variables
 
> I don't mean it in that way. The exchange rate of the pound is just to
> high at this moment for them to join the euro and also have a job.

It's true. they need flexibility at this time, and Eurozone is not
flexible enough. But ther's others issues. I read a very interesting
paper concerning the fact that the prime minister of UK should not try
to convince British only with economics arguments as they are pro and
con for this.

> Besides that there are some other countries i would rather not have in
> the EU. I can name 13 if you would want to know them. (I like
> Luxembourg)

that's a little off topic. Maybe in private if you want ;)
 
-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
Rien ne sert d'etre pessimiste.
De toutes facons, ca ne marchera pas !





Re: [Cooker] I cannot believe!!! Is it Windows or Linux?

2002-02-18 Thread Bill Greenwood


I agree with you George-- Msec is definitely one of the tools that 
could use a frontend, just like we have one for rsync (DrakSync).

I say again too these Drak tools should all be in the 'Mandrake 
*Control* Center', where we can *Control* all aspects of our Mandrake 
system.  Maybe another heading? 'Other Drak Tools' ?

===

George Mitchell wrote:

> Msec is a nice tool.  But it would be wonderful to have a  graphical 
> front end for it, where parameters get explained and open themselves 
> to local customization.  Sort of like the nice firewall tools.  Any 
> thoughts on this?
>
> Claudio wrote:
>
>> Il 19:29, lunedì 18 febbraio 2002, H.McM ha scritto:
>> [...]
>>
 NO! It seems OK, but it will be 711 again after a system reboot I
 cannot believe it!!!

>> [...]
>>
>>> 3) remove msec.
>>>
>>
>> msec is a very useful tool. WAS a very useful tool until 8.1, but now 
>> he's  becoming the owner my system!   =;p
>>
 So now
 auto-mount,
 auto-device-generation,
 auto-permission,
 auto-script-generation
 auto-*

>>> If you dont like these auto packages, deselect them during the install
>>> phase.
>>>
>>
>> That's what I usually do! But not everything can be decided while 
>> installing the system, you know...
>>
>
>
>
>






[Cooker] diskdrake + removable detection pb + GUI issues

2002-02-18 Thread Fabrice FACORAT

1°/ disdrake seems to parse incorrectly /etc/fstab : 

[root@bastard rpms]# grep cdrom /etc/fstab 
/mnt/cdrom /mnt/cdrom supermount
dev=/dev/cdrom,fs=iso9660,ro,exec,--,nosuid,nodev 0 0 
/dev/cdrom2 /mnt/cdrom2 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 
/dev/cdrom5 /mnt/cdrom3 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 
/dev/cdrom7 /mnt/cdrom4 iso9660 ro,nosuid,noauto,nodev,exec,user 0 0 


and diskdrake show incorrectly /mnt/cdrom3 and /mnt/cdrom4, it only show
: 
Périphérique : scd0 
Périphérique : scd2 

no options, no type, no mountpoint. 
floppy and /mnt/cdrom and /mnt/cdrom2 are correctly report by diskdrake 

2°/ there's should have a line/separator between each listed devices.
indeed it's only when you select it that you can see what is with what. 

3°/ a bug : 
I play several time with diskdrake ( removable ) by selectiong and
deselecting device but never  I press Ok to edit. So I select a device
which detecting in a right way. I hit Cancel one time : show a menu with
: mountpoints, options, type, finish 
I hit cancel a second time ( finish was selected 
[root@bastard rpms]# USR2 
USR1 
gdk_window_foreign_new failed at /usr/lib/libDrakX/my_gtk.pm line 316,
 line 2. 

-- 
http://perso.wanadoo.fr/linux_wizard/index.html 
-
If I told you you had a beautiful body, would you hold it against me?





Re: [Cooker] I cannot believe!!! Is it Windows or Linux?

2002-02-18 Thread Claudio

Il 21:09, lunedì 18 febbraio 2002, George Mitchell ha scritto:
> Msec is a nice tool.  But it would be wonderful to have a  graphical
> front end for it, where parameters get explained and open themselves to
> local customization.  Sort of like the nice firewall tools.  Any
> thoughts on this?
>
> Claudio wrote:
> >Il 19:29, lunedì 18 febbraio 2002, H.McM ha scritto:
> >[...]
> >
> >>>NO! It seems OK, but it will be 711 again after a system reboot I
> >>>cannot believe it!!!
> >
> >[...]
> >
> >>3) remove msec.

Well, tried to remove msec. Result is:

rpm -e msec + reboot =

kde won't start (dcop intercomunication error, wrong permission and so on)
gnome won't start (permission errors and applett errors)

then "urpmi msec" = all works, but permission are changed in /home...
:o(

-- 
Claudio Panichi, System/Network Admin at Dept. of Physics
"Tor Vergata" University and INFN - Sec. "Roma II"
Remote System is: LINUX!




Re: [Cooker] network.img

2002-02-18 Thread Pixel

Oden Eriksson <[EMAIL PROTECTED]> writes:

> Could someone please remember to upgrade "network.img" too along with the 
> "cdrom.img" an "hd.img" images.

a broken mirror?




Re: [Cooker] rpmdrake not working.

2002-02-18 Thread Charles A Edwards

On Mon, 18 Feb 2002 05:36:07 -0800
Brook Humphrey <[EMAIL PROTECTED]> wrote:

> I have beta2 installed and I have been intstalling updated packages as they 
> come in but a few days ago I started getting these error's from rpm's when 
> trying to update the source. I then deleted that source and tried to add 
> another source but this is the erro I get when trying to add a source. It is 
> simmilar to the whe nwhen trying to update. I would get the same curl error. 
> 
> I have tried downloading the current rpmdrake, urpmi, and curl pakages to 
> resolve this. I was hopeing it was a bug in one of them but the problem is 
> still there. Am I missing something? I see no one else complaining about 
> rpmdrake being broke.
> 
 
You can either drop-back to urpmi..-5 from the beta2 cd or manually
dl and upgrade to urpmi..8



Charles




[Cooker] network.img

2002-02-18 Thread Oden Eriksson

Hi,

Could someone please remember to upgrade "network.img" too along with the 
"cdrom.img" an "hd.img" images.

Thanks.




[Cooker] Re: [CHRPM] samba-2.2.3a-4mdk

2002-02-18 Thread Oden Eriksson

On Mondayen den 18 February 2002 15.13, Sylvestre Taburet wrote:
> --=-=-=
> Name: sambaRelocations: (not relocateable)
> Version : 2.2.3aVendor: MandrakeSoft
> Release : 4mdk  Build Date: Mon Feb 18 14:20:17

> - fixed the chkconfig --reset when upgrading form previos version.

At last..., thanks!




Re: [Cooker] I cannot believe!!! Is it Windows or Linux?

2002-02-18 Thread George Mitchell

Msec is a nice tool.  But it would be wonderful to have a  graphical 
front end for it, where parameters get explained and open themselves to 
local customization.  Sort of like the nice firewall tools.  Any 
thoughts on this?

Claudio wrote:

>Il 19:29, lunedì 18 febbraio 2002, H.McM ha scritto:
>[...]
>
>>>NO! It seems OK, but it will be 711 again after a system reboot I
>>>cannot believe it!!!
>>>
>[...]
>
>>3) remove msec.
>>
>
>msec is a very useful tool. WAS a very useful tool until 8.1, but now he's  
>becoming the owner my system!   =;p
>
>>>So now
>>>auto-mount,
>>>auto-device-generation,
>>>auto-permission,
>>>auto-script-generation
>>>auto-*
>>>
>>If you dont like these auto packages, deselect them during the install
>>phase.
>>
>
>That's what I usually do! But not everything can be decided while installing 
>the system, you know...
>







Re: [Cooker] X crashing, killin kernel too

2002-02-18 Thread SI Reasoning

Are you on a laptop?

--- Keld_Jørn_Simonsen <[EMAIL PROTECTED]> wrote:
> Hi
> 
> I have a problem with ML 8.2b1 that X was crashing,
> and
> it took down the kernel too - got it hanging.
> Well, I can crash, but it really should not affect
> the kernel. I have tried to have another system
> logged in
> via ssh, and this goes dead too. 
> 
> Keld
> 


=
SI Reasoning
[EMAIL PROTECTED]

A requirement of creativity is that it contributes to change.  Creativity keeps
the creator alive.

-FRANK HERBERT, unpublished notes

__
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com




  1   2   3   >