Linux Mint 19.1 BETA service management? [on hold]











up vote
1
down vote

favorite












How to figure which system Linux Mint 19.1 BETA is? sysv? upstart?



And how to manage i.e. enable/disable services, start/stop?



I had problems with 17.3 because it was using both and couldn't manage the services.



Now I switched to 19.1 and want to figure it once and for all.










share|improve this question









New contributor




user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago


Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.



















    up vote
    1
    down vote

    favorite












    How to figure which system Linux Mint 19.1 BETA is? sysv? upstart?



    And how to manage i.e. enable/disable services, start/stop?



    I had problems with 17.3 because it was using both and couldn't manage the services.



    Now I switched to 19.1 and want to figure it once and for all.










    share|improve this question









    New contributor




    user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.











    put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago


    Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.

















      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      How to figure which system Linux Mint 19.1 BETA is? sysv? upstart?



      And how to manage i.e. enable/disable services, start/stop?



      I had problems with 17.3 because it was using both and couldn't manage the services.



      Now I switched to 19.1 and want to figure it once and for all.










      share|improve this question









      New contributor




      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      How to figure which system Linux Mint 19.1 BETA is? sysv? upstart?



      And how to manage i.e. enable/disable services, start/stop?



      I had problems with 17.3 because it was using both and couldn't manage the services.



      Now I switched to 19.1 and want to figure it once and for all.







      linux-mint services






      share|improve this question









      New contributor




      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited yesterday









      Vlastimil

      7,6121258132




      7,6121258132






      New contributor




      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 2 days ago









      user1019129

      1083




      1083




      New contributor




      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      user1019129 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




      put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago


      Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.






      put on hold as too broad by G-Man, RalfFriedl, JigglyNaga, nwildner, Christopher 13 hours ago


      Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. Avoid asking multiple distinct questions at once. See the How to Ask page for help clarifying this question. If this question can be reworded to fit the rules in the help center, please edit the question.
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          To stop a service:



          sudo service NAME stop


          To start a service:



          sudo service NAME start


          To disable a service:



          sudo systemctl disable NAME


          To enable a service:



          sudo systemctl enable NAME




          There are always more ways around. I showed you just what you asked for in one possible way.





          Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.






          share|improve this answer





















          • I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
            – Kiwy
            16 hours ago


















          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          To stop a service:



          sudo service NAME stop


          To start a service:



          sudo service NAME start


          To disable a service:



          sudo systemctl disable NAME


          To enable a service:



          sudo systemctl enable NAME




          There are always more ways around. I showed you just what you asked for in one possible way.





          Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.






          share|improve this answer





















          • I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
            – Kiwy
            16 hours ago















          up vote
          0
          down vote



          accepted










          To stop a service:



          sudo service NAME stop


          To start a service:



          sudo service NAME start


          To disable a service:



          sudo systemctl disable NAME


          To enable a service:



          sudo systemctl enable NAME




          There are always more ways around. I showed you just what you asked for in one possible way.





          Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.






          share|improve this answer





















          • I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
            – Kiwy
            16 hours ago













          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          To stop a service:



          sudo service NAME stop


          To start a service:



          sudo service NAME start


          To disable a service:



          sudo systemctl disable NAME


          To enable a service:



          sudo systemctl enable NAME




          There are always more ways around. I showed you just what you asked for in one possible way.





          Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.






          share|improve this answer












          To stop a service:



          sudo service NAME stop


          To start a service:



          sudo service NAME start


          To disable a service:



          sudo systemctl disable NAME


          To enable a service:



          sudo systemctl enable NAME




          There are always more ways around. I showed you just what you asked for in one possible way.





          Note: Linux Mint 19.x is based on Ubuntu 18.04, so you can use your favorite search engine to find more information.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          Vlastimil

          7,6121258132




          7,6121258132












          • I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
            – Kiwy
            16 hours ago


















          • I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
            – Kiwy
            16 hours ago
















          I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
          – Kiwy
          16 hours ago




          I'd recommand the systemctl start [service name] instead of the old service command which will probably be deprecated as systemd is taking over the linux world
          – Kiwy
          16 hours ago



          Popular posts from this blog

          サソリ

          広島県道265号伴広島線

          Setup Asymptote in Texstudio