Re: Slow KDE?

2003-12-12 Thread Diego Iastrubni
, 12 2003, 02:03,Meir Kriheli: if XP boots up in 30 secs (10 if you hybernate) linux should be able to do something similar as well. this is un-exceptable. It's not that simple. XP boots in 30 seconds, but it's not ready to use, only appears so. Try executing something it'll take it's

ignoring setgid

2003-12-12 Thread Noam Meltzer
Hi, Assume a situation where I have a program, lets sat: /usr/bin/myprog which the permissions on it are: rwxr-sr-x now, i'm not the owner of the program, but a member of its group. but, i don't want to run this program and getting it change my effective gid. is there a way preventing it from

Re: ignoring setgid

2003-12-12 Thread Behdad Esfahbod
The only way I can think of is: cp /usr/bin/myprog ~ chmod g-s ~/myprog ~/myprog behdad On Fri, 12 Dec 2003, Noam Meltzer wrote: Hi, Assume a situation where I have a program, lets sat: /usr/bin/myprog which the permissions on it are: rwxr-sr-x now, i'm not the owner of the program, but a

Re: Slow KDE?

2003-12-12 Thread Tzafrir Cohen
On Thu, Dec 11, 2003 at 10:49:27PM +0200, Diego Iastrubni wrote: way slow. my amd xp 1600+ boots up (5 secs waiting in lilo and 5 secs waiting in gdm until autoload) in about 40-50 seconds (it can get it less if i move the adsl script to run after dm, then it will dial while *dm is

Re: ignoring setgid

2003-12-12 Thread Shachar Tal
Behdad Esfahbod wrote: The only way I can think of is: cp /usr/bin/myprog ~ chmod g-s ~/myprog ~/myprog That, or mounting that file system with nosuid option, but this is probably not what you want :) Shachar. behdad On Fri, 12 Dec 2003, Noam Meltzer wrote: Hi, Assume a situation

Re: ignoring setgid

2003-12-12 Thread Alex Chudnovsky
On Friday 12 December 2003 15:53, Behdad Esfahbod wrote: The only way I can think of is: cp /usr/bin/myprog ~ chmod g-s ~/myprog This is unnecessary. Copying doesn't set the setuid and setgid permission bits for the destination file. [EMAIL PROTECTED] exercises]$ chmod u+s constructors

Re: Slow KDE?

2003-12-12 Thread Diego Iastrubni
, 12 2003, 16:22,Tzafrir Cohen: if XP boots up in 30 secs (10 if you hybernate) linux should be able to do something similar as well. this is un-exceptable. How about linux when hybernating? susp whatever it's called? not that good. kernel boots, init is called, and then it detects it

Re: Slow KDE?

2003-12-12 Thread Ori Idan
KDE has always been slow for me, I moved to GNOME and now I am much happier. I am not talking about boot time, that is not very interesting since I hardly boot my computer, only when I have to go to windows. -- Ori Idan = To

Re: ignoring setgid

2003-12-12 Thread Behdad Esfahbod
BTW, something people may not know. If you own a file with a group owner that you are not a member, then you cannot change the sgid bit on the file. b On Fri, 12 Dec 2003, Alex Chudnovsky wrote: On Friday 12 December 2003 15:53, Behdad Esfahbod wrote: The only way I can think of is: