How to Disable the Ubuntu ‘Saned’ Service

The Scanner Network Daemon

In Ubuntu Linux, saned (Scanner Access Now Easy Daemon) is a background service designed to share local image scanners over a network. If you have a physical flatbed scanner plugged into your Ubuntu machine via USB, the saned service allows other computers on your local network (LAN) to connect to your machine and initiate scans remotely.

While this is an excellent feature for a small office sharing a single piece of hardware, it is a complete security liability and a waste of resources on almost any other machine. If you are running an Ubuntu web server, a database, a cloud instance, or even just a personal laptop that does not have a scanner attached, there is absolutely no reason to run a network-facing daemon listening for incoming scanner requests. It consumes memory and opens an unnecessary network port. You should disable it immediately to harden your system.

How to Disable the Saned Service

You can permanently stop this scanner-sharing daemon using systemctl.

Warning: Only perform this if you do not need to share a locally attached scanner over your network. Disabling this will not prevent you from using a scanner locally on the machine itself.

  1. Open your Ubuntu Terminal or connect via SSH.
  2. Stop the active service if it is currently running:
sudo systemctl stop saned.socket saned.service
  1. Disable the service to prevent it from starting automatically on the next boot:
sudo systemctl disable saned.socket saned.service
  1. (Optional) For maximum security on a headless server, you can uninstall the package entirely:
sudo apt-get purge sane-utils

Your Ubuntu system will immediately stop listening on the network for remote scanning requests, closing the port and freeing up system resources.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.