Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I have been having this issue and nobody seems to be able to help me. I'm running Ubuntu hardy on an eeepc700, and for some reason, no matter what my fstab says, if the external drive has any variant of ext as it's file system, it will mount as readonly.
The last entry is what I added in myself (after reading up a bit on the specifics to fstab). It is reading the fstab correctly, because instead of using automount options, it mounts to the proper directory (/media/external1), but it just doesn't mount as read/write.
Any ideas? Though I have been working hard on breaking myself into linux, I'm still a bit new, so if you suggest something, I would appreciate a link or a detailed explenation.
gilrad@kerjigger:~$ sudo chmod 777 /media/external1
[sudo] password for gilrad:
gilrad@kerjigger:~$ sudo mount -t auto /dev/sdc1 /media/external1
mount: /dev/sdc1 already mounted or /media/external1 busy
mount: according to mtab, /dev/sdc1 is already mounted on /media/external1
(I then unmounted the drive)
gilrad@kerjigger:~$ sudo mount -t auto /dev/sdc1 /media/external1
gilrad@kerjigger:~$
After both operations, the drive continued to be read-only.
Sorry for the delay. I was distracted by other duties.
Try simplifying your fstab entry, for example like this:
/dev/sdc1 /media/external1 ext3 rw,defaults 0 0
and try mounting it again.
If that fails, I don't know what the problem is. Have you ruled out physical problems? Does the drive work properly with an other OS? Have you tried it with a live CD like Puppy Linux or Knoppix? Is there a write protection lock on the drive? Has the cable been chewed by a dog? Maybe there is a conflict in a USB hub - try a different USB port on the PC.
An other thing is to look in the sub-directories under /dev/disk/ and make sure nothing looks strange for this drive. For example, the symbolic links might indicate that /dev/sdc should be used instead of /dev/sdc1. Or maybe there is no entry at all for the drive in question. Do an "ls -las /dev/disk/by-id" with the drive disconnected and again with it connected. You should see an entry appear for your drive.
Regards,
opc
Last edited by opc; 06-29-2008 at 01:16 AM.
Reason: grammatical
Thanks! Simplifying it worked out, actually. With a few annoying exceptions (such as having to manually change the readwrite permissions on each and every currently existing file and folder), everything is working just fine
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.