Warren.Guy.net.au

The personal web site of Warren Guy of Perth, Western Australia

Browsing SMB shares in Xubuntu with fusesmb

These instructions are specifically for Xubuntu (Fiesty), however could be achieved by similar (or identical) means in later versions of Xubuntu, as well as Kubuntu and Ubuntu.

Instructions

  1. Enable SMB file sharing
    • Applications -> System -> Shared Folders
    • Set your Domain/Workgroup in the General Properties tab
  2. Install fusesmb
    sudo apt-get install fusesmb
    
  3. Make sure fusesmb install added fuse to the list of modules in /etc/modules
  4. Make sure fusesmb module is loaded, if not, reboot
    lsmod |grep fuse
    
  5. Create a directory for mounting the network, ie /media/network
    sudo mkdir /media/network
    
  6. Set ownership and permissions on /media/network
    sudo chown <username>:fuse /media/network
    sudo chmod 777 /media/network
    
  7. Enable use of fuse filesystems for your user (see screenshot)
    • (User Privileges tab in "Users and Groups" admin for your user)
  8. Add your user/password information for required hosts to ~/.smb/fusesmb.conf as per the following
    [/SERVERNAME]
    username=yourusername
    password=yourpassword
    
  9. I also add showhiddenshares=true to this section
  10. Add fusesmb to your auto-started applications (Applications -> Settings -> Autostarted Applications)
    • Name: fusesmb
    • Command: fusesmb /media/network
  11. Log out and log back in, or restart
  12. I also like to add it to the shortcuts/"places" pane of Thunar by dragging the folder on to the pane from within Thunar

Page modified 228 weeks ago