Can someone tell me the steps to completely remove a drive and it's mount history? Or what else might be the problem here.
I'm screwing around learning my pogoplug and linux, trying to optimize and get the 20Mb claimed by others, so far I only get 10. I fdisked my ntfs drive and changed it to ext3 for speed, mounted it manually, changed the drive label, and tried to fix it i webmin, now that drive via it's new samba share won't let anyone write to it. I can cp files in a terminal as root onto the drive, but over the samba share no go. It says you need permission on the windows side but in smb.conf the correct permissions are assigned.
I think the issue may be the way I manually mounted it, but even though I umount it still comes back.
Webmin shows this:
/media/usb2 FUSEBLK Partition with ID D60E91FD0E91D6B9 95 % Yes No
/media/hdd3 Linux Native Filesystem (ext3) Partition with ID 35484bd2-68a4-4e2f-9c4d-a234202a63df 5% Yes No
Hdd3 is the drive I have issue with, if I type mount in terminal it shows this for hdd3:
/dev/sdc1 on /media/hdd3 type ext3 (rw,nosuid,nodev,noexec,noatime,user_xattr,acl,barrier=1,nodelalloc,data=ordered)
The directions I used to fdisk and mount were these, maybe a setting is missing:
Start fdisk on the USB drive:
/sbin/fdisk /dev/sda
At the fdisk prompt, delete old partitions and create a new one:
Type o. This will clear out any partitions on the drive.
Type p to list partitions. There should be no partitions left.
Now type n, then p for primary, 1 for the first partition on the drive, and then press ENTER, accepting default values.
Exit by typing w.
Now create the ext3 filesystem:
wget http://archlinuxarm.org/os/pogoplug/mke2fs
chmod 755 mke2fs
./mke2fs -j /dev/sda1
mkdir usb
mount /dev/sda1 usb
My pogoplug is set up via these directions:
http://obihoernchen.net/wordpress/770/p ... rch_linux/
If more info is needed let me know.