zoukankan      html  css  js  c++  java
  • Debian安装vmware虚拟机

    Debian安装VMware本身并不难,到官网上下载一下安装包就可以安装了,但是装好之后会有一个问题,那不是再用aptitude或者软件中心安装其它软件时会出现无法安装的问题,这个就相当的严重了,据说这是一个vmware的bug...具体的错误提示类似于下面给出的:

        insserv: warning: script 'K01vmware' missing LSB tags and overrides

        insserv: warning: script 'S50vmware-USBArbitrator' missing LSB tags and overrides

    insserv: warning: script 'vmware-USBArbitrator' missing LSB tags and overrides
    insserv: warning: script 'vmware' missing LSB tags and overrides

    解决方法如下:

    在/etc/insserv/overrides/下新建vmware,内容如下:

    ### BEGIN INIT INFO
    # Provides:          vmware
    # Required-Start:    $remote_fs $syslog
    # Required-Stop:     $remote_fs $syslog
    # Default-Start:     2 3 5
    # Default-Stop:      2 3 5
    # Short-Description: VMware VMX service for virtual machines
    # Description:       Allows running of VMware virtual machines.                                    
    ### END INIT INFO

    在/etc/insserv/overrides/下新建vmware-USBArbitrator,内容如下

    ### BEGIN INIT INFO
    # Provides:          vmware-USBArbitrator
    # Required-Start:    $remote_fs $syslog vmware
    # Required-Stop:     $remote_fs $syslog vmware
    # Default-Start:     2 3 5
    # Default-Stop:      2 3 5
    # Short-Description: Start daemon when vmware starts
    # Description:       Enable service provided by daemon.
    ### END INIT INFO

    在/etc/insserv/overriders/下新建vmware-workstation-server

    ### BEGIN INIT INFO
    # Provides:          vmware-workstation-server
    # Required-Start:    $remote_fs $syslog
    # Required-Stop:     $remote_fs $syslog
    # Default-Start:     2 3 5
    # Default-Stop:      2 3 5
    # Short-Description: have not defined yet
    # Description:       the same as the line ahead                                    
    ### END INIT INFO

    希望可以帮到遇到和我一样问题的朋友~~^_^.....

  • 相关阅读:
    RMQ Tarjan的Sparse-Table算法
    POJ3461一道kmp题,字符串Hash也可
    hdu3294 Manacher算法模板
    SQL复制数据表及表结构
    Delphi ResourceString的用法
    锐浪报表 Grid++Report 一维码无法固定条形码打印宽度
    Delphi中点击网页弹出的Alert对话框的确定按钮
    Delphi实现获取句柄并发送消息的方法(FindWindow、FindWindowEx、EnumChildWindows、SendMessage)
    Delphi 常用API 函数列表
    Delphi WinAPI 消息函数 SendMessage函数和 PostMessage的区别
  • 原文地址:https://www.cnblogs.com/wbbice/p/2327956.html
Copyright © 2011-2022 走看看