I'm thinking of two possibilities:
(1)
The first user can umount it by opening the context menu on the device (probably right mouse button) and choosing "umount device" (could be "remove" or "aushängen" [in german], I don't know exactly). After that, the current user can use it (GNOME will automatically re-mount it when programs demand it).
(2)
If that doesn't help, you will probably have to edit the file
/etc/fstab and find out what the
block device file for your card reader is (probably /dev/sda or /dev/sda1); unfortunately, GNOME doesn't tell us that (I really think it should!).
Do that like this: change into a tty console (e.g. press ctrl+alt+F2; don't open a terminal/console window). Then insert a flash card; the terminal should show a bunch of messages. When I do that with USB storage, my device name (without "/dev/") appears in squared brackets,
[sda], several times. To go back to GNOME, press ctrl+alt+F7 (can be ctrl+alt+F6 or ctrl+alt+any other F-key if you modified Debian so).
How to edit the file: Press alt+F2 and enter
gksu gedit /etc/fstab and press Enter or click on "execute". The system will ask for the root password. If you misspell it, nothing happens (you are not even told).
Without having changed it since installation (I use GNOME's automation), my
/etc/fstab looks like this:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda1 / ext3 defaults,errors=remount-ro 0 1
/dev/hda5 /home ext3 defaults 0 2
/dev/hda6 none swap sw 0 0
/dev/hdc /media/cdrom0 auto user,noauto 0 0
If the contents in the device
/dev/sda are to be accesible by anyone, I add one line in
/etc/fstab like this:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda1 / ext3 defaults,errors=remount-ro 0 1
/dev/hda5 /home ext3 defaults 0 2
/dev/hda6 none swap sw 0 0
/dev/hdc /media/cdrom0 auto user,noauto 0 0
/dev/sda /mnt/sda auto defaults,user,umask=000 0 0
The options
user,umask=000 make the device mountable and accesible by any user.
I hope this helps, good luck
