Questions tagged [install-from-source]

install-from-source refers to one method of installing software packages on Ubuntu without using the Software Center. It is generally not the recommended way of installing software.

When software is created, the code is written to source files, which are then compiled and installed. Most software packages are compiled by the developers before being distributed to the user, and all software downloaded and installed from the Software Centre has been precompiled for the convenience of the user. Compilation is the act of translating the source code from the language in which it is written, which humans can understand, to the language which machines can understand.

Occasionally though, it may be necessary for the user to compile the source code of an software package themselves. Usually it is only developers that do this so that they can test out modifications to the program before marking it as finished.

Hint: If you have to look up the definition of the word compile in this context, you shouldn't attempt this.

171 questions
24
votes
1 answer

Permission denied while running make install

I am trying to install gtk-server. First I typed the command ./configure and then make, but when I typed command make install it gave me this error: osama@osama-HP-Compaq-6910p:~/Downloads/gtk-server-2.3.1-sr$ make install /usr/bin/install: cannot…
osama
  • 1,091
  • 4
  • 13
  • 19
11
votes
1 answer

What is Ubuntu's Definition of a "Registered Application"?

I've run into this a few times when installing apps from source, and during the occasional hack with update-alternatives. So far, it's only been a minor annoyance (ie, not got in the way of the end-goal) but it's now a frustration as it's pointing…
Tom
  • 308
8
votes
4 answers

install CMake occurs a error, how to deal with it?

I am installing CMake in ubuntu, after did the last step "make install", This is the result: -- Install configuration:"" CMake Error at cmake_install.cmake:36 (FILE): file cannot create directory: /user/local/doc/cmake-2.8. Maybe need …
weixi
  • 321
5
votes
1 answer

How to install a software manually?

I have recently learnt how to install programs from the terminal and would like to know the meaning of a few commands that I use to install. For example, I downloaded python 3.2 from source and extract and try to install it but failed. I saw in the…
4
votes
1 answer

How do I install Inventory Management Software?

I am relatively new to Ubuntu- about a year- and I have still yet to figure out how to install something that is not in the software center, nor have I figured out how to use SPM for files that are not already listed. I currently run 12.04 I am…
user93893
  • 41
  • 1
  • 2
4
votes
4 answers

Error while installing libX11-devel, package cannot be found

I was installing [HTK speech recognition kit][2] from source. When I gave make all it is giving following error: (cd HTKLib && make HTKLib.a) \ || case "" in *k*) fail=yes;; *) exit 1;; esac; make[1]: Entering directory…
claws
  • 121
3
votes
3 answers

How to install second life?

I downloaded Second life from the website for Ubuntu . And I extracted the file but I cant get it to run or know how to get it to run so that I can install it right.The program is in script until I can get it to run. Can someone please tell me what…
Alisha Carruth
  • 51
  • 1
  • 1
  • 2
3
votes
3 answers

How do I install mosml?

I need to get Mosml (Moskow sml) on to my system for university. I never installed anything that wasn't in the software manager or using wine (read: my console skills are low). the package is here: http://packages.ubuntu.com/hardy/mosml thing is, I…
3
votes
2 answers

Advantages/Disadvantages of installing from source code

Possible Duplicate: Is it better to compile from source or to install from a .deb package? I've just installed conky from a source code, the advantage that I see is that I have the newest version (1.9 instead of 1.8 from repo). The disadvantage -…
Benjamin
  • 2,175
2
votes
1 answer

Installing software from source

I'm trying to understand the rational behind installing from software from source in Ubuntu 12.04. Obviously, I know I can download what I need from repos, but I want to develop a deeper understanding of Linux. As a Windows users, when I download a…
Learning
  • 21
  • 1
2
votes
3 answers

Need help installing plugin from source with make

I am running Ubuntu 12.04 x64 desktop DVD, and I have installed GIMP 2.6.12 from the Ubuntu Software Center. I need a plug-in for batch resizing of images, and found one. I downloaded the plug-in, extracted in my downloads folder. The read-me says…
1
vote
1 answer

What does "ext" mean, as referred to by the sfntly installation instructions?

This should be an easy one. I'm following these instructions to install sfntly. The instructions for installing a package say that the package should be "extracted to ext". What is meant by "ext"? Is this a directory? (I don't see a directory called…
David
  • 113
  • 4
0
votes
1 answer

Installing from source a package that has already been installed by the package manager

I've installed the newest Boost library from source (for c++ needs), but still have an older version installed by the package manager. I've put the newest version in a 'weird' location, not a preserved one. Now, when I launch my test program with…
0
votes
1 answer

"make install" errors

I am trying to install vmd on my ubuntu but " make install" is giving these errors. Can someone help? These are the errors. Thanks for the helps. if [ ! -d "/usr/local/lib/vmd" ]; then \ mkdir -p "/usr/local/lib/vmd" ; \ fi ; \ if […
0
votes
1 answer

Can't start DrRacket

I downloaded the unix source for racket5.3 http://racket-lang.org/download/ and followed the build instructions, it installed succesfully. I tried running ./drracket from the created /bin directory but it results in the following error message: …
Jon
  • 1
1
2