Usually you first need to install the package needed for that: `cifs-utils`. Then you can create a directory in which you want to mount the Samba share. Then you can mount it.
In the terminal it could look something like this:
Code: Select all
sudo apt-get install cifs-utils
sudo mkdir -p "$HOME/share_name"
mount.cifs //server_ip_or_hostname/share_name "$HOME/share_name" -o username=your_username,password=your_password,uid=$(id -u),gid=$(id -g)
Keep in mind that you have to replace $HOME and $(id -u) and $(id -g) accordingly before putting it in RunProgram.
The english grammar is freeware, you can use it freely - But it's not Open Source, i.e. you can not change it or publish it in altered way.