Dropbox の設定を SQLite から変更する


Dropbox  bandwidth  terminal SQLite GUI  Linux 使server  Dropbox SLAC  RHEL5  Nautilus  CUI 
$ cd ~/.dropbox
$ sqlite3 config.db

SQLite ~/.dropbox/config.db Dropbox  SQLite 
SQLite version 3.7.6
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select key, value from config where key like "throttle%";

bandwidth 

Mac 
sqlite> insert into config (key, value) values ("throttle_download_speed", 50.0);
sqlite> insert into config (key, value) values ("throttle_upload_speed", 10.0);
sqlite> insert into config (key, value) values ("throttle_download_style", 0);
sqlite> insert into config (key, value) values ("throttle_upload_style", 0);


sqlite> select key, value from config where key like "throttle%";
throttle_download_speed|50.0
throttle_upload_speed|10.0
throttle_download_style|0
throttle_upload_style|0
sqlite> .q

Mac 


 Mac  bandwidth 
 

Dropbox