| ย | nodeos | keosd |
|---|---|---|
| ๊ธฐ๋ณธ ์์น | (ํ)/.local/share/eosio/nodeos/ | (ํ)/eosio-wallet/ |
| ๋ฐ์ดํฐ ์์น | (๊ธฐ๋ณธ ์์น)/data/ | (๊ธฐ๋ณธ ์์น) |
| ์ค์ ํ์ผ | (๊ธฐ๋ณธ ์์น)/config/config.ini | (๊ธฐ๋ณธ ์์น)/config.ini |
| ์ ๋ค์์ค ํ์ผ ย | (๊ธฐ๋ณธ ์์น)/config/genesis.json | |
| ๊ธฐ๋ณธ ํฌํธ | 8888 | 8900 |
This file contains hidden or 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
| #!/bin/bash | |
| device_name="Logitech M705" | |
| prop_name="Natural Scrolling Enabled" | |
| device_number=$( xinput | grep "${device_name}" | awk -F '\t' '{ print $2 }' | awk -F '=' '{ print $2 }' | tr -d '[:blank:]' ) | |
| echo "device number is $device_number" | |
| prop_number=$( xinput list-props $device_number | grep "${prop_name}" | head -n 1 | sed 's/.*(\(.*\)).*/\1/' ) |
This file contains hidden or 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
| ./cleos.sh push action eosio updateauth '{"account": "eosio", "permission": "owner", "parent": "", "auth": {"threshold": 1, "keys": [], "waits": [], "accounts": [{"weight": 1, "permission": {"actor": "eosio.prods", "permission": "active"}}]}}' -p eosio@owner | |
| ./cleos.sh push action eosio updateauth '{"account": "eosio", "permission": "active", "parent": "owner", "auth": {"threshold": 1, "keys": [], "waits": [], "accounts": [{"weight": 1, "permission": {"actor": "eosio.prods", "permission": "active"}}]}}' -p eosio@active | |
| ./cleos.sh push action eosio updateauth '{"account": "eosio.bpay", "permission": "owner", "parent": "", "auth": { "threshold": 1, "keys": [], "waits": [], "accounts": [{ "weight": 1, "permission": {"actor": "eosio", "permission": "active"} }] } } ' -p eosio.bpay@owner | |
| ./cleos.sh push action eosio updateauth '{"account": "eosio.bpay", "permission": "active", "parent": "owner", "auth": { "threshold": 1, "keys": [], "waits": [], "accounts": [{ "weight": 1, "permission": {"actor": "eosio", |
This file contains hidden or 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
| #!/bin/bash | |
| NODEOS_ROOT_DIR=/root/eos_data/nodeos | |
| CONFIG_DIR=/root/eos_data/nodeos/config | |
| DATA_DIR=/root/eos_data/nodeos/data | |
| LOG_DIR=/root/eos_data/nodeos/log | |
| ## WALLET DIR ์ config.ini ํ์ผ ์์ datadir ๋ก ์ ์!!! | |
| ## plugin๋ค๋ config.ini ํ์ผ ์์ ์ ์!!! | |
| ## server address ๋ config.ini ํ์ผ ์์ ์ ์!!! |
This file contains hidden or 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
| #!/bin/bash | |
| NODEOS_ROOT_DIR=/root/eos_data/nodeos | |
| CONFIG_DIR=/root/eos_data/nodeos/config | |
| DATA_DIR=/root/eos_data/nodeos/data | |
| LOG_DIR=/root/eos_data/nodeos/log | |
| ## WALLET DIR ์ config.ini ํ์ผ ์์ datadir ๋ก ์ ์!!! | |
| ## plugin๋ค๋ config.ini ํ์ผ ์์ ์ ์!!! | |
| ## server address ๋ config.ini ํ์ผ ์์ ์ ์!!! |
NewerOlder