Ubuntu 18.04 update-rc.d doesn't do the right thingProblem when trying to install a service for running Virtualbox VMs headlessVirtualbox , Ubuntu 11.10 , linux-kernel 3: cannot start virtual machineVirtualBox '/etc/init.d/vboxdrv setup' issueproblem with VirtualBoxinitclt not seeing init script in Ubuntu 12 64bitHow can I start VirtualBox in the face of a DKMS error?Install script as service running under speciffied userAutostart of VirtualBox VM with root-permissionsWhat is best way for virtualbox automatic graceful guest savestate on host reboot/shutdownVirtualbox 4.3 causing error on running any guest in 16.10

The (Easy) Road to Code

What does *dead* mean in *What do you mean, dead?*?

Why do phishing e-mails use faked e-mail addresses instead of the real one?

How do you make a gun that shoots melee weapons and/or swords?

Why isn't P and P/poly trivially the same?

How can I portion out frozen cookie dough?

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

What does it take to become a wilderness skills guide as a business?

Having the player face themselves after the mid-game

Does an unused member variable take up memory?

Is divide-by-zero a security vulnerability?

Is there a math expression equivalent to the conditional ternary operator?

Boss Telling direct supervisor I snitched

School performs periodic password audits. Is my password compromised?

ESPP--any reason not to go all in?

What should I do when a paper is published similar to my PhD thesis without citation?

Precision notation for voltmeters

How to write a chaotic neutral protagonist and prevent my readers from thinking they are evil?

Who has more? Ireland or Iceland?

Vector-transposing function

In Diabelli's "Duet in D" for piano, what are these brackets on chords that look like vertical slurs?

Is it a Cyclops number? "Nobody" knows!

Limpar string com Regex

What is the purpose of a disclaimer like "this is not legal advice"?



Ubuntu 18.04 update-rc.d doesn't do the right thing


Problem when trying to install a service for running Virtualbox VMs headlessVirtualbox , Ubuntu 11.10 , linux-kernel 3: cannot start virtual machineVirtualBox '/etc/init.d/vboxdrv setup' issueproblem with VirtualBoxinitclt not seeing init script in Ubuntu 12 64bitHow can I start VirtualBox in the face of a DKMS error?Install script as service running under speciffied userAutostart of VirtualBox VM with root-permissionsWhat is best way for virtualbox automatic graceful guest savestate on host reboot/shutdownVirtualbox 4.3 causing error on running any guest in 16.10













1















I have a newly installed 18.04 system and I am installing VirtualBox on it, with the autostart startup scripts.



The autostart startup scripts correctly list the VirtualBox kernel module as a dependency in the LSB section of the /etc/init.d/ scripts as follows:



/etc/init.d/virtualbox:



### BEGIN INIT INFO
# Provides: vboxdrv virtualbox
# Required-Start: $remote_fs $network
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: VirtualBox Linux kernel module
### END INIT INFO


/etc/init.d/vboxautostart-service:



### BEGIN INIT INFO
# Provides: vboxautostart-service
# Required-Start: vboxdrv
# Required-Stop: vboxdrv
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Description: VirtualBox autostart service
### END INIT INFO


However, after I run;



sudo update-rc.d vboxautostart-service defaults


the /etc/rc*.d/ directories list vboxautostart-service as S01* and K01*. This causes the dependency between the two to not be honored, and my VirtualBox VMs do not get auto started because the kernel module is not loaded on startup.



For example, here is the dir listing of /etc/rc5.d:



S01acpid S01dbus S01saned
S01anacron S01gdm3 S01speech-dispatcher
S01apport S01grub-common S01spice-vdagent
S01avahi-daemon S01irqbalance S01ssh
S01bluetooth S01kerneloops S01unattended-upgrades
S01console-setup.sh S01ntp S01uuidd
S01cron S01plymouth S01vboxautostart-service
S01cups S01rsync S01virtualbox
S01cups-browsed S01rsyslog S01whoopsie


This works fine on 16.04. Here's the listing of /etc/rc5.d on 16.04:



README S01rsyslog S02dbus S03grub-common
S01apport S01unattended-upgrades S02irqbalance S03ondemand
S01lvm2-lvmetad S01uuidd S02mdadm S03plymouth
S01lvm2-lvmpolld S01virtualbox S02ntp S03rc.local
S01lxcfs S02acpid S02rsync
S01lxd S02atd S02ssh
S01open-vm-tools S02cron S02vboxautostart-service


Is this broken in 18.04?










share|improve this question




























    1















    I have a newly installed 18.04 system and I am installing VirtualBox on it, with the autostart startup scripts.



    The autostart startup scripts correctly list the VirtualBox kernel module as a dependency in the LSB section of the /etc/init.d/ scripts as follows:



    /etc/init.d/virtualbox:



    ### BEGIN INIT INFO
    # Provides: vboxdrv virtualbox
    # Required-Start: $remote_fs $network
    # Required-Stop: $remote_fs
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Short-Description: VirtualBox Linux kernel module
    ### END INIT INFO


    /etc/init.d/vboxautostart-service:



    ### BEGIN INIT INFO
    # Provides: vboxautostart-service
    # Required-Start: vboxdrv
    # Required-Stop: vboxdrv
    # Default-Start: 2 3 4 5
    # Default-Stop: 0 1 6
    # Description: VirtualBox autostart service
    ### END INIT INFO


    However, after I run;



    sudo update-rc.d vboxautostart-service defaults


    the /etc/rc*.d/ directories list vboxautostart-service as S01* and K01*. This causes the dependency between the two to not be honored, and my VirtualBox VMs do not get auto started because the kernel module is not loaded on startup.



    For example, here is the dir listing of /etc/rc5.d:



    S01acpid S01dbus S01saned
    S01anacron S01gdm3 S01speech-dispatcher
    S01apport S01grub-common S01spice-vdagent
    S01avahi-daemon S01irqbalance S01ssh
    S01bluetooth S01kerneloops S01unattended-upgrades
    S01console-setup.sh S01ntp S01uuidd
    S01cron S01plymouth S01vboxautostart-service
    S01cups S01rsync S01virtualbox
    S01cups-browsed S01rsyslog S01whoopsie


    This works fine on 16.04. Here's the listing of /etc/rc5.d on 16.04:



    README S01rsyslog S02dbus S03grub-common
    S01apport S01unattended-upgrades S02irqbalance S03ondemand
    S01lvm2-lvmetad S01uuidd S02mdadm S03plymouth
    S01lvm2-lvmpolld S01virtualbox S02ntp S03rc.local
    S01lxcfs S02acpid S02rsync
    S01lxd S02atd S02ssh
    S01open-vm-tools S02cron S02vboxautostart-service


    Is this broken in 18.04?










    share|improve this question


























      1












      1








      1








      I have a newly installed 18.04 system and I am installing VirtualBox on it, with the autostart startup scripts.



      The autostart startup scripts correctly list the VirtualBox kernel module as a dependency in the LSB section of the /etc/init.d/ scripts as follows:



      /etc/init.d/virtualbox:



      ### BEGIN INIT INFO
      # Provides: vboxdrv virtualbox
      # Required-Start: $remote_fs $network
      # Required-Stop: $remote_fs
      # Default-Start: 2 3 4 5
      # Default-Stop: 0 1 6
      # Short-Description: VirtualBox Linux kernel module
      ### END INIT INFO


      /etc/init.d/vboxautostart-service:



      ### BEGIN INIT INFO
      # Provides: vboxautostart-service
      # Required-Start: vboxdrv
      # Required-Stop: vboxdrv
      # Default-Start: 2 3 4 5
      # Default-Stop: 0 1 6
      # Description: VirtualBox autostart service
      ### END INIT INFO


      However, after I run;



      sudo update-rc.d vboxautostart-service defaults


      the /etc/rc*.d/ directories list vboxautostart-service as S01* and K01*. This causes the dependency between the two to not be honored, and my VirtualBox VMs do not get auto started because the kernel module is not loaded on startup.



      For example, here is the dir listing of /etc/rc5.d:



      S01acpid S01dbus S01saned
      S01anacron S01gdm3 S01speech-dispatcher
      S01apport S01grub-common S01spice-vdagent
      S01avahi-daemon S01irqbalance S01ssh
      S01bluetooth S01kerneloops S01unattended-upgrades
      S01console-setup.sh S01ntp S01uuidd
      S01cron S01plymouth S01vboxautostart-service
      S01cups S01rsync S01virtualbox
      S01cups-browsed S01rsyslog S01whoopsie


      This works fine on 16.04. Here's the listing of /etc/rc5.d on 16.04:



      README S01rsyslog S02dbus S03grub-common
      S01apport S01unattended-upgrades S02irqbalance S03ondemand
      S01lvm2-lvmetad S01uuidd S02mdadm S03plymouth
      S01lvm2-lvmpolld S01virtualbox S02ntp S03rc.local
      S01lxcfs S02acpid S02rsync
      S01lxd S02atd S02ssh
      S01open-vm-tools S02cron S02vboxautostart-service


      Is this broken in 18.04?










      share|improve this question
















      I have a newly installed 18.04 system and I am installing VirtualBox on it, with the autostart startup scripts.



      The autostart startup scripts correctly list the VirtualBox kernel module as a dependency in the LSB section of the /etc/init.d/ scripts as follows:



      /etc/init.d/virtualbox:



      ### BEGIN INIT INFO
      # Provides: vboxdrv virtualbox
      # Required-Start: $remote_fs $network
      # Required-Stop: $remote_fs
      # Default-Start: 2 3 4 5
      # Default-Stop: 0 1 6
      # Short-Description: VirtualBox Linux kernel module
      ### END INIT INFO


      /etc/init.d/vboxautostart-service:



      ### BEGIN INIT INFO
      # Provides: vboxautostart-service
      # Required-Start: vboxdrv
      # Required-Stop: vboxdrv
      # Default-Start: 2 3 4 5
      # Default-Stop: 0 1 6
      # Description: VirtualBox autostart service
      ### END INIT INFO


      However, after I run;



      sudo update-rc.d vboxautostart-service defaults


      the /etc/rc*.d/ directories list vboxautostart-service as S01* and K01*. This causes the dependency between the two to not be honored, and my VirtualBox VMs do not get auto started because the kernel module is not loaded on startup.



      For example, here is the dir listing of /etc/rc5.d:



      S01acpid S01dbus S01saned
      S01anacron S01gdm3 S01speech-dispatcher
      S01apport S01grub-common S01spice-vdagent
      S01avahi-daemon S01irqbalance S01ssh
      S01bluetooth S01kerneloops S01unattended-upgrades
      S01console-setup.sh S01ntp S01uuidd
      S01cron S01plymouth S01vboxautostart-service
      S01cups S01rsync S01virtualbox
      S01cups-browsed S01rsyslog S01whoopsie


      This works fine on 16.04. Here's the listing of /etc/rc5.d on 16.04:



      README S01rsyslog S02dbus S03grub-common
      S01apport S01unattended-upgrades S02irqbalance S03ondemand
      S01lvm2-lvmetad S01uuidd S02mdadm S03plymouth
      S01lvm2-lvmpolld S01virtualbox S02ntp S03rc.local
      S01lxcfs S02acpid S02rsync
      S01lxd S02atd S02ssh
      S01open-vm-tools S02cron S02vboxautostart-service


      Is this broken in 18.04?







      scripts virtualbox startup autostart






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 30 at 16:25







      George Kyriazis

















      asked Jan 29 at 23:47









      George KyriazisGeorge Kyriazis

      63




      63




















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "89"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113965%2fubuntu-18-04-update-rc-d-doesnt-do-the-right-thing%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Ask Ubuntu!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113965%2fubuntu-18-04-update-rc-d-doesnt-do-the-right-thing%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Möglingen Índice Localización Historia Demografía Referencias Enlaces externos Menú de navegación48°53′18″N 9°07′45″E / 48.888333333333, 9.129166666666748°53′18″N 9°07′45″E / 48.888333333333, 9.1291666666667Sitio web oficial Mapa de Möglingen«Gemeinden in Deutschland nach Fläche, Bevölkerung und Postleitzahl am 30.09.2016»Möglingen

          Virtualbox - Configuration error: Querying “UUID” failed (VERR_CFGM_VALUE_NOT_FOUND)“VERR_SUPLIB_WORLD_WRITABLE” error when trying to installing OS in virtualboxVirtual Box Kernel errorFailed to open a seesion for the virtual machineFailed to open a session for the virtual machineUbuntu 14.04 LTS Virtualbox errorcan't use VM VirtualBoxusing virtualboxI can't run Linux-64 Bit on VirtualBoxUnable to insert the virtual optical disk (VBoxguestaddition) in virtual machine for ubuntu server in win 10VirtuaBox in Ubuntu 18.04 Issues with Win10.ISO Installation

          Antonio De Lisio Carrera Referencias Menú de navegación«Caracas: evolución relacional multipleja»«Cuando los gobiernos subestiman a las localidades: L a Iniciativa para la Integración de la Infraestructura Regional Suramericana (IIRSA) en la frontera Colombo-Venezolana»«Maestría en Planificación Integral del Ambiente»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»«Conózcanos»«Caracas: evolución relacional multipleja»«La Metrópoli Caraqueña: Expansión Simplificadora o Articulación Diversificante»