Topic: Dropbox from Debian
If you install Dropbox from the Debian repros then the Wiki instructions for autostart wont work as Debian doesn't put dropbox in the users files. What seems to work ok is first install Dropbox from the Debian repros
apt-get install dropboxthen check you have a bin folder in your home directory, create it if not, and
touch ~/bin/nautilus && chmod +x ~/bin/nautilus && gedit ~/bin/nautilus &Then if you want to use pcmanfm paste the following into the new nautilus file
#!/bin/bash
exec pcmanfm $@
exit 0
then add to your autostart file
# start dropbox daemon, but give it time to establish a net connection.
(sleep 30s && /usr/bin/dropbox) &