Re: [uug] Getting Novell Linux Desktop to work

2005-08-02 Thread Mark Gardner
On 8/1/05, Andrew McNabb [EMAIL PROTECTED] wrote: On Mon, Aug 01, 2005 at 10:30:53AM -0700, Michael Bright wrote: The motherboard you have described, doesn't have a proper linux driver for the sound card. Your sound card will have to be a PCI card. Also, the NIC, you probably have an

Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki]

2005-08-02 Thread Jordan Gunderson
Scott Paul Robertson wrote: Figured that this needed to be on UUG as well. Thanks. I tried posting there twice; don't know what went wrong. Jordy BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their author.

Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki]

2005-08-02 Thread Michael Torrie
On Tue, 2005-08-02 at 09:10 -0600, Jordan Gunderson wrote: Scott Paul Robertson wrote: Figured that this needed to be on UUG as well. Thanks. I tried posting there twice; don't know what went wrong. I saw both posts as well as SPRs psot, which between the plug and uug lists amounts to 5 or

Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki]

2005-08-02 Thread John Jonas
My first post in a long time. This is a total advertisement, but please bear with me. It's for a good cause. Fall semester Paul Allen is teaching a class in the marriott school about Internet Marketing. Paul started My Family.com and Ancestry.com. He has had amazing success in internet

Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki]

2005-08-02 Thread John Jonas
Dang...I totally forgot to change the subject of the email I replied to... On 8/2/05, John Jonas [EMAIL PROTECTED] wrote: My first post in a long time. This is a total advertisement, but please bear with me. It's for a good cause. Fall semester Paul Allen is teaching a class in the

Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki]

2005-08-02 Thread Michael Torrie
On Tue, 2005-08-02 at 09:28 -0600, John Jonas wrote: Dang...I totally forgot to change the subject of the email I replied to... That and you forgot to not hijack a thread. :) -- Michael Torrie [EMAIL PROTECTED] BYU Unix Users Group http://uug.byu.edu/ The opinions

Internet Marketing (was Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki] )

2005-08-02 Thread Grant Robinson
On Aug 02, 2005, at 9:28 AM, John Jonas wrote: Dang...I totally forgot to change the subject of the email I replied to... Regardless of whether you change the subject line or not, replying to an email with a totally different topic is called hijacking and it is bad. :) If you are posting

Re: [uug] Paul Allen's Internet Marketing Class

2005-08-02 Thread Jordan Gunderson
John Jonas wrote: Fall semester Paul Allen is teaching a class in the marriott school about Internet Marketing... Paul really is an awesome guy who knows his crap. And he is involved with many more companies and not-for-profits [1] than those mentioned, although those are perhaps his most

[uug] Re: Software for Starving Students

2005-08-02 Thread D. Turnbull
Please let Lars (and anyone else interested) know that there is already an active SSS mailing list -- and we welcome any help we can get! Sign up for the list at: http://phantom.byu.edu/cgi-bin/mailman/listinfo/sss-dev We can use help in a number of areas, such as copy writing/editing, software

Re: [uug] Software for Starving Students and LUG Documentation Wiki

2005-08-02 Thread Jordan Gunderson
Jordan Gunderson wrote: [snip] We're willing to set up an SSS mailing list (rather that triple posting to 3 lists), help pay for CD media out of our club funds, set up a package repository, or any anything else that project founders would like us to do. Lars pointed out that a mailing list

Re: [uug] Re: Software for Starving Students

2005-08-02 Thread Jordan Gunderson
D. Turnbull wrote: Please let Lars (and anyone else interested) know that there is already an active SSS mailing list -- and we welcome any help we can get! Sign up for the list at: http://phantom.byu.edu/cgi-bin/mailman/listinfo/sss-dev Just did, before I read your post. :) We can use

[uug] quad head on linux

2005-08-02 Thread John Jonas
I have 4 monitors hooked up and working on my linux box using 2 nvidia dual head cards. I can drag my mouse across all 4 screens but cannot drag windows across monitors that are hooked to different video cards. The top two monitors are hooked to one video card as are the bottom two. The panels

RE: [uug] quad head on linux

2005-08-02 Thread Robert LeBlanc
I believe your problem is that there are two screens. Somehow you would need this to be one screen. You should also only have one task bar for all four monitors. As far as how to do that, I've only used dual head nVidia cards in linux and never more then two monitors. I would be interested in how

[uug] keeping a process alive

2005-08-02 Thread me
Let's say I want to run a commandline php program, test.php #!/usr/local/bin/php ? for ($x=0;$x1000;$x++) { echo(hello world); sleep(10); } ? I SSH with putty and run ./test.php and it works nicely. Now I want to run it in the

Re: [uug] keeping a process alive

2005-08-02 Thread TJ Hunter
you need a program called 'screen' On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Let's say I want to run a commandline php program, test.php #!/usr/local/bin/php ? for ($x=0;$x1000;$x++) { echo(hello world); sleep(10); } ?

RE: [uug] keeping a process alive

2005-08-02 Thread Josh Coates
man screen Josh Coates www.jcoates.org -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, August 02, 2005 2:08 PM To: uug-list@phantom.byu.edu Subject: [uug] keeping a process alive Let's say I want to run a commandline

Re: [uug] keeping a process alive

2005-08-02 Thread Michael Torrie
On Tue, 2005-08-02 at 15:07 -0500, [EMAIL PROTECTED] wrote: That's not very nice. What you are looking for is a way of disconnecting the process from the terminal. While screen can be used, it is not quite what you want. Bash has a command called disown (it's a shell command not a unix

Re: [uug] keeping a process alive

2005-08-02 Thread Lars Rasmussen
On 8/2/05, Josh Coates [EMAIL PROTECTED] wrote: man screen Roblimo gives good explanations usages of the Screen utility in this article: http://tinyurl.com/7fbbs -- Lars BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the

Re: [uug] keeping a process alive

2005-08-02 Thread Derek Davis
disown should do it. run it in the background, then type disown, and you should be able to quit and it will keep running. A big downside of this compared to screen is that you cannot then reattach to the process, that I know of. Derek On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Re: [uug] keeping a process alive

2005-08-02 Thread me
Thanks, y'all. FYI, disown didn't seem to work for me (the process still died for some reason), but nohup works nicely: nohup test.php mrb disown should do it. run it in the background, then type disown, and you should be able to quit and it will keep running. A big downside of this

Re: Internet Marketing (was Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki] )

2005-08-02 Thread Jamey West
John Jonas wrote: This class is a full semester and Paul has told me that he's basically going to teach everything he knows. He's also told me that the students who will benefit the most from the class will be CS students. The reason being that they have the ability to go implement the things

Re: Internet Marketing (was Re: [uug] [EMAIL PROTECTED]: Software for Starving Students and LUG Documentation Wiki] )

2005-08-02 Thread John Jonas
Does that mean I should probably contact the teacher first and make sure it's okay? Nope, it's ok. He's already told me he wants as many CS students as possible. John On 8/2/05, Jamey West [EMAIL PROTECTED] wrote: John Jonas wrote: This class is a full semester and Paul has told me that

Re: [uug] keeping a process alive

2005-08-02 Thread James Nickerson
On Tuesday 02 August 2005 14:26, [EMAIL PROTECTED] grooved on as follows: Thanks, y'all. FYI, disown didn't seem to work for me (the process still died for some reason), but nohup works nicely: I've found I need some command line switches for disown to do what you're wanting. Of course, I

Re: [uug] Paul Allen's Internet Marketing Class

2005-08-02 Thread Bryan Murdock
On 8/2/05, Jordan Gunderson [EMAIL PROTECTED] wrote: John Jonas wrote: Fall semester Paul Allen is teaching a class in the marriott school about Internet Marketing... Paul really is an awesome guy who knows his crap. And he is involved with many more companies and not-for-profits [1]

Re: [uug] keeping a process alive

2005-08-02 Thread Bryan Murdock
On 8/2/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Let's say I want to run a commandline php program, test.php #!/usr/local/bin/php ? for ($x=0;$x1000;$x++) { echo(hello world); sleep(10); } ? I SSH with putty

Re: [uug] keeping a process alive

2005-08-02 Thread Gabriel Gunderson
On Tue, 2005-08-02 at 21:31 -0700, James Nickerson wrote: why torture yourself with superfluous knowledge. Come on, this is Linux we are talking about! BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their