@superkevingit
2016-03-15T15:13:31.000000Z
字数 1065
阅读 1933
翻译
自娱自乐,不好勿喷lalala~
Don't try this on ARM
After getting Dropbox to compile and run, it complains that it's missing the proprietary daemon, which is impossible to download anywhere for the ARM (new Samsung $249 chromebook). Monitor the feature request here. [ This section needs update.]
切忌在ARM上尝试
编译运行Dropbox,程序将会报出缺少合适的守护进程,因此Dropbox将不能够在ARM架构的机器上运行(例如$249三星新款机型)。从这里可以查看相关特性(这部分需要更新,亲测这个网址已无法访问)。
For x86 and in case the daemon is released
Use apt-get if you can:
sudo apt-get install nautilus-dropbox
对于X86架构,守护进程已被包含进包管理器
使用APT包管理器的系统:
$ sudo apt-get install nautilus-dropbox
If not, this is a work in progress to help compile dropbox by source. Note the missing packages may differ for your distribution. This is for the default XFCE.
sudo apt-get install libnautilus-extension-dev python-gtk2 python-docutils
Download the source and follow instructions at https://www.dropbox.com/install2
./configure; make
sudo make install
./dropbox start -i
如果你使用的发行版中没有相关软件包,按照如下方法。注意对于不同发行版缺失的包可能不同。这里是默认使用XFCE
$sudo apt-get install libnautilus-extension-dev python-gtk2 python-docutils
下载源码并按照这里所给的指示 https://www.dropbox.com/install2
$./configure; make
$sudo make install
$./dropbox start -i