• 给vagrant中的precise64升级VBoxGuestAdditions


    位置:/usr/share/virtualbox/VBoxGuestAdditions.iso

    在host(ubuntu 12.04 64)中:

    查看虚拟机的名字:
    jb@H38:~/vm/vagrant$ vboxmanage list vms
    "vagrant_1387418831" {1b1a4e65-c16f-4ce0-8e2c-4d62aa421f77}

    名字为:vagrant_1387418831

    $ VBoxManage storageattach  vagrant_1387418831   --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium /usr/share/virtualbox/VBoxGuestAdditions.iso

    =================================================================================================================================================================

    在guest中的操作:

    $ sudo apt-get install dkms
    $ sudo apt-get update
    $ sudo apt-get dist-upgrade
    $ sudo apt-get install gcc build-essential linux-headers-$(uname -r)

    $ sudo mount /dev/cdrom /mnt              # or any other mountpoint

    $ cd /mnt
    $ sudo ./VBoxLinuxAdditions.run

    如果提示:
    Installing the Window System drivers …fail!
    (Could not find the X.org or XFree86 Window System.)

    可以安装 sudo apt-get install xserver-xorg xserver-xorg-core
    需要安装67M的x.org

    不安装也能成功,只是有些在服务器上不需要的功能会失效。

    $ sudo reboot

    安装出错的log在
    $ cat /var/log/vboxadd-install.log

  • 相关阅读:
    openstack 介绍
    python实现图片批量剪裁的程序
    iOS开发多线程篇—GCD介绍
    block代码块介绍
    ios中的界面跳转方式
    NSNotificationCenter消息机制的介绍
    ios的手势操作之UIGestureRecognizer浅析
    collectionViewFlow的界面编写
    UITableView的简单应用介绍
    滚动视图创建
  • 原文地址:https://www.cnblogs.com/vipzrx/p/3489428.html
Copyright © 2020-2023  润新知