smbmap command not found

In this troubleshooting guide we learn how to fix smbmap command not found error message

Introduction

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

smbmap: command not found

or when using sudo you get the following error message

sudo: smbmap: command not found

Solutions to smbmap: command not found

How To Fix smbmap: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu smbmap is provided by smbmap package.

smbmap is:

SMBMap allows users to enumerate samba share drives across an entire domain. List share drives, drive permissions, share contents, upload/download functionality, file name auto-download pattern matching, and even execute remote commands. This tool was designed with pen testing in mind, and is intended to simplify searching for potentially sensitive data across large networks.

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

sudo apt-get -y install smbmap

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

You can also use apt command to install smbmap.

sudo apt -y install smbmap

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

sudo aptitude install smbmap

Summary

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