General :: Make - Gspca - Error ?

Feb 7, 2011

Code:

Code:

What is the problem I face make error during several operations.

View 17 Replies


ADVERTISEMENT

OpenSUSE Hardware :: Add The Community Repository And Add Gspca Driver To Make It Work?

Sep 10, 2011

I seldom use my Labtec webcam but used to add the community repository and add gspca driver to make it work.I saw today that this repo only now have libv4l in it , is this enough to replace gspca driver? And if so is there and easy way to install it ? (apart from taking it on it's site : home ) (also i saw that qc-usb can be used for some models

View 5 Replies View Related

General :: Change The Parameters Of In-built Gspca To Increase The Image Quality?

Mar 24, 2011

I'm using Logitech WebCam on fedora 11 and running webcam server to capture the images on the browser.. it works fine but the image quality is poor...could anyone suggest me how to change the image quality by passing parameters via command line??I tested Video quality on cheese as well, which is poor too..I searched a lot in google for a solution but no use... i got some patch but couldn't install that since the gspca driver on my fedora 11 is in-built..

Output of lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 020: ID 046d:092f Logitech, Inc. QuickCam Express Plus

[code]....

View 14 Replies View Related

General :: Make Error - Make[2]: *** No Rule To Make Target

Oct 7, 2010

I am getting an error as below.

How do I resolve the error: make[2]: *** No rule to make target `', needed by `mpg123'.

How can I resolve this error.

View 4 Replies View Related

OpenSUSE Hardware :: GSPCA Webcam Driver Since Last Kernelupdate?

Sep 19, 2010

Last week I got a newer kernel via Yast -> Online Update. Since then, my Logitech webcam does not work anymore. Neither with Skype or Kopete. After starting skype, the output of dmesg is:

gspca: bandwidth not wide enough - trying again ohci_hcd 0000:00:12.0: leak ed f44e30c0 (#81) state 2

When I unplug the webcam and plug it into another USB-port and start skype again, it works most of the time. Sometimes I have to repeat this several times. Wen it works, the output of dmesg is:

usb 7-4: new full speed USB device using ohci_hcd and address 2
usb 7-4: New USB device found, idVendor=046d, idProduct=092f
usb 7-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 7-4: Product: Camera

[code]...

View 1 Replies View Related

OpenSUSE Hardware :: Didn't Do Right Is To Install The Gspca/Spca5xx Driver Found

Dec 22, 2009

I have a Logitech Quickcam Pro 4000 webcam which is supposed to work OK with Linux. I use Open SUSE 11.0 and under gqcam I have multiple images. And in black & white. See here: (if the image doesn't show it can be found there: WebcamOpenSuSe on Flickr - Photo Sharing! So, I wonder: is this a problem of gqcam or a driver problem? The only thing that maybe I didn't do right is to install the Gspca/Spca5xx driver found here: HCL/Web Cameras - openSUSE because my camera isn't on the list of UVC compliant webcams.My camera is seen as: Bus 005 Device 002: ID 046d:08b2 Logitech, Inc. QuickCam Pro 4000

View 1 Replies View Related

Ubuntu Multimedia ::unable To Change Webcam Brightness, And It Says Gspca Module Couldn't Be Found?

Apr 26, 2010

On aMSN the webcam works,but it's very very dark, and i can't move the adjusment handlers for some reason. Also, i tried several methods to increase the gamma, but it just won't work...nothing changes.how can i proceed?

View 1 Replies View Related

General :: Error When Running Make For Ns2.30 In Ubuntu 9.10

Mar 9, 2011

I need to use myevlavid2 on ns2 which is only supported for ns2 version up to ns2.30 (is not supported for newer ns2 versions): [URL] The NS installation went through well. After applying all the changes as given in the myevalvid2 installation guide, I ran the 'make' command, this is an extract of what I got:

[Code]....

View 6 Replies View Related

General :: Make Menuconfig Giving Error

Aug 4, 2011

[code]...

why is this? make menuconfig giving error

View 1 Replies View Related

Programming :: Makefile - Error When Run The Make Run - No Rule To Make Target - Shell.h

Sep 15, 2010

I want to gave much details as possible. working directory (~/a1/shell) in the shell directory i have Makefile. also in the shell directory i have subdirectory's (obj, src, include)

My current Makefile

Quote:

#What needs to be built to make all files and dependencies

clean:

# End of Makefile

I wanted it so: all .o files are created in the obj subdirectory, and my application, sshell, is created in the shell directory.

I am getting this error when i run the make run: No rule to make target 'shell.h', needed by 'shutil.o'. stop

View 1 Replies View Related

General :: MPC Make Error Libgmp.la Is Not A Valid Libtool

May 26, 2011

I am trying to make mpc .

I first configured using following

Code:

then i make using

Code:

View 2 Replies View Related

General :: Error Missing Separator When Compiling - Make

Nov 16, 2010

I have problem with compiling server... I finish ./configure without any problem, and now, when I write make, I see that: Quote: Makefile:360: *** missing separator. Stop. I read something, and know, that error shows when there are problem with spaces. And I should use there a tab. On line 360 I have:

Code: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/account.Po@am__quote@ I try to change this one space inside to tab, but that doesnt work for me... Terminal always show error in the same line.

View 2 Replies View Related

General :: Make - Install Zaptel - Error Message

May 7, 2010

When i try to install zaptel i have received the following error message:

I have already installed kernel-devel.

View 11 Replies View Related

General :: Make: Ifort: Command Not Found ERROR 127

Feb 26, 2010

I am completely new to linux and am trying to run a Fortran program for class. I typed in "make C=R" and it ran through a long list of things and then came up with that error.

View 1 Replies View Related

General :: Make Install Error With Created Makefile

Jun 3, 2011

I am new to Linux and I am trying to install a C program from source using Makefile. So I 've created a "hello world" program and then a Makefile to install it. Then I logged in as root and used
make install

The following error occurs:
make: execvp: /usr/bin: Permission denied
make: *** [install] Error 127

Here is the Makefile:
CC=gcc
CFLAGS=-c -Wall
PROGS = hello
INSTDIR = $(prefix)/usr/bin/
INSTMODE = 0755
INSTOWNER = root
INSTGROUP = root

all: $(PROGS)
$(PROGS): main.o
$(CC) main.o
main.o: main.c
$(CC) $(CFLAGS) main.c
install:$(PROGS)
$(INSTALL) $(INSTDIR)
$(INSTALL) $(INSTMODE) $(INSTOWNER) -o $(INSTGROUP) $(PROGS) $(INSTDIR)
clean:
rm -rf $(PROGS) *o $(PROGS)
So, where are the errors

View 3 Replies View Related

General :: Getting Error (No Rule To Make Target Version) / Install Ns 2.31?

Mar 22, 2011

I am using Fedora 8. I tried to install ns 2.31. But error came as " No rule to make target "VERSION" needed by gen/version.c".

View 2 Replies View Related

General :: Getting Error : Make: *** /lib/modules/2.6.31-20-generic/build: No Such File Or Directory On 9.1?

May 9, 2010

When trying to install my WiFi card's driver on Ubuntu 9.1, I run the make command and get the following error:make: *** /lib/modules/2.6.31-20-generic/build: No such file or directory

View 1 Replies View Related

General :: Can't Build RRDTool On RHEL4 - 'make' Command Give Error Message

Mar 19, 2010

I'm new to LinuxQuestions and this is my first post. I'm trying to build rrdtool to install Cacti and encountered the following problem: 'make' step returns an error messages:

Code:
./.libs/librrd.so: undefined reference to `xmlTextReaderGetParserLineNumber'
collect2: ld returned 1 exit status
What I have doneDownload and build the latest version of pkg-config, glib, pixman, cairo, pango, atk, gtk+ from official sites.
Download rrdtool source
Set PKG_CONFIG_PATH correctly

[Code]...

There is actually another problem with the computer which is "The Nautilus application has quit unexpectedly" everytime I open File Browser application or right-click>Properties a file/directory. This happen only after installing cairo and pango and I don't know how to revert to old version. Since there are a lot of log files so I'm very confused. Can someone give me a direction on how to resolve this?

View 3 Replies View Related

Ubuntu :: Make With Make File Yields Error - /usr/bin/javac: Cannot Execute Binary File

Nov 17, 2010

When I try to compile some Java code on Ubuntu 10.10 (kernel 2.6+) using make and a Makefile.

I get an error indicating that the make utility cannot execute the java compile command (javac).

The error reads: /bin/bash: line 6: .: /usr/local/jdk1.5.0_18/bin/javac: cannot execute binary file

I am executing make as root. I have enabled permissions on all directories in the path /usr/local/jdk1.5.0_18/bin/javac and on javac itself.

I get this error whether using a jdk installed via ubuntu apt-get, or whether I install the jdk myself. And I get it using either Java 1.5 or 1.6

My machine has an 80386 processor. I notice the make utility is built for i686-pc-linux-gnu

However, I can manually compile using javac.

I can compile calling javac from within a bash script.

I can compile using the java compiler gcj from the command line: gcj --main=HelloWorld HelloWorld.java -o HelloWorld.exe

But I cannot compile java code from the makefile. Any reasons why I might be getting this error?

View 4 Replies View Related

Slackware :: Error Make[2]: *** [lib/amarok_collection-mysqlecollection.so] Error 1

Oct 14, 2010

I was having a go at compiling the latest Amarok 2.3.2. As I run make I get the following error

make[2]: *** [lib/amarok_collection-mysqlecollection.so] Error 1
make[1]: *** [src/core-impl/collections/sqlcollection/mysqlecollection/CMakeFiles/amarok_collection-mysqlecollection.dir/all] Error 2
make: *** [all] Error 2

I'm running Slackware64-current. how to prevent this error arising?

View 13 Replies View Related

Fedora Servers :: Make PHP Pages - Shows An Internal Error 500 Page But Doesn't Show On What Line And Compile Error Encountered

Feb 1, 2011

I'm trying to make some pages. For this I try to host them locally. However, when I have an error in my PHP code, the server shows an internal error 500 page and doesn't show on what line and what compile error it encountered. There is no such information in the error log either. What should I do about it, it's not really nice to comment all the lines and then try to uncomment them one by one. I've been googling for a while, but didn't find anything.. I forgot to mention, I;m using Fedora :P, the apache that came with it and mysql and php from the repository...

View 3 Replies View Related

Red Hat :: Error - Make: *** [HelloWorld.o] Error 127 For Eclipse C++ ?

Jun 3, 2010

I have installed a copy Fedora core 10 with the Eclipse C++ CDT feature. I am getting the following error when I do a project build for the "HelloWorld.cpp" Eclipse sample program: make: *** [HelloWorld.o] error 127

I am somewhat certain it is caused by an improper or incomplete configuration of Eclipse C++ CDT. Can anyone provide detailed instructions for configuring the Eclipse C++ CDT?

View 4 Replies View Related

General :: 6.13 GMP-5.0.0 LFS Make Error - Cannot Open Shared Object File: No Such File Or Directory

Jun 10, 2010

I'm currently stuck at 6.13 GMP-5.0.0 of the LFS installation. After running make, I receive the following:

error while loading shared libraries: libbfd-2.20.so: cannot open shared object file: No such file or directory
make[2]: *** [libmpn.la] Error 127
make[2]: Leaving directory `/sources/gmp-5.0.0/mpn'

[code]....

View 5 Replies View Related

General :: Error Message When Run The "make" Command While Configuring The NIS Server?

Jul 27, 2011

I am getting this error message when run the "make" command while configuring the NIS server

View 1 Replies View Related

General :: Use Mkdir Command To Create 'local' Directory In /usr - There Are Error - Cannot Make Directory

Jun 16, 2010

I am a student studying computer science course.

Well, I am facing problem when doing lab questions.

I must use DLXLinux bundled in Bochs (bochs.sourceforge.net).

I am required to use the /usr/local directory.

In /usr directory, there is no directory named 'local' but there is one thing called 'local@'. So, when I try to use mkdir command to create 'local' directory in /usr , there are error "cannot make directory.....".

Look at my screenshot at [url].

View 9 Replies View Related

General :: Installing .gz File..: "make: Error 127 Chmod 755 "?

Oct 10, 2010

So I am new to linux and computing in general:I am installing curphoo ( a yahoo chat client). The README file contains the following text:

Code:
You need a Python 2.4 series interpretter starting with Curphoo 0.4.0.
Starting with 0.4.0, Curphoo uses a purely Python implementation of

[code]....

View 14 Replies View Related

Ubuntu :: Installing Emacs 23.1 - Error "makeinfo Is Missing - Cannot Build Manuals Make: *** [info] Error 1 **** Installation Failed"

Feb 6, 2010

I've been trying to install the latest version of Emacs from source but I'm running into a trouble. The commands "./configure" and "make" work just fine. However, when I run "sudo checkinstall" I get a message saying that makeinfo is missing:

Code: makeinfo is missing - cannot build manuals make: *** [info] Error 1 **** Installation failed. Aborting package creation. Cleaning up...OK Bye. What is Error 1

View 4 Replies View Related

Ubuntu :: Mount -o Loop - Flash BIOS Error "Intel UCode Loading Error" - Make Iso Images Bootsble From The Harddisk

Feb 19, 2010

I need to flash my BIOS to get rid of an error: "Intel uCode loading error". On [URL] I have found a tutorial, that looks to be fine. I can even see in the comments, that somebody have done this with success from Ubuntu 9.04, the very same system, that I use. Nevertheless I cannot make this bootCD with my Ubuntu 9.04, as it doesn't know the loop option to mount the image.

In the tutorial it says: "Requirements for this step is that you have support for the vfat and loop file systems in the kernel. Or you can have those features compiled as modules. In the latter case you can load the modules before the next step, like this:

modprobe vfat
modprobe loop"

loop doesn't seem to be present in my system, and the command modprobe loop returns an error that the module is not available. I tried to follow the tutorial anyway, but with no success. How can I get the module lopp? I also want to use it to make iso images bootsble from the harddisk.

View 2 Replies View Related

General :: 'make Menuconfig' To Make These Files Modules Rather Than Compiled Elements?

Feb 25, 2011

I need to modify fs/open.c and fs/read_write.c to make my modifications. I cannot find any options in 'make menuconfig' to make these files modules rather than compiled elements. I'm thinking these cannot be modules because the file system won't work without open.c and read_write.c. Is this correct - I cannot compile fs/open.c and fs/read_write.c as modules, only as compiled elements? Or, is there some way for a module to overwrite these routines when the module is installed and re-enable the routines when the module is removed?

View 3 Replies View Related

Programming :: IT++ Make Error - Error "/bin/sh: Line 1: .dependencies: Permission Denied"

Jun 16, 2010

I have installed it++ on suse11.2 I have downloaded an example project and everytime i try to "make"..error "/bin/sh: line 1: .dependencies: Permission denied" comes up.I have tried to run as root but this hangs on "checking dependencies" and gives no action.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved