LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Using a Creative NX Pro... how do I get it to work with skype in Ubuntu 11.04 ? (https://www.linuxquestions.org/questions/linux-newbie-8/using-a-creative-nx-pro-how-do-i-get-it-to-work-with-skype-in-ubuntu-11-04-a-4175422324/)

lilrubberducky 08-15-2012 11:31 PM

Using a Creative NX Pro... how do I get it to work with skype in Ubuntu 11.04 ?
 
Using a Creative NX Pro... how do I get it to work with skype in Ubuntu 11.04 ? I've heard... Linux spca5xx driver ? How do i get and add this ? Help...

sag47 08-20-2012 08:00 AM

http://opensource.creative.com/webcam.html

Going by the links on that page you can download the kernel module (driver) for the webcam here depending on your kernel version. You can figure out your kernel version by entering
Code:

uname -r
Then read the READ_AND_INSTALL document for how to compile. Here's a relevant section from that file for the driver later than 2.6.11 kernel.

Code:

Compiling it
============
The driver module can be built without modifying your kernel source tree.

Before trying to compile the driver, ensure that you've configured your
kernel, and updated the dependencies:
'make [config|menuconfig|xconfig]; make dep'.

Make sure, when compiling the driver, you use the same version of compiler as
was used to compile your kernel. Not doing so can create incompatible binaries.

as root
goes to gspcav1 directory and run:
./gspca_build

if all goes right the module is compiled and load in memory
if not, errors messages can be found in kgspca.err You should post this file to the maintainer
or in the sourceforge project bugs report. <http://sourceforge.net/projects/spca50x/>.

Basically you change directory (cd) into the source tree and then configure it and compile.

Code:

make config
make dep
./gspca_build

Since you're on Ubuntu you'll need to install a few build packages before you're able to compile the module/software.
Code:

sudo apt-get install build-essential autoconf make
You should read all of the included documentation such as READ_AND_INSTALL, license, and changelog before modifying your system with the kernel module. If you run into problems where it's complaining about kernel headers you'll need to install the headers package for your installed kernel version.

lilrubberducky 08-20-2012 10:16 AM

Thank you
 
Got er Done !!!!
Thanks again...
Quote:

Originally Posted by sag47 (Post 4759081)
http://opensource.creative.com/webcam.html

Going by the links on that page you can download the kernel module (driver) for the webcam here depending on your kernel version. You can figure out your kernel version by entering
Code:

uname -r
Then read the READ_AND_INSTALL document for how to compile. Here's a relevant secion from that file for the driver later than 2.6.11 kernel.

Code:

Compiling it
============
The driver module can be built without modifying your kernel source tree.

Before trying to compile the driver, ensure that you've configured your
kernel, and updated the dependencies:
'make [config|menuconfig|xconfig]; make dep'.

Make sure, when compiling the driver, you use the same version of compiler as
was used to compile your kernel. Not doing so can create incompatible binaries.

as root
goes to gspcav1 directory and run:
./gspca_build

if all goes right the module is compiled and load in memory
if not, errors messages can be found in kgspca.err You should post this file to the maintainer
or in the sourceforge project bugs report. <http://sourceforge.net/projects/spca50x/>.

Basically you change directory (cd) into the source tree and then configure it and compile.

Code:

make config
make dep
./gspca_build

Since you're on Ubuntu you'll need to install a few build packages before you're able to compile the module/software.
Code:

sudo apt-get install build-essential autoconf make
You should read all of the included documentation such as READ_AND_INSTALL, license, and changelog before modifying your system with the kernel module. If you run into problems where it's complaining about kernel headers you'll need to install the headers package for your installed kernel version.



All times are GMT -5. The time now is 11:47 PM.