If you want to “map a drive” from a Linux computer to a shared folder on a Windows computer or a shared folder on a Linux computer running Samba, there’s a simple way that you can do this from the command line.
Contents
|
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:
sudo apt-get smbclient smbfs
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:
smbclient âL geekmini âU geek
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.
sudo mkdir /media/Video
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:
mount ât cifs âo username=geek,password=thepass //geekmini/root /media/Video
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
- › 4 Ways to Ruin Your Smartphone’s Battery
- › Here’s How Mozilla Thunderbird Is Making a Comeback in 2022
- › Why Unlimited Mobile Data Isn’t Actually Unlimited
- › What Can You Do With the USB Port on Your Router?
- › ExpressVPN Review: An Easy-to-Use and Secure VPN for Most People
- › Why Do I See “FBI Surveillance Van” in My Wi-Fi List?