Here are the steps to mount a Windows shared folder from a Raspberry Pi. The procedure is from Raspberry Pi, but I think that it can be mounted from a Linux PC by the same procedure.
Right-click the folder to be shared and click the "Share" button on the property sharing tab to set it.
Click the share button to complete the sharing settings. If a screen for specifying the range to be shared is displayed at the time of sharing, it is recommended to set the sharing within the private network.
You can access the shared folder by following the procedure described in Making Windows shared folder available on Raspberry Pi.
$ sudo apt-get update $ sudo apt-get install samba $ sudo apt-get install smbclient $ sudo apt-get install winbind $ sudo apt-get install libnss-winbind
$ sudo mount -t cifs -o user = abc, password = xxx // (computer name)/(shared folder name)/(mount destination)
If you no longer need to share the folder, you can cancel the access from the right-click menu.
As a countermeasure for Problem that COCO dataset cannot be handled on Raspberry Pi, we decided to take a means to access the shared folder of Windows.
I hope this will be helpful when transferring data from a Linux environment to a Windows environment.
Recommended Posts