Skip to content

Instantly share code, notes, and snippets.

@tonejito
Last active December 14, 2015 16:08

Revisions

  1. tonejito revised this gist Mar 7, 2013. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions skype-install.sh
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/bin/bash

    # Download
    wget -c 'http://www.skype.com/en/download-skype/skype-for-linux/downloading/?type=debian32' -O skype-debian_4.1.0.20-1_i386.deb
    # 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
  2. tonejito created this gist Mar 7, 2013.
    18 changes: 18 additions & 0 deletions skype-install.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    #!/bin/bash

    # Download
    wget -c 'http://www.skype.com/en/download-skype/skype-for-linux/downloading/?type=debian32' -O 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 "= ^ . ^ ="