In my extrodinarily slow quest to convert to linux (kubuntu) I keep getting caught up on the seemingly simple things...
I installed Kubuntu on a 10GB harddrive I had... I also have a 120GB that was in a Windows box. Now, I got everything off the 120GB that I want, and I wanted to wipe it out and get rid of the NTFS. So, I went and downloaded a GParted LiveCD and ran that guy. I proceeded to delete every on the 120GB and format it as ext3 (figured that was the way to go?). GParted seemed to do it's thing and I rebooted.
I mounted the drive and everything seemed to look okay... but... I can't seem to write or read to it due to "permission denied". It's got a Lost&Found directory in it, which I'm assuming is default with ext3, I can't open it, and I can't write (create a file/directory) anywhere on it. The permission settings of the 10GB and 120GB don't look any different from eachother in Konqueror...
Here's /etc/fstab/
proc /proc proc defaults 0 0
/dev/hda1 / ext3 nouser,defaults,errors=remount-ro,atime,auto,rw,dev,exec,suid 0 1
/dev/hda5 none swap sw 0 0
/dev/hdd /media/cdrom0 auto user,atime,noauto,rw,dev,exec,suid 0 0
/dev/hdb1 /mnt/hdb ext3 nouser 0 0
... hdb1 being the 120GB ...
Posts
If I try to go in to the Lost&Found folder, mentioned previously, I get: Could not enter folder /mnt/hdb/Lost&Found.
If I try to create a file on the drive: Access denied.
Could not write to /mnt/hdb/$filename.
The Lost&Found folder's got a big 'ol lock on it too, as if to say...
"There's obviously a permission issue here... good luck figuring it out."
Could GParted have done something wonky? -- seems to work fine for other people out there on the internet...
Both harddrives say they are owned by root...
Note that you may still have to create a directory /mnt/hdb/mystuff, and then change the permissions on that to be owned by your user. However, Konqueror should certainly be able to handle that. It'll probably ask for an admin password to do it.
There is GUI management for this; however, that just reflects the fstab entries.
I cannot create a folder, when I try it results in one of the Konqueror errors listed above.
I appreciate the help, jmill!
It sounds like it's mounted, but the permissions aren't set right. Try "sudo chmod 777 /mnt/hdb1" in the command line. What that should do is set the permissions on the drive so that anyone can access it.
Wow... that'd be it!
Thanks japan & jmill!