Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
Ok, I downloaded kconstruct-stable.tar.bz2 and right now, its sitting in my documents folder. How do I go about using it now that I have downloaded it? Do I need to go about installing it in some way? I'm sorry, but I am really new to the way things work in Linux. If someone could please explain to me how to install things on Linux, that would be fantastic. Thanks!
It looks you have a source version. First make sure you have gcc and g++ installed (you can just run the commands from terminal and see if you get something different from 'command not found'. If that's the first program you have in that form, there's a big chance you need to install the programs. Just use your Mandrake tools and install all packages with name beginning with gcc and g++.
When it's done you need to unpack the file in a safe location (may be somewhere in your home dir). The commands:
cd /home/yourname/somewhere/you/have/the/file
tar xjvf kconstruct-stable.tar.bz2
A new directory (konstruct, probably) will be created. Then move to the new directory:
cd konstruct
(change the name if it's diffeent in your case)
Then compile the program:
./configure
make
make install
warning: to run the last command successfully you need to be root). So in fact it should be
./configure
make
su
(type your root password)
make install
You should now have Konstruct installed.
You may get error during the 'configure' stage. Read the messages carefully. It'll probably say that you don't have a library installed (giving you its name). If something like that happens, run the Mandrake tool to install packages, see if you have that library. The error is caused by you not having a libraryname-devel package. Install it and run configure again. Of course, if you don't have the library itself, install it with the devel package.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.