In the Ubuntu tutorial for how to share a folder via Samba, the instructions direct to install samba (Successful), add an entry to the configuration file (completed) then the instruction where I am having an issue: "On Ubuntu: Open up the default file manager and click Connect to Server then enter:" For reference, here is the link to this instruction: https://tutorials.ubuntu.com/tutorial/install-and-configure-samba#3
The trouble is that I am doing this on a remote AWS instance. Since I am, I don't have the GUI based file manager to work with, only a terminal via SSH. I know I could set this up on a VNC server / client pair to access this, which I will do later, but I don't have time now, as this will be time consuming and involve some troubleshooting. Is there a way to connect this folder to the server to share from the terminal instead of using the file manager?
mount
statement with mount type = cifs. Installcifs-utils
if you haven't already, then see this question. – Jos May 29 '18 at 15:39-t cifs
, nottype=cifs
. – Jos May 29 '18 at 16:11gvfs-mount
for samba. For version 18.04 LTS the cli command isgio mount
for samba. The/etc/fstab
automount on boot is the same for both versions. – L. D. James May 29 '18 at 16:32