Unix chmod permissions


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Unix chmod permissions
# 1  
Old 04-24-2006
Unix chmod permissions

Hello all,

Trying to do the following.

1. Run Windows installer from a unix server.
2. Let user run the shortcut but not allow access to the folder where the exe itself is running.

What I have done so far:
1. Copied the application to the server and placed in a folder called "data".
2. Created a shortcut of the executable and placed it to the parent of the data folder.

Question:How do I give the user access to run the executable but not give the access to enter the data folder?

Using samba and windows xp. I've done it previously using: chmod o-rw+x <directory> command but executing the command doesn't work currently.

essentially I would like the directory executable but not browse-able.

thanks
# 2  
Old 04-25-2006
Quote:
Question:How do I give the user access to run the executable but not give the access to enter the data folder?
running the executable is in turn locating the executable and running,
where without a read permission on the executable how is it possible to load that in memory as a running segment?

Quote:
essentially I would like the directory executable but not browse-able.
how do you differentiate between executable and browse-able?
Browse-able is nothing but able to cd to the directory and listing the files
Executing on a directory is listing the contents in it.
# 3  
Old 04-25-2006
Quote:
Originally Posted by matrixmadhan
running the executable is in turn locating the executable and running,
where without a read permission on the executable how is it possible to load that in memory as a running segment?


how do you differentiate between executable and browse-able?
Browse-able is nothing but able to cd to the directory and listing the files
Executing on a directory is listing the contents in it.

I see you point. The objective that I would like to accomplish is the following. Store programs on the server and provide the users a shortcut to the executable however not allow the users to click and drag the entire software installer package from the server.

any insight would be appreciated.

thanks.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Access permissions chmod 606

Hi All I am running Ubuntu linux flavour. I need provide multiple users belonging to the same group access to a dir where they can write files but are not supposed to remove or rename files. users outside the group should be able to read and write to the dir. i have set the permission of... (7 Replies)
Discussion started by: Simza
7 Replies

2. UNIX for Dummies Questions & Answers

Unix Find and Chmod Question

I have a folder called "test" and this folder contains lots of other folders as sub folders, i intend to search for all file ending with .bin and then change the files to executable please how do i do this ---------- Post updated at 10:48 AM ---------- Previous update was at 10:42 AM ----------... (3 Replies)
Discussion started by: oyesiji
3 Replies

3. UNIX and Linux Applications

What is the difference between chmod in solaris and chmod in Linux?

i think it is the same in both... Iam i right? (1 Reply)
Discussion started by: sumaiya
1 Replies

4. UNIX for Dummies Questions & Answers

changing permissions on a 444 file (ie chmod 444)

if I have a file set to permisions 444 (r-- r-- r--) should anyone other than the owner and root be able to change these permissions or delete the file. Apologies if this is a no-brainer but I cant test it myself and someone in our organisation is playin around with files they shouldnt be (1 Reply)
Discussion started by: ajcannon
1 Replies

5. UNIX for Dummies Questions & Answers

ls and chmod numeric permissions

Hello, When I do a "ls -l" I can see my directories have drwxr-xr-xr. I am more used to the chmod numerical syntax like 755. Is there an easy way to list out the numerical permissions rather than rwx etc. (1 Reply)
Discussion started by: rondebbs
1 Replies

6. UNIX for Advanced & Expert Users

Does UNIX-Chmod in windows exist?

Is there an command in windows to chmod a file to 666 so that when I mount a NAS on solaris, the user can read/write/remove the file from unix server? Traditionally, we invoke ftp from unix to windows, get the file and remove it. With a NAS, can windows chmod the file 666 so that unix can edit... (2 Replies)
Discussion started by: izy100
2 Replies

7. UNIX for Advanced & Expert Users

chmod (permissions) * not working on remote server

Hi gurus ! I am developing a FTP script which will copy all the files from one server to another server and then I need to use CHMOD 755 * to set permissions of all the files just copied to the remote server. mput * chmod 755 * CHMOD gives me an error CHMOD works fine If I specify... (3 Replies)
Discussion started by: sdlayeeq
3 Replies

8. UNIX for Dummies Questions & Answers

chmod permissions

Is there any way that you can set it up so when you create a file it has the chmod permissions of u+x? I am not a root user on the system (1 Reply)
Discussion started by: himurak
1 Replies

9. UNIX for Dummies Questions & Answers

directory permissions and CHMOD

I am working on a new UNIX box that has been delivered to us, and noticed that the /home directory has 555 permissions on it (dr-xr-xr-x). Any attempt to create write permissions fails on this directory (such as chmod 777), responding only with a message; chmod: WARNING: can't change home ... (3 Replies)
Discussion started by: ncarmstrong
3 Replies
Login or Register to Ask a Question