Re: [newbie] Change rw permissions on folder of files

2002-05-30 Thread Michael Adams
On Thu, 30 May 2002 16:00, db wrote: Working with Redhat 5.2 Fvfm, I have a ton of files in a folder that I copied (as root) from a CD. I need to reset the rw and perhaps ownership attributes en mass so that the files can be written to and worked with by other users. I know this is basic

[newbie] Change rw permissions on folder of files

2002-05-29 Thread db
Working with Redhat 5.2 Fvfm, I have a ton of files in a folder that I copied (as root) from a CD. I need to reset the rw and perhaps ownership attributes en mass so that the files can be written to and worked with by other users. I know this is basic but could anyone clue this newbie in?

Re: [newbie] Change rw permissions on folder of files

2002-05-29 Thread Jim Turner
chmod is the command to change permissions on files. man chmod will tell you all the specifics of how to use it --jim On Wed, 29 May 2002, db wrote: Working with Redhat 5.2 Fvfm, I have a ton of files in a folder that I copied (as root) from a CD. I need to reset the rw and

Re: [newbie] Change rw permissions on folder of files

2002-05-29 Thread Jim Turner
Hey again. It just occurred to me that you'll prolly wanna change the owner of those files to something more prctical than root. That command is chown. So, to change the owner of file.txt from whatever to kenny, you would type chown kenny file.txt Then ls -l will show you owners and

Re: [newbie] Change rw permissions on folder of files

2002-05-29 Thread Jim Turner
Ok, last one, I swear. ;) You mentioned doing this en mass. Just to be clear, wild cards will work with chmod and chown. So: chmod a+rw * will set every file in the current directory to be world readable and writable (if you execute it as root). --jim On Wed, 29 May 2002, db wrote: