http://qs321.pair.com?node_id=490641


in reply to no output

Please post a script that exhibits this behavior. My guess is that you have noexec set for the partition containing your program. Try copying your .pl file to /bin and running it from there (unless it deletes everything in the current directory, of course ;)

Replies are listed 'Best First'.
Re^2: no output
by joco10 (Novice) on Sep 09, 2005 at 17:08 UTC
    I tried it in the bin folder and it worked. What does that mean?
      Basically, your /home partition is set up to not allow programs to run from it. It's to prevent malicious code from running on your system. It can be disabled by editing /etc/fstab, but I advise you to create a directory in /usr to work on your code. Good luck!
        Thanks, That works.