Re: Red Hat 7.x on DVD?

2000-08-21 Thread Stanislav Meduna
Hello, > I guess that this release, 7.0, is the time to bundle RHL and > a DVD kit. > > 7.1 just might be okay, but 7.2 will be TOO LATE. In another > year, the sticker shock won't be so bad and the decision > to buy a DVD drive will be much easier, and lots of folk > will already have one. Sou

Re: /usr/src/redhat

2000-09-03 Thread Stanislav Meduna
Hi, > > If I wanted to change the usage of /usr/src/redhat by RPM where would I > > change this? Is this hard coded in the RPM source code? I'd like to do > > something like /usr/src/my_distribution_name_here. Folks at RH, please, write a complete reference documentation and make it public. PLEA

Re: getting user input in %post section

2000-10-08 Thread Stanislav Meduna
Hi, > I just get user input using, > > $answer = ; Don't do that. The rpm is great for doing unattended installs - you are breaking this possibility and that the rpm closes/redirects the stdin to /dev/null is the only sane thing it can do. But this leaves another question - is there any possi

Re: looking for devel list for Red Hat distro

2000-10-22 Thread Stanislav Meduna
Hi, > > I've been looking for a Red Hat development mailing list, > > like debian-devel, where the distro is actually created > > and improved. It looks like redhat-devel-list is for people > > doing development of other projects, on a running red-hat > > system. Am I SOL? > > Nope, you're in th

Re: bashing /bin/sh

2000-11-08 Thread Stanislav Meduna
Hello, had I not reading this list for quite a long time, I would just say "Oh, another troll" :-) > I frankly don't want to acept a thing as standard just > because it is in Unix. No. I want to accept it, because it is in Single Unix Specification. You might think that the portability is nothi

Re: Linux Hardware

2000-11-26 Thread Stanislav Meduna
Hello, > I suspect it works on newer (last 3-4 years) motherboards. It may he that my > use of newer kernels coincided neatly with my use of newer motherboards; I do > recall having to use it, but both the M/b and the kernel are long gone. The > M/b is about 5 years old and was designed for Pe

Swap

1999-10-18 Thread Stanislav Meduna
Hello, I have missed the previous discussion, but I think that this issue comes up quite regularly. If you need to swap, you want to minimize head movement and maximize throughput. So you can IMHO: - use a different disk than where the most of your data activity occurs - if this is impossibl

Re: updated redhat distribution / installation cdroms

1999-10-26 Thread Stanislav Meduna
Hello, > 1) is Red Hat interested in solidifying their position in the business > market? > > 2) among Linux users in the office, is having a dual-boot machine with NT > on disk 1 and Red Hat on disk 2 a common configuration? > > 3) will the fact that the Official Red Hat 6.1 is totally and utt

Re: RH6.0 Powerdown problem

1999-12-22 Thread Stanislav Meduna
Hello, > The "APM BIOS" is a set of calls within your BIOS that handle > power management. They are one of the few bits of the BIOS > with 32bit interfaces that Linux can and does use. BTW, what are the reasons behind the need to actually use the BIOS and not driving the hardware directly, at le

Re: root password requests in 6.1

1999-12-24 Thread Stanislav Meduna
Hello, > As far as I can see it is only acceptable to be asked for a root password > if you have explicitly requested root access (eg su or login). Adding a > graphical way of requesting root access (eg a program called [gxk]root say > that simply produced a menu of programs that would then be ru

Re: Updated ISO image for RH 6.1 available ?

1999-12-24 Thread Stanislav Meduna
Hello, > I will translate a french expression: You want the butter, the money of > the butter and in addition the woman selling it Sounds good, why not? :-) But seriously, the idea of "jumbo patches" combining more simple ones is not new - e.g. HP makes it for years. M$ service packs are simila

Re: question of resolution....

2000-04-02 Thread Stanislav Meduna
Hello, > I personally use 1600x1200 and make the fonts readable > for each app where necessary! Actually that's why 75dpi and 100dpi versions of the fonts exist. This is normally enough - although there are cases where 1600x1200 on a 17" (i.e. 125 dpi or so) comes handy, it normally does not mak

Re: Rawhide RPM signatures

2000-05-26 Thread Stanislav Meduna
Hello, > That was it! Many thanks. May I suggest that, as a value-add feature, > the Red Hat GPG public key get installed along with the GPG package? Well - the point of the signatures is that you get the public key in some other (secure) way than the signed things. You need to trust the medi

Re: [Redhat-devel-list] Re: Subject line- [redhat-devel-list]

2000-06-28 Thread Stanislav Meduna
On Wed, Jun 28, 2000 at 01:56:15PM -0500, Edward S. Marshall wrote: > "``Reply-To'' Munging Considered Harmful" > > http://www.unicom.com/pw/reply-to-harmful.html > > And the counter-argument: > > http://www.metasystema.org/essays/reply-to-useful.mhtml Please, take the discuss

Re: problems with rawhide.

2000-07-16 Thread Stanislav Meduna
On Sat, Jul 15, 2000 at 02:48:26PM +0200, Benny Amorsen wrote: > If you upgrade glibc, something keeps the old glibc open during > reboot. Last time I have seen similar problems it was ldconfig - it somehow always resulted in an unclean unmount. AFAIR this was fixed quite long ago, but I don't

Re: Pb with signal() and read()

2000-07-30 Thread Stanislav Meduna
On Sun, Jul 30, 2000 at 02:57:52PM +0200, Christophe Leroy wrote: > read() doesn't return on signal. Why ? I want it to return with > errno=EINTR. How can I do that ? signal() is deprecated, use sigaction() and friends instead. These are portable and much more sane interface to signals. Your pr

Re: Is RedHat Linux's worst ennemy?

2000-08-19 Thread Stanislav Meduna
Hello, > > Even in a beta release I think a bug of this magnitude is not > > acceptable Well, betas are meant to help find bugs, we are all people (although on the internet you never know :-)) and make mistakes. Hopefully the quality control team learns from this. > > RedHat says it does not s

Re: basename()?

2000-08-19 Thread Stanislav Meduna
Hi, > So... what's it called, and where is it? Slap me with a > clue-by-4... According to the Single UNIX Specification V2 you should find the declaration in libgen.h. It is there in glibc 2.1.3, don't know about other libc versions. Regards -- Stano ___