Installing Prerequisites

If you are running on Ubuntu or another Debian distribution, you can install the required software by simply running the following command from a terminal prompt:

Testing the Connection

Now that you have the right tools installed, it’s time to test the connection to the Windows or Samba box with the shared folder. For this we can use the smbclient command like so:

In this example, geekmini is the servername and geek is the username. You’ll be prompted for the password. You’ll notice that you can successfully see a list of shares on the remote computer. In our case, we want to “map a drive” to the shared folder named “root”.

Create the Mount Point

Any time you want to map a drive in Linux, you should create the folder first. In this case, I want to access that shared folder from /media/Video, so I’ll first need to create the folder.

Note that I’m using sudo because I’m creating the folder in a system-wide location owned by root.

Actually Mounting the Shared Folder

You can run the following command to mount the shared folder to a local path:

Note that you’d want to use your own details in the command. At this point you should be able to access the shared folder from /media/Video