Re: SuSE SLES8 zSeries iptables: defining a policy for a subnet ???

2004-08-11 Thread Guillaume Morin
.xx.xxx.xxx/12 -d 10.x.x.x/8 etc. You can also use plain masks (/255.0.0.0 instead of /8). -- Guillaume Morin [EMAIL PROTECTED] If it doesn't work, force it. If it breaks, it needed replacing anyway. -- For LINUX-390 subscribe

Re: C++ name unmunging

2004-08-08 Thread Guillaume Morin
the 'ZN11' '_2_413' stuff mean? Yes, see http://www.codesourcery.com/cxx-abi/abi.html#mangling -- Guillaume Morin [EMAIL PROTECTED] A part of me left that only you knew will never be understood (RHCP) -- For LINUX-390

Re: mysql

2004-01-16 Thread Guillaume Morin
James did. I don't think so, the error is too low-level. It means the client lib has not been able to reach the server. Imho the problem is clearly the path of the UNIX socket. So a config file perm problem could be a valid explanation. -- Guillaume Morin [EMAIL PROTECTED

Re: mysql

2004-01-14 Thread Guillaume Morin
line or create a my.cnf file for users who want to connect to the MySQL server. -- Guillaume Morin [EMAIL PROTECTED] Batailler corps et bmes pour un maudit refus (No one is innocent)

Re: 2.6 kernel on zLinux

2004-01-05 Thread Guillaume Morin
/ctc echo 0.0.0cc0,0.0.0cc1 group cd 0.0.0cc0 echo 3 protocol echo 1 online then ifconfig/route etc. -- Guillaume Morin [EMAIL PROTECTED] Marry me girl, be my only fairy to the world (RHCP)

Re: Setuid programs on SLES 7 8

2004-01-05 Thread Guillaume Morin
not think you risk much by removing the setuid bit on those. Just more sysadmin work maybe. ping might be used by some scripts .. Those are fairly common and standard tools so you can expect that they drop root privileges asap. So it is not certain that it is really worth the trouble. -- Guillaume Morin

Re: OT: New Mac G5

2003-10-30 Thread Guillaume Morin
though. - I would *LOVE* to be able to boot AIX on this thing, but I have no idea if that is possible I am sure some version of AIX supports the ppc970. But I am sure they're going to support the rest of the mac hardware. -- Guillaume Morin [EMAIL PROTECTED] She wears her tears

Re: New Mac G5

2003-10-30 Thread Guillaume Morin
://www.linuxppc64.org/ You probably know this, but a 32 bit kernel can only use 4G of RAM on PPC. Actually Linux 2.4 and 2.6 supports only 3Gb on 32-bits archs. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] Remember when we'd celebrate. We'd drink and get high until late

Re: OT: New Mac G5

2003-10-30 Thread Guillaume Morin
Dans un message du 30 Oct ` 14:38, Matt Zimmerman icrivait : You mean support for the G5 specifically, and not the powerpc port in general, right? Yes indeed. -- Guillaume Morin [EMAIL PROTECTED] Le jour de mon enterrement j'irais bien faire du skate entre les tombes

Re: New Mac G5

2003-10-30 Thread Guillaume Morin
Dans un message du 30 Oct ` 12:00, Fargusson.Alan icrivait : It supports 3G virtual per process, and 4G of RAM on 32 bit. Yes, you're right. I mixed up. Actually 64G RAM on Pentium with PAE. There is a patch to allow 4G virtual per process. Right again, sorry for the noise. -- Guillaume

Re: OT: New Mac G5

2003-10-30 Thread Guillaume Morin
instruction set as the G4 in 32 bit mode... So you should be able to run hercules out of the box ... Panther is not even 64 bit yet ... Am I missing anything ? Guillaume. -- Guillaume Morin [EMAIL PROTECTED] I am the saddest kid in grade number two

Re: OT: New Mac G5

2003-10-30 Thread Guillaume Morin
instruction set though. My point was related to userspace execution of 32 bit applications anyway. I don't know what the split for virtual memory is on Mac OS x. Does it give you 3G, 4G, 2G? 4G. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] A friend in need is a friend indeed. A friend

Re: OT: New Mac G5

2003-10-30 Thread Guillaume Morin
a kernel in 64 bit mode (such as Linux), you can run 32 bit and 64 bit userpace apps. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] 5 years from now everyone will be running free GNU on their 200 MIPS, 64M SPARCstation-5 (Andy Tanenbaum, Jan 30st 1992)

Re: 1.4 JDK and C++

2003-09-29 Thread Guillaume Morin
mismatch). So you need to build your app with gcc 2.95 if libjvm is C++ ... If it is written in C, there shouldn't be any problems. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] Rosebud

Re: your mail

2003-09-23 Thread Guillaume Morin
. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] Oh, that is nice out there, I think I'll stay for a while (RHCP)

Re: your mail

2003-09-23 Thread Guillaume Morin
really interested. Is there a doc somewhere ? I am more a Linux guy than a mf guy so all of this is a bit new to me. Thanks. -- Guillaume Morin [EMAIL PROTECTED] I am the saddest kid in grade number two (Lisa Simpson)

Re: Any new SuSE vs RedHat arguments?

2003-09-19 Thread Guillaume Morin
. Come on :) , it is trivial to get one package with the utils for something as common... I really have no preference for any for Redhat or SuSE, but you're being a bit unfair. Guillaume. -- Guillaume Morin [EMAIL PROTECTED] Useless device, it won't suffice. I want a new game to play. (Muse)

Re: Any new SuSE vs RedHat arguments?

2003-09-19 Thread Guillaume Morin
financial data. You like Debian then :-) Guillaume. -- Guillaume Morin [EMAIL PROTECTED] What is the point of trying to dream anymore ? (Alanis Morisette)

Re: chown problems

2003-09-18 Thread Guillaume Morin
chown to a process. This would require a wrapper and the use of sudo for safety. It is much easier to use sudo directly for chown :) -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development

Re: chown problems

2003-09-18 Thread Guillaume Morin
Huge security hole Why ? The systems which allow the non-privileged use of chown drops the setgid and setuid bits when changing the owner. -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development On Thu, 2003-09-18 at 15:00, Little, Chris wrote: yuck. coming from HP-UX

Re: chown problems

2003-09-18 Thread Guillaume Morin
yuck. coming from HP-UX, it allows you to give a file to another owner. So install sudo and give those users the right to use chown without any password. Adding something like alias chown='sudo chown'. Linux drops the setuid and setgid bits when changing ownership. Guillaume. -- Guillaume

Re: chown problems

2003-09-18 Thread Guillaume Morin
Do all of them? Because, yes, that's the hole I was thinking of. I would not bet on the all. It is too easy to get bitten by that one :) But iirc POSIX requires that for unprivileged use. (there is no standard for privileged use). Guillaume. -- Guillaume Morin [EMAIL PROTECTED] IBM

Re: chown problems

2003-09-18 Thread Guillaume Morin
Dans un message du 18 sep ` 16:24, Alex deVries icrivait : I suppose if you really didn't like this behaviour, you could write your own setuid version of chown. It is best way to open an huge security hole. It is better to use sudo. -- Guillaume Morin [EMAIL PROTECTED] Debian - What

Re: Problem with Linux/390 asm-s390 Include files?

2003-08-08 Thread Guillaume Morin
-- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development Mark Post -Original Message- From: John Summerfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 8:30 PM To: [EMAIL PROTECTED] Subject: Re: Problem with Linux/390 asm-s390 Include files? And you

Re: assembler listing for Gnu compiler

2003-08-07 Thread Guillaume Morin
I've notice that zSeries is not a recogized hardware type at http://gcc.gnu.org/onlinedocs/gcc/ huh ? http://gcc.gnu.org/onlinedocs/gcc/S-390-and-zSeries-Options.html#S%2f390%20and%20zSeries%20Options -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development Thanks

Re: Question on SuSE SLES for s390 with kernel timer patch .....

2003-07-31 Thread Guillaume Morin
to the modular nature of netfilter, it's been possible to write a ipchains compatibility plugin for netfilter. So you can use the ipchains binary to configure netfilter (provided your kernel supports it) but you can use all of its advanced features. -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK

Re: Stripping trailing blanks?

2003-07-28 Thread Guillaume Morin
overwrite the file. It is really a disaster if root runs this command. Guillaume -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development

openafs on sles8

2003-06-11 Thread Guillaume Morin
Hi folks, I had a s390 box(sles7.2) running openafs just fine. I recently installed sles8 amd recompiled openafs latest release. But any operations in the /afs directory freezes the box. Is anyone using openafs on sles8 or had the same problems ? Thanks in advance. -- Guillaume Morin [EMAIL

Re: /proc/dasd/devices

2003-06-06 Thread Guillaume Morin
Can anyone refresh my memory? What do I echo to /proc/dasd/devices to get the kernel to find a new DASD pack? Thanks. Yes, just echo add range=xxx-yyy /proc/dasd/devices. -- Guillaume Morin [EMAIL PROTECTED] IBM Poughkeepsie SAK Kernel Development