Hi all,
I have been struggling to get my Canon IXUS 40 to work with my machine after I upgraded to Slackware 11.
I eventually figured out that Hotplug didn't work in the 2.6.18 kernel, and that Udev was the way to do it.
I followed some instructions in this thread:
http://www.linuxquestions.org/questi...post2440669://
and now I am at the stage where gphoto2 sees my camera when I am root:
Code:
root@radhagovinda:/home/rich# gphoto2 --auto-detect
Model Port
----------------------------------------------------------
Canon Digital IXUS 40 (PTP mode) usb:
but not when I am a regular user:
Code:
rich@radhagovinda:~$ gphoto2 --auto-detect
Model Port
----------------------------------------------------------
rich@radhagovinda:~$
I have tried both the following in my /etc/udev/rules.d/camera.rules file:
Code:
SYSFS{idVendor}=="04a9", SYSFS{idProduct}=="30bf", MODE="0660", GROUP="users", R
UN+="/etc/hotplug/usb/usbcam"
and:
Code:
SYSFS{idVendor}=="04a9", SYSFS{idProduct}=="30bf", MODE="0660", GROUP="users",
SYMLINK+="camera"
but neither work. Can anyone suggest what might be wrong?