Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

notjustjay

macrumors 603
Sep 19, 2003
6,056
167
Canada, eh?
chmod is the name of a Unix command used to change file permissions.

"666" means read/write permissions are granted for everyone. The three numbers represent a file permission code for the owner of the file, the group of users that the owner is a part of, and everyone else. The "6" is a decimal representation of a 3-bit binary code representing whether you have permission to read a file, write to the file, or execute the file (e.g. a program).

Think of it this way: Add 4 points if you want the user to be able to read the file, 2 points if they can write to it, and 1 point if they can execute it. Access to a directory counts as 1 point as well.

So, for example, "644" would be a code meaning that the owner of the file has full read/write access, but everyone else can only read it. "740" would mean that the owner can read/write and execute the program, the people in the same user group can read the file but not run it, and everyone else has no access at all.

If you were running the command from the Terminal, you would literally type "chmod 666 click.dat".
You can often do this within the FTP software, and is typically required if you are, saying, uploading a script that wants to write to certain files or directories -- you need to set the permissions to allow it to do so.
 

louiek

macrumors 6502
Mar 7, 2006
350
62
Knutters Knoll, Melbourne
It's asking you to change the permissions on the file click.dat to be readable and writable by your user, group and anyone else. Normally you'd just run the command

chmod 666 click.dat

in the directory the file resides in using terminal. As for the FTP bit, don't know, I haven't ftp'd since 1989.
 

lee1210

macrumors 68040
Jan 10, 2005
3,182
3
Dallas, TX
scp and sftp add encryption to authentication and transfer. FTP is unencrypted. If you don't mind someone being able to log in as you on the remote system, or you've secured the connection otherwise then FTP is fine.

-Lee
 

millerj123

macrumors 68030
Mar 6, 2008
2,607
2,730
scp and sftp add encryption to authentication and transfer. FTP is unencrypted. If you don't mind someone being able to log in as you on the remote system, or you've secured the connection otherwise then FTP is fine.

-Lee

A lot of apps use FTP to transfer files. Adobe Dreamweaver and other Web design apps for example.

A lot do. That doesn't make it a good idea. I'll +1 on Lee's suggestion of using scp or sftp unless it's across a VPN or other encrypted connection, at which point, yes, standard FTP is just fine.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.