Ubuntu :: Cannot Find -lGLU Error During Make?
Mar 28, 2010
I'm trying to compile gtkglArea-1.99.0 but I think I'm running into a linking error. This is the error exactly : /usr/bin/ld: cannot find -lGLU. I have the OpenGL and GTK+ libraries, well ./configure runs with no errors so I assume I have everything I need. Does anyone know how to fix the error in order for me to run make properly?
View 2 Replies
ADVERTISEMENT
Sep 16, 2010
I just encountered a problem similar to this one, posted a few months ago. Unfortunately the solution posted is NOT working for me. I think I can see why, the original poster apparently had a corrupted gtkglarea package. I'm not trying to install gtkglarea.If you care, what I am trying to do is install CUDA on Karmic. I have successfully installed a recent NVidia driver (devdriver_3.1_linux_32_256.40.run), which is the one specified for use with the CUDA 3.1 core package (cudatoolkit_3.1_linux_32_ubuntu9.10.run).To confirm that everything is working, NVidia provides working examples of CUDA codeas source gpucomputingsdk_3.1_linux.run).
I'm trying to compile that source, and that's where I get stuck.NVidia's instructions tell you to go into a certain directory and execute a make. Make runs for a while, and spits out several warnings, but finally stops. Here are the last few lines of the log:
Code:
nvopencc WARNING: -noinline or -INLINE:=off has been seen, -default_options ignored
/usr/bin/ld: cannot find -lGLU
[code]....
View 1 Replies
View Related
Jan 13, 2010
I am trying to compile a new version of Mapserver on my fedora7 system and after 'make' I get the following error:
/usr/bin/ld: cannot find -lpam
collect2: ld returned 1 exit status
make: *** [shp2img] Error 1
libpam is definitely on the system.
# locate libpam
/etc/ld.so.conf.d/libpam.conf
/lib/libpam.so.0
/lib/libpam.so.0.81.6
[code]....
All with no success (same error is repeated)
View 2 Replies
View Related
Feb 10, 2010
I have been struggling to install courier-authlib. I have tried several version from 0.55 to the latest and I keep receiving the same error.
Linking libauthvchkpw.la
/usr/bin/ld: cannot find -linker
collect2: ld returned 1 exit status
make[2]: *** [libauthvchkpw.la] Error 1
[code]...
I have been googleing for the past week to try and resolve this with no joy. any help would be greatly appreciated. I am installing on CentOS 5.3 with config options as follows...
./configure --prefix=/usr/local --exec-prefix=/usr/local --with-authvchkpw --without-authldap --without-authmysql --disable-root-check --with-ssl --with-authchangepwdir=/usr/local/libexec/authlib --with-redhat
and when I run the make commands I receive the peceeding errors (above)
View 3 Replies
View Related
Jul 22, 2011
I am having issues with 3d I am trying to start up a game called auteria but it displays this error "Could not find a compatible opengl display resolution. Please check your driver configuration. (Error: Couldn't find a matching GLX visual)" I am on ubuntu 10.10 could anybody give me a solution on how to fix this issue?
View 5 Replies
View Related
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
Mar 24, 2011
so im following these directions
mplayer -ao null -loop 0 -ss 0:0:33 -endpos 2 medianame.avi
mplayer -ao null -ss 0:6:26 -endpos 3 medianame.avi -vo jpeg:outdir=animated_gifcd
when i put in a movie that say has one name like "christmas.avi" it works fine, but if i put in a name like "dead space aftermath.avi" i get error messages saying that it can find "dead", cant find "space" and cant find "aftermath". how to fix this? I made sure to type everything correctly.
View 5 Replies
View Related
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
Aug 21, 2011
I've got a setup where I need to use 'find' to find 0 or more files in a certain directory, however, 'find' always produces an error when there are no files that match a certain check. Is it possible to run 'find' while having it omit errors when no files match the pattern?
View 2 Replies
View Related
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
Mar 2, 2010
I want to make g++ find a bunch of header files in a very specific folder, that is not in any path without having to type out the -I command over and over each time I use a new command. any idea to make it automatically look for the headers in that folder. (please don't respond "move them to another folder where it already looks").
View 3 Replies
View Related
Nov 11, 2010
We make everyday a DB Mysql backup on Linux redhat Enterprise. We are using a bash shell script (and putting it in the crontab) to execute it automatically everyday. We added a line to this script telling, once the backup has completed, to find old backup files (stored on hard disk after each backup) older than x days to remove them. We use the find command (search for file type) with the mtime option and in combination with rm command. Everything runs ok but we also want to add some new code to the same line: If find command cannot find anything or fails, for example if it cannot delete file or fails, send the error message (standard error output) to an error file (like error000001 and increasing) and mail the errorxxxx file to an email address for example to admin@companyname.com. What would be the code for this issue to add it to our find command in the same bash shell script??
View 2 Replies
View Related
Sep 9, 2010
i tried to install gcc-4.5.0 on opensuse 11.2 I gave ./configure but it gave the error couldn't find the c compiler.. the message was
[Code]....
View 2 Replies
View Related
Feb 14, 2011
I have builded a svn server using apache before. But recently I can not check out from the svn server,and error code is as follows:
svn: Can't find a temporary directory: Internal error
I have searched in the google,they said no space on the server.But my server have much space.
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 49G 22G 24G 48% /
tmpfs 220M 0 220M 0% /dev/shm
/dev/sdb1 917G 867G 3.8G 100% /mnt/md0
/dev/hda1 151G 129G 15G 91% /mnt/meego
The server is at the /dev/hda1 partition.
View 7 Replies
View Related
Apr 12, 2011
how to rectify these errors..
RCC: Error in 'appchooser.qrc': Cannot find file 'accessories-dictionary.png'
RCC: Error in 'appchooser.qrc': Cannot find file 'akregator.png'
RCC: Error in 'appchooser.qrc': Cannot find file 'digikam.png'
RCC: Error in 'appchooser.qrc': Cannot find file 'k3b.png'
RCC: Warning: No resources in 'appchooser.qrc'.
and my .qrc file is like this
<!DOCTYPE RCC><RCC version="1.0">
<qresource>
<file>accessories-dictionary.png</file>
<file>akregator.png</file>
<file>digikam.png</file>
code....
View 3 Replies
View Related
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
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
Oct 13, 2010
i followed the instructions shown below working from my home directory. when i run lshw, it says command not found. what can i do to find/create this program?
[Code]...
View 1 Replies
View Related
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
Jan 27, 2011
Is there any command to find system make and model in linux like how solaris shows "Netra X4200" when we give command "uname -a"
View 1 Replies
View Related
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
May 23, 2011
Trying to build a driver for a TV tuner card. When I enter 'make menuconfig', I get this error:
make[2]: Entering directory `/usr/src/linux-headers-2.6.32-5-amd64'
/lib/modules/2.6.32-5-amd64/source/scripts/Makefile.build:44: /lib/modules/2.6.32-5-amd64/source/scripts/basic/Makefile: No such file or directory
make[3]: *** No rule to make target `/lib/modules/2.6.32-5-amd64/source/scripts/basic/Makefile'. Stop.
make[2]: *** [scripts_basic] Error 2
Suspect I need another package in addition to linux-headers.
Running Squeeze, amd64, KDE.
View 7 Replies
View Related
Jan 10, 2010
i am sorry, but i can not find the option to make the taskbar transparant.i have kde 4.3.4
View 8 Replies
View Related
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
Sep 28, 2010
I have a Triumph-Adler DC-2316 printer and I can't find the appropriate driver to make it work. I tried some Generic drivers but nothing worked.
View 1 Replies
View Related
Jan 18, 2011
Make menuconfig doesn't find ncurses headers on my system, howerver ncurses-devel package is installed. I get the following error message:
Code:
make menuconfig
*** Unable to find the ncurses libraries or the
[code]...
View 3 Replies
View Related
Oct 29, 2010
Our organization uses OpenSuSE servers (NFS/LDAP/SAMBA/more...) and are in the works migrating all the workstations for users to SuSE from Windows as well.
I like how in windows the mapped network drives are all listed in My Computer. OpenSuSE has a similar "My Computer" that lists current drives, and general PC info (in KDE, which is what we use in the office). Is there a way to list mounted drives in here, so that users can easily find the network drives? I'm open to alternatives to listing it in SuSE's sysinfo page, as long as it doesn't mean telling my old school windows users, "oh yeah, all your network drives are in /mnt/shares/...they wont have a CLUE what that means. It HAS to be easy for them to navigate to.
My attached image is just a screen shot of SuSE's "My Computer" so you can see where I would ideally like to put the shares.
View 1 Replies
View Related
Nov 10, 2010
I would like to make my Fedora 13 box a DHCP server for my network. I can not find dhcpd in YUM. Is there a way to make my Fedora box a dhcp server? This was relay easy with Suse, but my Opensuse box just suffered a hard drive failure.
View 1 Replies
View Related
Aug 18, 2011
I'm sure this is a painfully naive question, but I don't suppose it can possibly lower my reputationFor Good Reasons,use a custom build of the audio editor audacity rather than the version in the openSUSErepositories. What I can't seem to figure out is how to get it to find and load the LADSPA signal processing plug-ins. I have the regulation ladspa libraries (1.13-6.2) from the Oss repository installed. The files reside at /usr/lib64/ladspa . audacity is built with ladpsa support enabled, and indeed reports that it is enabled if I look at the Effects tab under preferences. I have even entered the ladspa library path in a "ladspa.conf" file under /etc/ld/so.conf.d, which may or may not help. Regardless, I don't seem to see the ladpsa effects listed when I run audacity
View 8 Replies
View Related
Sep 26, 2010
I need to strip the executable flag from all files within a certain directory and sub directories. Right now I'm doing it with a 2 step process
find /dir/ -type f -exec chmod ugo-x {} ;
find /dir/ -type d -exec chmod ugo+rx {} ;
Is it possible to modify the first line so that I can strip exec flag from all non-directory files? Since this needs to be done on a fairly regular basis across a lot of directories and files, I'd prefer not to use a bash script which would slow it down.
View 1 Replies
View Related