https://bugzilla.novell.com/show_bug.cgi?id=852461 https://bugzilla.novell.com/show_bug.cgi?id=852461#c2 --- Comment #2 from Richard Colvin <jrcolvin@gmail.com> 2014-05-06 19:18:39 UTC --- To provide an update; I did manage to mount the NAS using autofs with CIFS. The only outstanding issue is already listed as a BUG with KDE and assume the Opensuse devs already know of it. https://bugs.kde.org/show_bug.cgi?id=184062 When the connection to the mounted CIFS share is lost KDE freezes. These are the mount options used: auto.master +auto.master /mnt /etc/auto.cifs --timeout=10 auto.cifs #!/bin/bash # $Id$ # This file must be executable to work! chmod 755! key="$1" # Note: create a cred file for each windows/Samba-Server in your network # which requires password authentification. The file should contain # exactly two lines: # username=user # password=***** # Please don't use blank spaces to separate the equal sign from the # user account name or password. credfile="/etc/auto.smb.$key" # Note: Use cifs instead of smbfs: mountopts="-fstype=cifs,file_mode=0644,dir_mode=0755,uid=1000,gid=100" smbclientopts="" for P in /bin /sbin /usr/bin /usr/sbin do if [ -x $P/smbclient ] then SMBCLIENT=$P/smbclient break fi done [ -x $SMBCLIENT ] || exit 1 if [ -e "$credfile" ] then mountopts=$mountopts",credentials=$credfile" smbclientopts="-A "$credfile else smbclientopts="-N" fi $SMBCLIENT $smbclientopts -gL $key 2>/dev/null \ | awk -v key="$key" -v opts="$mountopts" -F'|' -- ' BEGIN { ORS=""; first=1 } /Disk/ { if (first) { print opts; first=0 }; gsub(/ /, "\\ ", $2); sub(/\$/, "\\$", $2); print " \\\n\t /" $2, "://" key "/" $2 } END { if (!first) print "\n"; else exit 1 } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.