EndSection
+## How to mount Windows Shares with a GUI
+
+To mount mount Windows shares at boot-time can follow [DragonFly instructions on HowToMountWindowsShares(http://www.dragonflybsd.org/docs/howtos/HowToMountWindowsShares/) .
+If you don't want to mount them at boot time you can install gnome-commander (which should also install samba) and gnome-vfs-smb.
+
+ # pkgin in gnome-commander
+ # pkgin in gnome-vfs-smb
+ # pkgin samba
+
+Now make sure that you have
+
+ smbd_enable="YES"
+ nmbd_enable="YES"
+
+in your <b>rc.conf</b> file.
+
+Pkgin should automatically copy <b>/usr/pkg/share/examples/rc.d/nmbd</b> and <b>cd /usr/pkg/share/examples/rc.d/smbd</b> to <b>/etc/rc.d</b> directory. If it fails manually copy those files as root by:
+
+ # cp /usr/pkg/share/examples/rc.d/smbd /etc/rc.d/smbd
+ # cp cd /usr/pkg/share/examples/rc.d/nmbd /etc/rc.d/nmbd
+
+You can add DragonFly users (and their passwords) for sharing files by:
+
+ # smbpasswd -a username
+
+It is now the time to configure <b>smb.conf</b> file which is located in <b>/usr/pkg/etc/samba</b>.
+
+Now, to start samba deamon type in terminal (as root):
+
+ # /etc/rc.d/smbd start
+ # /etc/rc.d/nmbd start
+
+Open gnome-commander (X11 is essential for this application) and navigate to your Windows share directory (<b>smb</b> button)
+
+
Following experience is from running DragonFly 2.8.2 on netbook (eeepc 900).
## ACPI and power management