Created
January 11, 2015 19:51
-
-
Save ken-okabe/dc1b0bfd8889a7cb4afb to your computer and use it in GitHub Desktop.
#'Google Drive' というディレクトリ名のスペースが多大な問題を引き起こすので何とかする@Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#'Google Drive' というディレクトリ名のスペースが多大な問題を引き起こすので何とかする@Ubuntu | |
GoogleDrive は容量が大きいし、インフラとしても安定しているので、クラウドストレージとして便利に使えます。 | |
UbuntuでもGoogle非公式に利用できて、 | |
``` | |
sudo add-apt-repository ppa:thefanclub/grive-tools | |
sudo apt update | |
sudo apt install grive-tools | |
``` | |
でインストールし、 | |
*`apt-get`コマンドは冗長で嫌でしかたなかったので、 | |
`apt`になったのはかなり嬉しい。 | |
あとはこういう感じで設定できます。 | |
http://dothisbest.com/how-to/install-google-drive-on-ubuntu/ | |
 | |
問題は、フツーにやっていったら、 | |
HOME以下に | |
`Google Drive` | |
ってスペース入りのディレクトリが生成されることです。 | |
もうこういうのは、コンピューティングにおいて、 | |
日本語文字化けの次に、多大な問題が発生するので勘弁して欲しいです。 | |
そこで、Simlink(ショートカット)をはります。 | |
``` | |
sudo ln -s /home/ken/Google\ Drive /home/ken/gd | |
``` | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment