8
1
I have a FireWire camera LifeSize connected to my PC in the FireWire interface. My PC has miniPCI slot and with external converter its having a FireWire interface. Now its Ubuntu who is not showing me anything at all when i try:
$ uname -a
Linux desktop 2.6.38-11-generic-pae #48-Ubuntu SMP Fri Jul 29 20:51:21 UTC 2011 i686 i686 i386 GNU/Linux
$ lspci
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family DRAM Controller (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series Chipset Family MEI Controller #1 (rev 04)
00:16.3 Serial controller: Intel Corporation 6 Series Chipset Family KT Controller (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (rev 05)
00:1a.0 USB Controller: Intel Corporation 6 Series Chipset Family USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series Chipset Family High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series Chipset Family PCI Express Root Port 1 (rev b5)
00:1c.1 PCI bridge: Intel Corporation 6 Series Chipset Family PCI Express Root Port 2 (rev b5)
00:1c.2 PCI bridge: Intel Corporation 6 Series Chipset Family PCI Express Root Port 3 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 6 Series Chipset Family PCI Express Root Port 4 (rev b5)
00:1c.4 PCI bridge: Intel Corporation 6 Series Chipset Family PCI Express Root Port 5 (rev b5)
00:1d.0 USB Controller: Intel Corporation 6 Series Chipset Family USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation 6 Series Chipset Family LPC Controller (rev 05)
00:1f.2 IDE interface: Intel Corporation 6 Series Chipset Family 4 port SATA IDE Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series Chipset Family SMBus Controller (rev 05)
00:1f.5 IDE interface: Intel Corporation 6 Series Chipset Family 2 port SATA IDE Controller (rev 05)
05:00.0 Ethernet controller: Intel Corporation 82574L Gigabit Network Connection
$ lsusb
Bus 002 Device 005: ID 046d:c31c Logitech, Inc.
Bus 002 Device 003: ID 046d:0821 Logitech, Inc.
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 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
$ dmesg | grep FireWire ;no results
$ grep FireWire /var/log/kern.log ;no results
How can i detect my FireWire interface is up and working and see my Camera?
1
for those (like me) who still have some analog material they want to capture before it dissolves, the video1394 driver is long since obsoleted and its functionality has been integrated into the main 1394 ohci driver: "video1394 has been removed in Linux 2.6.37. The same functionality is now provided by the firewire-core driver, though with a different API and through /dev/fw* character device files. libdc1394 v2 is able to use the latter if video1394 is not present in the system." - source: https://ieee1394.wiki.kernel.org/index.php/Video1394
– Gregor – 2016-09-12T20:14:41.070$ lspci | grep -i "(1394|firewire)" and $ lsmod | grep -i "(1394|firewire)" gave no results, empty. – YumYumYum – 2011-09-06T10:47:41.427
apt-get install coriander; run coriander showing a dialog window "warning: could not find a digital camera on the bus. please check that : the cables are properly set, the devices on the bus are properly powered, your camera is compliant with the digital camera specs 1394ta.org. Notice: all consumer grade cameras in which you can insert a video tape are not compliant with the above mentionned specifications and therefore cannot be controlled with the AV/C protocol, please refer to http://www.1394.org
– YumYumYum – 2011-09-06T10:51:48.677So it indeed looks like your hardware is not detected. Did you install support for 1394 in the kernel? Do you have the opportunity to test the card elsewhere? (Other OS, other machine) – Tim – 2011-09-06T11:46:57.587
how do i make sure that i install support for 1394 in the kernel? Yes the device works with LifeSize passport codec. – YumYumYum – 2011-09-06T12:13:57.453
Whatever a 'LifeSize passport codec' is: what is the difference with your current system? Can you minimize the difference between the systems and see when it works again? These are questions you can just as well ask yourself. This is not a helpdesk, some work on your part is required in order to ask useful questions that others can benefit from as well. – Tim – 2011-09-06T14:10:57.977
The correct syntax for the grep "or" is this:
lspci | grep -i "1394\|firewire"
, otherwise you may get no output. – modulitos – 2014-04-24T04:16:11.663