Research
Courses
Schedule
Resume
Biography
T-Files
|
How To: Setup a Linux System for 1394 Cameras
This is a very basic quickstart guide to setting up a Red Hat Linux system for use with the
3DTI firewire cameras.
The Steps
- Start with a fresh install of Red Hat Linux.
- Update Red Hat with all of the latest patches. Most important here is to update the kernel.
- Download the latest CVS versions of libraw1394 and libdc1394. The CVS versions are important because they match the latest kernels best.
- libraw1394 can be downloaded here by selecting libraw1394 from the dropdown and then clicking "Download tarball".
- libdc1394 can be downloaded here by clicking on the CVS link and following the directions for downloading the CVS code.
- cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/libdc1394 login
- cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/libdc1394 co libdc1394
- Compile & Install libraw1394
- Unpack the tar file
- cd to libraw1394/tags/v*
- chmod +x autogen.sh
- ./autogen.sh
- ./configure.sh
- make
- su root; make install
- Compile & Install libdc1394 - It's very important that libraw is installed before doing this.
- cd to the downloaded libdc1394 directory
- chmod +x autogen.sh
- ./autogen.sh
- ./configure
- make
NOTE: If the make fails I had to go into all of the Makefiles, do a search for libtool, and change the path to /usr/bin/libtool. There are 3 Makefiles. One in this directory and one each in libdc1394 and examples.
- make install
- That's it! Your machine should now be setup to run 1394 cameras.
Feedback
Please send me some
feedback
on how this worked for you. I'd be happy to help you figure it out for yourself.
|