FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
How to Permanently Disable a systemd Service on Ubuntu
How-ToMachine Learning

How to Permanently Disable a systemd Service on Ubuntu

via Dev.toiapilgrim11h ago

Sometimes you install software that registers itself as a systemd service and starts automatically at boot. If you don’t want it running anymore, you can disable or even mask it so it never starts again. Here’s a step-by-step guide using vllm.service as an example. Step 1: Stop the Service Immediately First, stop the service if it’s currently running: sudo systemctl stop vllm.service Step 2: Disable the Service at Boot Prevent the service from starting automatically on reboot: sudo systemctl disable vllm.service This removes the symlink from the systemd startup sequence. Step 3: Mask the Service (Optional but Stronger) Masking a service ensures it cannot be started manually or by another dependency . If the unit file already exists in /etc/systemd/system/ , you’ll need to rename or remove it before masking: sudo mv /etc/systemd/system/vllm.service /etc/systemd/system/vllm.service.backup sudo systemctl daemon-reload sudo systemctl mask vllm.service Step 4: Verify the Status Check whethe

Continue reading on Dev.to

Opens in a new tab

Read Full Article
3 views

Related Articles

How-To

How to Install and Start Using LineageOS on your Phone

Lobsters • 1h ago

How-To

What Should Kids Learn After Scratch? Comparing Programming Languages

Medium Programming • 4h ago

BYD rolls out EV batteries with 5-minute ‘flash charging.’ But there’s a catch.
How-To

BYD rolls out EV batteries with 5-minute ‘flash charging.’ But there’s a catch.

TechCrunch • 5h ago

Trump gets data center companies to pledge to pay for power generation
How-To

Trump gets data center companies to pledge to pay for power generation

Ars Technica • 6h ago

Building an Interactive Fiction Format with Codex as a Development Partner
How-To

Building an Interactive Fiction Format with Codex as a Development Partner

Medium Programming • 8h ago

Discover More Articles