zoukankan      html  css  js  c++  java
  • Ubuntu 14.04 安装 VirtualBox

    参考: ubuntu14.04,安装VirtualBox 5.0(虚拟机软件)!

    由于Vagrant工具的需要,安装了一下VirtualBox. 使用参考链接的法一居然在软件中心里面报错,我想可能是没有进行apt-get update的原因吧,于是用了比较笨的法二,通过添加源的方法安装。

    具体步骤:

    备份系统文件:

    sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup
    

    更改系统文件:

    sudo vim /etc/apt/sources.list
    

    摁O键,新起一行并进入编辑模式,输入以下内容:

    ## add by wasdns at 2016/10/23
    
    ## for installing Virtualbox
    
    deb http://download.virtualbox.org/virtualbox/debian vivid contrib
    

    :wq保存退出。

    添加公钥:

    wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
    

    更新:

    sudo apt-get update
    

    安装即可:

    sudo apt-get install virtualbox-5.0
    

    2016/10/23

  • 相关阅读:
    LeetCode "Sum Root to Leaf Numbers"
    LeetCode "Single Number"
    POJ #1033
    POJ #1011
    POJ #2411
    POJ #1276
    POJ #1260
    POJ #1221
    POJ #1080
    POJ #1050
  • 原文地址:https://www.cnblogs.com/qq952693358/p/5989058.html
Copyright © 2011-2022 走看看