I have an old model B into which I plug a 4Tb external USB drive.
The build is a few months old, but it works perfectly, mounting it with this entry in /etc/fstab
Code: Select all
UUID=9AF2BF43F2BF2285 /media/USB4TB ntfs-3g auto,rw,uid=1000,gid=1000,umask=000 0 0
Code: Select all
sudo mkdir /media/USB4TB
sudo chmod 777 /media/USB4TB
sudo mount -t ntfs-3g -o auto,rw,uid=1000,gid=1000,umask=000 /dev/sda1 /media/USB4TB
df -h
ls -l /dev/disk/by-uuid/
Code: Select all
ls -al /media/USB4TB
A DMESG command does not help, however I noticed an error message at boot time indicating something along the lines unknown UUID.
Help and advice welcomed.
edit: well, well, without explanation or reason a reboot and it suddenly just mounted ! No idea why if didn't on 4 prior reboots over 2 days. Anyone have any ideas ?