mounting a smb ressource
This short article enumerates the different solutions for mounting a smb ressource; it's a reminder:
Via URL (with Konqueror)
smb://<login>:<password>@<host>/<sharename>
Via the mount command
mount -t smbfs //<host>/<sharename> <where to mount> \ -o username=<login>,password=<password>
Via smbclient
smbclient //<host>/<sharename> -U <login>%<password>
Access like ftp (get <filename>), enter 'help' for more
Via smbmount
smbmount //<host>/<sharename> <where to mount> \ -o username=<login>,password=<password>
