Archive for August 17th, 2015

Raspberry Pi – Windows Freigabe unter Linux mounten

Montag, August 17th, 2015

raspberrypi_logo.jpg   Auf der Kommandozeile eines Linux Systems können Sie eine Windows Freigabe wie unten gezeigt einbinden – als Dateisystem Typ wird „cifs“ verwendet

mount -t cifs -o  username=<User>,password=<Password>, rw,file_mode=0664,dir_mode=0775,setuid,perm,uid=<UserID>,gid=<GroupID>  //<Computername>/<share> /<Mount Point>

LinuxWindowsShares_00