Tagged Questions
0
votes
0answers
34 views
Recompile a binary installation? (problems installing ejabberd XMPP server)
This is either a basic unix problem or one specific to ejabberd - I don't know enough to know which it is.
So I've installed ejabberd XMPP server using an OSX installer version 2.1.11 -- ...
5
votes
3answers
241 views
Installing from source. How to resolve dependencies without destroying the package manager.
I don't consider myself a total noob, but compiling and installing software is a pain and problem I cannot overcome. I just want to run down through my understanding of this process with someone more ...
1
vote
1answer
272 views
Install newer version of application in $HOME without root access and linking to installed app
I am new to installing application from source and just learning the best practices to do so.
I have this linux box without root access with a quite old emacs, so I downloaded the latest version and ...
6
votes
3answers
3k views
Why do some packages use 'make install' while other use 'sudo make install'
I recently installed LAME encoder on my server to convert wav to mp3 and that worked with './configure, make, make install;
I then tried to install OGG encoder and that requires './configure, make, ...
2
votes
3answers
1k views
Difference between “make install” and “sudo make install”
Sometimes I encounter problems with using make install which gives me a permission denied error when writing to some folders. So instinctively I use sudo make install. Will this introduce additional ...
2
votes
2answers
373 views
Writing a makefile to install manual pages for a library
If I have a C library, let's say "apple", and "apple" contains functions "banana" and "carrot", how do I write the "install" line in the makefile so that "man banana" brings up the manual page for the ...