zoukankan      html  css  js  c++  java
  • ubuntu skype 安装

    Installing Skype

    简单描述下:
    1. 在源服务器里面把Canonical Partner Repository 选上
    2. 然后直接sudo apt-get install skype,就可以了。

    Since Ubuntu 10.04 (Lucid Lynx), Skype is part of the Canonical partner repository. To install Skype add the Canonical Partner Repository and install Skype via the Software-Center or via the Terminal.

     

    sudo apt-get update && sudo apt-get install skype

     

    Installing Skype on older Ubuntu versions.

    Skype is not available in any Ubuntu software repository, and therefore cannot be installed with Ubuntu's package management software such as Synaptic or apt-get without adding a repository containing Skype. There is the official Skype repository: Skype Forum

    You can add the Apt source like this

     

    echo "deb http://download.skype.com/linux/repos/debian/ stable non-free #Skype" | sudo tee -a /etc/apt/sources.list > /dev/null

    Import the Apt key, even it is not used, but may be useful in future:

     

    sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 0xd66b746e

    Install Skype:

     

    sudo apt-get update && sudo apt-get install skype

    Using a repository, you will automatically receive future updates to the software. Please be aware that the repository is not signed, so when you try to install Skype, you will get a warning.

    If you don't want to do that, or can't (for example, if you're on amd64), perhaps the easiest way to install is from the Debian (.deb) package available directly from the Skype website. The downside of this is that you won't automatically get future updates, you will have to download the new versions as they become available.

  • 相关阅读:
    poj 1088 滑雪
    位运算与bitset
    hdu 4607 Park Visit
    树的直径
    codeforces 495D Sonya and Matrix
    German Collegiate Programming Contest 2015(第三场)
    BAPC 2014 Preliminary(第一场)
    Benelux Algorithm Programming Contest 2014 Final(第二场)
    E. Reachability from the Capital(tarjan+dfs)
    poj2104 K-th Number(划分树)
  • 原文地址:https://www.cnblogs.com/IS2120/p/6746064.html
Copyright © 2011-2022 走看看