啟動 1394火線 捕獲
代碼:
sudo gedit /etc/udev/rules.d/z95_firewire.rules
添加以下內容:
代碼:
# Set GROUP="video" for some HTTP://www.aliyun.com/zixun/aggregation/14477.html">IEEE 1394 device types, driven by the new firewire stack.
# We cannot use the GROUP directive because the significant device type attributes
# live in child devices. So change the group after the fact with chgrp.
# IIDC devices: industrial cameras and some webcams
KERNEL=="dv1394*|video1394*|raw1394*|fw[0-9]*", GROUP="video"
# libraw1394 older than v2.0.1 and some special-purpose applications also need
# access to the local node(s). Alas there is no simple way to tell local nodes apart
# from remote ones; here is a simple hack.
SUBSYSTEM=="firewire", ATTR{vendor_name}=="Linux Firewire", GROUP="video"
# Or if your application needs access to all nodes, simply use:
SUBSYSTEM=="firewire", GROUP="video"
重啟電腦