18
21

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 5 years have passed since last update.

[RaspberryPi]google driveにファイルをアップロードする

Posted at

#はじめに
このエントリは[RaspberryPi]カメラ周りのまとめの続きです。
飼っているお猫さまの安否確認をするため、webカメラで撮影後、リモートでも確認できることを目指します。

今回はRaspberryPiに対応している、CLIでgoogle driveにアップロードできるgdriveのインストール時のメモです。

#gdrive
gdriveのgithubをもとにインストール

##ダウンロード
wgetでgdriveというファイル名でダウンロード
(URLはgdriveのgithubにある、RaspberryPi用のファイルのURL)

cmd
cd /home/pi/bin
wget -O gdrive https://docs.google.com/uc?id=0B3X9GlR6EmbnVXNLanp4ZFRRbzg&export=download

gdriveに実行権限を付与

cmd
chmod +x gdrive

初期設定(認証)

cmd
gdrive about

コマンド実行後に表示されるURLコピーしてブラウザでアクセス
アクセス後、表示される認証コードをコピーして、ターミナルに貼り付けてエンター

##主なコマンド
google driveに保存されているファイル、フォルダの一覧を表示

cmd
gdrive list

google driveにファイルをアップロード

cmd
gdrive upload /hoge/hoge.jpg

google drive上のファイルを削除
ファイルIDはlistコマンドで確認できる

cmd
gdrive delete ファイルID
18
21
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
18
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?