zoukankan      html  css  js  c++  java
  • VirtualBox Linux服务vboxservicetemplate

    vbox-service-template is an init.d script template for running a VirtualBox machine as a service.

    Sending a stop command to the service will either save the state of the VM (hibernate) or send the ACPI Power Button signal to the VM and wait for it to self-terminate (powerbutton).

    Some more context and howto information can be found here: http://www.glump.net/howto/

    virtualbox_as_a_service下载

    Installation
    Make a copy of the script as /etc/init.d/vbox-NAME and follow the instructions in the comments in the script. Make sure you set the x bit on the file to make it executable.

    To mark the service for automatic start at boot time:

    Ubuntu: update-rc.d vbox-NAME defaults 90 (The '90' is to make sure it starts after the VirtualBox core services.
    Fedora: chkconfig vbox-NAME on
    To remove the service from the boot process:

    Ubuntu: update-rc.d -f vbox-NAME remove
    Fedora: chkconfig vbox-NAME off
    Additionally, if you are going to shut down your computer while a VM is running you should tell VirtualBox how to handle shutdown. Create or edit /etc/default/virtualbox:

    SHUTDOWN_USERS="user1 user2" # space-delimited list of users who might have runnings vms
    SHUTDOWN=savestate # if any are found, suspend them to disk
    Usage
    Start
    service vbox-NAME start

    Start and wait for the VM to be reachable on the network
    service vbox-NAME start-wait

    Stop (hibernate or power button -- see config lines in script)
    service vbox-NAME stop

    Restart
    service vbox-NAME restart

    Restart and wait for the VM to be reachable on the network
    service vbox-NAME restart-wait

    Display status
    service vbox-NAME status

  • 相关阅读:
    Spring 核心API
    python装饰器
    python作业(day1)
    Kali Linux 更新源
    一维数组模拟数据结构-------栈
    Spring事务管理
    Linux用户管理命令
    Linux 帮助命令
    Spring对jdbc的支持
    springboot集成shiro 循环重定向
  • 原文地址:https://www.cnblogs.com/top5/p/2764538.html
Copyright © 2011-2022 走看看