smbc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
smbc: command not found
or when using sudo you get the following error message
sudo: smbc: command not found
Solutions to smbc: command not found
How To Fix smbc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu smbc is provided by smbc package.
smbc is:
Simple Samba Commander is a text mode SMB network commander. In SMBC, you can browse the local network or you can use the search function to find the files. You can also download/upload files and directories or create them both locally and remotely. SMBC has a resume function and supports UTF-8 characters.
To fix this problem, we can install more using the command below.
sudo apt-get -y install smbc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install smbc.
sudo apt -y install smbc
Or if you have aptitude installed you can use the following command.
sudo aptitude install smbc
Summary
In this tutorial we learn how to fix smbc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.