- インドネシア語には、Be動詞がない。 ー> 飛ばせば良い
- 所有代名詞がない。
I - my - me は無し。 saya だけ。
he - his - him は無し。dia だけ。 - 動詞の時制がない。過去形・未来形がない。
凄い! なんか、色々簡単な感じ!!
Oracle Application Express Notes | Apps development Notes | Google Cloud Platform | Python | apps test | Cool Beans | English | Books
# putty をインストールする | |
-> % brew install putty | |
Updating Homebrew... | |
# この中の −0の private-openssh で最終的にKeyを作る | |
-> % puttygen -h | |
PuTTYgen: key generator and converter for the PuTTY tools | |
Release 0.73 | |
Usage: puttygen ( keyfile | -t type [ -b bits ] ) | |
[ -C comment ] [ -P ] [ -q ] | |
[ -o output-keyfile ] [ -O type | -l | -L | -p ] | |
-t specify key type when generating (ed25519, ecdsa, rsa, dsa, rsa1) | |
-b specify number of bits when generating key | |
-C change or specify key comment | |
-P change key passphrase | |
-q quiet: do not display progress bar | |
-O specify output type: | |
private output PuTTY private key format | |
private-openssh export OpenSSH private key <- これを使う!!! | |
private-openssh-new export OpenSSH private key (force new format) | |
private-sshcom export ssh.com private key | |
public RFC 4716 / ssh.com public key | |
public-openssh OpenSSH public key | |
fingerprint output the key fingerprint | |
-o specify output file | |
-l equivalent to `-O fingerprint' | |
-L equivalent to `-O public-openssh' | |
-p equivalent to `-O public' | |
--old-passphrase file | |
specify file containing old key passphrase | |
--new-passphrase file | |
specify file containing new key passphrase | |
--random-device device | |
specify device to read entropy from (e.g. /dev/urandom) | |
# まず、Putty形式のKeyを作成する 拡張子.ppk で保存 | |
-> % puttygen id_rsa -O private -o id_rsa.ppk | |
Enter passphrase to load key: | |
# で、そのファイルを -O private-openssh で、再度OpenSSHの古い形式で保存 | |
-> % puttygen id_rsa.ppk -O private-openssh -o id_rsa_mysqlWB | |
Enter passphrase to load key: | |
# これで、 private key file "id_rsa_mysqlWB" が、完成 |
# エラーの内容 | |
-> % gcloud compute instances -h | |
pyenv: python2: command not found | |
The `python2' command exists in these Python versions: | |
2.7.15 | |
2.7.15/envs/iotdemo | |
2.7.15/envs/py27 | |
iotdemo | |
py27 | |
Note: See 'pyenv help global' for tips on allowing both | |
python2 and python3 to be found. | |
Usage: gcloud compute instances [optional flags] <group | command> | |
group may be network-interfaces | os-inventory | |
# the rest is omitted | |
# python2 コマンドを叩いてみる | |
-> % python2 | |
pyenv: python2: command not found | |
The `python2' command exists in these Python versions: | |
2.7.15 | |
2.7.15/envs/iotdemo | |
2.7.15/envs/py27 | |
iotdemo | |
py27 | |
Note: See 'pyenv help global' for tips on allowing both | |
python2 and python3 to be found. | |
### エラーと言われる | |
# pyenv のセッティングを確認 | |
# global は、何もしてないでMacの素のまま | |
-> % pyenv version | |
system (set by /Users/toshi/.pyenv/version) | |
-> % pyenv global | |
system | |
-> % pyenv versions | |
* system (set by /Users/toshi/.pyenv/version) | |
2.7.15 | |
2.7.15/envs/iotdemo | |
3.4.3 | |
3.4.3/envs/atc343 | |
atc343 | |
iotdemo |
# python コマンドは、2.7.16 | |
-> % python | |
Python 2.7.16 (default, Jan 27 2020, 04:46:15) | |
[GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> exit() | |
# それは、以下のPATHのことなので | |
-> % /usr/bin/python | |
Python 2.7.16 (default, Jan 27 2020, 04:46:15) | |
[GCC 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.37.14)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> exit() | |
# .zprofile に、Pathを明示する | |
-> % echo 'export CLOUDSDK_PYTHON=/usr/bin/python' >>.zprofile | |
# ログインし直すと!! エラーは消えた | |
-> % gcloud compute instances -h | |
Usage: gcloud compute instances [optional flags] <group | command> | |
group may be network-interfaces | os-inventory | |
command may be add-access-config | add-iam-policy-binding | |