特点:支持read-only,即每次更新文件都会上传并重命名。
20GB空间,容量大。
非常方便创建外链,共享文件给他人。
原文:http://help.yandex.com/disk/cli-clients.xml
1. 手动安装:
http://repo.yandex.ru/yandex-disk/yandex-disk_latest_i386.deb
安装:
# dpkg -i yandex-disk_0.1.0.103_i386.deb
2. apt-get安装
# echo "deb http://repo.yandex.ru/yandex-disk/deb/ stable main" >> /etc/apt/sources.list.d/yandex.list # apt-get update # apt-get install yandex-disk
sudo rpm --import http://repo.yandex.ru/yandex-disk/YANDEX-DISK-KEY.GPG
3. setup
是否配置proxy服务器(有进一步选项),是否开机启动,账户密码输入。$ yandex-disk setup
4. command
4.1 token
yandex-disk token [-p, --password=PASSWORD] [OPTION] USERNAME [FILE]
登陆密码保存,yandex-disk 授权 username [file](授权文件存储的目录,如果没有的话默认在~/.config/yandex-disk存储),然后是输入密码。
4.2 start
开启守护进程,同步除except-dirs外的所有文件yandex-disk start [OPTION]
4.3 status
yandex-disk status [OPTION]
显示守护进程的状态(同步状态,同步错误,同步文件夹,Disk的总空间)
4.4 stop
关闭守护进程$ yandex-disk stop [OPTION]
4.5 sync
yandex-disk sync [OPTION]
同步除了exclude-dirs上的排除列表外的所有文件夹
4.6 publish
yandex-disk publish [OPTION] FILE
获取发布一个文件或文件夹的一个公共连接
4.7 unpublish
yandex-disk unpublish FILE
回收一个发布的文件或文件夹的公共连接
5. 外加的一些command
--config=FILE, -c FILE
--dir=DIR, -d DIR
--auth=FILE, -a FILE
--exclude-dirs=DIR1,DIR2,...
--read-only
--overwrite
--no-daemon, -D
--help, -h
显示帮助
--proxy=PARAM
auto-自动(默认)
no- 不使用proxyserver
protocol,address,port,login,password - 手动设置
6.简单举例
$ yandex-disk start -c ~/ydconfig/newconfig.cfg # launch daemon and sync with specified configuration file
$ yandex-disk start --exclude-dirs=Foto # do not sync folder ‘Foto‘
$ yandex-disk sync --read-only # sync folders in ‘read-only‘ mode
$ yandex-disk publish Foto # get a public link to the folder ‘Foto‘
原文地址:http://blog.csdn.net/zcliatb/article/details/42490983