0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntu 20 に DropBox をインストールして、デーモンサービス化する

Posted at

Ubuntu 20 に DropBox をインストールして、デーモンサービス化します。

cd ~ ;
wget -O dropbox.tar.gz "http://www.dropbox.com/download/?plat=lnx.x86_64"  ;
tar xvzf dropbox.tar.gz  ;

# 起動スクリプトと自動起動の設定
git clone git://gist.github.com/1196710.git gist-1196710 ;
sudo mv ./gist-1196710/dropbox /etc/init.d ;
sudo chmod +x /etc/init.d/dropbox ;
sudo update-rc.d dropbox defaults ;

# 初回認証
~/.dropbox-dist/dropboxd ;
# ここで初めての起動の場合メッセージが出るので、表示されるURLにアクセスしてマシン認証を行う

参考リンク

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?