You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Wednesday, February 11th 2004, 6:00pm

How I do this and That

Hi
Im new and I have a few questions.
PLEASE! After I download the file ... whats next!?
if (pills<=1 || pills ==0)

cout<<"Im not an addict anymore...\n";

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

2

Thursday, February 12th 2004, 10:06am

You have to be a little more specific about these sorts of questions. linux packages come in all shapes and sizes, different types and there are different methods for installing them.

You have binary packages which are precompiled, such as rpms.
Default installation for an rpm is as such:
(as root)
[code:1]
%> rpm -i package_name.rpm
[/code:1]

There are also (and most common), source distributions where you will have to compile the code to make the application for your specific computer. generic installation is as follows -
[code:1]
%> ./configure
%> make
%> su -c "make install"
[/code:1]

hth.
Seb[/code]