SMBClient from the Command Line in Ubuntu

Ubuntu 14.04 Installation Update

$ sudo apt-get install cifs-utils
Refer: https://help.ubuntu.com/community/MountWindowsSharesPermanently

## List the shares
smbclient -L <windows-server-ip> -U<username>  ## It will prompt for password

## Access a share. Choose the one which you have access to from the list above
smbclient //<windows-server-ip>/<share-name> -U<username>  ## It will prompt for password

smbclient //192.168.1.13/temp -Umruckman

\\192.168.1.13\users\Public\Videos\

mput filename.extension

Leave a Reply