LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-03-2004, 03:31 AM   #1
Haroon
Member
 
Registered: Sep 2004
Posts: 60

Rep: Reputation: 15
Red face skype for linux


Hello
I am a new linux user and want toinstall skype in my linux readhat 8 can you expland for me how can i do it i tryed but don't socced.
Thank you
 
Old 09-03-2004, 11:54 PM   #2
bruno buys
Senior Member
 
Registered: Sep 2003
Location: Rio
Distribution: Debian
Posts: 1,511

Rep: Reputation: 46
What was the error? Did it install ok, or you couldn't run it?
 
Old 09-04-2004, 05:18 AM   #3
Haroon
Member
 
Registered: Sep 2004
Posts: 60

Original Poster
Rep: Reputation: 15
Hello bruno buys
Thank you for your mail. I use the Red hat 8 i couldn't install & run it. when i try to install it i klick on skype file which i dowload fram skypes home page then i get the massage that the " libqt>=3.2 dident find.
Thank you
 
Old 09-04-2004, 10:37 AM   #4
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by Haroon
Hello bruno buys
Thank you for your mail. I use the Red hat 8 i couldn't install & run it. when i try to install it i klick on skype file which i dowload fram skypes home page then i get the massage that the " libqt>=3.2 dident find.
Thank you
You are not running a new enough version of KDE for the dynamicly linked binary you have downloaded. Try by downloading the static build .tar file and hopefully it will run.
 
Old 09-04-2004, 10:59 AM   #5
Haroon
Member
 
Registered: Sep 2004
Posts: 60

Original Poster
Rep: Reputation: 15
I have tryed with static binary tar.bz2 with Qt 3.2 compiled in (only if the above don't work, not recommended)
but i get the massage :

"bash: ./skype_ver-0_91_0_12-staticQT.tar.bz2: cannot execute binary file"
 
Old 09-04-2004, 11:17 AM   #6
bruno buys
Senior Member
 
Registered: Sep 2003
Location: Rio
Distribution: Debian
Posts: 1,511

Rep: Reputation: 46
This tar.bz2 package has to be unpacked, compiled and then, installed.
Do this:

- Right click on it, and choose "Unpack here..."
this will create a folder.

- Enter the folder and open a terminal inside it.

- Issue

./configure

This will do several checkings on your system. If it ends ok, as root, do

make

This will compile your package and create the binary files needed to run the program.

Then, to install the compiled program, do

make install

If everything goes well, you should be able to run it.
 
Old 09-04-2004, 11:25 AM   #7
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by Haroon
I have tryed with static binary tar.bz2 with Qt 3.2 compiled in (only if the above don't work, not recommended)
but i get the massage :

"bash: ./skype_ver-0_91_0_12-staticQT.tar.bz2: cannot execute binary file"
First tar -xjvf skype_ver-0_91_0_12-staticQT.tar.bz2 then cd skype_ver-0_91_0_12 and ./skype should get it to run. You always have to extract a .tar.??? file before you can do anything with the contents that are inside the archive. In this case it will only be a an executable binary and the support files in the directory but if it was a source tarball you would follow the steps outlined in the post above this to actually build the source yourself.
 
Old 09-04-2004, 12:20 PM   #8
XavierP
Moderator
 
Registered: Nov 2002
Location: Kent, England
Distribution: Debian Testing
Posts: 19,192
Blog Entries: 4

Rep: Reputation: 475Reputation: 475Reputation: 475Reputation: 475Reputation: 475
Moved: This thread is more suitable in Linux-Software and has been moved accordingly to help your thread/question get the exposure it deserves.
 
Old 09-04-2004, 05:45 PM   #9
Haroon
Member
 
Registered: Sep 2004
Posts: 60

Original Poster
Rep: Reputation: 15
HappyTux
THANKYOU VERY MUCH i have installed the SKYPE in my linux
can you explain for me what is the mean of " -xjvf " after tar, can i use this command to unpack a zip file??
 
Old 09-04-2004, 06:00 PM   #10
HappyTux
Senior Member
 
Registered: Mar 2003
Location: Nova Scotia, Canada
Distribution: Debian AMD64
Posts: 4,170

Rep: Reputation: 244Reputation: 244Reputation: 244
Quote:
Originally posted by Haroon
HappyTux
THANKYOU VERY MUCH i have installed the SKYPE in my linux
can you explain for me what is the mean of " -xjvf " after tar, can i use this command to unpack a zip file??
x = extract
j = .bz2 extension on the .tar if .gz then you use z
v = verbose in other words show you what is going on.
f = tells it you are extracting a file it should be the last letter.

You would use the unzip app to unpack a .zip.
 
Old 09-04-2004, 07:04 PM   #11
J.W.
LQ Veteran
 
Registered: Mar 2003
Location: Boise, ID
Distribution: Mint
Posts: 6,642

Rep: Reputation: 87
Just FYI - tar has numerous other options as well, please see the man pages for details.

As HappyTux indicated though, the "tar xjvf ....." combination is typical. -- J.W.
 
Old 09-04-2004, 09:23 PM   #12
Dave Kelly
Member
 
Registered: Aug 2004
Location: Todd Mission Texas
Distribution: Linspire
Posts: 215

Rep: Reputation: 31
A bunch of the questions you have ask can be answered in greater detail if you will read the manuals.
Type:
man zip
man tar
man whatever you want to do.

Also if you are indoubt of what command to use, 'apropos' is a good question answering command.
man apropos
apropos video

If you know the command and don't know the options, use the --help flag.
apropos --help

Do a google groups search of the 'smartquestions.html' file.

Also check The Linux Document Project for a lot of things.
http://tldp.org/HOWTO/

Subscribe to The Linux Gazette for a monthly newsletter with a lot of information and articles.

There is lot of help both here and out there so you won't have to be new all the time.

Welcome to your freedom, welcome to linux.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Skype tfc Ubuntu 15 02-16-2006 07:33 PM
Skype: sound problems - FAQ on Syke Linux forum aes canis Linux - Software 2 05-31-2005 10:33 AM
Skype permafrost91 Linux - Software 1 05-24-2005 09:51 PM
skype - cant use it leosgb Linux - Software 2 02-08-2005 07:03 AM
Skype for Linux - closed beta test announced 05/16/04 furfurdemon666 Linux - Software 1 07-17-2004 01:22 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:45 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration