Re: [Cooker] Rescue ISO?

2000-02-26 Thread David Hedbor

"geoffrey lee" [EMAIL PROTECTED] writes:

 E...!! emacs!! urgh... it's so big and kludged ! :-)

It might be big, but I use Emacs for A LOT of things, like writing
this email for example. What I like with emacs other than the
editor-part is being able to use it for so many things.

 I use vi myself. but i guess pico is a good choice. it's nice and easy to
 use.

I must say I prefer jed. First of all its more emacs-like. Also it's
more powerful than pico (which has problems with long lines for example).

 So i gues the list of editors could be ed, vi , ex, and pico.
 Please remember that the rescue  _is_ a minimal distro, which is only for
 getting your system back up. it is not a distro for daily use!! so i
 wouldn't dream if adding more editors than necessary..

If you have an ISO-rescue-image, there really isn't any reason why it
would _have_ to be minimal other than to save potential download time.

-- 
[ Below is a random fortune, which is unrelated to the above message. ]
Fun Facts, #14:
In table tennis, whoever gets 21 points first wins.  That's how
it once was in baseball -- whoever got 21 runs first won.



[Cooker] Patch for sash.

2000-02-26 Thread David Hedbor

Attached is a patch for sash. It enables readline support. The patch
is something I made quite some time ago for myself. It replaces the
-misc patch (includes the same changes plus the readline stuff). The
binary size of sash is increased about 100 KB but I think readline
support is worth that much.

-- 
[ Below is a random fortune, which is unrelated to the above message. ]
There's no easy quick way out, we're gonna have to live through our
whole lives, win, lose, or draw.
-- Walt Kelly


Summary: A statically linked shell, including some built-in basic commands.
Name: sash
Version: 3.3
Release: 3mdk
Copyright: GPL
Group: System Environment/Shells
Source0: http://www.tip.net.au/~dbell/sash-%{version}.tar.bz2
Patch0: sash-%{version}-misc+readline.patch.bz2
Buildroot: /var/tmp/sash-root

%description
Sash is a simple, standalone, statically linked shell which includes
simplified versions of built-in commands like ls, dd and gzip.  Sash
is statically linked so that it can work without shared libraries, so
it is particularly useful for recovering from certain types of system
failures. Sash can also be used to safely upgrade to new versions of
shared libraries.

%prep
%setup -q
%patch0 -p1 -b ".misc"

%build
make RPM_OPT_FLAGS="$RPM_OPT_FLAGS"

%install
mkdir -p $RPM_BUILD_ROOT/sbin
mkdir -p $RPM_BUILD_ROOT/usr/man/man8

install -s -m755 sash $RPM_BUILD_ROOT/sbin
install -m644 sash.1 $RPM_BUILD_ROOT/usr/man/man8/sash.8

bzip2 -9f $RPM_BUILD_ROOT/usr/man/*/*

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(-,root,root)
/sbin/sash
/usr/man/man8/sash.8.bz2

%changelog
* Sat Feb 26 2000 David Hedbor [EMAIL PROTECTED] 
- Added readline support.

* Tue Oct 26 1999 Chmouel Boudjnah [EMAIL PROTECTED]
- Build release.

* Thu Aug 05 1999 Chmouel Boudjnah [EMAIL PROTECTED]
- 3.3.

* Sat Apr 10 1999 Bernhard Rosenkraenzer [EMAIL PROTECTED]
- Mandrake adaptions
- bzip2 man/info pages
- add de locale

* Wed Feb 24 1999 Preston Brown [EMAIL PROTECTED]
- Injected new description and group.

* Fri Dec 18 1998 Preston Brown [EMAIL PROTECTED]
- bumped spec number for initial rh 6.0 build


diff -C 3 -r sash-3.3/Makefile sash-3.3-patched/Makefile
*** sash-3.3/Makefile   Sun Apr 18 07:18:46 1999
--- sash-3.3-patched/Makefile   Fri Feb 25 23:58:37 2000
***
*** 5,13 
  # The HAVE_EXT2 definition adds the -chattr and -lsattr comamnds.
  #
  
! CFLAGS = -O3 -Wall -Wmissing-prototypes -DHAVE_GZIP -DHAVE_EXT2
  LDFLAGS = -static -s
! LIBS = -lz
  
  
  BINDIR = /bin
--- 5,14 
  # The HAVE_EXT2 definition adds the -chattr and -lsattr comamnds.
  #
  
! #CFLAGS = -O3 -Wall -Wmissing-prototypes -DHAVE_GZIP -DHAVE_EXT2
! CFLAGS = $(RPM_OPT_FLAGS) -DHAVE_GZIP -DHAVE_EXT2 -DHAVE_READLINE
  LDFLAGS = -static -s
! LIBS = -lz -lreadline -lncurses
  
  
  BINDIR = /bin
diff -C 3 -r sash-3.3/cmds.c sash-3.3-patched/cmds.c
*** sash-3.3/cmds.c Thu Jun  3 14:42:39 1999
--- sash-3.3-patched/cmds.c Fri Feb 25 23:58:37 2000
***
*** 16,23 
  #include grp.h
  #include utime.h
  #include errno.h
  #include linux/fs.h
! 
  
  void
  do_echo(int argc, const char ** argv)
--- 16,24 
  #include grp.h
  #include utime.h
  #include errno.h
+ /*
  #include linux/fs.h
! */
  
  void
  do_echo(int argc, const char ** argv)
diff -C 3 -r sash-3.3/sash.c sash-3.3-patched/sash.c
*** sash-3.3/sash.c Wed Jun 16 04:02:38 1999
--- sash-3.3-patched/sash.c Sat Feb 26 00:06:47 2000
***
*** 1,4 
--- 1,5 
  /*
+ 
   * Copyright (c) 1999 by David I. Bell
   * Permission is granted to use, distribute, or modify this source,
   * provided that this copyright notice remains intact.
***
*** 13,21 
  #include errno.h
  
  #include "sash.h"
  
  
! static const char * const version = "3.3";
  
  
  /*
--- 14,26 
  #include errno.h
  
  #include "sash.h"
+ #ifdef HAVE_READLINE
+ #include readline/readline.h
+ #include readline/history.h
+ #endif
  
  
! static const char * const version = "3.3-readline";
  
  
  /*
***
*** 479,485 
 */
if (!quietFlag  isatty(STDIN))
{
!   printf("Stand-alone shell (version %s)\n", version);
  
if (aliasFlag)
printf("Built-in commands are aliased to standard commands\n");
--- 484,491 
 */
if (!quietFlag  isatty(STDIN))
{
!   printf("Stand-alone shell (version %s)\n"
!  "Readline support added by David Hedbor [EMAIL PROTECTED]\n", 
version);
  
if (aliasFlag)
printf("Built-in commands are aliased to standard commands\n");
***
*** 523,528 
--- 529,538 
int cc;
BOOLttyFlag;
charbuf[CMD_LEN];
+ #ifdef HAVE_READLINE
+   char *rlbuf;
+   char *cp;
+ #endif
  
if (sourceCount = MAX_SOURCE)
{
***
*** 551,559 
  
while (TRUE)
{
!   

RE: [Cooker] Re: [CHRPM] netscape-4.72-1mdk

2000-02-26 Thread geoffrey lee

hi,

hm...but i cna't find it on crypto...

i think i'll just make one myself now...


geoffrey lee (snail talk)
[EMAIL PROTECTED]

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of David BAUDENS
 Sent: Saturday, February 26, 2000 3:17 PM
 To: [EMAIL PROTECTED]
 Subject: [Cooker] Re: [CHRPM] netscape-4.72-1mdk


 David BAUDENS écrivit :

  * Thu Feb 24 2000 - David BAUDENS [EMAIL PROTECTED] - 4.72-1mdk
 
  - 4.72 - 56 bits version is available main distribution
^^

 Well, of course it's "128 bits version is available in crypto"
 --
 Linux Mandrake  http://www.mandrake.com/
  --David




Re: [Cooker] SECURITY BUGs in security_check.sh

2000-02-26 Thread Stefan Siegel

[EMAIL PROTECTED] wrote:
   - removed "~lp" and "~mail" from group-check as their homedirs
  are group writeable
  
   wrong completly depend on your configuration.
   alph:~$ ls -l mail
   -rw---1 yoannyoann5057 Feb 11 12:40 mail
   alph:~$
  --8--8---
  $ rpm -qlvp /mnt/cdrom/Mandrake/RPMS/filesystem-1.3.5-1mdk.noarch.rpm |
  grep mail
  drwxrwxr-x root mail 1024 Feb  6  1996 /var/spool/mail
  $ rpm -qlvp /mnt/cdrom/Mandrake/RPMS/lpr-0.48-1mdk.i586.rpm | grep spool
  drwxrwxr-x root   daemon 4096 Jan 10 14:30 /var/spool/lpd
  --8--8---
  that's why I "removed" those two from being displayed ...
  (Note: Your rpms from iso-2 ...)
 
 what are u talking about , ~/mail or /var/spool/mail ?

"~mail" is "/var/spool/mail" and "~lp" is "/var/spool/lpd"

-- 
Tschüss und bis demnächst,

   Stefan



[Cooker] Contrib update proposal: netsaint-0.0.5b4-1mdk

2000-02-26 Thread Stefan van der Eijk

Hi,

I updated netsaint to 0.0.5b4, please update it in contrib.

Thanks,

Stefan



Re: [Cooker] Re: Mozilla and fonts

2000-02-26 Thread Pablo Saratxaga

Kaixo!

On Fri, Feb 25, 2000 at 01:06:48PM -0800, Brian J. Murrell wrote:

 The problem is the mdk-helvetica fonts.  Get rid of them in your xfs
 config file and mozilla will look real pertty!

Or check that the directory of those fonts has :unscaled at the end of it.
So they will be used only for the exact size asked.
And also put that directory at the end of the fontpath.

I know they aren't that nice, I'm far from being a font artist; however
they are under GPL, if someone can improve them, he is welcome.
The main goal was to have at least one font for each encoding.

 --
 Brian J. Murrell  InterLinx Support Services, Inc.
 North Vancouver, B.C. 604 983 UNIX
 Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD

-- 
Ki a vos vye bn,
Pablo Saratxaga

http://www.ping.be/~pin19314/   PGP Key available, key ID: 0x8F0E4975



[Cooker] Re: [CHRPM] netscape-4.72-1mdk

2000-02-26 Thread Pablo Saratxaga

Kaixo!

On Sat, Feb 26, 2000 at 12:34:55AM -0600, - David BAUDENS wrote:
 --=-=-=
 Name: netscapeDistribution: Linux-Mandrake
 Version : 4.72  Vendor: MandrakeSoft


Do the X11 ressource files have to change the version number from '4.7' to
'4.72' ?

Also; what is exactly the version of Netscape for the sparc ?
Thanks.

-- 
Ki a vos vye bn,
Pablo Saratxaga

http://www.ping.be/~pin19314/   PGP Key available, key ID: 0x8F0E4975



Re: [Cooker] Rescue ISO?

2000-02-26 Thread Tim Val Litwiller

if you have problems with long line in pico use pico -w to turn of automatic
word wrap.
I think pico is the perfect quick editor, but I would hate to use it to write a
whole web site or some such project.



David Hedbor wrote:

 "geoffrey lee" [EMAIL PROTECTED] writes:

  E...!! emacs!! urgh... it's so big and kludged ! :-)

 It might be big, but I use Emacs for A LOT of things, like writing
 this email for example. What I like with emacs other than the
 editor-part is being able to use it for so many things.

  I use vi myself. but i guess pico is a good choice. it's nice and easy to
  use.

 I must say I prefer jed. First of all its more emacs-like. Also it's
 more powerful than pico (which has problems with long lines for example).

  So i gues the list of editors could be ed, vi , ex, and pico.
  Please remember that the rescue  _is_ a minimal distro, which is only for
  getting your system back up. it is not a distro for daily use!! so i
  wouldn't dream if adding more editors than necessary..

 If you have an ISO-rescue-image, there really isn't any reason why it
 would _have_ to be minimal other than to save potential download time.

 --
 [ Below is a random fortune, which is unrelated to the above message. ]
 Fun Facts, #14:
 In table tennis, whoever gets 21 points first wins.  That's how
 it once was in baseball -- whoever got 21 runs first won.



Re: [Cooker] Rescue ISO?

2000-02-26 Thread Hoyt


- Original Message -
From: Tim  Val Litwiller [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, February 26, 2000 10:36 AM
Subject: Re: [Cooker] Rescue ISO?


 if you have problems with long line in pico use pico -w to turn of
automatic
 word wrap.
 I think pico is the perfect quick editor, but I would hate to use it to
write a
 whole web site or some such project.


To express what is certain to be a minority opinion, I use Midnight
Commander and its built-in editor. Very simple and easy. Of course, it is
not available on every computer, but it is an option.

Hoyt


__
NetZero - Defenders of the Free World
Get your FREE Internet Access and Email at
http://www.netzero.net/download/index.html



[Cooker] Re[2]: Mozilla and fonts

2000-02-26 Thread Brian J. Murrell

from the quill of Pablo Saratxaga [EMAIL PROTECTED] on scroll
[EMAIL PROTECTED]
 
 Or check that the directory of those fonts has :unscaled at the end of
 it.

 So they will be used only for the exact size asked.
 And also put that directory at the end of the fontpath.

OK.  That all seems to work.  Shouldn't the XFree86-3.3.6 package
have/do all that then?

 I know they aren't that nice, I'm far from being a font artist;

That's OK, just so long as they don't mess with other things.

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



Re: [Cooker] kernel 2.2.15-0.8

2000-02-26 Thread Chmouel Boudjnah

Ivan Kerekes [EMAIL PROTECTED] writes:

 After upgrading to 2.2.15-0.8 I can't boot my cooker. The kernel after starting
 init trashing the harddrive and totally stuck in the depmods step "Finding
 module dependencies".
 Does anybody experienced this or it is only my machine?
 I had to "borrow" the 2.2.15 -2.5.0 kernel and modules from redhat 6.2-beta.
 (my rsync deletes the last stable kernel package).  


yep sorry, bug is fixed and new kernel come in a few hours.

-- 
MandrakeSoft  http://www.mandrakesoft.com/
 --Chmouel



Re: [Cooker] Rescue ISO?

2000-02-26 Thread David Hedbor

Tim  Val Litwiller [EMAIL PROTECTED] writes:

 If you have problems with long line in pico use pico -w to turn of
 automatic word wrap.

That doesn't solve all the problems actually. Lines longer than some
number of chars gets wrapped anyway. :)

 I think pico is the perfect quick editor, but I would hate to use it to write a
 whole web site or some such project.

Sure, never said it wasn't ok, but jed is so much better (and somewhat
less minimal I guess).

-- 
[ Below is a random fortune, which is unrelated to the above message. ]
Mitchell's Law of Committees:
Any simple problem can be made insoluble if enough meetings are
held to discuss it.



[Cooker] hackmozilla experiment not going too well... :-(

2000-02-26 Thread Stefan van der Eijk

Hello,

My hackmozilla (CVS version of mozilla) experiment isn't going too well.
I built a RPM that's all the files (M13 + changes through to the current
"nightly build") in them. The thing compiles fine... The installation of 
the browser looks like this:

hackmozilla-browser
##
RegSelf Unicode to Big5 converter complete
RegSelf Unicode to x-x-big5 converter complete
RegSelf Big5 to Unicode converter complete
*** Deferring registration of sample JS components
-*- sidebar: registering (all right -- a JavaScript module!)
*** Registering sample JS components
nNCL: registering deferred (0)
nNCL: registering deferred (0)
*** Unloading sample JS components
-*- sidebar: Unloading component.

And then when I try to start it:

[stefan@stefan stefan]$ mozilla 
[1] 8864
[stefan@stefan stefan]$ nNCL: registering deferred (0)
Could not obtain CmdLine processing service
 
[1]+  Segmentation fault  mozilla

It stops...

The weird thing is that the nightly build (tar.gz) works (unpack it
into my homedir, and run it from there)...

Unless anyone's got a bright idea's about what's going on with nNCL
/ what I'm doing wrong, I'm waiting for M14 ;-) Otherwise, please let 
me know. 

If anyone is interested, I'll put my src.rpm up somewhere (on my own 
box, or in /incoming, or some other location)...

Stefan

PS: I'd love to check the mozilla newsgroups, but my ISP's newsfeed
is dead since Thursday :-/



Re: [Cooker] Re: [CHRPM] netscape-4.72-1mdk

2000-02-26 Thread David BAUDENS

geoffrey lee écrivit :

 hm...but i cna't find it on crypto...
 
 i think i'll just make one myself now...

Please be patient :). It'll be avalaible in few hours now.


Regards,

David BAUDENS
-- 
Linux Mandrake  http://www.mandrake.com/
 --David




Re: [Cooker] Messages when installing netscape-*-4.72-1mdk

2000-02-26 Thread David BAUDENS

"Brian J. Murrell" écrivit :

 Just FYI, I got the following messages when upgrading my communicator
 pakcages:
 
 # rpm -Uvh netscape-{common,communicator}-4.72-1mdk.i586.rpm
 netscape-common ##
 netscape-communicator   ##
 package netscape-communicator not listed in name index
 package Applications/Internet not listed in group index
 package webclient not listed in providesfile index
 package netscape-navigator not listed in conflict index
 package netscape-communicator.desktop not listed in file index
 package netscape-communicator not listed in file index
 package netscape-communicator not listed in file index

???

No error messages here. Maybe your rpm database is damage.


Regards,

David BAUDENS
-- 
Linux Mandrake  http://www.mandrake.com/
 --David




Re: [Cooker] Rescue ISO?

2000-02-26 Thread Guy T. Rice

On Sat, 26 Feb 2000, David Hedbor wrote:
 Tim  Val Litwiller [EMAIL PROTECTED] writes:
 
  If you have problems with long line in pico use pico -w to turn of
  automatic word wrap.
 
 That doesn't solve all the problems actually. Lines longer than some
 number of chars gets wrapped anyway. :)
 
  I think pico is the perfect quick editor, but I would hate to use it to write a
  whole web site or some such project.
 
 Sure, never said it wasn't ok, but jed is so much better (and somewhat
 less minimal I guess).

Actually, the *perfect* minimal editor is joe.  It (by default) uses those
funky Wordstar commands we all have hardwired in our brains from our days
running CP/M, right?  Right?  (Or is that just me...)  Fans of Borland's old
MS-DOS development tools probably also have that same command set memorized.
And if you don't like it, you can run it as "jpico" or "jmacs" or whatever...



Re: [Cooker] Re: [CHRPM] netscape-4.72-1mdk

2000-02-26 Thread David M.Kufta

Hello David and List,
 I haven't been able to find Netscape newest release in 128 bit on any of the
crypto mirrors am I looking in the wrong place ?
 Unfortunately I need 128 bit encryption for some banking needs and was not
able to find fortify for 4.72 release as of this time.

On Sat, 26 Feb 2000, David
BAUDENS wrote:  David BAUDENS écrivit : * Thu Feb 24 2000 - David
BAUDENS [EMAIL PROTECTED] - 4.72-1mdk   
  - 4.72 - 56 bits version is available main distribution
^^
 
 Well, of course it's "128 bits version is available in crypto"
 -- 
 Linux Mandrake  http://www.mandrake.com/
  --David
--  Thanks for any info,
Dave 
  --
  David M. Kufta   http://www.slip.n3meq.ampr.org  [EMAIL PROTECTED]

  The seven year itch comes from fooling around during the fourth, fifth,
and sixth years.



[Cooker] ls120 - time to rebuild kernel to enable?

2000-02-26 Thread Roger

ok did.  at command prompt and all 3 returned "...wrong fs type, bad option,
bad superblock on /dev/hdd, or too many mounted file systems."

w/o -t "../dev/hdd: Input/output error  ...you must specify fs type"

even tho' i did do a modprobe "ide-floppy", this leads me to believe that i may
have to rebuild the kernel to start the module..maybe also go over the
"atapi - floppy" module also?

do know that after rebuilding the kernel on prior mandrakes' that it usually
worked.



On Fri, 25 Feb 2000, you wrote:
 What is the linuxconf settings for this device so I can see if there is an illegal 
option defined for this device or if anything needs to be changed..
 
 when you said supermount, I suspect problems with the fstab entries..
 
 If you have a mount point defined as /mnt/hdd then try any of these commands
 
 mount /dev/hdd /mnt/hdd -t umsdos
 mount /dev/hdd /mnt/hdd -t msdos
 mount /dev/hdd /mnt/hdd
 
 the last mount attempts auto type, but you may need to play around with the fstab 
entries if all three fail..
 
 
 On Thu, 24 February 2000, Roger wrote:
 
  
  oh yea... i got all that.  it labels the ls120 as /dev/hdd 
  
  linux mandrake (redhat equiv version...just better than redhat tho)  uses
  uses "supermount" . so i'm running into problems here.
  
  i can modprobe ide-floppy, but still having problems (using the 2.2.14-15mdk
  kernel version).
  
  i've heard also that one needs to implement a patch to the kernel to allow
  using a rescue diskette.
  
  bummed   
  
  if you have any more tips, let me know.
  
  
  
  
  On Thu, 24 Feb 2000, you wrote:
   add the ide floppy support to the kernel and also attempt this command to
   see if your linux box recognizes the device
   
   mount /dev/hdx  (the x is one of these letters.. a - first master ( IDE /
   EIDE device ) b - first slave, c - second master, d second slave
   
   
   - Original Message -
   Sent: Thursday, February 24, 2000 5:58 AM
   Subject: ls120
   
   
have one of these but i'm having trouble getting it to work.  did have
it working several times.  guess i really should rebuild the kernel to
"make sure" i get it working.  or maybe it's just the format of my
fstab/mtab files.
   
no.  the ide-floppy module is not loaded...manually load it and still
errors.



[Cooker] Re: Messages when installing netscape-*-4.72-1mdk

2000-02-26 Thread Brian J. Murrell
from the quill of David BAUDENS [EMAIL PROTECTED]> on scroll [EMAIL PROTECTED]>
"Brian J. Murrell" écrivit :

> package netscape-communicator not listed in name index
> package Applications/Internet not listed in group index
> package webclient not listed in providesfile index
> package netscape-navigator not listed in conflict index
> package netscape-communicator.desktop not listed in file index
> package netscape-communicator not listed in file index
> package netscape-communicator not listed in file index

???

No error messages here. Maybe your rpm database is damage.

I suppose it's possible, but I am not thinking probable.  This is the first time I got these kind of messages.  How can I verify if the database is damaged?  Is there some kind of "integrity test" that can be done?

Did anyone else get these messages doing the upgrade of netscape common/communicator?

b.
 -- Brian J. Murrell  InterLinx Support Services, Inc. North Vancouver, B.C. 604 983 UNIX Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD 

[Cooker] xmanager!

2000-02-26 Thread Roger

I love it!   This is what i've been trying to do with my 2 linux boxes for some
time now.

you can find the "xmanager" program on www.zdnet.com, downloads.  do a search
for "linux" and it should be about the 5th-7th program from the top. or you can
try this url if i get it correct:

http://hotfiles.zdnet.com/cgi-bin/texis/swlib/hotfiles/info.html?fcode=0014FX

(o...wow, can even copy/paste between win98/linux appsawesome!)


The program executes w/i win98 and enables you to log into your remote linux
box via tcp/ip (ip connection).  if you've got 10/100 cards, your in business.
 (i had to manually specify 100mb transfer speeds w/i win98 control papel).

A couple of bugs are that i had to move my win98 task bar out of the way of
the kde taskbar and i had to change the-- 
Window Mode  Multiple Window mode options from "transperant" to "X window
background"


this app runs on install into win98 and runs well with the mdk 7.0 distro
nicely w/o errors! ('cept for a dpms error...click ok etc).


If anyone has any advice on how i "should be" able to do this between my 2
linux boxes w/o buying this (probabely expensive package) let me know.   

This app is a plus if you have a windows98 only (!) computer for which you want
to access your linux box remotely!

i lveee itawesomethink ms was behind on this onelol


(just wrote this email w/i my remote win98 computer w/i the "xmanager" with the
"kmail" utility!)  




Sent from:

Lattitude (deg):32.7130
Longitude (deg):-117.1530
Altitude (ft):  410.0
GMT to Local (hrs): -8.0 (daylight savings enabled)



Created with Linux-Mandrake 7.0!

http://www.linux-mandrake.com/

Currently Beta Testing Mandrake Ver 7.0



Re: [Cooker] test ignore

2000-02-26 Thread tracer

Hello Chmouel Boudjnah,
On 24 Feb 2000 16:02:17 -0800 GMT your local time,
which was Friday, February 25, 2000, 7:02:17 AM (GMT+0700) my local time,
Chmouel Boudjnah wrote:


 Received: from mandrakesoft.mandrakesoft.com (mandrakesoft.mandrakesoft.com 
[216.71.84.35]) by ruby.granis.net (Build 98 8.9.3/NT-8.9.3) with ESMTP id SAA00192 
for [EMAIL PROTECTED]; Thu, 24 Feb
 2000 18:03:51 -0600
 Received: (from sympa@localhost) by mandrakesoft.mandrakesoft.com (8.8.5/8.8.5) id 
RAA23130 for [EMAIL PROTECTED]; Thu, 24 Feb 2000 17:49:02 -0600
 Received: from natanya.us.mandrakesoft.com (barracuda.mandrakesoft.com 
[209.77.56.161]) by mandrakesoft.mandrakesoft.com (8.8.5/8.8.5) with ESMTP id 
RAA22535 for [EMAIL PROTECTED]; Thu, 24
 Feb 2000 17:47:25 -0600
 Received: (from chmou@localhost) by natanya.us.mandrakesoft.com (8.9.3/8.9.3) id 
QAA05496; Thu, 24 Feb 2000 16:02:17 -0800
 X-Authentication-Warning: natanya.us.mandrakesoft.com: chmou set sender to 
[EMAIL PROTECTED] using -f
 To: Mandrake devel [EMAIL PROTECTED]
 From: Chmouel Boudjnah [EMAIL PROTECTED]
 Date: 24 Feb 2000 16:02:17 -0800
 Message-Id: [EMAIL PROTECTED]
 Lines: 4
 User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.5
 Mime-Version: 1.0
 Content-Type: text/plain; charset=us-ascii
 Reply-To: [EMAIL PROTECTED]
 X-Loop: [EMAIL PROTECTED]
 X-Sequence: 1454
 Precedence: list
 Subject: [Cooker] test ignore

 test

   --Chmouel

hello...
I am filtering all known mails to their proper boxes to reduce spam.
if the addressee is NOT [EMAIL PROTECTED] mail like yours and
some others end up in my spam box.
Is there any reason for the  Mandrake devel [EMAIL PROTECTED]
address being used to the cooker list?
-- 

Best regards,
 
tracer

Using theBAT 1.41 Beta/3 

mail to : [EMAIL PROTECTED]




Re: [Cooker] Re: [CHRPM] netscape-4.72-1mdk

2000-02-26 Thread David BAUDENS

"David M.Kufta" écrivit :

 Hello David and List,
  I haven't been able to find Netscape newest release in 128 bit on any of the
 crypto mirrors am I looking in the wrong place ?

Hi,

I've uploaded packages. Changelog is done, so, they should be available
on mirrors in some hours.

Tell me if you have stability problem (it should be OK but...).


Regards,

David BAUDENS
-- 
Linux Mandrake  http://www.mandrake.com/
 --David



Re: [Cooker] Re: Messages when installing netscape-*-4.72-1mdk

2000-02-26 Thread Quel Qun

Brian,

I don't think there is anything wrong with your rpm database.
Got the exact same messages here going from 4.70 to 4.72:

# rpm -Uvh netscape-common-4.72-1mdk.i586.rpm 
netscape-communicator-4.72-1mdk.i586.rpm
netscape-common 
##
netscape-communicator   
##
package netscape-communicator not listed in name index
package Applications/Internet not listed in group index
package webclient not listed in providesfile index
package netscape-navigator not listed in conflict index
package netscape-communicator.desktop not listed in file index
package netscape-communicator not listed in file index
package netscape-communicator not listed in file index

-=-
kk1
__
Get Your Private, Free Email at http://www.hotmail.com



[Cooker] Re: xmanager!

2000-02-26 Thread Brian J. Murrell

from the quill of Roger [EMAIL PROTECTED] on scroll
00022616453400.02753@cx640487-b
 I love it!

Good.

 This is what i've been trying to do with my 2 linux boxes for some
 time now.

Trying?  In what way?  It just works.  :-)  It's called X-windows. 
Working remotely is just one of the things that was built into the roots
that whole shemazle that some think is just "a gui on linux".

 (o...wow, can even copy/paste between win98/linux
 appsawesome!)

Dude, where have you been?  :-)  There are umpteen of these things lying
around.  It is basically just an X-server on Windows.  There are a
number of companies in this business and have been for a while now.

 If anyone has any advice on how i "should be" able to do this between
 my 2
 linux boxes w/o buying this (probabely expensive package) let me know.

There are dozens of of O'Reilly books on X.  You really should look into
getting one or two if you did not know this was possible between two
Unix/Linux boxes.

If you have two boxes, A and B (their hostnames) and you are on box B
and want to run a gui app on box A and see it on box B do the following
(B$ is the command prompt on box B and A$ is the command prompt on box
A, and text between the [ ] are comments for the reader):

B$ xauth list $DISPLAY
B/unix:0  MIT-MAGIC-COOKIE-1  sekrit_cookie_value
B$ telnet A
[ log into box A ]
A$ xauth add B:0 MIT-MAGIC-COOKIE-1  sekrit_cookie_value
A$ xterm 
[ you will see a command window come up, it will be from box A ]
A$ kmail 
[ I have not used kmail, but presumably it's a kde mail application.
  In any case, it will "appear" on your display as well ]
[ You can even exit out of your telnet session and come back to B and
  run things from the "xterm" command window that is left ]
A$ exit
B$ 

 i lveee itawesomethink ms was behind on this onelol

Huh?  X-windows was developed in the mid-eighties!!  Remote access and
all.  You know I just love it when Windows users awe and gasp at the
wonder of Citrix.  X-windows re-implemented, just because MS thought
re-inventing the wheel was a good idea.  Well at least if they re-invent
it they can keep it a "sekrit" and bend'n'ream their customers for the
right to use it.

 (just wrote this email w/i my remote win98 computer w/i the "xmanager"
 with the
 "kmail" utility!)  

Yeah, amazing ain't it?  :-)

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



[Cooker] Re[2]: Messages when installing netscape-*-4.72-1mdk

2000-02-26 Thread Brian J. Murrell

from the quill of "Quel Qun" [EMAIL PROTECTED] on scroll
[EMAIL PROTECTED]
 Brian,
 
 I don't think there is anything wrong with your rpm database.
 Got the exact same messages here going from 4.70 to 4.72:
 
 # rpm -Uvh netscape-common-4.72-1mdk.i586.rpm 
 netscape-communicator-4.72-1mdk.i586.rpm
 netscape-common 
 ##
 netscape-communicator   
 ##
 package netscape-communicator not listed in name index
 package Applications/Internet not listed in group index
 package webclient not listed in providesfile index
 package netscape-navigator not listed in conflict index
 package netscape-communicator.desktop not listed in file index
 package netscape-communicator not listed in file index
 package netscape-communicator not listed in file index

Ah ha!  Just what I thought!  Thanx for the info!

So Mandrake... any idea what these are?  Ignore them?  Should they have
come up?  What will the unseasoned user do?  Probably best that message
such as these not come up eh?

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



[Cooker] great!! now my intel 10/100 ethernet card is screwed.

2000-02-26 Thread William

subject says it all.  used the 02/26/00 mirror and all of a sudden my
intel 10/100 card is slooo slow.  causing collisions problems as
well.

William



Re: [Cooker] Rescue ISO?

2000-02-26 Thread webmedic

I agree here mc does just about everything. for getting around easy on
command prompt based system. My current boot floppy is from peanut linux
just because it includes mc.

Hoyt wrote:
 
 - Original Message -
 From: Tim  Val Litwiller [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, February 26, 2000 10:36 AM
 Subject: Re: [Cooker] Rescue ISO?
 
  if you have problems with long line in pico use pico -w to turn of
 automatic
  word wrap.
  I think pico is the perfect quick editor, but I would hate to use it to
 write a
  whole web site or some such project.
 
 
 To express what is certain to be a minority opinion, I use Midnight
 Commander and its built-in editor. Very simple and easy. Of course, it is
 not available on every computer, but it is an option.
 
 Hoyt
 
 __
 NetZero - Defenders of the Free World
 Get your FREE Internet Access and Email at
 http://www.netzero.net/download/index.html



Re: [Cooker] Re netscape-*-4.72-1mdk

2000-02-26 Thread WH Bouterse

Well from "clueless in Juneau"

The netscape 4.72-1mdk common and communicator rpms
installed and ran okay on my test hybrid 7.0/cooker 

No messages of any kind !?

So far so good at that machine anyway !

William Bouterse
Juneau Alaska



Re: [Cooker] Rescue ISO?

2000-02-26 Thread Hoyt


- Original Message -
From: webmedic [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, February 26, 2000 10:41 PM
Subject: Re: [Cooker] Rescue ISO?


 I agree here mc does just about everything. for getting around easy on
 command prompt based system. My current boot floppy is from peanut linux
 just because it includes mc.


Absolutely. I use it all the time. Boots much faster than tomsrtbt. I even
have an image file of the Peanut floppy available on my LUG's website 'cause
it's so handy.

Hoyt


__
NetZero - Defenders of the Free World
Get your FREE Internet Access and Email at
http://www.netzero.net/download/index.html



[Cooker] Compiling C++ Programs

2000-02-26 Thread Ryan Wahle

Hello,

I am trying to compile some simple C++ programs and it seems no one on irc can tell
me what package to install. I'm running Mandrake 7.0 and when I do a simple C++
program that just prints hello world or something, it says it can't find iostream.h

Could you please tell me what package I need to compile C++ programs and shouldn't
this be defaulted when you install?

thanks. see ya.


Ryan Wahle
[EMAIL PROTECTED]
InnerCite



Re: [Cooker] Rescue ISO?

2000-02-26 Thread webmedic

Is it the old one for one diskette or does it use two? I managed to
loose my old one for one cd. Also can I get the link if its the one disk
version?

Hoyt wrote:
 
 - Original Message -
 From: webmedic [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, February 26, 2000 10:41 PM
 Subject: Re: [Cooker] Rescue ISO?
 
  I agree here mc does just about everything. for getting around easy on
  command prompt based system. My current boot floppy is from peanut linux
  just because it includes mc.
 
 
 Absolutely. I use it all the time. Boots much faster than tomsrtbt. I even
 have an image file of the Peanut floppy available on my LUG's website 'cause
 it's so handy.
 
 Hoyt
 
 __
 NetZero - Defenders of the Free World
 Get your FREE Internet Access and Email at
 http://www.netzero.net/download/index.html



RE: [Cooker] hackmozilla experiment not going too well... :-(

2000-02-26 Thread geoffrey lee

hi,


cn you put it somewhere? i would like to have a look...


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Stefan van
 der Eijk
 Sent: Sunday, February 27, 2000 5:00 AM
 To: [EMAIL PROTECTED]
 Subject: [Cooker] hackmozilla experiment not going too well... :-(
 
 
 Hello,
 
 My hackmozilla (CVS version of mozilla) experiment isn't going too well.
 I built a RPM that's all the files (M13 + changes through to the current
 "nightly build") in them. The thing compiles fine... The installation of 
 the browser looks like this:
 
 hackmozilla-browser
 ##
 RegSelf Unicode to Big5 converter complete
 RegSelf Unicode to x-x-big5 converter complete
 RegSelf Big5 to Unicode converter complete
 *** Deferring registration of sample JS components
 -*- sidebar: registering (all right -- a JavaScript module!)
 *** Registering sample JS components
 nNCL: registering deferred (0)
 nNCL: registering deferred (0)
 *** Unloading sample JS components
 -*- sidebar: Unloading component.
 
 And then when I try to start it:
 
 [stefan@stefan stefan]$ mozilla 
 [1] 8864
 [stefan@stefan stefan]$ nNCL: registering deferred (0)
 Could not obtain CmdLine processing service
  
 [1]+  Segmentation fault  mozilla
 
 It stops...
 
 The weird thing is that the nightly build (tar.gz) works (unpack it
 into my homedir, and run it from there)...
 
 Unless anyone's got a bright idea's about what's going on with nNCL
 / what I'm doing wrong, I'm waiting for M14 ;-) Otherwise, please let 
 me know. 
 
 If anyone is interested, I'll put my src.rpm up somewhere (on my own 
 box, or in /incoming, or some other location)...
 
 Stefan
 
 PS: I'd love to check the mozilla newsgroups, but my ISP's newsfeed
 is dead since Thursday :-/
 



Re: [Cooker] Re netscape-*-4.72-1mdk

2000-02-26 Thread Tom

On Sat, 26 Feb 2000, you wrote:
 Well from "clueless in Juneau"
 
 The netscape 4.72-1mdk common and communicator rpms
 installed and ran okay on my test hybrid 7.0/cooker 
 
 No messages of any kind !?
 
 So far so good at that machine anyway !
 
 William Bouterse
 Juneau Alaska

   Hey Bill,  mdk 7.0, same report here, no problems.  I downloaded
the 4.72 rpms today, made a temp dir for them (/ns) and  'cd' to
it,   then 'ls':
netscape-common-4.72-1mdk.i586.rpm  netscape-navigator-4.72-1mdk.i586.rpm
   then:
/root/ns rpm -Uvh --replacepkgs *.rpm
netscape-common ##
netscape-navigator  ##
/root/ns

 ... and as I expected, my bookmarks, settings, and the real
player setup were kept intact.  now I've got NutScrape 4.72   So
what's the fuss about ??  
-- 
.. Tom Brinkman, lower 48, formerly Tonsina, AK   [EMAIL PROTECTED]
  



Re: [Cooker] Re: xmanager!

2000-02-26 Thread Roger

no-offense, but i've known this.  thing is, i can't find "any" direct how-to's.
 this i should be pressumabley listed within a "local lans" section.

btw: i've picked up the o'reilly book on x.  scanned thru it.  the answer
might've been listed by plucking and pulling little "hints" thru-out the
chapter but found no info besides setting up "xdm" on the same computer.  not
too much on veiwing remote computer by "x".   maybe i didn't get/find the right
one.

i've been ruthlessly searching for some type of how-to on this x/remote stuff. 
nothing.

posted in several linux newsgroups.
nothing.

Surprise!

your the first that has said anything.

Guess once people get their stuff up and running, they forget to document their
techniques.  Of course, this last statement is "no surprise" to me, as i'm in
the same arena.

Thanx for your info on setting it up.  i already new about the "built into the
roots" deal, but after searching 2 mos. for the routing, was rediculous in my
opinion..  the farthest i've gotten with this thang, is the remote command line
logins/rlogins.  bummer

 

On Sat, 26 Feb 2000, you wrote:
 from the quill of Roger [EMAIL PROTECTED] on scroll
 00022616453400.02753@cx640487-b
  I love it!
 
 Good.
 
  This is what i've been trying to do with my 2 linux boxes for some
  time now.
 
 Trying?  In what way?  It just works.  :-)  It's called X-windows. 
 Working remotely is just one of the things that was built into the roots
 that whole shemazle that some think is just "a gui on linux".
 
  (o...wow, can even copy/paste between win98/linux
  appsawesome!)
 
 Dude, where have you been?  :-)  There are umpteen of these things lying
 around.  It is basically just an X-server on Windows.  There are a
 number of companies in this business and have been for a while now.
 
  If anyone has any advice on how i "should be" able to do this between
  my 2
  linux boxes w/o buying this (probabely expensive package) let me know.
 
 There are dozens of of O'Reilly books on X.  You really should look into
 getting one or two if you did not know this was possible between two
 Unix/Linux boxes.
 
 If you have two boxes, A and B (their hostnames) and you are on box B
 and want to run a gui app on box A and see it on box B do the following
 (B$ is the command prompt on box B and A$ is the command prompt on box
 A, and text between the [ ] are comments for the reader):
 
 B$ xauth list $DISPLAY
 B/unix:0  MIT-MAGIC-COOKIE-1  sekrit_cookie_value
 B$ telnet A
 [ log into box A ]
 A$ xauth add B:0 MIT-MAGIC-COOKIE-1  sekrit_cookie_value
 A$ xterm 
 [ you will see a command window come up, it will be from box A ]
 A$ kmail 
 [ I have not used kmail, but presumably it's a kde mail application.
   In any case, it will "appear" on your display as well ]
 [ You can even exit out of your telnet session and come back to B and
   run things from the "xterm" command window that is left ]
 A$ exit
 B$ 
 
  i lveee itawesomethink ms was behind on this onelol
 
 Huh?  X-windows was developed in the mid-eighties!!  Remote access and
 all.  You know I just love it when Windows users awe and gasp at the
 wonder of Citrix.  X-windows re-implemented, just because MS thought
 re-inventing the wheel was a good idea.  Well at least if they re-invent
 it they can keep it a "sekrit" and bend'n'ream their customers for the
 right to use it.
 
  (just wrote this email w/i my remote win98 computer w/i the "xmanager"
  with the
  "kmail" utility!)  
 
 Yeah, amazing ain't it?  :-)
 
 b.
 
 
 --
 Brian J. Murrell  InterLinx Support Services, Inc.
 North Vancouver, B.C. 604 983 UNIX
 Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD
-- 



Sent from:

Lattitude (deg):32.7130
Longitude (deg):-117.1530
Altitude (ft):  410.0
GMT to Local (hrs): -8.0 (daylight savings enabled)



Created with Linux-Mandrake 7.0!

http://www.linux-mandrake.com/

Currently Beta Testing Mandrake Ver 7.0



RE: [Cooker] Re netscape-*-4.72-1mdk

2000-02-26 Thread geoffrey lee

hi,

mozilla is the next-generation of netscape.

you can continue to use the stable version of netscape, mozilla is still
currently under developement.

if you do want to give out mozilla a try, you can download a copy from
rufus...mandrake has rpms in the contribs section.


geoffrey lee (snail talk)
[EMAIL PROTECTED]

 -Original Message-
 From: Tom [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, February 27, 2000 12:33 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [Cooker] Re netscape-*-4.72-1mdk


 On Sat, 26 Feb 2000, you wrote:
  Well from "clueless in Juneau"
 
  The netscape 4.72-1mdk common and communicator rpms
  installed and ran okay on my test hybrid 7.0/cooker
 
  No messages of any kind !?
 
  So far so good at that machine anyway !
 
  William Bouterse
  Juneau Alaska

Hey Bill,  mdk 7.0, same report here, no problems.  I downloaded
 the 4.72 rpms today, made a temp dir for them (/ns) and  'cd' to
 it,   then 'ls':
 netscape-common-4.72-1mdk.i586.rpm  netscape-navigator-4.72-1mdk.i586.rpm
then:
 /root/ns rpm -Uvh --replacepkgs *.rpm
 netscape-common
 ##
 netscape-navigator
 ##
 /root/ns

  ... and as I expected, my bookmarks, settings, and the real
 player setup were kept intact.  now I've got NutScrape 4.72   So
 what's the fuss about ??
 --
 .. Tom Brinkman, lower 48, formerly Tonsina, AK   [EMAIL PROTECTED]





[Cooker] Re[2]: xmanager!

2000-02-26 Thread Brian J. Murrell

from the quill of Roger [EMAIL PROTECTED] on scroll
00022621140100.02988@cx640487-b
 no-offense, but i've known this.

You just seemed so "amazed" by it all.

 thing is, i can't find "any" direct how-to's.

"Direct" how-to's on what though?

 this i should be pressumabley listed within a "local lans" section.

Huh?

 btw: i've picked up the o'reilly book on x.  scanned thru it.

Maybe you need to read it rather than scan thru it.

 not
 too much on veiwing remote computer by "x".

What do you mean by "viewing remote computer"?  X is a display protocol,
nothing more.

 maybe i didn't get/find the right
 one.

I don't think I am grasping what you want to do.  Doing such is probably
outside the scope of this list however so perhaps we should just drop
it.

 i've been ruthlessly searching for some type of how-to on this
 x/remote stuff. 

What how-to?  There is nothing to write a how-to about.  You tell X
where you want to display the gui for the app, set up the permission to
do it and that is it.  I gave you the how-to for the most part in the
last message here.

 your the first that has said anything.

I guess it all seems pretty mindless to those of us who have been
working with X for as many years rather than getting lulled into the
"single display" world of MS-Windows.

 Guess once people get their stuff up and running, they forget to
 document their
 techniques.

But this is the point, there is nothing to document.  The document would
not be much larger than what I gave you.  What more do you need to know?

 Thanx for your info on setting it up.

You are welcome.  Very.

 i already new about the "built into the
 roots" deal,

You just seemed so amazed by it all is all.

  but after searching 2 mos. for the routing,

Routing?  What routing?

 was rediculous in my
 opinion..  the farthest i've gotten with this thang, is the remote
 command line
 logins/rlogins.  bummer

You sound like you need to do some reading rather than scanning.  Try
reading some books.  Start with the simple stuff, work up to the more
complicated stuff.  Draw yourself a "learning line" and keep to the
scheduled line.  It's so easy to get sidetracked.  And the most
important thing is to play and use logic and be resourceful to figure
out what you need to figure out.

Good luck

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



[Cooker] Re: Re netscape-*-4.72-1mdk

2000-02-26 Thread Brian J. Murrell

from the quill of WH Bouterse [EMAIL PROTECTED] on scroll
[EMAIL PROTECTED]
 Well from "clueless in Juneau"
 
 The netscape 4.72-1mdk common and communicator rpms
 installed and ran okay on my test hybrid 7.0/cooker 

Installed or upgraded?  Did you have a common/communicator RPM on there
before you put 4.72 on?  Was your rpm argument a "-i" or a "-U"?

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



[Cooker] Re: Re netscape-*-4.72-1mdk

2000-02-26 Thread Brian J. Murrell

from the quill of Tom [EMAIL PROTECTED] on scroll
[EMAIL PROTECTED]
 On Sat, 26 Feb 2000, you wrote:
 /root/ns rpm -Uvh --replacepkgs *.rpm

Why "--replacepkgs"?  Did you have the 4.72 packages on there already?

b.


--
Brian J. Murrell  InterLinx Support Services, Inc.
North Vancouver, B.C. 604 983 UNIX
Platform and Brand Independent UNIX Support - R3.2 - R4 - BSD



[Cooker] updates

2000-02-26 Thread Evandro Fernandes Giovanini

here's some packages to be updated:

AfterStep
abiword
apache
awesfx
gnome-libs
licq
qt2
wine

that's it



Re: [Cooker] Re[2]: Mozilla and fonts

2000-02-26 Thread Pablo Saratxaga

Kaixo!

On Sat, Feb 26, 2000 at 09:30:19AM -0800, Brian J. Murrell wrote:

 Or check that the directory of those fonts has :unscaled at the end of
 it.
 
 OK.  That all seems to work.  Shouldn't the XFree86-3.3.6 package
 have/do all that then?

Yes; and next one will do.

-- 
Ki a vos vye bn,
Pablo Saratxaga

http://www.ping.be/~pin19314/   PGP Key available, key ID: 0x8F0E4975



Re: [Cooker] Compiling C++ Programs

2000-02-26 Thread chmouel

Referenceccès: [EMAIL PROTECTED]
Organisation: MandrakeSoft
From: Chmouel Boudjnah [EMAIL PROTECTED]
Date: 26 Feb 2000 21:56:03 -0800
In-Reply-To: Ryan Wahle's message of "Sat, 26 Feb 2000 20:10:05 -0800"
Message-ID: [EMAIL PROTECTED]
Lines: 15
User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.5
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii

Ryan Wahle [EMAIL PROTECTED] writes:

 Hello,
 
 I am trying to compile some simple C++ programs and it seems no one on irc can tell
 me what package to install. I'm running Mandrake 7.0 and when I do a simple C++
 program that just prints hello world or something, it says it can't find iostream.h
 Could you please tell me what package I need to compile C++ programs and shouldn't
 this be defaulted when you install?

libstdc++-devel

-- 
MandrakeSoft  http://www.mandrakesoft.com/
 --Chmouel



Re: [Cooker] test ignore

2000-02-26 Thread Chmouel Boudjnah

tracer [EMAIL PROTECTED] writes:

 I am filtering all known mails to their proper boxes to reduce spam.
 if the addressee is NOT [EMAIL PROTECTED] mail like yours and
 some others end up in my spam box.
 Is there any reason for the  Mandrake devel [EMAIL PROTECTED]
 address being used to the cooker list?

yes know is the same list, if you want to set a filter set it on the
X-Loop:, for gnus i have someting like this :

  '(("Mandrake-Cooker" "X-Loop: [EMAIL PROTECTED]")))

-- 
MandrakeSoft  http://www.mandrakesoft.com/
 --Chmouel



Re: [Cooker] Re: Messages when installing netscape-*-4.72-1mdk

2000-02-26 Thread Chmouel Boudjnah

 I suppose it's possible, but I am not thinking probable.  This is the
 first time I got these kind of messages.  How can I verify if the
 database is damaged?  Is there some kind of "integrity test" that can
 be done?

rpm --rebuilddb should be safe.

 Did anyone else get these messages doing the upgrade of netscape
 common/communicator?

not me with common/navigator

-- 
MandrakeSoft  http://www.mandrakesoft.com/
 --Chmouel



Re: [Cooker] hackmozilla experiment not going too well... :-(

2000-02-26 Thread Stefan van der Eijk

Geoffrey,

 cn you put it somewhere? i would like to have a look...
Sure... grab it at:
http://c187122075.telekabel.chello.nl/~stefan/hackmozilla-5.0-0.CVS2226.1mdk.src.rpm

It's on my own machine which has a cable connection. Be gentle to it,
the
downstream bandwidth is limited :-(

Feel free to put it up somewhere where more people can access it...

Stefan



Re: [Cooker] Re: Re netscape-*-4.72-1mdk

2000-02-26 Thread WH Bouterse

Yep sorry about that meant to say -Uvh
That was over a decent working netscape 4.70-6mdk

It saved settings fin,e mptv, realplayer etc 
similiar to;
 ... and as I expected, my bookmarks, settings, and the real
player setup were kept intact.  now I've got NutScrape 4.72   So
what's the fuss about ??  
-- 
.. Tom Brinkman,

I have actually had decent success with the last Opera release
as well. Would like to try that cvs semi-stable version of Mozilla.
The M13 tgz was much worse than M12 on my machine

"Brian J. Murrell" wrote:
 
 from the quill of WH Bouterse [EMAIL PROTECTED] on scroll
 [EMAIL PROTECTED]
  Well from "clueless in Juneau"
 
  The netscape 4.72-1mdk common and communicator rpms
  installed and ran okay on my test hybrid 7.0/cooker
 
 Installed or upgraded?  Did you have a common/communicator RPM on there
 before you put 4.72 on?  Was your rpm argument a "-i" or a "-U"?


William Bouterse
(presently of Juneau Alaska)