obex-check-device command not found

In this troubleshooting guide we learn how to fix obex-check-device command not found error message

Introduction

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

obex-check-device: command not found

or when using sudo you get the following error message

sudo: obex-check-device: command not found

Solutions to obex-check-device: command not found

How To Fix obex-check-device: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu obex-check-device is provided by libopenobex2 package.

libopenobex2 is:

The Object Exchange protocol can best be described as binary HTTP. OBEX is optimised for ad-hoc wireless links and can be used to exchange all kind of objects like files, pictures, calendar entries (vCal) and business cards (vCard).

OBEX is builtin in devices like PDA’s like the Palm Pilot, and mobile phones like the Ericsson R320, Siemens S25, Siemens S45, Siemens ME45, Nokia NM207 and Nokia 9110 Communicator.

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

sudo apt-get -y install libopenobex2

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

You can also use apt command to install libopenobex2.

sudo apt -y install libopenobex2

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

sudo aptitude install libopenobex2

Summary

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