This forum has been archived. All content is frozen. Please use KDE Discuss instead.

Help installing, im a complet n00b..

Tags: None
(comma "," separated)
elsheepo
Registered Member
Posts
1
Karma
0
well, i downloaded ktorrent-3.0.0.tar.bz2.gz.bz2
and thats as far as ive goten,.... please help someone, im very sad atm. :( i feel ashamed
MoDaX
Registered Member
Posts
241
Karma
0
OS
elsheepo wrote:well, i downloaded ktorrent-3.0.0.tar.bz2.gz.bz2
and thats as far as ive goten,.... please help someone, im very sad atm. :( i feel ashamed

tell us which distro you are using?
wilf852
Registered Member
Posts
1
Karma
0

Wed Oct 08, 2008 6:45 pm
Was there ever an answer to the above question as i am in the same boat i am sorry to say. Been looking round and cant find anything on the net to really help me.

All i have done at the moment is downloaded the ktorrent-3.1.3.tar.bz2.

Please can you help me out with what to do next any one.

THANKS!!!!
MoDaX
Registered Member
Posts
241
Karma
0
OS

Wed Oct 08, 2008 7:20 pm
Answer to my question above.
Tapazod
Registered Member
Posts
1
Karma
0

help

Thu Oct 09, 2008 10:44 pm
im haveing trouble installing ktorrent i just downloaded gos gadgets.

im completly new the the Linux world so yeah
source
Registered Member
Posts
4
Karma
0

Sat Oct 11, 2008 12:09 pm
on kde3
extract the file, change into the directory wit cd ktorrent
run ./configure
run make
change to root
run make install

on kde4
extract the file, change into the directory wit cd ktorrent
Make the direktory build: mkdir build
Change into the directory: cd build
run:
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix/of/kde4/installation ..
make
change to root:
make install
George
Moderator
Posts
5421
Karma
1

Mon Oct 13, 2008 8:00 am
Or even easier use your distributions package management thing to install it, most distros keep their packages up to date.
stoeptegel
Registered Member
Posts
1075
Karma
0

Mon Oct 13, 2008 8:06 am
George wrote:Or even easier use your distributions package management thing to install it, most distros keep their packages up to date.


Indeed, sidux for example is almost always up to date with KTorrent packages.
Ankhwatcher
Registered Member
Posts
12
Karma
0

Wed Nov 19, 2008 11:33 pm
"on kde4
extract the file, change into the directory wit cd ktorrent
Make the direktory build: mkdir build
Change into the directory: cd build
run:
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix/of/kde4/installation ..
make
change to root:
make install"

A problem arises when I try to run the cmake command:

Code: Select all
user@computer:~/Desktop/ktorrent/build$ cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix/of/kde4/installation ..
CMake Error at /usr/share/cmake-2.6/Modules/FindKDE4.cmake:72 (MESSAGE):
  ERROR: cmake/modules/FindKDE4Internal.cmake not found in
  /home/user/.kde/share/apps;/usr/share/kubuntu-default-settings/kde4-profile/default/share/apps;/usr/share/kde4/apps
Call Stack (most recent call first):
  CMakeLists.txt:2 (find_package)
Jesper
Registered Member
Posts
54
Karma
0

Thu Nov 20, 2008 7:48 am
Use Yum, Apt or whatever your distro uses for package management as George said

As root:
$ yum install ktorrent
or
$ apt-get install ktorrent
etc...

And on KDE 4 it's
Code: Select all
tar -xvjf ktorrent-3.X.Y.tar.bz2
cd ktorrent-3.X.Y
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install


Ankhwatcher
Registered Member
Posts
12
Karma
0

Thu Nov 20, 2008 1:24 pm
Jesper wrote:Use Yum, Apt or whatever your distro uses for package management as George said

As root:
$ yum install ktorrent
or
$ apt-get install ktorrent
etc...

Yeah, did that. Now I'm trying to get one of the up-to-date beta's because I'm sick of ktorrent crashing all the time.

Jesper wrote:And on KDE 4 it's
Code: Select all
tar -xvjf ktorrent-3.X.Y.tar.bz2
cd ktorrent-3.X.Y
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install


I ran
Code: Select all
tar -xvjf ktorrent-3.2beta1.tar.bz2
cd ktorrent-3.2beta1
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install


And received the following output:
Console Output wrote:user@computer:~/Downloads/ktorrent-3.2beta1/build$ cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
CMake Error at /usr/share/cmake-2.6/Modules/FindKDE4.cmake:72 (MESSAGE):
ERROR: cmake/modules/FindKDE4Internal.cmake not found in
/home/user/.kde/share/apps;/usr/share/kubuntu-default-settings/kde4-profile/default/share/apps;/usr/share/kde4/apps
Call Stack (most recent call first):
CMakeLists.txt:2 (find_package)


CMake Warning (dev) in CMakeLists.txt:
No cmake_minimum_required command is present. A line of code such as

cmake_minimum_required(VERSION 2.6)

should be added at the top of the file. The version specified may be lower
if you wish to support older CMake versions for this project. For more
information run "cmake --help-policy CMP0000".
This warning is for project developers. Use -Wno-dev to suppress it.

-- Configuring done
user@computer:~/Downloads/ktorrent-3.2beta1/build$ make
make: *** No targets specified and no makefile found. Stop.


BTW Do I need to remove ktorrent before installing the beta?
MoDaX
Registered Member
Posts
241
Karma
0
OS

Thu Nov 20, 2008 1:29 pm
BTW Do I need to remove ktorrent before installing the beta?

Yes since you're installing to the same prefix.
Ankhwatcher
Registered Member
Posts
12
Karma
0

Thu Nov 20, 2008 1:32 pm
MoDaX wrote:
Me wrote:BTW Do I need to remove ktorrent before installing the beta?

Yes since you're installing to the same prefix.

Okay done.
Jesper
Registered Member
Posts
54
Karma
0

Thu Nov 20, 2008 1:36 pm
at first you said
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix/of/kde4/installation ..

;)

Do you have the latest version of cmake installed? I am not 100% sure what the error means, for that we need george around :)


Ankhwatcher
Registered Member
Posts
12
Karma
0

Thu Nov 20, 2008 1:38 pm
Jesper wrote:at first you said
cmake -DCMAKE_INSTALL_PREFIX=/path/to/prefix/of/kde4/installation ..

;)

Do you have the latest version of cmake installed? I am not 100% sure what the error means, for that we need george around :)

Meh, don't put riddles in your FAQ

I just tried removing and reinstalling cmake, but i get the same errors.


Bookmarks



Who is online

Registered users: bartoloni, Bing [Bot], Google [Bot], Yahoo [Bot]