Questions tagged [dropbox]

Dropbox is a cross-platform file syncing program for Windows, Mac OS, Linux and various mobile devices.

Dropbox

Dropbox is a web-based file hosting service with desktop clients for all three major operating systems and for Android, iOS, and Blackberry mobile devices. It creates a special folder on machines it is installed on, which synchronizes any files saved in that folder with Dropbox's servers. Any other machine attached to the user's accounts will then have the same changes uploaded to their dropbox folder. Files can also be downloaded and viewed through Dropbox's web interface from any computer with an internet connection.

In addition to syncing computers, Dropbox can also be used for collaboration. Shared folders can be set up between Dropbox users, and any files changed in the shared folder will be changed for everyone who has joined that folder.

90 questions
68
votes
2 answers

How to use rsync to backup a directory without git subdirectory

I want to copy my c directory with all subdirectories excluding ./git subdirectory. I do it using rsync : echo "copy c and sh files " rsync -a --include='*.c' --include='*.sh' --include='*/' --exclude='*' ~/c/ ~/Dropbox/Public/c # remove .git…
Adam
  • 969
  • 1
  • 7
  • 15
46
votes
16 answers

How to run Dropbox daemon in background?

I'm using Debian 6 and Dropbox. I followed these commands to install it. When I run ~/.dropbox-dist/dropboxd — Dropbox works and stuff. Problem is that when I close terminal or, even worse — reboot, Dropbox stops working and I need to run that…
daGrevis
  • 843
  • 2
  • 9
  • 19
36
votes
5 answers

Why is PDFTK saying it can't find files that are right there?

I'm trying to compile a bunch of PDFs into a single document. ls shows the files are in the directory that I'm in and they're readable (-rw-r--r--). But when I try to run pdftk 2017.pdf cat output test.pdf I get an error: Error: Unexpected Exception…
Amanda
  • 1,709
  • 2
  • 13
  • 26
23
votes
3 answers

Unzip thinks my zip file is a zip bomb

I've been struggling with this for a couple days so I'm hoping someone on SE can help me. I've downloaded a large file from Dropbox using wget (following command) wget -O folder.zip https://www.dropbox.com/sh/.../.../dropboxfolder?dl=1 I'm sure it's…
holy_schmitt
  • 333
  • 1
  • 2
  • 7
15
votes
3 answers

rsync mkstemp failed Invalid argument (22) with davfs mount of Box.com cloud

I mounted Box.com cloud storage using davfs according to these instructions. I mounted my Box.com account under /home/me/Cloud/Box I can access the mounted filesystem via Dolphin as well as via the terminal. It is a little slow, but I can list (ls)…
MountainX
  • 17,168
  • 59
  • 155
  • 264
12
votes
3 answers

mounting dropbox (for exploring the files)

I want to simply be able to explore a dropbox filesystem, without much additional load on CPU, memory, storage (i.e., without saving copies of the remote files locally). It seems that the official client consumes much reosurces (and would do…
imz -- Ivan Zakharyaschev
  • 15,113
  • 15
  • 61
  • 123
10
votes
3 answers

Why does Dropbox say "Killed" on Arch Linux?

I'm trying to install Dropbox on Arch Linux. I've installed both dropbox and dropbox-cli, at least to the point of having the binaries. When I run dropbox on its own, it just responds Killed in red lettering. When I run dropbox-cli start, it prints…
Kites
  • 150
  • 1
  • 7
10
votes
3 answers

Dropbox on OpenBSD

Has anyone had any success getting dropbox installed with dropboxd running properly on OpenBSD (FreeBSD would work for me too..)? I have built from source and everything installs just fine but when I try to fire it up: $ python /usr/bin/dropbox…
unclejamil
  • 914
  • 6
  • 12
7
votes
3 answers

Dropbox install problems on Scientific Linux

I am trying to install nautilus-dropbox-1.6.2.tar.bz2. I ran ./configure, but got the error configure: error: Package requirements (libnautilus-extension >= 2.16.0) were not met: No package 'libnautilus-extension' found Consider adjusting the…
csx
  • 517
  • 2
  • 6
  • 7
6
votes
2 answers

How can I change which file manager dropbox opens with by default?

I installed Xubuntu on a new laptop I got, and this being my first time using xfce, I accidentally told my dropbox folder to open with nautilus (coming from ubuntu) and not thunar. Now it will not allow me to open the folder via the task bar. Is…
user16547
6
votes
2 answers

Install dropbox ends in error

I'm trying install dropbox on Debian with xfce and every time it ends with this error bn.BUILD_KEY: Dropbox bn.VERSION: 3.12.6 bn.DROPBOXEXT_VERSION: failed bn.is_frozen: True pid: 11257 ppid: 5898 ppid exe: '/bin/bash' uid: 1000 user_info:…
SolveTry
  • 63
  • 1
  • 3
6
votes
1 answer

How to install Dropbox (and have Dropbox file manager integration) without Nautilus?

Running other desktop environments than Unity or Gnome with a different file manager than Nautilus, it might be a good idea to install Dropbox without Nautilus. But advice on Dropbox involves installing Nautilus too. Nautilus has conflicts with some…
user32012
5
votes
1 answer

How can I synchronize all PDFs from one directory with Dropbox?

I want to synchronize all the PDFs from one directory (my Zotero library) to Dropbox. Finally, I want to have a list of all the PDFs, not the directory names. I successfully synchronized all my PDFs with the following command: rsync -az…
mcbetz
  • 171
  • 1
5
votes
3 answers

Control Dropbox upload rate on the command line

I'm using Dropbox without the GUI in Linux. I would like to limit the upload rate, sometimes large files eats my internet bandwidth. Anyone knows how I do that?
user1101
  • 65
  • 1
  • 5
4
votes
1 answer

Can I create a symlink that will ignore subdirectories?

I'm trying to get dropbox symlinked to the relevant folders in /home. I'd like to symlink them like this: ~/Dropbox/Pictures --> ~/Pictures ~/Dropbox/Camera Uploads --> ~/Pictures/Camera Uploads If I do that it will work but I'll have two copies of…
1
2 3 4 5 6