#!/bin/bash
#
#Listar os compartilhamentos do widows
#smbclient -L //<hostname>/<folder> --option='client min protocol=NT1'
#
#sudo mount -t cifs -o username=<win_share_user> //WIN_SHARE_IP/<share_name> /mnt/win_share
#You will be prompted to enter the password:
#
#sudo mount -t cifs -o username=<win_share_user>,password=<win_share_password> //WIN_SHARE_IP/<share_name> /mnt/win_share
#
#mkdir /win_share
#mount.cifs //192.168.1.100/COMPARTILHADA/ /win_share
#
#//192.168.1.1/usb32gb /mnt/TL-WDR4310 cifs rw,relatime,vers=1.0,cache=strict,username=guest,domain=GRUPO,uid=0,noforceuid,gid=0,noforcegid,addr=192.168.1.1,soft,unix,posixpaths,serverino,mapposix,acl,rsize=1048576,wsize=1048576,bsize=1048576,echo_interval=60,actimeo=1 0 0
#
#apt install cifs-utils
#
mount -t cifs -o vers=1.0,guest //192.168.0.11/usb32gb /mnt/TL-WDR4310/
#
