crypt'd zip/unzip RPM problem solved.

2000-07-10 Thread Mike A. Harris
Thanks very much to those who replied to my problem getting a crypted version of zip and unzip. I've managed to download a source RPM for a slightly older version of the programs and have used the info in it's spec file to modify the new version's spec file. I've successfully built new crypted p

Compaq SmartRAID and RedHat

2000-07-10 Thread Rodger Donaldson
The bootnet.img image for the current rawhide doesn't recognise the SmartRAID adapter in a Compaq ProLiant DL360; the bootnet.img for RedHat 6.2 does. -- Rodger Donaldson[EMAIL PROTECTED] Driving that fast may also be an autoLART because the acceleration required to reach a high

Maximum RPM in HTML format.

2000-07-10 Thread Mike A. Harris
I've found an online version of Maximum RPM in HTML format, which is my preffered format for most docs like manuals nowadays. I've also got the postscript version - which is not my favorite for online viewing. My question is: Does someone have a zipped or gzip'd copy of maximum RPM available fo

zip/unzip with zcrypt support

2000-07-10 Thread Mike A. Harris
I'm trying to build an RPM packaged version of Infozip zip utilities with encryption support. I've downloaded the source RPM from RedHat 6.2 for zip and unzip, and I've downloaded the needed zcrypt28.zip package from Holland. The contents of the zcrypt28.zip package when unzipped consists of: R

Re: PnP, BIOS and Linux

2000-07-10 Thread Andrew Park
On Mon, 10 Jul 2000, daniel sheltraw wrote: > Hello RedHat list > > My question concerns PnP configuration via BIOS. I have a notebook PC > (Gateway solo 2500) running Linux kernel 2.2 (RedHat 6.0 I believe), with > Phoenix NoteBIOS 4.0. My BIOS is setup with the PnP operating system option >

RE: Add user during Kickstart installation?

2000-07-10 Thread Matt_Domsch
In the %post section, you can run useradd. :) Thanks, Matt > -Original Message- > From: Li, Chun Ming [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 10, 2000 5:34 PM > To: '[EMAIL PROTECTED]' > Subject: Add user during Kickstart installation? > > > Hello, > > I had my kickstart config

Re: LILO

2000-07-10 Thread kmb
I never used cartman or zoot list, but I have completely crashed many times after downloading a slew of rawhide rpms to update my system. The crash involved a wiped out boot sector on my root partition. Because I am careful to always run lilo after installing a new one I just discovered that the

Re: Old HOWTO's...

2000-07-10 Thread Nalin Dahyabhai
On Mon, Jul 10, 2000 at 06:38:47PM -0400, Mike A. Harris wrote: > On 9 Jul 2000, Trond Eivind Glomsrød wrote: > >You can find the source on http://linux.3dfx.com, if memory serves. > > Thanks, I've been there, but got a access denied or something the > other day. I'll try again. Try http://glid

Re: Old HOWTO's...

2000-07-10 Thread Mike A. Harris
On Sun, 9 Jul 2000, Hal Burgiss wrote: >> > RedHat has a habit of moving HOWTO's that are old and >> > unmaintained into an "unmaintained" directory with the >> > distribution. >> >> No, we don't (AFAIK) - we distribute the LDP HOWTOs as is. They decide >> which are old and unmaintained, and whi

Re: Old HOWTO's...

2000-07-10 Thread Mike A. Harris
On 9 Jul 2000, Trond Eivind Glomsrød wrote: >> RedHat has a habit of moving HOWTO's that are old and >> unmaintained into an "unmaintained" directory with the >> distribution. > >No, we don't (AFAIK) - we distribute the LDP HOWTOs as is. They decide >which are old and unmaintained, and which are

Add user during Kickstart installation?

2000-07-10 Thread Li, Chun Ming
Hello, I had my kickstart config file setup to do network headless installation. The problem I ran into is after client completes the installation I have no way of login on to the client. I want to add a user during install, so I can login remotely. Is there an option in the kickstart file that

Re: suggestion for 7.0 updater

2000-07-10 Thread XosÉ Vázquez
Levente Farkas wrote: > one thing which always wrong is some daemon not suuported by rh. the main > problem es sendmail. it'd be nice to try to detect some well-known mta > like qmial, postfix ... currently after an update sendmail is installed > in any case (if I know well you can't unselect it

Re: XFree86-4.0.1 and Red Hat Linux 6.2

2000-07-10 Thread Thomas Dodd
Jose Romildo Malaquias wrote: > > I am willing to use XFree86-4.0.1 but there is not > (or I was not able to find) any RPM packages (that > includes the goods by Red Hat) for RH Linux 6.2. > I would like to try the ones from RawHide, but > they seem not to work. There are unsatisfied > dependenci

Re: pam-0.72-15 in RHL 6.2 ?

2000-07-10 Thread Adrian Likins
On Mon, Jul 10, 2000 at 09:08:17AM -0300, Jose Romildo Malaquias wrote: > I have noticed that some packages from RawHide (like XFree86 and mc) > have dependencies on /etc/pam.d/system-auth. > Can I upgrade from pam-0.72-6 to pam-0.72-15 (from current RawHide) > to satisfy them without problems. Th

Re: XFree86-4.0.1

2000-07-10 Thread kmb
When I upgraded to the latest rawhide only Xconfigurator works. I was previously using NVIDIA_GLX and NVIDIA_KERNEL rpms to use the 2d nvidia driver but now I can't load any modules. When I went back to XFree86-4.0-0.30 I still couldn't load any modules and all the keywords in the xf86config ge

PnP, BIOS and Linux

2000-07-10 Thread daniel sheltraw
Hello RedHat list My question concerns PnP configuration via BIOS. I have a notebook PC (Gateway solo 2500) running Linux kernel 2.2 (RedHat 6.0 I believe), with Phoenix NoteBIOS 4.0. My BIOS is setup with the PnP operating system option marked yes. When I look in the BIOS setup screen I see t

Compaq Cluster systems

2000-07-10 Thread Michael Waite
Has anyone had luck running Linux on a Compaq "CL" series server? I am specifically interested in Linux support for the integrated "CR3500" RAID controller. Thanks. -Mike -- Michael Waite Mission Critical Linux Senior Professional Services Consultant

Re: class inheritance

2000-07-10 Thread Bob Tennent
> class c1 { > public: > void methode1 (long); > }; > > class c2: public c1 { > public: > void methode2 (void); > }; > > void c2::methode2 (void) { > methode1 (1); > } > > In function 'c2::methode2(void)': > undefined reference to 'c1::methode1(long)' You haven't def

class inheritance

2000-07-10 Thread InfraNewsrdr
Hi, I have a class, class c1 { public: void methode1 (long); }; and I inherited an other class class c2: public c1 { public: void methode2 (void); }; void c2::methode2 (void) { methode1 (1); } This is a very simple example for the class inheritance, no? But this not working, be

Re: burning rawhide ?

2000-07-10 Thread Andre Steden
On Sun, Jul 09, 2000 at 03:32:02PM -0400, Bill Nottingham wrote: > Andre Steden ([EMAIL PROTECTED]) said: > > i have downloaded rawhide today. How can i burn rawhide on CD ?? > > It is more than 700 MB. Which RPMs must be on the first CD ? > > In the anaconda-runtime package is a 'splitdistro' s

pam-0.72-15 in RHL 6.2 ?

2000-07-10 Thread Jose Romildo Malaquias
I have noticed that some packages from RawHide (like XFree86 and mc) have dependencies on /etc/pam.d/system-auth. Can I upgrade from pam-0.72-6 to pam-0.72-15 (from current RawHide) to satisfy them without problems. That is, RHL 6.2 will continue to work with the new pam package? Also Xconfigurat

RE: Update: Web interface now available!

2000-07-10 Thread Garboua Nahil Y Contr WRALC/LYSFE
would you please remove me from this list. Thank you -Original Message- From: List Manager [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 29, 2000 10:10 AM To: [EMAIL PROTECTED] Subject: Update: Web interface now available! FYI: Until I had gotten the ipchains properly configured on li

what is anaconda?

2000-07-10 Thread ÀÌÁ¤¼ø
i installed computer with two processors first, i did disabled processor serial number and then installed.. but i met message, "exception occurred" related to anaconda what is problem? is any solution? please, anybody help me --