• February 23, 2025, 06:50:45 AM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: cannot execute files on vista using 323  (Read 6181 times)

chuckv

  • Level 2 Member
  • **
  • Posts: 88
cannot execute files on vista using 323
« on: March 12, 2008, 02:52:21 PM »

hi all,

i think this has been braught up before, either here or another forum.. just cant find it anymore

anyways, to revisit this subject, i have the following issue

as per normal use, i use the 323 to store files, this includes application installation files. anyways, when i double click on an executable to start an install where the file is located on the 323, i am unable to do so. permission denied (i think is the error)

was there a fix / workaround for this?

cheers
Logged

chuckv

  • Level 2 Member
  • **
  • Posts: 88
Re: cannot execute files on vista using 323
« Reply #1 on: March 30, 2008, 05:42:30 PM »

hmm.. no response

anyways, my work around is the chmod +777 to all files via telnet. however, it seems almost every month i have to do this. no reason as to why i have to either ... anomoly?
Logged

Fatman

  • Level 9 Member
  • ****
  • Posts: 1675
Re: cannot execute files on vista using 323
« Reply #2 on: April 01, 2008, 03:19:23 PM »

If you are going command line then it would be easier and more secure to just use chmod ugo=x, that way your only giving execute privileges to everyone.
Logged
non progredi est regredi

chuckv

  • Level 2 Member
  • **
  • Posts: 88
Re: cannot execute files on vista using 323
« Reply #3 on: April 03, 2008, 02:56:20 PM »

If you are going command line then it would be easier and more secure to just use chmod ugo=x, that way your only giving execute privileges to everyone.

thanks for a workaround .. i will have to do research on that ugo=x thing as i am not a CLI / linux person

any reasons as to why vista is having execute permissions though? i thought chmod 777 allows execute permisions within the linux of device itself, therefor any client outside of it (xp / vista) should not require execute permissions? mainly read permissions ... (my permission's understanding is however lacking these days)
Logged

Fatman

  • Level 9 Member
  • ****
  • Posts: 1675
Re: cannot execute files on vista using 323
« Reply #4 on: April 03, 2008, 05:04:03 PM »

The easy way of doing things is to look at it like this, there are three groups of people user, the users group, and others.  There are 3 permissions levels read, write, and execute

the command chmod ugo+x means give the user, the users group, and everyone else execute privileges.

This could also be written chmod a+x for all may execute.

chmod 777 is the same as ugo=rwx it allows everyone to do everything.

to figure out the number code remember that the first digit represents the user, the next digit is their group, and the last digit is others.  So you add 4 to each digit if they can read, 2 to each digit that can write, and 1 to each digit that can execute.

Additionally the = in the last post of mine was a typo, it should have been a +, I wasn't thinking when I wrote it.  The command as I gave it would make it so everyone can only execute and not read or write.  Using a + adds the permissions if they did not already exist and the - operator removes the permissions if they already existed.

WIKIS!!!!
http://en.wikipedia.org/wiki/Chmod
http://en.wikipedia.org/wiki/File_system_permissions#Octal_notation
Logged
non progredi est regredi