vote up -1 vote down star

I have just formatted an external hard disk using this command:

$ sudo mkfs -t ext3 /dev/sdc1

However, once this is done, whenever I want to create a directory or file in this hard disk, it always ask for password (i.e. permission requirement).

Is there a way I can disable that?

Note that I can't format the partition with mkfs unless I use sudo.

Please advice.

flag

2 Answers

vote up 4 vote down check

If you mount the partition at /media/foo, then try this:

sudo chmod 1777 /media/foo

It'll act like /tmp does at that point. So any user can create a folder / file in there, but you can only delete your own files.

link|flag
vote up 2 vote down

I would recommend you asking the same question at ServerFault. I think you'll get a better answer over there.

link|flag
That would be a good idea for him to do if the link you gave wasn't to an (apparently) closed Beta. – jesup May 19 at 2:49
2  
It's not closed anymore. Anyone who types in alt.sysadmin.recovery can use Server Fault now, without needing 100 points on SO. – Chris Jester-Young May 19 at 2:53
It's not really a closed beta anymore – 1800 INFORMATION May 19 at 2:53
What's the password? – neversaint May 19 at 2:54
@foolishbrat: look two lines up (or in the SO blog). – lc May 19 at 2:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.