Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [condor-users] Linux problem
- Date: Thu, 16 Oct 2003 09:51:27 -0500
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [condor-users] Linux problem
On Thu, Oct 16, 2003 at 10:23:48AM +0200, Roberto González wrote:
> I´m using a linux Red Hat 7.3 distribution.
>
> The submit file is:
>
> universe = vanilla
> requirements = (OpSys == "LINUX")
> executable = prueba.sh
> output = prueba.out
> error = prueba.err
> log = prueba.log
> queue
>
> And the prueba.sh file only contains:
>
> pwd
>
That's your problem - that's not a valid executable, the kernel
doesn't know how to execute it.
Change prueba.sh to be
#!/bin/sh
pwd
And it'll work.
-Erik
Condor Support Information:
http://www.cs.wisc.edu/condor/condor-support/
To Unsubscribe, send mail to majordomo@xxxxxxxxxxx with
unsubscribe condor-users <your_email_address>