General :: Remove Software Compiled From Source?

Jan 18, 2011

I just have a short simple question. I download yukon a opengl Video capture software and tried to install it and I got it installed but I can't get it to function right. So figured I would uninstall it and ran "make uninstall" in the source and it gave me an error that is has nothing to do.

So this is my questions
if I did

Code:
$whereis yukon
#rm -rf /etc/yukon /usr/bin/yukon (and the rest of the direcories listed)
Would that work fine? for removing it from my system.

View 9 Replies


ADVERTISEMENT

General :: Update Software Compiled From Source?

Jun 28, 2010

I am trying out Zenwalk Linux and so far love it. I have had to compile a couple of bits of software from source and don't know how I would update them when a new version comes out.The options are:1. Compile the new version and hope it overwrites the old one2.Uninstall the old version and compile the new.Option 2 feels safer but how do I uninstall a bit of software installed by compiling?

View 3 Replies View Related

General :: Building RPMs From Compiled Source?

Jan 13, 2011

I already have compiled the source and I want to make an rpm. What do i do with it? Can i utilize the make file?

View 1 Replies View Related

Debian :: Compiled Source Code And Aptitude?

Jul 11, 2011

I have installed two softwares manually, from the source code downloaded from their official websites: Stellarium, and the Linux Kernel. The version of these is not the same as the one found in the official repos. My question is: does aptitude have knowledge of the existance of these softwares? Can it do any damage to them, in case, for example, I run automatic aptitude tasks, such as autoclean and dist-upgrade?

View 2 Replies View Related

Software :: Compiled HandBrake From Source - GUI Malfunction

Oct 6, 2010

I've compiled HandBrake 0.9.4 from source as well as installed it with success(--enable-Gtk). However, many buttons (among them the 'Start' and the 'Pause' ones) do not seem to work at all-they are colored grey and I cannot click on them.Probably,it's a gui malfunction.

View 8 Replies View Related

Ubuntu Installation :: Coexisting Packages And Compiled-from-source?

May 20, 2010

I have recently installed a dev branch of Postfix on my box (jaunty), in order to access some new features. This requires that I do not use any of the postfix-related packages in the repos, I have to set this all up manually.

What is the best method for me to manage this system moving forward? Do I need to prevent the repo's postfix package (or anything depending on it, like postfix-mysql, postfix-dovecot etc.) from ever being installed accidentally? Is there anything else I need to worry about? How do you folks generally manage having compiled, customized versions of software that exists in the repos on your systems?

View 1 Replies View Related

Ubuntu :: How To Remove Compiled Kernel

Jan 17, 2011

I compiled the kernel 2.6.36.I want to remove it.How sholud i proceed?

View 1 Replies View Related

Ubuntu :: Compiled Freetype From Source Most Of Fonts Look Awful Auto Hinter Prob?

Nov 24, 2010

I'm a compiling noob, but one who can follow well-written directions. I was led to believe that I needed to compile an updated version of freetype to satisfy some build dependencies in Wine, which I also needed to compile to be able to use a custom patch. So now my fonts look awful. I read the directions that came with the freetype source code, and one thing I didn't configure properly was the auto-hinter, which I believe to be the problem (although that's just an educated guess), since the documentation lacked the necessary docs.

how do I go back to stonking great fonts? I'd rather keep the new version of freetype, if someone could tell me how to properly configure it to display fonts correctly.

View 3 Replies View Related

Fedora Installation :: Completely Remove Compiled Php?

Dec 14, 2010

I want to install new php so i need to uninstall previous version of compiled php 5.3.3.
make uninstall is not working showing make: No rule to make target `uninstall'. Stop.what should i do to remove previously installed php completely so that i can install a new one??

View 2 Replies View Related

General :: Remove Program Installed From Source?

Feb 28, 2011

I installed nagios program from tar.gz file (from source basically). I didn't use dpkg or apt-get, I used 'configure','make install' and then 'make' scripts. How can I remove this progrma from debian system ?

View 2 Replies View Related

General :: Remove PHP-5.3 Completely From My Machine After Make It From Source?

Oct 15, 2010

I want to remove PHP-5.3. completely from my machine after make it from source.
how can this be done?
When I try make uninstall I get:

make: * No rule to make target `uninstall'. Stop.

View 1 Replies View Related

Software :: Rpm - Remove The Source Package?

Jun 3, 2010

I have just installed ..src.rpm package. How do I uninstall it ? It's confusing to me because src and binary package share the same name ? (at least "rpm -qa" doesn't show any new src packages)

View 4 Replies View Related

Ubuntu :: Remove Programs Installed From Source?

Mar 3, 2011

Running 10.10 64bit

I tried installing the latest Mupen64Plus from source, and something went wrong, and now I get errors when trying to run it. How do I remove the link that was created from the source install?

This is what I get code...

View 2 Replies View Related

Debian :: Hacking A Deb Source Package To Remove ( Configure Options )?

Feb 21, 2011

So, there are these source packages i downloaded, which i want to build with slightly different configure options due to a bug in debian: hfd5-serial and hdf5-openmpi cannot coexist, yet some packages require the serial version of the lib , others require the openmpi.

I downloaded the sources, in order to build them, without the hdf5 thing...

I have already built this from source in Scientific Linux, and i know this can be done without hdf5.

Where do i hack into the debian source tree of a package to remove a configure option...?

./configure ... ... --without-hdf5 ...

View 9 Replies View Related

General :: Mplayer: Compiled With GUI Support?

Aug 1, 2010

Kernel 2.6.21.5, Slackware 12.0 Mplayer 1.0rc2-4.1.2.

I have compiled and installed the mplayer tarball and I have disposed of both the tarball and its contents. There was the option to compile either for the physical console alone or for both this and the GUI. And I really don't remember which one I did choose.

View 7 Replies View Related

General :: C++ Program Compiled In Fedora 14 Do Not Run?

Jan 31, 2011

I am very new in c programming. I could not get a simple compiled program to run,I am using Fedora 14. To learn the correct way I sign in to and fallow the examples listed they all compile and generate the executable file but none run.To run them I try both way double chick the executable end on the command line but it does not do any thing.

View 10 Replies View Related

General :: Program Compiled With G++ -L Option Uses Library From /usr/lib?

Jun 28, 2011

I was unable to compile a program that used libicu42 on Ubuntu 11.04, because Ubuntu 11.04 has only libicu44 and does not have libicu42 installed. So during compile time I used g++ prog.c -L mylib/ to compile the program. mylib had libicu42 (This library is a shared library and has the .so extension). The program compiled successfully, but when I tried to run it, it failed and complained that it did not find libicu42. So I had to manually install libicu42 in /usr/lib. Then the program worked.'ldd prog' revealed that it looked for libicu42 in /usr/libWhat was the point of specifying the library path using -L, if the compiled program looked for the library in /usr/lib? It's almost like it was just to satisfy the compiler.

View 3 Replies View Related

General :: Apache2 Compiled Modules Missing?

Jan 22, 2011

i couldn't find anything on google. So here is my problem: It's Debian GNU/Linux. I installed apache2 a few weeks ago, but due to some work I couldn't go on installing further things. Today I installed php5 and mysql. Everything seemed to work fine. I loaded an existing MyBB Board and WordPress Site onto the server and imported the mysql db. I can open the sites and login. However, there are problems. I think my problems are due to the compiled modules. Some are missing. I checked several sites. They all give me this listing:

Code:
apache2 -l
Compiled in modules:
core.c
mod_access.c

[Code]...

What should I do? How can I get the missing modules? Do I have to install apache again (how? remove - install? install what?)? Step-by-step instructions would be kind, because I don't know a lot about unix systems.

View 3 Replies View Related

General :: Use A Newly Compiled Dynamic Linker?

Feb 16, 2011

install a newly compiled linker as the default linker on my VM running Ubuntu. I compiled and installed a new custom kernel on my VM (linux-2.6.36) and also compiled (not install) a custom gnu c library (glibc-2.11.2) on the newly installed custom kernel. I am able to run a simple helloworld.c program to verify that my program worked successfully using the newly build dynamic linker in the /elf directory.

I want to replace the real linker inside /lib with the new linker that I compiled. I tried to make the soft link named ld-linux-x86-64.so.2 that originally points to the real linker file ld-2.11.1.so, point to my newly compiled linker, but my VM crashed. I also tried moving the compiled linker and wrote it over the original linker, and the VM crashed. None of the commands worked after that as they could not access any of the shared libraries and I received this error '/bin/bash: No such file or directory'. I also tried to change the LD_LIBRARY_PATH to point to my linker and did not have any luck there either.

View 2 Replies View Related

General :: Unable To Boot With Compiled Kernel

Feb 26, 2011

I compiled a kernel 2.6.37.1 and after compilation i am not able to boot with new kernel.

I am getting following errors

Alert :

View 2 Replies View Related

General :: Get A Windows Compiled Program To Work Through Wine?

May 28, 2010

I'm currently trying to get a windows compiled program to work through Wine to run on Linux and MacOSX.

When I run the program through wine, it prompts me to install Gecko which I do. Later on in the program, it attempts to use MSHTML to render HTML but I get these error messages on my console instead.

err:mshtml:init_xpcom NS_InitXPCOM2 failed: 80004005
err:mshtml:HTMLDocument_Create Failed to init Gecko, returning CLASS_E_CLASSNOTAVAILABLE
fixme:ole:CoCreateInstance no instance created for interface {00000000-0000-0000-c000-000000000046} of class {25336920-03f9-11cf-8fd0-00aa00686f13}, hres is 0x80040111

I'm using Wine 1.1.34 and a similar bug was supposedly fixed in 1.1.33 [URL]

View 3 Replies View Related

General :: Compiled A Kernel With TUN/Bridge Support But Cannot Find /dev/net/tun?

Jan 20, 2011

I compiled my own kernel with tun/tap and bridge support. Both modules load fine at boot time (I could read that in the dmesg output). Now I want to use it, and the /dev/net/tun node is not there, so my application gives that error. I'm trying to bridge openvpn connections. Is it possible that udevd is not doing his work?

PS: I'm on a WD MyBook World Ed NAS device. It's ARM, so I cross compiled the kernel from my debian linux machine. I also installed debian on the NAS.)

View 1 Replies View Related

General :: Nvidia Driver Is Not Working After Using A Self Compiled Kernel (2.6.38)?

Mar 19, 2011

About a month ago, I decided to go deeper in my Linux knowledge. I've been reading a lot and found out that Arch linux would be my learning distro. As I was installing Arch, it was a pain at first but I really learned a lot which I would never ever learn with Mint. Now I decided to take a step further is which "compiling your own kernel".

MY PROBLEM:

Everything was smooth in my Arch for a 2 weeks until I decided to compile my own kernel. I currently have a Nvidia GTX 460 1GB card.

BTW, the method I used to install nvidia with 2.6.37 was

Code:
pacman -S nvidia nvidia-utils
and that worked with all of the .37 kernels (-1 -2 -3 -4) which was download from kernel.org.

When I compiled the .38 (using the same .config of .37), it just boots up to the terminal (not loading gdm). However, I could still login by typing my username and password. So I've checked dmesg of both .37 and .38 and noticed that the Nvidia driver is not loaded in .38.

I tried reinstall it by running pacman and it doesn't do anything. It was thinking of uninstalling nvidia and nvidia-utils but there are so many dependencies conflicts (like screensaver, compiz, etc).

Since, I didn't want to mess up my .37 install, I just grabbed an old HDD and installed from scratch again. This time, I compiled the .38 kernel first (without gui) and then installed nvidia nvidia-utils. It was the same problem.

With this observation, I'm concluding that the nvidia and nvidia-utils from pacman is not compatible with .38.

I've read that I have to wait for nvidia to release a driver that will be compatible with the .38 kernel. Is that true? Does it mean I have to wait for nvidia/nvidia-utils to be updated from pacman? How would I know when it is updated?

I've also read about nouveau, but I guess that is not for me because it doesn't support 3D.

Is there a work around for me to use nvidia/nvidia-utils with .38?

Is nvidia and nvidia-utils proprietary drivers? What is the difference with these two and the one you download directly from nvidia?

First of all, I apologize for the bombardment of questions. As you can tell, I'm so clueless on how nvidia drivers work on linux in general (since it was spoon fed by mint) and I really would love to learn about this is a deeper level. Could someone please explain to me (LAYMANS terms) how nvidia works (and possibly a solution to my issue).

EDIT: Additional info - I have a netbook that also runs arch. It uses an Intel GMA integrated video chip which I used "xf86-video-intel" from pacman and I believe since it is open source, it works with .38 fine. So does that mean if you use an open source driver, it will work with all other kernels?

View 6 Replies View Related

General :: A C Program Which Was Compiled Properly In DevCPP Is Not Compiling In Fedora?

Oct 30, 2010

A C program which compiled well in Dev CPP compiler is not compiling in Linux-Fedora.It shows the following error message/tmp/ccy02C6e.o.eh_frame+0x12):undefined reference to '__gxx_personality_v0'collect2:ld returned 1 exit status

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

Ubuntu :: Open Source Virtual Machine - Study The Source In Order To Create My Own?

Jun 28, 2011

Is there any open source virtual machine so i can study the source in order to create my own? i'm gonna write my own, so it doesNT matter if license does not allow further development of the code.

View 1 Replies View Related

Ubuntu :: Source Code Of The Krnel From The Kernel.org - Source Trees Organization

Apr 11, 2011

i am already a little bit familiar with linux and now i want to know better the linux OS. i have downloaded the source code of the krnel from the kernel.org and i dont understand the linux source trees organization, so can somebody do me a favor and give me a link to some internet page (or at least a book) that explains that?? i have searched in the internet with the tag:::linux source trees organization and i have not found nothing interesting

View 1 Replies View Related

Software :: Where Is The Source Codes For The Open Source Drivers For Each Distros

Jan 2, 2009

We all know we can install a linux system such as Fedora 10 and use it. Being linux, one should in principle get the source codes for everything that has been precompiled (except the proprietary drivers such as nvidia) in the installation DVDs/CDs. Where are the source codes ? Is there a place I can download them ?
To avoid confusion, I am not referring to the kernel source that can be compiled to give a linux kernel, but that does not include the drivers, such as intel_drv.so.

To be more specific, the intel graphic i810 driver has been built into any linux system, but where is the exact source? One answer may be that primary source intellinuxgraphics.com. However, if anyone tries to download the every changing (i.e., keep updated almost every single day) driver source codes from freedesktop.org, it is almost certain that the source codes will not be the same as the one that is finalized in Fedora 10.

View 9 Replies View Related

General :: Matlab 7.5 Compiled Runtime Installation: Getting A "No Java Runtime Environment Was Found On This System"?

Oct 15, 2010

I am trying to install the Matlab 7.5 compiled runtime for 64-bit Linux (MCRInstaller.75.glnxa64.bin) and keep getting a "No Java Runtime Environment(JRE) was found on this system." error message.

I understand the JRE is bundled with MCRInstaller and will self-compile/install. However, I don't have admin access, could this be the source of the problem? If so, how could I fix it (not sure how to direct it to install locally without going into the source code)?

I got around this error before, but stupid me didn't write down what I did and I forgot.

View 3 Replies View Related

Programming :: Compiled, But Can't Run (fpc)/

Apr 25, 2010

How come the program is compiled without errors but I can't run it?After writing

Code:
./program
blank line appears only.

View 5 Replies View Related







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