[gentoo-user] emerge --depclean -p output looks weird

2008-04-04 Thread Dale
Hi, I run --depclean on occasion just to clean out some old cruft. I got this output a bit ago and it is well . . . confusing me. Here it is: [EMAIL PROTECTED] / # emerge -p --depclean *** WARNING *** Depclean may break link level dependencies. Thus, it is *** WARNING *** recommended to

Re: [gentoo-user] Ot - Problem with CUPS server

2008-04-04 Thread Tim
Michael Sullivan wrote: > On Thu, 2008-04-03 at 10:22 -0400, David wrote: >>> Most recent messages in /var/log/cups/error_log: >>> >>> I [03/Apr/2008:08:19:57 -0500] Listening to :::631 on fd 2... >>> I [03/Apr/2008:08:19:57 -0500] Listening to 0.0.0.0:631 on fd 3... >>> I [03/Apr/2008:08:19:57 -05

Re: [gentoo-user] Re: Emergency shutdown, how to?

2008-04-04 Thread Mark Knecht
On Fri, Apr 4, 2008 at 2:50 PM, Neil Bothwick <[EMAIL PROTECTED]> wrote: > On Fri, 4 Apr 2008 14:05:42 -0700, Mark Knecht wrote: > > > I tried ALT + SysRq + EISUB today on my MythTV backend server which > > has been crashing lately. Unfortunately it's crashing so badly that > > even at the serve

Re: [gentoo-user] Re: Emergency shutdown, how to?

2008-04-04 Thread Neil Bothwick
On Fri, 4 Apr 2008 14:05:42 -0700, Mark Knecht wrote: > I tried ALT + SysRq + EISUB today on my MythTV backend server which > has been crashing lately. Unfortunately it's crashing so badly that > even at the server's keyboard this didn't work. Do you have CONFIG_MAGIC_SYSRQ=y in your kernel confi

Re: [gentoo-user] Re: Emergency shutdown, how to?

2008-04-04 Thread Mark Knecht
On Wed, Apr 2, 2008 at 10:48 AM, Neil Bothwick <[EMAIL PROTECTED]> wrote: > On Wed, 02 Apr 2008 19:40:37 +0200, Michael Schmarck wrote: > > > > Neil even proposed ALT + > > > SysRq + EISUB, to be sure everything is killed, sync'd and > > > unmounted. > > > > Which might or might not work. But

Re: [gentoo-user] Emergency shutdown, how to?

2008-04-04 Thread Steven Lembark
> I learned a lot with this ordeal. One thing is that the P/S's > protection circuit must have worked very well. My mobo is doing just > fine so no damage outside of the P/S itself. I also learned that the > halt -f -p command should be really fast if this happens again. > > Keep those thoughts

Re: [gentoo-user] Laptop keeps freezing

2008-04-04 Thread Dale
Grant wrote: Dale said this part. o_O Do you recall what you did? Recompile a package? Blow out some dust bunnies? Cross your toes? I believe it stopped freezing after it's periodic ext3 filesystem check after a reboot, but it didn't report any type of error after the check. Another

Re: [gentoo-user] Emergency shutdown, how to?

2008-04-04 Thread Dale
Steven Lembark wrote: I have four FAH jobs running on my compute server. I can "kill -TERM fah6" in about 0.70 sec here, they start up again and just keep going. FAH is pretty robust when it comes to restarts; again if you crash the proc's then it won't be any worse than the outcome of loosing p

[gentoo-user] Streamtuner doesn't show Shoutcast genres

2008-04-04 Thread Max
Hello I use streamtuner to tune into Shoutcast streams. Usually it shows a list with genry categorys which is very usefull. But since a while I can only access the "Top Streams" List and thats the end of it, no more categorys. I tried to reset the app by deleting the setting directory, without an

Re: [gentoo-user] Emergency shutdown, how to?

2008-04-04 Thread Steven Lembark
>>> In most cases you'll find that 'shutdown -h now' >>> takes only a few seconds. >>> >> >> you must have nice hardware :) >> > > He must have. I have a AMD 2500+ CPU with 1Gb of ram. It's not the > slowest but not the fastest either. Pair of dual-PIII VA Linux machines, one compute server wit

Re: [gentoo-user] Emergency shutdown, how to?

2008-04-04 Thread Steven Lembark
Dale wrote: > Steven Lembark wrote: >> >> > Well, this one takes longer. Just the foldingathome takes about 20 >> > seconds or more to shutdown. It can take over 60 seconds at times. >> > That service for some reason has to completely shutdown before the >> > others start to shutdown. The others

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Denis
> Actually a think my question must be "Wich one did you use?" correct?, I > wrote wrong, didn't I? Yea, it should be "Which one did you use?" :-) -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
Good Actually a think my question must be "Wich one did you use?" correct?, I wrote wrong, didn't I? Thanks in advance. :D On Sat, Apr 5, 2008 at 11:01 AM, Denis <[EMAIL PROTECTED]> wrote: > Here's the simple program that demonstrates usage that's good enough for > me: > > #include > #include

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Denis
Here's the simple program that demonstrates usage that's good enough for me: #include #include int main () { mkdir("./mydata", 0777); return 0; } On Fri, Apr 4, 2008 at 11:22 AM, Francisco Rivas <[EMAIL PROTECTED]> wrote: > :D Good. Wich one you used? > > > > On Sat, Apr 5, 2008 at 10:

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
:D Good. Wich one you used? On Sat, Apr 5, 2008 at 10:50 AM, Denis <[EMAIL PROTECTED]> wrote: > Thank you for all the quick replies! That answers my question :-) > -- > gentoo-user@lists.gentoo.org mailing list > > -- Francisco Rivas http://www.vaslibre.org.ve - And on the seventh day God sa

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Denis
Thank you for all the quick replies! That answers my question :-) -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Markus Schönhaber
Denis wrote: > Does anyone know if a directory can be created from inside a C program > and how that is done? man 2 mkdir Regards mks -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Francisco Rivas
I found this : #include int main(int argc,char **argv){ if (argc < 2) exit(1); mkdir(argv[1],0777); return 0; } http://gd.tuwien.ac.at/languages/c/programming-dmarshall/node20.html I hope that can help you :D On Sat, Apr 5, 2008 at 10:27 AM, Denis <[EMAIL PROTECTED]> wrote: > Does anyone know

Re: [gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Ale
2008/4/4, Denis <[EMAIL PROTECTED]>: > > Does anyone know if a directory can be created from inside a C program > and how that is done? Suppose I run the code from my own directory > /home/mydir, and I want the code to create a directory > /home/mydir/mydata, where data is to be written, what woul

[gentoo-user] [OT] mkdir in a C program?

2008-04-04 Thread Denis
Does anyone know if a directory can be created from inside a C program and how that is done? Suppose I run the code from my own directory /home/mydir, and I want the code to create a directory /home/mydir/mydata, where data is to be written, what would the format for such a command be? Also, when

Re: [gentoo-user] Laptop keeps freezing

2008-04-04 Thread Grant
> > > |> My Gentoo laptop keeps freezing. It will stay up for about 30 > minutes > > > |> and then stop responding altogether. I've checked the logs but > there > > > |> is nothing informative there. I'm all up to date with packages. > How > > > |> do you troubleshoot something like this? >

Re: [gentoo-user] Re: installing vmware?

2008-04-04 Thread Thierry de Coulon
On Friday 04 April 2008, Francesco Talamona wrote: > > VirtualBox can be configured in either way! > http://www.virtualbox.org/wiki/Advanced_Networking_Linux > > Ciao > Francesco Many Thanks! I'll give it a try. Not being a network expert, I must admit I used the wizards... and virtualboy

[gentoo-user] rsync script

2008-04-04 Thread Kaushal Shriyan
hi I have the script http://pastebin.com/d4b062d28 and the roots cron entry are as below 30 2 * * * su sms /usr/local/bin/testrsync_mysql.sh I am getting the below error building file list ... rsync: opendir "/var/lib/mysql/wordpress" failed: Permission denied (13) done mysql/ib_logfile0 mysql/

Re: [gentoo-user]

2008-04-04 Thread Dale
Neil Bothwick wrote: On Fri, 04 Apr 2008 01:37:10 -0500, Dale wrote: Maybe it was in braille? o_O No, my screen was still smooth as well as blank :) I'd say the answer is a definite maybe. H, that was something else on my screen then. Someone sneeze? O_O Dale :-) :-)

Re: [gentoo-user]

2008-04-04 Thread dexters84
Neil Bothwick pisze: On Fri, 04 Apr 2008 01:37:10 -0500, Dale wrote: Maybe it was in braille? o_O No, my screen was still smooth as well as blank :) I'd say the answer is a definite maybe. There is nothing to laugh about - it's M$'s new mail filtering system. if [ $user = $w

Re: [gentoo-user]

2008-04-04 Thread Neil Bothwick
On Fri, 04 Apr 2008 01:37:10 -0500, Dale wrote: > Maybe it was in braille? o_O No, my screen was still smooth as well as blank :) I'd say the answer is a definite maybe. -- Neil Bothwick I am Tagline of Borg. Prepare to assimilate me. signature.asc Description: PGP signature

[gentoo-user] problem with pear-mail (probably)

2008-04-04 Thread Marcin Niśkiewicz
HelloI have apache on gentoo installed. Everything seems OK despite that I can't send mail from my site. There's a notice:authentication failure [SMTP: Invalid response code received fromserver (code: 535, response: 5.7.0 Error: authentication failed:another step is needed in authentication)]Whe