Re: [Cooker] Boot-up speed

2003-10-30 Thread Marco Romeny


BLINDAUER Emmanuel wrote:
Le Mercredi 29 Octobre 2003 00:41, Han Boetes a écrit :

S01xfs
S02dm
S03iptables
S09network
Yes but dm needs networking at the least. This solution may work for
you but mandrake has to have sane defaults for everyone. Which is the
general problem with suggestions. Most people only take their own
preferences and situation in account.
Starting X and the correspondant dm take some time, perhaps 2 ou 3 second, to 
be operational to input a login name. I think that this time can be used to 
start network and related stuff. other process like postfix or cups can be 
started at later time, because the logging action take some time

Since it seems that networking is one of the bottlenecks:

Having networking up is generally just to have the loopback interface 
running. Without knowing more, does dm's/X need more than that really?
I'd then propose to set up net interfaces in parallell:
loopback - guess it starts 'instantly', fine for most dependencies
eth0 - dhcp/zcip might take some time: comes up when it comes up
eth1 - static? fine & dandy!
...
ethN

The only problem I see is services that are bound to specific ip:s.
How does Apache react when it want's to bind to a specific ip that 
doesn't exist?
On the other hand, starting interfaces in the order of loopback, static 
interfaces and last dhcp/zcip and returning a [OK] after static is done
would solve that problem.

Yes, this is maybe a solution for my needs, but it seems like it could 
catch many situations in the wild.

Maybe initscripts..rpm should fork a initscripts-hiavail for servers...
Or better: check to see if we are in runlevel 5 or not, since a server 
normally don't run X (or?).

Just my swedish krona...

/m






[Cooker] KDE Icons

2003-10-26 Thread Marco Görlach
Hello folks,

There is a problem with Icons and Menu taskbar under KDE in my system.
I have installed mandrake 9.2 today.
here are some filesets wich I have installed today morning.

kdebase-progs-3.1.3-80mdk
kdebase-kdeprintfax-3.1.3-80mdk
kdebase-common-3.1.3-80mdk
kdebase-kdm-3.1.3-80mdk
libkdebase4-nsplugins-3.1.3-80mdk
libkdebase4-kate-3.1.3-80mdk
libkdebase4-konsole-3.1.3-80mdk
kdebase-kate-3.1.3-80mdk
kdebase-nsplugins-3.1.3-80mdk
kdebase-kdm-config-file-3.1.3-80mdk
kdebase-servicemenu-1.0-12mdk
kdebase-konsole-3.1.3-80mdk
libkdebase4-devel-3.1.3-80mdk
etc ...
and all other kde filesets .

The Kde does not start with Icon. I get a blue screen without Ican und 
Taskbar.

Is there a bug in kdefilesets?

Who can help me? Thanks for your help.

Marco






Re: [Cooker] Re: [CHRPM] kdebase-3.1.3-80mdk (many undefined symbols)

2003-10-23 Thread Marco Slaviero
On Thu, Oct 23, 2003 at 03:22:23PM +0200, Franco Silvestro wrote:
> This is output doing 'startkde' from xterm (it can't start, after splashscreen it 
> stops , at the end I do 'killall kdeinit' to exit...)
> cuand good work
> 
> startkde: Starting up...
> kbuildsycoca running...
> DCOP Cleaning up dead connections.


See earlier threads. kdebase-3.1.3-80 was compiled against qt3.2, cooker is still on 
qt3.1.

Solution is to upgrade libqt, get the rpms from:
http://peoples.mandrakesoft.com/~lmontel/kde-3.2-alpha2/

-- 
[ marco slaviero   ]
[ linux-zealot-extraordinaire  ]
[ http://www.cs.up.ac.za/~mslaviero]
[ http://www.cs.up.ac.za/~mslaviero/pubkey.asc ]


pgp0.pgp
Description: PGP signature


Re: [Cooker] 9.2 ISOs has been sent

2003-09-25 Thread Marco Romeny


Guillaume Rousse wrote:

Ainsi parlait Guillaume Cottenceau :
(even if I have no 
experience in other companies yet ;p).
Soon, my dear, soon


Isn't that what one would call 'to give it away'?

So, duhh...  good luck on the new work

/m






[Cooker] Galeon not POSTing correctly

2003-09-12 Thread Marco Slaviero
Hi

I'm running latest cooker galeon (galeon-1.3.8-1mdk), and on any html form 
which uses the POST method galeon simply submits empty values. GET works fine.

Before I submit this as a bug, has anyone else seen this?

-- 
[ marco slaviero   ]
[ linux-zealot-extraordinaire  ]
[ http://www.cs.up.ac.za/~mslaviero]
[ http://www.cs.up.ac.za/~mslaviero/pubkey.asc ]


pgp0.pgp
Description: PGP signature


[Cooker] mysql and perl

2003-07-20 Thread Marco Rothley
Hello again!

Sorry my mistake! I just found that I produced a kind of dead lock in one of 
my scripts.

Marco.




[Cooker] MySQL and perl

2003-07-20 Thread Marco Rothley
Hello!

I have a problem with perl and MySQL since my last cooker update though I'm 
not sure if it is really a cooker problem:

All my perl scripts that try to access data from a MySQL data base hang when 
they try to make their first request. So I wrote a small testscript:

#!/usr/bin/perl

use DBI;
use strict;

my $dbh = DBI->connect('DBI:mysql:SHOP', 'marco', 'x');

my $sth = $dbh->prepare('SELECT * FROM session');
$sth->execute();
while(my @data = $sth->fetchrow_array()){
print "@data\n";
}
$dbh->disconnect();

and tried:
strace ./test_db_connect.pl

The last few lines of strace output are:
socket(PF_UNIX, SOCK_STREAM, 0) = 3
fcntl64(3, F_GETFL) = 0x2 (flags O_RDWR)
connect(3, {sa_family=AF_UNIX, path="/var/lib/mysql/mysql.sock"}, 110) = 0
brk(0)  = 0x81a6000
brk(0x81a8000)  = 0x81a8000
setsockopt(3, SOL_IP, IP_TOS, [8], 4)   = -1 EOPNOTSUPP (Operation not 
supported)
setsockopt(3, SOL_SOCKET, SO_KEEPALIVE, [1], 4) = 0
read(3, "\'\0\0\0", 4)  = 4
read(3, "\n4.0.13\0\5\0\0\0*((/T8\\G\0, \10\2\0\0\0\0\0\0\0"..., 39) = 39
open("/usr/share/mysql/charsets/Index", O_RDONLY|O_LARGEFILE) = 4
fstat64(4, {st_mode=S_IFREG|0755, st_size=621, ...}) = 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x40147000
read(4, "# sql/share/charsets/Index\n#\n# T"..., 4096) = 621
brk(0)  = 0x81a8000
brk(0x81a9000)  = 0x81a9000
read(4, "", 4096)   = 0
close(4)= 0
munmap(0x40147000, 4096)= 0
write(3, "\27\0\0\1\215 \0\0\0root\0^ET]SBXW\0SHOP", 27) = 27
read(3, "\5\0\0\2", 4)  = 4
read(3, "\0\0\0\2\0", 5)= 5
fcntl64(3, F_SETFL, O_RDWR|O_NONBLOCK)  = 0
read(3, 0x81a5bc8, 8192)= -1 EAGAIN (Resource temporarily 
unavailable)
fcntl64(3, F_SETFL, O_RDWR) = 0
write(3, "\26\0\0\0\3SELECT * FROM session", 26) = 26
read(3, 

that's it. No more output. I could wait for an hour, but no more output. Seems 
that mysql didn't responed to the Select query.

I tried the original RPMs from MySQL but no difference. As far as I remember, 
I updated some perl packages AND MySQL (all MySQL packages now Version 
4.0.13-3mdk, perl-5.8.0-28mdk, perl-DBI-1.37-2mdk, perl-Mysql-1.22_19-7mdk, 
but same effect with MySQL-xxx-4.0.13-0 packages from MySQL).

Any hints? Did anyone else recognize such a problem?


Thanks!

Marco




[Cooker] [Bug 3941] [galaxy-kde] Color bug of galaxy-kde on Konqueror buttons

2003-07-05 Thread [marco]
http://qa.mandrakesoft.com/show_bug.cgi?id=3941


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||FIXED




--- Additional Comments From [EMAIL PROTECTED]  2003-05-07 09:49 ---
I have not been able to find the version 0.2-29mdk, however I have found
galaxy-0.9-1mdk.src.rpm on the Cooker and rebuilt and installed it on MDK 9.1.
This bug seems to be fixed.

Thank you.

Marco Pratesi


-- 
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


--- Reminder: ---
assigned_to: [EMAIL PROTECTED]
status: RESOLVED
creation_date: 
description: 
Alas, the Galaxy theme for KDE has a bad color bug that affects the
CSS compliance of Konqueror w.r.t. colors of buttons of the web page:

http://bugs.kde.org/show_bug.cgi?id=55134

You can easily see the bug looking at http://www.pgmarket.net/
using the Galaxy theme and then switching to the Keramik theme:
the background color of the search button should always correspond
to the same color chosen in the style sheet; instead, if you use
the Galaxy theme, the button background color is the same of
/usr/share/doc/HTML/index.html

The problem would be less serious if *all* the colors in the button
would be independent of the style sheet code; but, alas, with the Galaxy
theme, "color: #ffe2b1;" is honored, while "background-color: #77;"
is not; hence, if the style sheet chooses a dark background with
a light color for the label, the label is light, but the background color
is light too, and, as a result, the label text is almost unreadable :-(

Regards,

Marco Pratesi



Re: [Cooker] mdkkdm broken?

2003-06-04 Thread Marco Slaviero
On Mon, Jun 02, 2003 at 02:24:27PM +0200, Buchan Milne wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Since the last update to mdkkdm, I can't log in with it. gdm works fine.
> mdkkdm fails both with ldap users and local users. pam config file is
> good (all pam_stack service=system-auth), and all other pam services
> (sshd, login,kscreensaver3 etc) authenticate fine.
> 
> It started happening on our other cooker box (which was a bit behind)
> this morning.
> 
> I haven't tried the normal kdm in kdebase-kdm (seems kdm isn't as
> flexible as gdm, or as easy to get it to run on a 2nd display), so I am
> not sure if it is affected also.
> 
> BTW, my kscreensaver3 pam config file never gets overwritten, and no
> .rpmnew gets placed either, so I am not sure if the kscreensaver3 pam
> file is still broken. Laurent, if you don't know if it's right, please
> ask! It has been broken since 8.2 at least, up to 9.1 at least, and
> there have been bug reports made on it (possibly before the
> resuscitation of bugzilla after 9.0).
> 
> Regards,
> Buchan
> - --
> |--Another happy Mandrake Club member--|
> Buchan MilneMechanical Engineer, Network Manager
> Cellphone * Work+27 82 472 2231 * +27 21 8828820x202
> Stellenbosch Automotive Engineering http://www.cae.co.za
> GPG Key   http://ranger.dnsalias.com/bgmilne.asc
> 1024D/60D204A7 2919 E232 5610 A038 87B1 72D6 AC92 BA50 60D2 04A7

i have the same issue with mdkkdm. normal kdm works just fine for me.

-- 
[ marco slaviero]
[ linux-zealot-extraordinaire   ]
[ site   - http://www.cs.up.ac.za/~mslaviero]
[ pubkey - http://www.cs.up.ac.za/~mslaviero/pubkey.asc ]


pgp0.pgp
Description: PGP signature


[Cooker] ntfs filesystem and grub

2003-03-26 Thread marco
Hello folks,

I have following problem with grub.

Here the history:

I had 2 HDs in my system. A 10 GB HD ( Windows ) and a second HD with 
Mandrake.
The first HD was defined as primary Master and the second HD was defined 
as primary slave.

All works fine!!!

Well, I bought a 80 GB HD (Segate) and should be replaced for the 10 GB HD.
But the 80GB HD did not do cooperate with the second HD (40GB), so did 
the HW changed as follows:

1. primary Master is now 80 GB (10GB XP ntfs partition)
2. primary Slave DVD ROM
3. secondary Master CDROM (Burner)
4. secondary Slave 40 GB HD (Mandrake - Linux)
Now, I cannot create grub on hda1 because the XP partition is a ntfs 
filesystem.
I looked in the Internet for possibilities to solve the problem, but I 
could not find a solution for my problem.

A possiblity was to create a /boot partition on hda1, but what I can do 
if I have no /boot partition???

Who can help me??? I hope somebody has a idea.

Thanks an kind regards
Marco
I did install XP on hda1. (hda is a 80 GB HD and has a 10 GB XP partition)
I had installed Mandrake before I did install XP. After



Re: [Cooker] Broken KFMCLIENT in last update

2003-01-30 Thread Marco Donati
It seems ok in kdebase-3.1-4mdk

Bye!

On Thu, 2003-01-30 at 10:07, Simone Riccio wrote:
> Robert Fox wrote:
> 
> >On Wed, 2003-01-29 at 18:13, Jason Straight wrote:
> >  
> >
> >> -BEGIN PGP SIGNED MESSAGE-
> >>Hash: SHA1
> >>
> >>On Wednesday 29 January 2003 12:56 pm, Crispin Boylan wrote:
> >>
> >>
> >>>i get the same behaviour, neither the browser or the home page will open
> >>>and give me the same errors.  I'm not using a newly installed system
> >>>either, I was fine on rc6, its when i updated kdebase to 3.1-1mdk (2mdk
> >>>and 3mdk have not fixed the behaviour either) that the problem started
> >>>occuring.  I've also tried recreating the .kde directory from scratch
> >>>and the problem still occurs.
> >>>
> >>>cheers
> >>>cris.
> >>>  
> >>>
> >>Does this also happen with a newly created user?
> >>
> >>
> >>
> >
> >I reported this earlier (KDE 3.1 broken) - and I have confirmed this
> >problem with BOTH upgraded systems and fresh installs.
> >
> >I just performed a complete fresh install on a test notebook and the
> >same problem occurs with kfmclient.
> >
> >Thx,
> >R.Fox
> >
> >
> >  
> >
> I can confirm the beavior! Fresh install updated with cooker packages 
> for kde 3.1...
> 
> This e-mail was scanned by RAV Antivirus. (www.ravantivirus.com)
> 
> 







Re: [Cooker] Problem with kde 3.1

2003-01-30 Thread Marco Donati
Thanks!

I resolve it...

I had to change QTDIR from /usr/local/qt where was qt 3.1.0 in
/usr/lib/qt3/lib where is qt3.1.1

 


On Thu, 2003-01-30 at 10:00, Buchan Milne wrote:
> Marco Donati wrote:
> > I just installed kde 3.1 by RPM from Cooker...
> 
> On 9.0?
> 
> > 
> > I have a problem...
> > 
> > if i execute startkde as a user i have a relocation error in
> > libkdeui.so.4
> 
> Yes, this will happen if you installed KDE3.1 from cooker on 9.0.
> 
> > 
> > Instead if i try to log as user and then i write
> > "su"
> > password
> > 
> > and i execute startkde as root X start well...
> > 
> 
> root's setup under KDE differs from normal users.
> 
> If you're on 9.0, either rebuild the src.rpm's from cooker, on your box,
> or wait till packages for 9.0 are availble from the KDE FTP mirrors.
> 
> Buchan
> 
> -- 
> |--Another happy Mandrake Club member--|
> Buchan MilneMechanical Engineer, Network Manager
> Cellphone * Work+27 82 472 2231 * +27 21 8828820x121
> Stellenbosch Automotive Engineering http://www.cae.co.za
> GPG Key   http://ranger.dnsalias.com/bgmilne.asc
> 1024D/60D204A7 2919 E232 5610 A038 87B1 72D6 AC92 BA50 60D2 04A7
> 






Re: [Cooker] Problem with kde 3.1

2003-01-30 Thread Marco Donati
Thanks!

I resolve it...

I had to change QTDIR from /usr/local/qt where was qt 3.1.0 in
/usr/lib/qt3/lib where is qt3.1.1

 

On Thu, 2003-01-30 at 10:00, Buchan Milne wrote:
> Marco Donati wrote:
> > I just installed kde 3.1 by RPM from Cooker...
> 
> On 9.0?
> 
> > 
> > I have a problem...
> > 
> > if i execute startkde as a user i have a relocation error in
> > libkdeui.so.4
> 
> Yes, this will happen if you installed KDE3.1 from cooker on 9.0.
> 
> > 
> > Instead if i try to log as user and then i write
> > "su"
> > password
> > 
> > and i execute startkde as root X start well...
> > 
> 
> root's setup under KDE differs from normal users.
> 
> If you're on 9.0, either rebuild the src.rpm's from cooker, on your box,
> or wait till packages for 9.0 are availble from the KDE FTP mirrors.
> 
> Buchan
> 
> -- 
> |--Another happy Mandrake Club member--|
> Buchan MilneMechanical Engineer, Network Manager
> Cellphone * Work+27 82 472 2231 * +27 21 8828820x121
> Stellenbosch Automotive Engineering http://www.cae.co.za
> GPG Key   http://ranger.dnsalias.com/bgmilne.asc
> 1024D/60D204A7 2919 E232 5610 A038 87B1 72D6 AC92 BA50 60D2 04A7
> 
> 






[Cooker] Problem with kde 3.1

2003-01-29 Thread Marco Donati
I just installed kde 3.1 by RPM from Cooker...

I have a problem...

if i execute startkde as a user i have a relocation error in
libkdeui.so.4

Instead if i try to log as user and then i write
"su"
password

and i execute startkde as root X start well...

Anyone can help me?

P.S. Sorry for my english :-(








Re: [Cooker] This doesn't sound positive... [OT - bank card discussion]

2003-01-24 Thread Marco Romeny
 
  Same situation in Sweden. And in most European countries
I've visited/lived in.

/m

- Original Message - 
From: "Adam Williamson" <[EMAIL PROTECTED]>

> That's how it's been in the UK for ages, and it's exactly what I do. For
> one thing, if you don't carry any cash, it can never get stolen. Yes, I
> went to Australia recently, and was rather caught off-balance by the
> fact they have different cards for deposit and checking accounts, this
> just doesn't happen in the UK :). You have a bank account with a debit
> card that acts as an ATM withdrawal card, cheque guarantee card, and
> which you can buy stuff with, plus a separate credit card. Handy.
> 






Re: [Cooker] urpmi --auto-select problem

2003-01-10 Thread marco
François Pons wrote:


marco wrote:


François Pons wrote:


Le ven 10/01/2003 à 13:33, marco a écrit :


I can't find fileset mm 1.2.1.


It just a problem of rebuilding package against mm 1.2.2.


What can I do now??? I could not find fileset mm 1.2.2 too.



"urpmq -f mm" is your friend. 


thanks ...

urpmq -f mm shows follows:

libmm1.1.2.2 ...

Thats ok... but I couldn install it without --nodeps option.

The problem was solved with

rpm -Fvh --nodeps libmm1-1.2.2-1mdk.i586

Then I could install all apache filesets :)

Thanks for your helps.

kind regards
Marco













Re: [Cooker] urpmi --auto-select problem

2003-01-10 Thread marco
François Pons wrote:


Le ven 10/01/2003 à 13:33, marco a écrit :

 

I can't find fileset mm 1.2.1.
   


It just a problem of rebuilding package against mm 1.2.2.

François.



 

What can I do now??? I could not find fileset mm 1.2.2 too.







[Cooker] urpmi --auto-select problem

2003-01-10 Thread marco
Hello

I can't find fileset mm 1.2.1.
It could not be installed apache filesets... :-(

Who can help me?

I did follows:

# urpmi --auto-select
To satisfy dependencies, the following packages are going to be 
installed (10 MB):
HTML-Embperl-1.3.27_1.3.4-5mdk.i586
apache-1.3.27-5mdk.i586
apache-common-1.3.27-5mdk.i586
apache-conf-1.3.27-2mdk.i586
apache-manual-1.3.27-5mdk.i586
apache-mod_perl-1.3.27_1.27-5mdk.i586
apache-modules-1.3.27-5mdk.i586
apache-suexec-1.3.27-3mdk.i586
libmm1-1.2.2-1mdk.i586
mod_perl-common-1.3.27_1.27-5mdk.i586
mod_php-4.3.0-1mdk.i586
mod_ssl-2.8.12-6mdk.i586
mod_sxnet-1.2.4-20mdk.i586
php-cgi-4.3.0-1mdk.i586
php-gd-4.3.0-1mdk.i586
php-imap-4.3.0-1mdk.i586
php-ldap-4.3.0-1mdk.i586
php-mysql-4.3.0-1mdk.i586
php-pgsql-4.3.0-1mdk.i586
php-readline-4.3.0-1mdk.i586
Is this OK? (Y/n) y

installing /mnt/hd/i586_cooker/RPMS/php-readline-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/mod_php-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-suexec-1.3.27-3mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/libmm1-1.2.2-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-common-1.3.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/HTML-Embperl-1.3.27_1.3.4-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-imap-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-mysql-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/mod_perl-common-1.3.27_1.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-ldap-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-1.3.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-cgi-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/mod_ssl-2.8.12-6mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-mod_perl-1.3.27_1.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-gd-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/php-pgsql-4.3.0-1mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/mod_sxnet-1.2.4-20mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-manual-1.3.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-modules-1.3.27-5mdk.i586.rpm 
/mnt/hd/i586_cooker/RPMS/apache-conf-1.3.27-2mdk.i586.rpm

Installation failed:
   php-ini is needed by php-cgi-4.3.0-1mdk
   mm == 1.2.1 is needed by apache-conf-1.3.27-2mdk

I need helps. :-s

Thanks for your investigating.

Marco





[Cooker] apple-keyboard XFree 4.2.99.3

2003-01-07 Thread Marco Rothley
Hello!

I have a (minor) problem with my keyboard since I installed the new XFree 
packages. I have a apple usb-keyboard. Some keys are missing on this keyboard 
so I used xmodmap to change the mapping. One big problem is that the keyboard 
doesn't have an AltGr (on german keyboards it's AltGr, I don't know if this 
is the same in other countries) key. But I need that key for many characters 
like '@' and '{', ... (on German keyboards '@' is AltGr + q, etc.). So I have 
the following in my Xmodmap:
keycode 116 = Mode_switch

That way I can use my right apple-key (keycode 116) as a AltGr key and have my 
Mode_switch again. But since the I have XFree 4.2.99 installed this doesn't 
work anymore. Some other mappings like the Delete-key is still working fine.
Is there a change in XFree so I can't use the Mode_switch anymore? Under 
Windows the AltGr key is simulated with pressing Ctrl and Alt simultaniously. 
But this isn't working on Linux.

My XFree packages are:

XFree86-doc-4.2.99.3-1.20021223.3mdk
XFree86-server-4.2.99.3-1.20021223.3mdk
XFree86-4.2.99.3-1.20021223.3mdk
XFree86-libs-4.2.99.3-1.20021223.3mdk
XFree86-compat-libs-4.1.0-2mdk
XFree86-devel-4.2.99.3-1.20021223.3mdk
XFree86-100dpi-fonts-4.2.99.3-1.20021223.3mdk
XFree86-75dpi-fonts-4.2.99.3-1.20021223.3mdk
XFree86-Xnest-4.2.99.3-1.20021223.3mdk
XFree86-cyrillic-fonts-4.2.99.3-1.20021223.3mdk
XFree86-xfs-4.2.99.3-1.20021223.3mdk

Thanks for any hints/suggestions. I'm now using a standard PC-keyboard so the 
topic isn't very imported for me right now but I think that it could be a 
bigger problem for some others who won't to use Mode_switch.
I also heard about a different (newer) way to do those mappings without 
Xmodmap. How does that work? Any links to howTos?

Marco.




Re: [Cooker] libaudio.so.2 is missing

2003-01-07 Thread marco
Götz Waschk wrote:


Am Dienstag,  7. Januar 2003, 12:50:32 Uhr MET, schrieb marco:
 

I would like to upgrade kdebase-3.1-0.rc6.2mdk.i586.rpm, kdemultimedia 
...  but the fileset asks libaudio.so.2.

Is it a bug???
What can I do?
   


Use urpmi, it will install the right package for you (libnas2).

 

Thanks for your hints.
Have a nice day. :)

marco





[Cooker] libaudio.so.2 is missing

2003-01-07 Thread marco
Hello folks,

I would like to upgrade kdebase-3.1-0.rc6.2mdk.i586.rpm, kdemultimedia 
...  but the fileset asks libaudio.so.2.

Is it a bug???
What can I do?

thanks for your help.
marco
regards Marco




[Cooker] DAC 960 / Mylex AcceleRAID 170

2002-11-14 Thread Marco Rothley
Hello!

I just made a fresh Cooker install and after the reboot the kernel hangs when 
it tries to initialize the DAC960 driver, which is for the old Mylex DAC960 
and the newer AcceleRAID and eXtremeRAID RAID-Controllers.
It just hangs, no kernel panic, no error message, so I don't have any further 
information I can send to you.

The kernel is 2.4.19-19

Marco.




[Cooker] Type in german drakx

2002-11-13 Thread Marco Rothley
Hello!

When I install cooker there is written "Haben Sie noch etwas Gerduld" when it 
is installing the packages. The word Gerduld is wrong. It has to be "Geduld".

Is this list the right place for this or is there an extra list for 
translation issues?

Marco.




[Cooker] konquero problem?

2002-10-16 Thread marco

Hello folks,

I have following problem with konquero.

Szenario:

www.lycos.de >> login chat
login as  passwort 

then konquero wants to get 565 B by lycos.de but the chat will not 
displayed.

Is there a possibility therwith the chat runs with konquero?

Maybe Somebody can help me.

thx Marco






Re: [Cooker] Strange KDE behavior

2002-10-01 Thread Marco Romeny


  What happens if you close all Gkrellm and
save session -> relogin? If you still get one Gkrellm
then it might be something else than the sessionthingie..

/m


- Original Message - 
From: "Robert Fox" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 01, 2002 22:26
Subject: Re: [Cooker] Strange KDE behavior


> I swear I'm not crazy here.
> 
> I have shutdown all Gkrellm instances and start ONLY one.
> 
> Then I logout of KDE (with the "save session" checked) and relogin
> 
> Gkrellm then starts TWICE.
> 
> Maybe I have to delete the .gkrellm config files . . .
> 
> Very odd.
> 
> R.Fox
> 
> 
> On Tue, 2002-10-01 at 21:35, Ben Reser wrote:
> > On Tue, Oct 01, 2002 at 07:53:25PM +0200, Robert Fox wrote:
> > > I always leave Gkrellm running on my KDE desktop - and recently (updated
> > > to 9.0 Final) everything was fine.
> > > 
> > > Now when I log out of KDE and re-login as same user - Gkrellm starts up
> > > twice (two instances)
> > > 
> > > I recall this happening way back on KDE 2.2.2 but haven't seen it until
> > > now.
> > 
> > I use gkrellm and I can't replicate this...  Sounds like you got 2
> > copies running at some time and then haven't saved the session since
> > then.  Make sure when you log out that only one copy of gkrellm is
> > running and that you check the save session checkbox.
> > 
> > -- 
> > Ben Reser <[EMAIL PROTECTED]>
> > http://ben.reser.org
> > 
> > Never take no as an answer from someone who isn't authorized to say yes.
> > 
> 
> 
> 





Re: [Cooker] Postfix + SASL problem

2002-09-28 Thread Marco Romeny


  alright,
my first ever rpm:
http://www.mimecom.net/postfix/postfix-plus-saslauthd-0.1-1mdk.src.rpm

description: Enables a chroot:ed Postfix
to authenticate with the saslauthd method,
which in turn can use pam, shadow etc.

what I did here: 
- at install-time, copy sasl-libraries to 
postfix' chroot-tree.
- patched /etc/init.d/saslauthd to hardlink
smtpd.conf and the /var/lib/sasl/mux 
socket at start.

this doesn't feel so good
I'd much rather made an own initscript
just for the linking/copying, but since there 
are no good hooks to know when another
service is restarting I chose to do it this 
way.

I could definetly need some help with making
a better, valid .spec as well as suggestions
for the do/don'ts in the spec.
rc.d/init.d or just init.d ??  etc.

comments, suggestions, harrassements?

/m






[Cooker] [Fwd: Fwd: Problem with videoCard Sis 630]

2002-09-06 Thread marco



--- Begin Message ---



--  Weitergeleitete Nachricht  --

Subject: Problem with videoCard Sis 630
Date: Sun, 1 Sep 2002 01:25:27 +0200
From: Udo Weber <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]

Hi folks,
what is going on with next release of Mandrake (9) ?
Should we expect that that a 9 month old system (Laptop) is not supported
anymore ?
I already posted this prob several times like other folks too but no
solution/statement from Mandrake-devel team until now.

Again, on Mandrake 8.2 it works well, most current cooker with the sis_drv.o
from the old 8.2 works also well.
But with the current cooker (beta? Mandrake 9) it does not work anymore with
all the last fixes since about 3 weeks.
Please solve this prob, I don't like to change the Linux-Distribution because
such issue !

Here again my sys-specs:
lspcidrake -v
Card:SiS 630: Silicon Integrated Systems [SiS]|SiS630 GUI Accelerator+3D
[DISPLAY_VGA] (vendor:1039 device:6300 subv:1071 subd:7522)

lspci -v
01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] SiS630
 GUI Accelerator+3D (rev 31) (prog-if 00 [VGA])
Subsystem: Mitac: Unknown device 7522
Flags: 66Mhz, medium devsel
BIST result: 00
Memory at f000 (32-bit, prefetchable) [size=128M]
Memory at ec10 (32-bit, non-prefetchable) [size=128K]
I/O ports at a000 [size=128]
Capabilities: [40] Power Management version 1
Capabilities: [50] AGP version 2.0

Thanks and Regards
Udo

---



--- End Message ---


[Cooker] [Fwd: Fwd: Problem with videoCard Sis 630]

2002-09-03 Thread marco

Hi folks,

I have the same problem as Udo and I would like have a solution for this 
problem.
Who can help me???

Thx. and regards,
Marco



--- Begin Message ---



--  Weitergeleitete Nachricht  --

Subject: Problem with videoCard Sis 630
Date: Sun, 1 Sep 2002 01:25:27 +0200
From: Udo Weber <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]

Hi folks,
what is going on with next release of Mandrake (9) ?
Should we expect that that a 9 month old system (Laptop) is not supported
anymore ?
I already posted this prob several times like other folks too but no
solution/statement from Mandrake-devel team until now.

Again, on Mandrake 8.2 it works well, most current cooker with the sis_drv.o
from the old 8.2 works also well.
But with the current cooker (beta? Mandrake 9) it does not work anymore with
all the last fixes since about 3 weeks.
Please solve this prob, I don't like to change the Linux-Distribution because
such issue !

Here again my sys-specs:
lspcidrake -v
Card:SiS 630: Silicon Integrated Systems [SiS]|SiS630 GUI Accelerator+3D
[DISPLAY_VGA] (vendor:1039 device:6300 subv:1071 subd:7522)

lspci -v
01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] SiS630
 GUI Accelerator+3D (rev 31) (prog-if 00 [VGA])
Subsystem: Mitac: Unknown device 7522
Flags: 66Mhz, medium devsel
BIST result: 00
Memory at f000 (32-bit, prefetchable) [size=128M]
Memory at ec10 (32-bit, non-prefetchable) [size=128K]
I/O ports at a000 [size=128]
Capabilities: [40] Power Management version 1
Capabilities: [50] AGP version 2.0

Thanks and Regards
Udo

---



--- End Message ---


Re: [Cooker] apache-mod_perl-1.3.26_1.27

2002-07-03 Thread Marco Rothley

> [Mon Jul  1 09:15:18 2002] [notice] child pid 12593 exit signal
> Segmentation fault (11)

Hi!
I have the same problem -- but still no solution!

Thanks.




[Cooker] New foomatic rpm

2002-07-01 Thread Marco Caliari

Hi.

I think to need the last foomatic package (with the changes of June, 
25th). When the RPM package for mdk 8.2 will be available?

Thanks

-- 
Marco





[Cooker] scrollkeeper problem

2002-06-21 Thread marco

Hello folks,

There are problems with gnome-user-docs-1.91-2mdk.noarch.rpm update.

I want to update gnome-user-docs-1.91-2mdk.noarch.rpm but I get 
following errors

# rpm -Fvh gnome-user-docs-1.91-2mdk.noarch.rpm
Prepairing  #  (100%)

OMF file [/usr/share/omf/gnomecard/gnomecard-C.omf] does not validate 
against ScrollKeeper-OMF DTD: 
/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd
Unable to register /usr/share/omf/gnomecard/gnomecard-C.omf
OMF file [/usr/share/omf/gnomecal/gnomecal-C.omf] does not validate 
against ScrollKeeper-OMF DTD: 
/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd
Unable to register /usr/share/omf/gnomecal/gnomecal-C.omf
OMF file [/usr/share/omf/evolution/evolution-C.omf] does not validate 
against ScrollKeeper-OMF DTD: 
/usr/share/xml/scrollkeeper/dtds/scrollkeeper-omf.dtd
Unable to register /usr/share/omf/evolution/evolution-C.omf

How I can solve this scrollkeeper problem??? Who can help me in this case?

Thanks for all your hints.

with kind regards
Marco






Re: [Cooker] update-menu crash

2002-05-29 Thread marco

Borsenkow Andrej wrote:

>>Thanks for your answer, but the same problem occurs after :
>>
>>rpm -Fvh kdeutils-3.0.1-4mdk.i586.rpm
>>
>>I got a core dump  /usr/bin/update-menus
>>
>>.
>>and you have a idea, why the Desktop menus will not be displayed if I
>>
>>
>do
>  
>
>>start kde?
>>
>>
>>
>
>because update-menus crashes
>
>install up-to-day libgcc3.1 and libstdc++3.1. What version of menu you
>have?
>
>
>-andrej
>
>
>  
>
Hello Andrej,

Thank your very much... Your suggestion has helped.

The problem is solved with reinstall

libgcc3.1 and libstdc++3.1

and menus will be displayed now...

Thanks and have a nice day.

Marco







Re: [Cooker] update-menu crash

2002-05-29 Thread marco

Borsenkow Andrej wrote:

>>Hello folks,
>>
>>I have a problem with kde 3
>>
>>If I do install kde with command
>># rpm -ivh --force kdebase-3.0.1-13mdk.i586.rpm
>>
>>
> ^^^
>
>here is your problem. Basically as soon as you use this switch you are
>on your own.
>
>  
>
>>then I get following error:
>>
>>/var/tmp/rpm-tmp.45853: line 14:  5297 Aborted (core
>>dumped) /usr/bin/update-menus
>>
>>and if I do start kde with init 5 and no menus comes up...
>>
>>whats wrong? Who can help me? What can I do?
>>
>>
>>
>
>Search archives. You need not search very much - it has been answered
>just today.
>
>
>  
>
Hello Andrej,

Thanks for your answer, but the same problem occurs after :

rpm -Fvh kdeutils-3.0.1-4mdk.i586.rpm

I got a core dump  /usr/bin/update-menus

.
and you have a idea, why the Desktop menus will not be displayed if I do 
start kde?

thanks for your help.

Marco






[Cooker] update-menu crash

2002-05-29 Thread marco

Hello folks,

I have a problem with kde 3

If I do install kde with command
# rpm -ivh --force kdebase-3.0.1-13mdk.i586.rpm

then I get following error:

/var/tmp/rpm-tmp.45853: line 14:  5297 Aborted (core 
dumped) /usr/bin/update-menus

and if I do start kde with init 5 and no menus comes up...

whats wrong? Who can help me? What can I do?

Thanks for your answer.

Marco







[Cooker] konqueror error

2002-03-20 Thread Marco

Hello

I have installed the latest kernel 2.4.18-7 and I get following error if 

I want to start konqueror

Backtrace output:

0x41068409 in wait4 () from /lib/libc.so.6
#0  0x41068409 in wait4 () from /lib/libc.so.6
#1  0x410e798c in __check_rhosts_file () from /lib/libc.so.6
#2  0x40f0fd56 in waitpid (pid=3762, stat_loc=0x0, options=0)
 at wrapsyscall.c:172
#3  0x406c72fe in KCrash::defaultCrashHandler (sig=0) at kcrash.cpp:224
#4  0x40f77a47 in _IO_2_1_stderr_ () from /usr/lib/libstdc++-libc6.2-2.so.3

whats wrong?

Thx for your help

regards
Marco





[Cooker] KDE Splash Screen

2002-03-20 Thread Marco

Hello folks,

If I do select KDE Splash Screen then I get an error:

There was an error loading the module.

The diagnostics is:
possible reasons:

* An error occurred during your last KDE upgrade leaving an orphaned
   control module

* You have old third party modules lying around.

...

I have installed:

kdebase3-3.0-0.beta2.1mdk
kde-i18n-de-2.2.2-1mdk
kdelibs-2.2.2-48mdk
kdelibs-devel-2.2.2-48mdk
kdenetwork-2.2.2-22mdk
kdemultimedia3-3.0-0.beta2.4mdk
kdenetwork3-3.0-0.beta2.1mdk
kde-i18n-de3-3.0-0.beta2.1mdk
kdemultimedia-devel-2.2.2-10mdk
kdesdk3-3.0-0.beta2.1mdk
kdetoys-2.2.2-8mdk
kdebase-devel-2.2.2-93mdk
kdestudio-2.0.0-10mdk
kdegames3-3.0-0.beta2.4mdk
kdeutils3-3.0-0.beta2.1mdk
kdeadmin-2.2.2-12mdk
kdelibs3-3.0-0.beta2.3mdk
kdemultimedia-2.2.2-10mdk
kdegames-2.2.2-10mdk
kdeutils-2.2.2-28mdk
kdebase-nsplugins-2.2.2-93mdk
kdebase-2.2.2-93mdk
kdegraphics-2.2.2-15mdk
kdesdk-2.2.2-5mdk
kdev_htdig-1.1-2mdk
kdevelop-2.0.2-10mdk
kdegraphics-devel-2.2.2-15mdk
kdepim-2.2.2-5mdk
kdenetwork-devel-2.2.2-22mdk
kdelibs-sound-2.2.2-48mdk
kdevmon-0.4.5-2mdk
kdetoys3-3.0-0.beta2.1mdk

Who can help?

regards
Marco





[Cooker] sensor problem

2002-03-07 Thread Marco

Hello

I have a problem with lm_sensor.
lm_sensors-2.6.2-4mdk
liblm_sensors1-2.6.2-4mdk

The sensor detected a error during system boot.

Can't access /proc file "/proc/sys/dev/sensors/chips or
/proc/bus/i2c-proc"

Make sure that you have done "modprobe i2c-proc"
Error loading -4 ... /etc/sensor.conf

Somebody an idea?

regards
Marco




[Cooker] kde and icon permission

2002-03-07 Thread Marco

Hello...

After update latest filesets from kdebase and kdelibs following problem
occurs.

kdebase-2.2.2-84mdk
kdebase-nsplugins-2.2.2-84mdk
kdelibs-2.2.2-45mdk


If I click mandrake-control center via mouse then program doesn't start.
After
set execute permission for user root in ICON preferences, then DrakConf
works.

Is this a bug or is it works as designed?

regards Marco




[Cooker] kde3 install problem

2002-03-06 Thread Marco

Hello...

Who can say me where is included the libsensor.so.1?

kdebase3 needs libsensor.so.1

Thanks 
Marco




[Cooker] symbol error

2002-03-04 Thread marco

Hello,

I installed the kernel 2.4.18-2 cooker beta3 yesterday and now 
I get following errors if I trying to start some commands:

# mc
/user/bin/mc: relocation error: /usr/bin/mc: undefined symbol:
g_snprintf

# DrakConf
/usr/bin/perl: relocation error: /usr/lib/libgdk_imlib.so.1: undefined
symbol: g_snprintf

Whats wrong? Who can help me?

regards 
Marco




Re: [Cooker] [Holy Minimal Install] Why "Linux sucks"...

2001-08-10 Thread Marco Wesselgren

I'm not claiming that Mandrake are insecure , just saying that there are
more secure systems.

Let's take two other operating system that are in general "secure" and
compare them to Mandrake

The first one Debian

Debian releases packages in two groups Stable and Unstable , Stable has been
tested for security and that it's actually stable on a running server.
All packages released to Mandrake are directly from the CVS , almost anyway,
and the bugtesting is up to the user , the package released
haven't been tested enough(It takes some time to go through the code to
remove obvious and less obvious exploit possibilities, it also takes time to
remove
bugs that can make your product vunerable to DOS attacks).

Debian has an established way to patch the system called apt-get , you can
run it from a script every hour if you feel like it.
You use it like this and as you can see it connect's to a server containing
all the latest patches to keep your system "secure".
Login via SSH(Secure Shell)

Beefy:/etc/X11/xdm# apt-get update
Hit http://security.debian.org stable/updates/main Packages
Hit http://security.debian.org stable/updates/main Release
Hit http://security.debian.org stable/updates/contrib Packages
Hit http://security.debian.org stable/updates/contrib Release
Hit http://security.debian.org stable/updates/non-free Packages
Hit http://security.debian.org stable/updates/non-free Release
Hit http://http.us.debian.org stable/main Packages
Hit http://http.us.debian.org stable/main Release
Hit http://http.us.debian.org stable/contrib Packages
Hit http://http.us.debian.org stable/contrib Release
Hit http://http.us.debian.org stable/non-free Packages
Hit http://http.us.debian.org stable/non-free Release
Hit http://non-us.debian.org stable/non-US/main Packages
Hit http://non-us.debian.org stable/non-US/main Release
Hit http://non-us.debian.org stable/non-US/contrib Packages
Hit http://non-us.debian.org stable/non-US/contrib Release
Hit http://non-us.debian.org stable/non-US/non-free Packages
Hit http://non-us.debian.org stable/non-US/non-free Release
Reading Package Lists... Done
Building Dependency Tree... Done
Beefy:/etc/X11/xdm# apt-get upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Beefy:/etc/X11/xdm#

Yes you have mandrakeupdate which is a gui tool , how do you use that one on
a server located 500 miles from you with the only
possibilty to login is SSH(If you use telnet or RSH your main concern isn't
security) , you could do it manually = it might not be done that often --->
You've got yourself an insecure system.

Another thing :

A mail from debian security , concerning all distros,

July 28, 2001
- 


Package : apache,apache-ssl
Problem type : remote exploit
Debian-specific : no

Couldn't find anything about it on the Mandrake security list and what I
could see the last patch released from Mandrake was released 2001-07-25 ,
went through the bugtraq list
and found several things that should affect the Mandrake distribution , but
nothing could be found att Mandrake security ,you can check for yourself in
the bugtraq archives.

The last thing a quote taken from the fw dist of Mandrake "Easy to use
remote web interface" , The reason for running a webserver on a firewall ,
to make it more secure? don't think so.


The other one OpenBSD, well a quote from http://www.openbsd.org says it all
:)

"Four years without a remote hole in the default install!"

I work as a System Administrator for stockmarket systems and we have
security and stability as our main focus , we run every system on Debian and
our firewalls are running OpenBSD.

A few last word , want this thread to end , a system isn't more secure then
the person who administer it makes it , but if he doesn't have the means to
keep it secure it won't be secure.

And yes I rather choose Mandrake on a firewall then a Windows version , but
why not choose the most secure system while you're at it?


> On Fri, 10 Aug 2001, Marco Wesselgren wrote:
>
> > For your information , I'm not flaming Mandrake , just pointing out that
it
> > might not be the best choice if you're going to run a firewall or
another
> > system that are being exposed to potential threats.
>
> What precisely is so insecure about Mandrake compared with other distros?
> I mean, if you make such statement, you should have some reason.
>
> -andrej
>





Re: [Cooker] [Holy Minimal Install] Why "Linux sucks"...

2001-08-10 Thread Marco Wesselgren

For your information , I'm not flaming Mandrake , just pointing out that it
might not be the best choice if you're going to run a firewall or another
system that are being exposed to potential threats.
But if you believe that it's more important to run Mandrake then having a
secure(almost anyway) system so be it. By the way I'm using Mandrake myself
on a personal computer , works fine and are quite stable.


> "Marco Wesselgren" <[EMAIL PROTECTED]> writes:
>
> > First of all , why run a firewall with a Mandrake installation? They
haven't
> > got a good security update system ,
> > the release of packets are way to early , other distributons would tag
them
> > as unstable . The main reason to have a firewall
> > is security and not a nice graphical interface.
>
> For your information, this is not the mandrake-flame Mailing List.
>
>
> --
> Guillaume Cottenceau - http://people.mandrakesoft.com/~gc/
>





Re: [Cooker] [Holy Minimal Install] Why "Linux sucks"...

2001-08-10 Thread Marco Wesselgren

First of all , why run a firewall with a Mandrake installation? They haven't
got a good security update system ,
the release of packets are way to early , other distributons would tag them
as unstable . The main reason to have a firewall
is security and not a nice graphical interface.

Debian for example takes up about 120 Mb of diskspace(Default installation
will of course make you able to run a firewall) ,
OpenBSD will  take up even less , don't ask for something that already exist
in other distributions. Mandrake are excellent
on a desktop system , but on a server? No , not according to my opinion.



> A bare minimum would be a nice option.  I have a router/firewall at home
> that I do put to occassional other uses.  Starting it off from the
> smallest possible install would be a nice choice.
>
> Pixel wrote:
> >
> > Grégoire Colbert <[EMAIL PROTECTED]> writes:
> >
> > > > What should I answer when a person, who want me to install Linux
onto
> > > his computer, drop his jaws by learning it will takes about 2 GB?
> >
> > but aren't you creating a /home? in that case why are you / (or /usr) so
huge?
> > create a 600MB /usr and it will fit in the allocated space.
> >
> > i'm considering adding an "unselect nearly everything" or "keep the
strict
> > minimum" in the package selection tree. Would that please you?
>





Re: [Cooker] problems with new NVidia drivers

2001-05-21 Thread Marco


Ural Khassanov wrote:
On Monday 21 May 2001 05:06, Will Smith wrote:
> > > I can't use any 3D app (tuxracer, gltron, chromium) since i upgraded
to
> > > latest NVidia drivers. Problems seems to come from SDL:
> > > [guillaume@agathe guillaume]$ gltron
> > > [..]
> > > Fatal signal: Segmentation Fault (SDL Parachute Deployed)
> > > Has anyone else better results ?
What I've discovered: when I boot in runlevel 3, run X with 'startx'
- opengl and tuxracer works ok,
in runlevel 5 - gears works, tuxracer segfaults and breaks opengl until
X reload.
Test this please...
Hello,
I have the same problem with tuxracer.  I get a segmentation faults
if I do start the tuxracer.
regards;
Marco
-- 
(.
 


[Cooker] install fails with error.

2001-02-27 Thread marco goerlach

Hello folks,

The installation with cooker iso images 1-Cooker-i586-20010213.iso and
2-Cooker-i586-20010213.iso fails with following
error message:

perl:rpmio_internal.h:239: c2f: Assertion 'fd &&fd->magic =
0x04463138' failed.

if he wants to install package   compat-glibc-7.2-2.1.3.2mdk.i586,
postgresql-7.0.3-8mdk.i586 ...
I don't know whether these filesets are contain in
2-Cooker-i586-20010213.iso

Whats wrong? Who can help me Its urgent

regards,
Marco



Re: [Cooker] iso images Beta 8.0

2001-02-23 Thread marco goerlach

José Luiz Barci Neves wrote:

> Hey man, where i can find iso images ?
> i can't dowload the "normal" version
>
> thanks a lot.
>
> > --
> > From: marco goerlach[SMTP:[EMAIL PROTECTED]]
> > Reply To: [EMAIL PROTECTED]
> > Sent: sexta-feira, 23 de fevereiro de 2001 07:18
> > To:   [EMAIL PROTECTED]
> > Subject:  [Cooker] iso images Beta 8.0
> >
> > Hello folks,
> >
> > Who can help me?
> > Here the situiation.
> >
> > I have downloaded the cooker iso images 1-Cooker-i586-20010213.iso and
> > 2-Cooker-i586-20010213.iso in the directory cooker.
> >
> > I get a menu:
> > .
> > Please choose the partition where is copied the Linux-Mandrake
> > Distribution.
> > .
> > (0) cancel
> > (1)hda1 (size: 406 Mbytes)
> > (2) hda3 (size: 132 Mbytes)
> > (3) hda4 (size: 2347 Mbytes)
> > (4) hda5 (size: 2000 Mbytes) --> selected
> >
> > > Please enter the directory (or ISO image file) containing the
> > Linux-Mandrake Distribution.
> > (a) Directory or ISO image
> > (a) ? /cooker/1-Cooker-i586-20010213.iso
> > .
> > The graphical installer comes up and I can select the filesets which I
> > want to install. It begins to install but I get a error if the installer
> > requested filesets from iso image 2-Cooker-i586-20010213.iso.
> > Cannot install filesets <>
> > .
> > Who can help me to install mandrake with iso images? What must I do
> > therewith the installation is succesfully?
> > .
> > Thanks and regards,
> > Marco
> >

Hello José Luiz Barci Neves

You can find the iso images Beta verion 8.0 on following side:

sunsite.uio.no:/pub/unix/Linux/Mandrake-iso
.
The iso images seems to be ok because I can mount both iso images and they're
readable.
.
with kind regards,
Marco





[Cooker] iso images Beta 8.0

2001-02-23 Thread marco goerlach

Hello folks,

Who can help me?
Here the situiation.

I have downloaded the cooker iso images 1-Cooker-i586-20010213.iso and
2-Cooker-i586-20010213.iso in the directory cooker.

I get a menu:
.
Please choose the partition where is copied the Linux-Mandrake
Distribution.
.
(0) cancel
(1)hda1 (size: 406 Mbytes)
(2) hda3 (size: 132 Mbytes)
(3) hda4 (size: 2347 Mbytes)
(4) hda5 (size: 2000 Mbytes) --> selected

> Please enter the directory (or ISO image file) containing the
Linux-Mandrake Distribution.
(a) Directory or ISO image
(a) ? /cooker/1-Cooker-i586-20010213.iso
.
The graphical installer comes up and I can select the filesets which I
want to install. It begins to install but I get a error if the installer
requested filesets from iso image 2-Cooker-i586-20010213.iso.
Cannot install filesets <>
.
Who can help me to install mandrake with iso images? What must I do
therewith the installation is succesfully?
.
Thanks and regards,
Marco












[Cooker] ISO-Images Beta 8.0

2001-02-22 Thread marco goerlach

Hello folks,
.
What must I do if I will install mandrake with iso images?
I get a error if the system want to install filessets from iso image 2.
.
with kind regards,
Marco



Re: [Cooker] no sound again

2001-02-09 Thread Marco Wesselgren

Try this:

check your dmesg file to see if the card has been found during bootup.

Manually do this:

insmod the following files:

soundlow.o
soundcore.o
sound.o

and last insmod the driver file for you  soundcard soundcard.o

if this works then just write a small script that runs the insmod lines
during boot.

- Original Message -
From: "Vincent Meyer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, February 09, 2001 7:11 PM
Subject: [Cooker] no sound again


> Well, it DID play sounds - once!  Rebooted,and now no sound, even
> though the error messages are gone.  Using sndconfig to set either
> Windows sound system or OPL3 - still no sound.  XMMS will play
> an MP3 file without error message, so it THINKS there is sound.
>
> Any ideas?  I'm stumped.
>
> Vincent Meyer
>
>





SV: [Cooker] i cannot type a "r"

2000-12-04 Thread Marco Wesselgren

Could you post the section in your XF86Config file containing the keyboard
settings?


Just found out that i can type r's from another console
but not in XF86

just to help try to find a fix... cutting and paisting is getting vey vey
vey
annoying!!! please help!!

dave

On Monday 04 December 2000 02:18, you wrote:
> i cannot type an r i have to cut and paist it, it is quite annoying,
> consideing it is one of the most used lettes in the english language. and
> used in many linux commands... please help me... it is vey annoying...
> thanx
>
> dave with no feekin 's

--
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Linux - Cause I dont do windows
or ovens!
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Registered System: 83659






Re: [Cooker] Come on! I want to install 7.2 next Sunday, at home... Let it out!!! :))

2000-10-27 Thread Marco Wesselgren

pgeorges wrote:

> Claudio a écrit :
> >
> > Sunsite has jus 7.2 but no-one can enter any directory of Mandrake's tree!
> > I hope there will be some other mirrors as soon as possible...
>
> I am also in starting blocks. I'm afraid you are not alone :)
>
> I have already organised an install party for beginners with LM 7.2
> beta3 and it has been well appreciated.
> I encountered few bugs (like a S3 Virge DX not being autodetected), and
> I really hope that the final release will be as bug free as possible.
>
> Let's cross fingers.

bug? ever heard of insmod?







Re: [Cooker] dhcp error

2000-10-26 Thread marco goerlach

Florin Grad wrote:

> [EMAIL PROTECTED] (marco goerlach) writes:
>
> > Hi All,
> > .
> > I have some problems with dhcp and pump.
> > .
> > I do get an kernel panic error if i execute the command ifup tr0
> > .
> > Here the error:
> > .
> > Determining IP information for tr0 via pump...tr0: Setting functional
> > adress: 00 00 00 00
> > tr0: Setting functional address: 00 04 00 00
> > tr0: Setting functional address: 00 0400 00
> > Kernel panic: skput:over: c015105a:329 put:329 dev:
> > In swapper task - not syncing.
> > .
> > Can you help me in this case? I have the same trouble as like Udo
> > Weber...
> > .
> > with kind regards,
> > Marco
> >
>
> Hi there,
>
> try and see if it works with the packages from the Mandrake 7.1 distro. If
> it does, then it's a prb with the new packages.
>
> cheers,
> --
> Florin  http://www.linux-mandrake.com

Hi Florian,
.
I have installed alsa-0.5.7-4mdk.i586 .rpm
 alsa-lib-0.5.7-4mdk.i586.rpm
 alsa-utils-0.5.7.3mdk.i586.rpm
 kernel-2.2.15-4mdk.i586.rpm
     kernel-pcmcia-cs-2.2.15-4mdk.i586.rpm
.
The tokenring works now.
.
There is a bug in the new kernel and kernel-pcmcia.
Pls check it out.
.
regards,
Marco





[Cooker] dhcp error

2000-10-23 Thread marco goerlach

Hi All,
.
I have some problems with dhcp and pump.
.
I do get an kernel panic error if i execute the command ifup tr0
.
Here the error:
.
Determining IP information for tr0 via pump...tr0: Setting functional
adress: 00 00 00 00
tr0: Setting functional address: 00 04 00 00
tr0: Setting functional address: 00 0400 00
Kernel panic: skput:over: c015105a:329 put:329 dev:
In swapper task - not syncing.
.
Can you help me in this case? I have the same trouble as like Udo
Weber...
.
with kind regards,
Marco







[Cooker] apt-get

2000-10-19 Thread Marco Wesselgren

When are we going to see an apt-get version for Mandrake?
ok , rpm and using ftp switches exists but sucks in comparison ,
Mandrakeupdate is ok but if you're running a server without X?






Re: [Cooker] What is devpts ??

2000-10-11 Thread Marco Wesselgren

[EMAIL PROTECTED] wrote:

> Hi
>
> I can an error during mandrake 7.2 boot (I have messed with it) saying that
> devpts cant be mounted cause the filetype is unknown. There is an entry
> in fstab that causes this error.

>
>
> What is devpts ?? I assume that I am missing it in my kernel, but dont know
> what option to include to get devpts - and ... what does it do (do I need it?)
>

The devpts file system is a pseudo file system, traditionally mounted on
/dev/pts.  In order to  acquire  a  pseudo  terminal,  a  process  opens
 /dev/ptmx;  the  number  of  the  pseudo  terminal  is  then  made  available
to  the  process  and the pseudo terminal slave can be accessed as
 /dev/pts/.

Cut and paste from "man mount"

/Marco





Re: [Cooker] Thinkpad 765L installation problems 7.1

2000-06-13 Thread marco goerlach

Don Head wrote:

> I reported this error (sounds like similar install steps, and it's the same
> error message) during the 7.1 betas and did not get a response.  Never did
> figure out the problem.  Here's my report:
>
> System:
>
> Compaq Prolinea 575 (Pentium 75)
> 80MB RAM (Wow!)
> 500MB Hard Drive (I know, small..)
> 3COM 3C509B (ISA 10MB NIC)
>
> Install:
>
> network.img from Beta 3 CD/ISO
> NFS to 7.1 Beta 2 machine next to it with Beta 3 ISO exported
> Text install
> Expert
> Custom
>
> Problem:
>
> Just after choosing "Languages Available After Installation" (or something
> close to that), I received:
>
> Segmentation fault: seems like memory is missing as the install crashes
>
> Work Around:
>
> Used the graphical install over NFS, EXACTLY the same settings, works fine.
>
> Don Head  [[EMAIL PROTECTED]]
> Linux Mentor  [1 314 692-1942]
> Wave Technologies, Inc.     [1 800 826-4640 x1942]
> [AIM - Don Wave][ICQ - 18804935][Yahoo - Don_Wave]
>
>
> -Original Message-
> From: marco goerlach [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 09, 2000 2:07 AM
> To: Cooker mailing list
> Subject: [Cooker] Thinkpad 765L installation problems 7.1
>
> Hi folks,
> Pls can you help me.
>
> I want to install Mandrake 7.1 (official) on a 765L (IBM) Thinkpad but I
> get no graphic window and if I do install it in
> text mode then the install script crashed after select locals. The
> select window locals has no scrollbar.
> I did make following steps:
> .
> 1.) boot: text
>   ...loading
> 2.)  select hdisk, where Mandrake is..
> 3.) select Language --> English (US) --> OK.
> 4.) select Install Class --> Expert --> OK.
> 5.) Install/Upgrade --> install --> OK
> 6.) Install Class --> Sever --> OK
> 7.) Try to find PCI devices --> Yes --> OK
> 8.) try to find PCMCIA cards --> NO --> OK
> 9.) scsi ---> NO --> OK.
> 10.) select mouse --> OK
> 11.) select Keyboard --> OK
> 12.) locals --> to big window for my thinkpad monitor. no scrollbar
> available. After press OK the installation chrashed with following error
> messages:
> .
> segmentation fault: seems like memory is missing as the install crashes.
>
> .
> regards,
> Marco

Hello Don,
.
your idea is good to mount over NFS but I'm connected about tr0 (tokenring),
therefore I need a other idea what I can do in this case. Is there a other
possibility to install a thinkpad 765L in textmode?

regards,
Marco




[Cooker] Thinkpad 765L installation problems 7.1

2000-06-09 Thread marco goerlach

Hi folks,
Pls can you help me.

I want to install Mandrake 7.1 (official) on a 765L (IBM) Thinkpad but I
get no graphic window and if I do install it in
text mode then the install script crashed after select locals. The
select window locals has no scrollbar.
I did make following steps:
.
1.) boot: text
  ...loading
2.)  select hdisk, where Mandrake is..
3.) select Language --> English (US) --> OK.
4.) select Install Class --> Expert --> OK.
5.) Install/Upgrade --> install --> OK
6.) Install Class --> Sever --> OK
7.) Try to find PCI devices --> Yes --> OK
8.) try to find PCMCIA cards --> NO --> OK
9.) scsi ---> NO --> OK.
10.) select mouse --> OK
11.) select Keyboard --> OK
12.) locals --> to big window for my thinkpad monitor. no scrollbar
available. After press OK the installation chrashed with following error
messages:
.
segmentation fault: seems like memory is missing as the install crashes.

.
regards,
Marco






[Cooker] JFYI: Netscape 4.72 is out

2000-02-23 Thread marco barbieri

Hi all,
just to let you know tha Netscape 4.72 is out:

http://home.netscape.com/download/download_1_702_411_1_4.72.html

ciao
-- 
Voice : +39-59-329289 Fax: +39-59-218661
e-mail: [EMAIL PROTECTED]  ICQ: 4203399



[Cooker] ISO 7.0-2 - some bugs

2000-02-23 Thread marco barbieri

Hi all,
i've upgrades my Helios with Air from ISO 7.0-2, and now here are my troubles:

1) during installation, i choose italian keyboard layout, it put it-latin1 in
/etc/sysconfig/keyboard and... never loaded it because it couldn't find it,
changing it to "KEYTABLE=it" fixed the thing.

2) upgraded licq (i know that there's a newer version in
ftp.linux-mandrake.com/incoming but i can't d/l from there) and it's a pain,
nice skins but each time i wraps a line it messes the text..

3) the worst thing to me is a lot of software il dieing 'cos it can't find
"libstdc++.so.2.9" which used to be in my system and seems to have been
upgraded with something that doesn't do the same.

The rest is fine, nice icons, good speed optimizations.

 -- 
Voice : +39-59-329289 Fax: +39-59-218661
e-mail: [EMAIL PROTECTED]  ICQ: 4203399