Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

How to install Skype on Debian 7 Wheezy 64bit

Share your HowTo, Documentation, Tips and Tricks. Not for support questions!.
Post Reply
Message
Author
User avatar
cra1g321
Posts: 241
Joined: 2011-01-20 23:03

How to install Skype on Debian 7 Wheezy 64bit

#1 Post by cra1g321 »

Notes -
This tutorial assumes you have a user account setup with sudo privileges
To make the screenshots bigger just click on them


How to install Skype on Debian Wheezy 64bit

Step 1 - Downloading Skype deb file

Open a Web Browser and go to http://www.skype.com/en/download-skype/ ... -computer/ and choose Debian 7.0 (multiarch) from the drop-down menu and save it to your system.
Image

Step 2 - Add multi-arch support

Open a terminal, type in

Code: Select all

sudo dpkg --add-architecture i386
[/b] Press enter on your keyboard then type in your password and hit enter again (Note that your password is not shown while you are typing it in)
Check the i386 architecture has been successfully added by typing in this time

Code: Select all

 sudo dpkg --print-foreign-architectures
[/b] you should then see i386 in the terminal, then type in

Code: Select all

sudo apt-get update
and hit enter
Image

Step 3 - Install the skype deb file

Now in the terminal, navigate to the directory where you saved the skype deb file you downloaded in Step 1 by using the cd command (cd = change directory).
For example if you saved it to the Downloads folder then type in

Code: Select all

cd Downloads
Now type in

Code: Select all

 ls
and you should see the skype deb file displayed, for example in the screenshot below it is skype-debian_4.2.0-13-1_i386.deb
Now install the package by entering into the terminal

Code: Select all

sudo dpkg -i skype-debian_4.2.0-13-1_i386.deb
NOTE - At the time of writing this tutorial the skype package is named skype-debian_4.2.0-13-1_i386.deb, don't use it unless the ls command outputs the same. If the ls command outputs something like skype-debian-5.0_i386.deb
then you would do sudo dpkg -i skype-debian-5.0_i386.deb
Image

Step 4 - Install the missing dependencies

You will notice when you installed the skype deb file, dpkgs ends with a message about errors, like in the screenshot below
Image

To install the missing packages that skype requires to run, enter into the terminal

Code: Select all

sudo apt-get install -f 
You will then see that apt-get displays a list of packages that are required by Skype, it then asks "Do you want to continue [Y/n] ? " , enter in the Y letter and press enter to confirm you want to install the packages.
Image

Step 5 - Check Skype loads and runs
NOTE - depending on what desktop environment you use or none (gonme3, KDE, LXDE, etc) this step might be different.
After the dependencies are done installing, you can now check if skype will run by going go to the Application menu of your desktop, go to the Internet and then click on Skype, Skype should then load like in the screenshot below.
Image
Last edited by cra1g321 on 2014-06-21 16:33, edited 3 times in total.

User avatar
edbarx
Posts: 5401
Joined: 2007-07-18 06:19
Location: 35° 50 N, 14 º 35 E
Been thanked: 2 times

Re: How to install Skype on Debian 7 Wheezy 64bit

#2 Post by edbarx »

cra1g321 wrote:This tutorial assumes you have a user account setup with sudo privileges
OR better do it the Debian way, after all, this is a Debian forum. :wink:

To become root, open a terminal, type 'su' followed by Enter, type your root password and press Enter. The command prompt will change from including $ to #.

Now, instead of having to repeatedly (aka ad-nauseam) type sudo for every command :P , you can skip 'sudo' altogether.

If you want to avoid having both the i386 and amd64 libraries gobbling up your precious RAM, you can opt to install Skype on 32 bit Debian Wheezy. I run Skype on a 32 bit system because that is more economical on resources.

If you find that Skype unscrupolously is forcing your CPU to full throttle, you can make use of a very nifty little CLI tool called cpulimit. Its manpage is very easy to understand.
Debian == { > 30, 000 packages }; Debian != systemd
The worst infection of all, is a false sense of security!
It is hard to get away from CLI tools.

User avatar
cra1g321
Posts: 241
Joined: 2011-01-20 23:03

Re: How to install Skype on Debian 7 Wheezy 64bit

#3 Post by cra1g321 »

edbarx wrote:OR better do it the Debian way, after all, this is a Debian forum. :wink:
To become root, open a terminal, type 'su' followed by Enter, type your root password and press Enter. The command prompt will change from including $ to #.
Now, instead of having to repeatedly (aka ad-nauseam) type sudo for every command :P , you can skip 'sudo' altogether.
I thought that most users will have sudo setup anyway and that asking them to use sudo is slightly safer than asking them to use the root account.
edbarx wrote: If you want to avoid having both the i386 and amd64 libraries gobbling up your precious RAM, you can opt to install Skype on 32 bit Debian Wheezy. I run Skype on a 32 bit system because that is more economical on resources.
This tutorial is for users who have a 64bit system already installed, i don't see why you would suggest to use 32bit system to avoid as you say "both the i386 and amd64 libraries gobbling up your precious RAM" whenever they are going to be losing out on the amount of RAM they have by using 32bit anyway.

User avatar
edbarx
Posts: 5401
Joined: 2007-07-18 06:19
Location: 35° 50 N, 14 º 35 E
Been thanked: 2 times

Re: How to install Skype on Debian 7 Wheezy 64bit

#4 Post by edbarx »

cra1g321 wrote:asking them to use sudo is slightly safer than asking them to use the root account.
I will not enter into the merits of the rather religious sudo vs su argument, but are you sure? Sudo can be abused just like a root account as follows:

Code: Select all

sudo passwd
and

Code: Select all

sudo rm -rf --no-preserve-root /
and

Code: Select all

sudo echo "deb http://ftp2.fr.debian.org/debian/ wheezy main" >> /etc/apt/sources.list
sudo echo "deb http://ftp2.fr.debian.org/debian/ jessie main" >> /etc/apt/sources.list
cra1g321 wrote:i don't see why you would suggest to use 32bit system to avoid as you say "both the i386 and amd64 libraries gobbling up your precious RAM" whenever they are going to be losing out on the amount of RAM they have by using 32bit anyway.
A 32bit system does not have any 64 bit libraries, otherwise it would be multiarch. Opting to load one set of libraries is definitely saving on resources.
Debian == { > 30, 000 packages }; Debian != systemd
The worst infection of all, is a false sense of security!
It is hard to get away from CLI tools.

man_without_clue
Posts: 49
Joined: 2012-02-10 14:24

Re: How to install Skype on Debian 7 Wheezy 64bit

#5 Post by man_without_clue »

Today, I installed skype 4.3 on Debian Wheezy 64 bit.

I had previously installed Skype 4.2.
Had problem with microphone not picking up sound. I was hoping updating to 4.3 would fix this problem but no luck.

I just want to know if those who installed Skype here can use Skype without any problem.

Bulkley
Posts: 6386
Joined: 2006-02-11 18:35
Has thanked: 2 times
Been thanked: 39 times

Re: How to install Skype on Debian 7 Wheezy 64bit

#6 Post by Bulkley »

man_without_clue wrote:I just want to know if those who installed Skype here can use Skype without any problem.
A few weeks ago I installed Skype on my dual boot laptop (Wheezy 64bit). It worked, sorta. I also installed Skype on the Windows boot on the same machine (Win 7). On this machine, the Windows Skype is dramatically better, so much so that I removed it from Wheezy. I don't like using Windows and avoid it most of the time but with Skype it is a no-brainer. The truth is, I don't like Skype either but I can't get anyone else in my family to even try any alternatives; it's either Skype or bury my head in the sand. I find it stunning that such a flawed product can get such loyalty.

man_without_clue
Posts: 49
Joined: 2012-02-10 14:24

Re: How to install Skype on Debian 7 Wheezy 64bit

#7 Post by man_without_clue »

Can you elaborate more why you are saying Windows Skype is better?
Is your Debian skype working with microphone?

Bulkley
Posts: 6386
Joined: 2006-02-11 18:35
Has thanked: 2 times
Been thanked: 39 times

Re: How to install Skype on Debian 7 Wheezy 64bit

#8 Post by Bulkley »

man_without_clue wrote:Can you elaborate more why you are saying Windows Skype is better?
Faster, smoother, clearer, better GUI. To say any more would take it too far from the OP's intent with this thread. Do what cra1g321 says and troubleshoot.

Post Reply