Monday, May 6, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 1361  / 2 Years ago, sun, november 13, 2022, 12:20:02

I am using ubuntu 14.04 LTS (64 bit). I could access the 4GB memory of my fujifilm AV-150 digital camera through nautilus in 13.10, but it is no longer shown in 14.04!



lsusb



Bus 002 Device 003: ID 046d:c52f Logitech, Inc. Unifying Receiver
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 011: ID 12d1:1003 Huawei Technologies Co., Ltd. E220 HSDPA Modem / E230/E270/E870 HSDPA/HSUPA Modem
Bus 001 Device 012: ID 04cb:021b Fuji Photo Film Co., Ltd
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub


lsblk



prasad@Trusty-ubuntu:~$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 931.5G 0 disk
├─sda1 8:1 0 100M 0 part
├─sda2 8:2 0 99.9G 0 part
├─sda3 8:3 0 1K 0 part
├─sda4 8:4 0 30.2G 0 part
├─sda5 8:5 0 100G 0 part /mnt/Linux
├─sda6 8:6 0 200G 0 part /mnt/Media
├─sda7 8:7 0 300G 0 part
└─sda8 8:8 0 201.3G 0 part /media/prasad/Home
sdb 8:16 0 465.8G 0 disk
├─sdb1 8:17 0 300M 0 part
├─sdb2 8:18 0 100M 0 part
├─sdb3 8:19 0 128M 0 part
├─sdb4 8:20 0 39.5G 0 part
├─sdb5 8:21 0 250G 0 part
├─sdb6 8:22 0 4G 0 part [SWAP]
├─sdb7 8:23 0 10G 0 part
├─sdb8 8:24 0 28G 0 part
└─sdb9 8:25 0 28.6G 0 part /
sr0 11:0 1 32.8M 0 rom


dmesg



The camera is detected but not mounted as a mass storage. In ubuntu 13.10, it detects and mounts automatically without any hassle.


More From » mount

 Answers
5

It's a bug


The camera will be detected after executing following commands


Option One


echo 'ACTION="add", ENV{ID_USB_INTERFACES}=="*:060101:*", ENV{ID_GPHOTO2}="1", ENV{GPHOTO2_DRIVER}="PTP", MODE="0664", GROUP="plugdev"' | sudo tee /lib/udev/rules.d/40-libgphoto2-6.rules

Then unplug/replug the camera.


Option Two


sudo -H gedit /lib/udev/rules.d/40-libgphoto2-6.rules

and make the file look like this:


ACTION!="add", GOTO="libgphoto2_rules_end"
SUBSYSTEM!="usb", GOTO="libgphoto2_usb_end"
ENV{ID_USB_INTERFACES}=="", IMPORT{builtin}="usb_id"
ENV{ID_USB_INTERFACES}=="*:060101:*", ENV{ID_GPHOTO2}="1", ENV{GPHOTO2_DRIVER}="PTP", MODE="0664", GROUP="plugdev"

LABEL="libgphoto2_rules_end"

thanks to Martin pitt


[#25769] Sunday, November 13, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
urnaetted

Total Points: 10
Total Questions: 113
Total Answers: 117

Location: Burundi
Member since Sat, Aug 21, 2021
3 Years ago
;