Mounting of External Portable HDD
Came across this reference link, useful for those transferring files from external HDD or Thumbdrive to the NAS.
Manage to hook up with my 320GB 3.5"HDD via USB for the file transfer.
http://blog.rajatpandit.com/2009/12/05/mounting-usb-drive-on-dns323/
Step 1:
1. # wget
http://www.domaigne.com/download/dns-323/usb-storage.ko
2 # mkdir /mnt/HD_a2/mod
3 # cp usb-storage.ko /mnt/HD_a2/mod
Step 2:
1. # insmod usb-storage.ko
2. # lsmod
Module Size Used by Not tainted
usb_storage 29956 1
usblp 10976 0
sd_mod 14484 10
Step 3: Identify the assigned Device
# dmesg
#######################################
# HD0 awake now ! #
#######################################
Initializing USB Mass Storage driver...
scsi2 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 2
usb-storage: waiting for device to settle before scanning
usbcore: registered new driver usb-storage
USB Mass Storage support registered.
Vendor: SAMSUNG Model: HD500LJ Rev:
Type: Direct-Access ANSI SCSI revision: 02
SCSI device sdc: 976773168 512-byte hdwr sectors (500108 MB)
sdc: assuming drive cache: write through
SCSI device sdc: 976773168 512-byte hdwr sectors (500108 MB)
sdc: assuming drive cache: write through
sdc: sdc1
Attached scsi disk sdc at scsi2, channel 0, id 0, lun 0
Attached scsi generic sg2 at scsi2, channel 0, id 0, lun 0, type 0
usb-storage: device scan complete
Step 4: Mount the External USB Drive
(For FAT16 and FAT32 Filesystem )
# mount -t vfat /dev/sdc1 /mnt/HD_a2/ext/
( For Ext2 or Ext3 Filesystem )
# mount -t ext3 /dev/sdc1 /mnt/HD_a2/ext/
Step 5: Unmount the External USB Drive
#umount /mnt/HD_a2/ext