udiskie-mount command not found

In this troubleshooting guide we learn how to fix udiskie-mount command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

udiskie-mount: command not found

or when using sudo you get the following error message

sudo: udiskie-mount: command not found

Solutions to udiskie-mount: command not found

How To Fix udiskie-mount: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu udiskie-mount is provided by udiskie package.

udiskie is:

udiskie is a front-end for UDisks written in Python. Its main purpose is automatically mounting removable media, such as CDs or flash drives. It has optional mount notifications, a GTK+ tray icon and user level CLIs for manual mount and unmount operations. The media will be mounted in a new directory under /media or /run/media/USER/, using the device name if possible.

This package is needed to support automounting removable media when nautilus is not available to control UDisks2.

To fix this problem, we can install more using the command below.

sudo apt-get -y install udiskie

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install udiskie.

sudo apt -y install udiskie

Or if you have aptitude installed you can use the following command.

sudo aptitude install udiskie

Summary

In this tutorial we learn how to fix udiskie-mount command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.