| cbagger01  
 
 
 
 
 Group: Members
 Posts: 4264
 Joined: Oct. 2003
 | 
|  | Posted: Jan. 06 2006,03:40 |  |  FYI,
 
 If the problem is only that the proper mountpoints are not automatically entered into /etc/fstab, assuming that the devices are present you can still manually mount them from within a script, IE:
 
 Assuming that 1st cardread slot exists at /dev/sda and is mounted at /dev/sda1 and mountpoint /mnt/sda1 according to autodetection. The second slot is probably there at /dev/sdb and can be manually mounted at /dev/sdb1 and mountpoint /mnt/sdb1:
 
 sudo su
 mkdir /mnt/sdb1
 mount -t vfat /dev/sdb1 /mnt/sdb1
 
 You can then access the files if you are user 'root' on your 2nd cardreader slot.
 
 Give it a try. It might work.
 |