how to install skype on my ubuntu 12.04 LTS I have tried for sudo apt-get install skype but no use
Asked
Active
Viewed 187 times
4 Answers
1
You can download *.deb file from skype website, navigate to file location, press F4 to open terminal window and type:
sudo dpkg -i filename.deb
You may need to do
sudo apt-get -f install
to install some dependencies
The last step is to install Pulse audio, because without it you won't be able to play/record sound with skype:
sudo apt-get install pavucontrol
Happy skyping!
Jirka Vavřík
- 11
- 1
0
- Go to Software and Updates
- In the Other Software tab check Canonical Partners
- Close the dialogue box Ubuntu will reload the Software Cache
- Go to terminal and run
sudo apt-get install skype
Ravan
- 9,309
- 17
- 57
- 80
Gibreel Abdullah
- 305
- 3
- 5
- 12
0
How to install skype is explained here: https://help.ubuntu.com/community/Skype
Start terminal by pressing alt+f2, write gnome-terminal and press enter then:
For enabling multiarch if you are using x64 version of Ubuntu
sudo dpkg --add-architecture i386
Add the "partner" repository, since Skype isn't included in the main repositories(it is not open source):
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
Install skype:
sudo apt-get update && sudo apt-get install skype pulseaudio:i386
Promille
- 508
- 3
- 12
-
in my terminal it shows my system is held with broken packages how do i correct it – king Sep 17 '15 at 11:07
-
Try to run sudo dpkg --configure -a. – Promille Sep 18 '15 at 21:14
-
Failed to fetch cdrom://[Ubuntu 12.04 _Precise_ - Build amd64 LIVE Binary 20130203-13:50]/dists/precise/main/binary-i386/Packages Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs it sjhows like this – king Sep 19 '15 at 16:58
0
From here.
Add the PPA:
sudo sh -c "echo 'deb http://archive.canonical.com/ubuntu/ precise partner' >> /etc/apt/sources.list.d/canonical_partner.list"Update your source list:
sudo apt-get updateInstall skype:
sudo apt-get install skype
-
when i use - sudo sh -c "echo 'deb http://archive.canonical.com/ubuntu/ precise partner' >> /etc/apt/sources.list.d/canonical_partner.list" then it ask for password when i type password it get back top normal what should i do now – king Sep 17 '15 at 05:58
-
-
when i use sudo apt-get update its working but al last it shows failed to fetch cd rom what should i do now – king Sep 17 '15 at 06:06
-
-
what iam a new user i dont know how to use but i have the minimum idea to use it even though i tried ur idea its failed at last it shows that failed to fdetch the cd-rom – king Sep 17 '15 at 06:19
-
Does this help you? - http://askubuntu.com/questions/125111/failed-to-download-repository-information-due-to-missing-cdrom – Raphael Sep 17 '15 at 06:21
-
-