Skip to content

Instantly share code, notes, and snippets.

@leandrovianna
Created December 3, 2014 19:21
Show Gist options
  • Save leandrovianna/5bb4ad0b2c8672dec001 to your computer and use it in GitHub Desktop.
Save leandrovianna/5bb4ad0b2c8672dec001 to your computer and use it in GitHub Desktop.

Revisions

  1. leandrovianna created this gist Dec 3, 2014.
    27 changes: 27 additions & 0 deletions pipelight_install.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,27 @@
    #!/bin/bash

    #obs.: executar esse script com permissões de root

    #adicionando arquitetura i386
    dpkg --add-architecture i386

    cd /tmp

    wget http://download.opensuse.org/repositories/home:/DarkPlayer:/Pipelight/Debian_7.0/Release.key

    apt-key add Release.key

    echo "deb http://download.opensuse.org/repositories/home:/DarkPlayer:/Pipelight/Debian_7.0/ ./" > /etc/apt/sources.list.d/pipelight_repo.list

    apt-get update

    apt-get install pipelight-multi

    pipelight-plugin --update

    pipelight-plugin --enable silverlight

    pipelight-plugin --update

    echo "Instalacao do Pipelight com Silverlight concluida"
    exit 0