Working in an environment where a majority of the computers are running Windows when you’re using Linux is exciting and a bit frustrating at times. Recently, one of our computers (running Windows 8) at work was used as a make-shift file server so that everyone can connect and check the files there.
It came as a pleasant surprise that connecting to the shared folder on our Windows Machine was pretty straightforward.
The IP address of the Windows server/host (you can check this using ipconfig in the command propmt or in the Network and Connection Settings)
The name of the shared folder
The shared folder must be accessible by everyone
sudo apt install cifs-utils
sudo mkdir /media/windows-share
windows_ip - the IP address of the Windows host/server
sharename - the name of the Shared folder
mount_point - the path where the shared folder will be mounted
sudo nano /etc/fstab
//windows_ip/sharename mount_point cifs guest,uid=1000,iocharset=utf8 0 0
sudo mount -a
The Windows share folder should now be mounted and you can access the files on your Linux machine.
For more information, you can check here.
foss foss4g opensource freeasinfreedom freesoftware
foss linux sager np8966 clevo p960d laptop xps system76 pop! os
If you find my website or any of the materials I share useful, you can consider donating to the cause below.
Except when explicitly stated otherwise, this work and its contents by Ben Hur S. Pintor is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Other works (software, source code, etc.) referenced in this website are under their own respective licenses.
This site is powered by Jekyll and hosted on Github (view source)