Accessing Samba shares through SSH
In Linux, you can access Samba shares by using a SSH prompt. We need a host PC (65.219.4.23) and a destination PC (192.168.0.81). We’ll use jack as a username but first we’ll create a new mount directory: mkdir -p /samba/share Now we connect to it: ssh -N -L 139:192.168.0.81:139 jack@65.219.4.23 jack@65.219.4.23 Now we do a… Read More »