• linux 添加vmware workstation14开机自启动虚拟机


    (一). 编写脚本vmrun.sh,脚本内容如下:
    [root@localhost ~]# vi vmrun.sh
    #!/bin/sh
    #chkconfig: 2345 80 90
    #description:开机自动启动的脚本程序
    #启动vm虚拟机服务
    /usr/bin/vmrun start "/var/kvm/CentOS 7 64-bit/CentOS 7 64-bit.vmx" nogui &
    /usr/bin/vmrun start "/var/kvm/CentOS 6 64-bit/CentOS 6 64-bit.vmx" nogui &
    /usr/bin/vmrun start "/var/kvm/Windows Server 2008 R2 x64/Windows Server 2008 R2 x64.vmx" nogui &
    /usr/bin/vmrun start "/var/kvm/VMware ESXi 6.0/VMware ESXi 6.0.vmx" nogui &

    脚本第一行 “#!/bin/sh” 告诉系统使用的shell;
    脚本第二行 “#chkconfig: 2345 80 90” 表示在2/3/4/5运行级别启动,启动序号(S80),关闭序号(K90);
    脚本第三行 表示的是服务的描述信息

    注意: 第二行和第三行必写,否责会出现如“服务vmrun.sh 不支持 chkconfig”这样的错误。

    (二). 将写好的vmrun.sh脚本移动到/etc/rc.d/init.d/目录下

    [root@localhost ~]# cp vmrun.sh /etc/rc.d/init.d/

    (三).给脚本赋可执行权限

    [root@localhost ~]# cd /etc/rc.d/init.d/
    [root@localhost init.d]# chmod +x vmrun.sh

    (四). 添加脚本到开机自动启动项目中

    [root@localhost init.d]# chkconfig --add vmrun.sh
    [root@localhost init.d]# chkconfig vmrun.sh on

  • 相关阅读:
    网页游戏中PK系统的实现
    操作系统面试题
    9.26<立方网>技术笔试题
    cocos2d-x游戏之2048
    适配器模式
    工厂模式的三种形式
    面向对象设计的几大原则
    数据库的优化
    @RequestBody的使用
    vue.js小记
  • 原文地址:https://www.cnblogs.com/liqing1009/p/12793589.html
Copyright © 2020-2023  润新知