Long pause when accessing DFS namespace

Well, we finally appear to have resolved this issue in our environment. For the benefits of others, here’s what we discovered and how we fixed the problem: To try and gain further insight into what was occurring before/during/after the delays we used Wireshark on a client machine to capture/analyse network traffic whilst that client attempted … Read more

What are .DS_Store files and why does OSX leave them on Windows shares?

The “.DS_Store” files are used by the Mac OS Finder to store info about Finder window settings for a folder. They will appear in each folder that you visit (browse to) with the Finder. You normally do not see these files in Finder (they are “hidden”, like any *NIX alike dot files) To prevent the … Read more

Listing available smb shares on a network through the command line in linux

This command is a very little known secret of Samba. It returns IP adresses of all Samba servers in one’s own broadcast domain: nmblookup __SAMBA__ This one returns a list of all NetBIOS names and their aliases of all Samba servers in the neighbourhood (it does a ‘node status query’): nmblookup -S __SAMBA__ This one … Read more