Windows Share mounten

Damit ein Windows Share gemounted werden kann müssen folgende Pakete installiert sein:

  • smbclient
  • cifs-utils (ehemals smbfs)

Danach kann mit einem mount das Windwos-Share angezogen werden.

sudo mount -t cifs   auto,uid=1000,iocharset=utf8,username=,password=

Der Mount kann auch alternativ direkt in

/etc/fstab

eingepflegt werden:

//windows/verzeichnis        /mnt/verzeichnis       cifs   auto,iocharset=iso8859-15,username=name,password=password
  • guest indicates you don’t need a password to access the share,
  • uid=1000 makes the Linux user specified by the id the owner of the mounted share, allowing them to rename files,
  • iocharset=utf8 allows access to files with names in non-English languages. This doesn’t work with shares of devices like the Buffalo Tera Station, or Windows machines that export their shares using ISO8895-15.
  • If there is any space in the server path, you need to replace it by \040, for example //servername/My\040Documents

Links

https://wiki.ubuntu.com/MountWindowsSharesPermanently