ussp-push command not found

In this troubleshooting guide we learn how to fix ussp-push command not found error message

Introduction

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

ussp-push: command not found

or when using sudo you get the following error message

sudo: ussp-push: command not found

Solutions to ussp-push: command not found

How To Fix ussp-push: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ussp-push is provided by ussp-push package.

ussp-push is:

This program allows you to send objects using the OBEX PUSH protocol.

The OBEX PUSH protocol is used to transfer files to a mobile device, generally via Bluetooth or IrDA. The protocol does not allow any other action than sending and generally requires less strict authentication, which is why it is sometimes preferred to the OBEX FTP protocol (which allows full filesystem access and is provided by the obexftp package).

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

sudo apt-get -y install ussp-push

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

You can also use apt command to install ussp-push.

sudo apt -y install ussp-push

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

sudo aptitude install ussp-push

Summary

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