![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Only Execute Permission for Others... | pbsrinivas | Shell Programming and Scripting | 3 | 06-09-2007 03:15 AM |
| wat is execute permission denied??? | ckng | UNIX for Advanced & Expert Users | 5 | 10-11-2006 06:41 PM |
| Need to execute 2 scripts, wait, execute 2 more wait, till end of file | halo98 | Shell Programming and Scripting | 1 | 08-01-2006 01:42 PM |
| without execute permission | Raom | Shell Programming and Scripting | 1 | 06-08-2006 01:31 AM |
| simple Unix Execute permission for "others" | jsudha | HP-UX | 1 | 07-26-2004 12:45 PM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
No permission to execute file
I am logged in as root and am trying to execute a file called x_cleanup_equdata but keep getting the message
ksh: x_cleanup_equdataNEW: 0403-006 Execute permission denied. I did FTP this file from another server using GET, would this make the difference? I tried chmod 666 but still no luck. any ideas? Thanks |
| Forum Sponsor | ||
|
|
|
|||
|
You was on the right way with chmod .. but you took the wrong numbers: for executing a file you should use 777.
4=read 2=write 1=exec so If you combine 4 + 2 you come to 6 and thats only read + write ... so add 1 to 7 and exec is also included. hope this helps br |
|
|||
|
Sure does. Thanks. I never used this forum before so was unsure of a response and looked up a unix manual and found the command chmod +x [filename]. This also worked by the way but your way is more descriptive of how to chnage pemrissions.
|
|||
| Google UNIX.COM |
| Thread Tools | |
| Display Modes | |
|
|