Hello give this a try:
Become root or use sudo:
Plug your device into the system and identify the correct partition name.
Code:
Prompt>dmesg |grep -i 'USB device'
Or you can use this to identify.
Code:
Prompt>grep USB /var/log/messages
You should see something similar to this:
Code:
Aug 29 11:52:26 kernel: USB device sda1: 3903488 512-byte hdwr sectors (1999 MB)
Now we are going to Mount the partition to an existing mount point (directory).
Create the mount point. I think you already created /data1 as you mentioned.
Code:
Prompt>mkdir -p /mnt/data1
Now let's mount the drive on the new mount point. Remember if yours is not /dev/sda1 change it to what you received from the grep of /var/log/messages.
Code:
Prompt>mount -t vfat -o rw,users /dev/sda1 /mnt/usbdevice
Verify that are mount was successful with:
You should see something like this:
Code:
/dev/sda1 on /mnt/usbdevice type vfat (rw,noexec,nosuid,nodev)
To remove the USB drive you must unmount.
Code:
Prompt>umount /mnt/usbdevice
Permission should be Read And Writable as is. If not please Post the output of this command:
Code:
la -alh /mnt/usbdevice
If you have issues in any of the above steps. Do not hesitate to post the error or your question or concern.
You found one of the best linux help sites out there. And someone here will get you to where you want to be.
77 Yrs Young......... Wow
Jaysunn