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, November 19th 2003, 12:46am

Newby: Help with install

I am running Mandrake 9.2, KDE 3.1.3 and have just downloaded Kopete 0.7.4 in .gz format. Can someone please tell me how to proceed from here - what ommands where? Is there a book or manual that will help me come to grips with this OS in a quick and easy way?

Thanks.

-David

2

Wednesday, November 19th 2003, 9:00pm

I use these set of commands in Konsole
./configure --prefix=/usr
make
make install
make clean


Make sure you switch to the directory of Kopete. I have to switch to root to use the ./configure command. Do so by typing 'su' followed by your root password.

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

3

Wednesday, November 19th 2003, 11:39pm

Quoted

Original von Remus

I have to switch to root to use the ./configure command.



WHY?!?!?!?!?

Are you configuring in a directory where you dont have permissions?

4

Thursday, November 20th 2003, 9:56pm

Seb, how else would I do it? I'm new to Linux and that has been the only way to do it. When typing just ./configure it yells at me saying I don't have permission.

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

5

Friday, November 21st 2003, 1:24pm

remus - the method that i use to compile all of my programs is as follows.

i will download the file into a tmp directory in my home.

[code:1]
seb@shadowfax seb% cd /home/seb/tmp
seb@shadowfax tmp% tar -zxvf kopete-0.7.4.tar.gz
seb@shadowfax tmp% cd kopete-0.7.4

seb@shadowfax kopete-0.7.4% ./configure --prefix=/usr
seb@shadowfax kopete-0.7.4% make
seb@shadowfax kopete-0.7.4% su -c "make install"
Password:
seb@shadowfax kopete-0.7.4%

[/code:1]

as a general rule, it is advisable that you are logged in as a super-user for minimum time only. This is a security reason.

The command,
su -c "make install"

will prompt you for the su password and will then run the command in the quotes. It will then automatically log out from root access.



If you *are* doing all of this under your home directory etc, set the permissions. To do this, the easiest way is to open up konqueror, or a file manager and right click on your folder, and select properties.

In the permissions make sure you have checked the boxes which say "View, Write and Execute" for your user.

6

Friday, November 21st 2003, 10:07pm

Thanks Seb, one more question though... I cannot do the ./configure command.. here is the error I get

./configure --prefix=/usr
./configure: line 1138: config.log: Permission denied

seb

Professional

Posts: 622

Location: Sydney

Occupation: Student

  • Send private message

7

Saturday, November 22nd 2003, 12:06am

possible that you extracted the file as root???

try deleting it (under root), and re extracting the file as your username.

8

Saturday, November 22nd 2003, 6:48am

I did extract the file as my normal user... when looking at the permissions, all of them have read and write access too.