Right way to mount Samba on Debian and Ubuntu

I was trying to mount Samba with following commands: sudo apt-get update sudo apt-get install cifs-utils mkdir -p /mnt/smbshare sudo mount.cifs //192.168.0.200 /mnt/smbshare -o username=admin,password=1234 Then I create a folder myshare under the samba server and run: sudo mount.cifs //192.168.0.200/myshare /mn…