Last active
December 14, 2015 16:08
-
-
Save tonejito/5112844 to your computer and use it in GitHub Desktop.
Install skype on Debian 7 "Wheezy" amd64 (might also work on Debian 6).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Download http://www.skype.com/en/download-skype/skype-for-linux/downloading/?type=debian32 | |
wget -c 'http://download.skype.com/linux/skype-debian_4.1.0.20-1_i386.deb' | |
# Try to install (it will fail) | |
dpkg -i --force-architecture skype-debian_4.1.0.20-1_i386.deb | |
# Add i386 architecture to the system | |
dpkg --add-architecture i386 | |
# Update package lists | |
apt-get update | |
# Install and resolve dependencies | |
apt-get -f install | |
printf "= ^ . ^ =" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment