Difference between revisions of "Build and install gphoto2"
From Linuxintro
imported>ThorstenStaerk (Created page with "gphoto2 is a utility to download pictures from a digital camera. To build and install it, find out your distribution and proceed accordingly = SUSE Linux 12.1 =...") |
imported>ThorstenStaerk |
||
(3 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
= SUSE Linux 12.1 = | = SUSE Linux 12.1 = | ||
+ | * [[open a console]] as root and [[install]] some [[dependencies]]: | ||
+ | [[yast]] -i libgphoto2-devel popt-devel | ||
* download the source code from http://sourceforge.net/projects/gphoto/files/gphoto/ | * download the source code from http://sourceforge.net/projects/gphoto/files/gphoto/ | ||
− | + | * [[extract]] it, in this example version 2.4.14: | |
− | * [[extract]] it, in this example version 2. | ||
cd | cd | ||
− | [[tar]] xvzf Downloads/gphoto2-2. | + | [[tar]] xvzf Downloads/gphoto2-2.4.14.tar.gz |
− | cd gphoto2-2. | + | cd gphoto2-2.4.14/ |
+ | ./[[configure]] [[&&]] [[make]] -j8 && make install |
Latest revision as of 18:45, 11 August 2012
gphoto2 is a utility to download pictures from a digital camera.
To build and install it, find out your distribution and proceed accordingly
SUSE Linux 12.1
- open a console as root and install some dependencies:
yast -i libgphoto2-devel popt-devel
- download the source code from http://sourceforge.net/projects/gphoto/files/gphoto/
- extract it, in this example version 2.4.14:
cd tar xvzf Downloads/gphoto2-2.4.14.tar.gz cd gphoto2-2.4.14/ ./configure && make -j8 && make install