I installed Lubuntu with the traditional 2 NIC setup but I had an issue with the USB devices not showing up on the desktop of the users.<div>If you experience this issue this is what I did to resolve it:</div><div>First create the mounter.d directory</div>
<div>sudo mkdir -p /etc/ltspfs/mounter.d</div><div>sudo apt-get install python-notify</div><div>sudo cp /usr/share/doc/ltspfs/examples/notify /etc/ltspfs/mounter.d/</div><div>sudo cp /usr/share/doc/ltspfs/examples/kde-desktop-icons /etc/ltspfs/mounter.d/</div>
<div><br></div><div>make sure that both are executable chmod a+x on both these files</div><div>edit kde-desktop-icons to have the following. Under "if mode=='add'" up to "elif mode=='remove'" replace what there is there with this:</div>
<div><br></div><div><div>    desktop_file_s = get_desktop_file_path(dev)</div><div>    if os.path.exists(desktop_file_s):</div><div>        print >>sys.stderr, ".desktop file already exists, skipping"</div>
<div>        sys.exit(1)</div><div><br></div><div>        icon = 'synaptic.png'</div><div><br></div><div>    try:</div><div>        desktop_file = open(desktop_file_s, 'w')</div><div>        desktop_file.write('\n[Desktop Entry]\nEncoding=UTF-8\nName=%s\nIcon=/usr/share/icons/gnome/32x32/devices/gnome-dev-removable.png\nType=Application\nExec=/usr/usr/bin/pcmanfm "%s"\n' % (dev, mountpoint))</div>
<div><br></div><div>        desktop_file.close()</div><div>    except IOError, e:                                                     </div><div>        print >>sys.stderr, 'unable to create desktop file:', e</div>
</div><div><br></div><div>When a user now plugs in a USB python notify will pop up an alert and a .desktop file will be visible on the user's desktop</div><div><br></div><div>I hope this helps someone</div><div><br></div>
<div><br><br clear="all"><div><br></div>-- <br>Nicolas Roussi<br>
</div>