2022
|
ITEM | SETTING | NOTE |
---|---|---|
解像度 | 4K or 1080 | 綺麗な16:9を撮る...電池のもちの問題で1080かも... |
フレームレート | 60fps | スキー等のアクション系を撮る |
レンズ | リニア + 水平ロック | 水平ロックで自由自在に撮る! |
HyperSmooth | AutoBoost | 手ぶれ補正最強設定 |
update: 2022/12/16 13:31 | path: /pub/action_camera
update: 2022/12/12 15:45 | path: /pub/software/googlechrome
$ MESA_GL_VERSION_OVERRIDE=3.0 JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64 scilab
update: 2022/11/27 10:08 | path: /pub/software/scilab
update: 2022/08/25 15:14 | path: /pub/life/peace
update: 2022/08/25 15:12 | path: /pub/life/peace
$ unzip vmware-host-modules-workstation-16.2.3.zip $ cd vmware-host-modules-workstation-16.2.3/ $ make $ sudo make install $ sudo systemctl restart vmware※尚、linux-headers-*-amd64 をインストールしておくこと。
update: 2022/08/05 17:22 | path: /pub/software/vmware
$ sudo apt install libusb-0.1-4 $ sudo systemctl restart SimpleShutdown $ sudo systemctl status SimpleShutdown ● SimpleShutdown.service - LSB: Start daemon at boot time Loaded: loaded (/etc/init.d/SimpleShutdown; generated) Active: active (running) since Thu 2022-08-04 03:09:25 JST; 4h 58min ago Docs: man:systemd-sysv-generator(8) Process: 2687 ExecStart=/etc/init.d/SimpleShutdown start (code=exited, status=0/SUCCESS) Tasks: 2 (limit: 76429) Memory: 1.1M CPU: 1min 48.249s CGroup: /system.slice/SimpleShutdown.service ├─2692 /usr/lib/ssd/master/ssdService └─2697 /usr/lib/ssd/master/ssdDaemon
8月3日22時16分 | 停電発生。何故か?UPSのバックアップも虚しく、家サーバがPowerDown。 |
8月3日22時17分 | 約1分後に再起動開始。 |
Jul 13 17:09:19 agate SimpleShutdown[18457]: /usr/lib/ssd/master/AgentManager: \ error while loading shared libraries: libusb-0.1.so.4: cannot open shared object file: No such file or directory
update: 2022/08/04 10:32 | path: /pub/software/linux/ups
update: 2022/07/21 08:25 | path: /pub/misc
SG_ $signal_name : $start_bit|$signal_size@$byte_order$value_type($factor,$offset) [$min|$max] "" $unit_receiver(s)* バイト境界をまたぐ場合のデータ(Big endian:$byte_order=0)
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | byte |
---|---|---|---|---|---|---|---|---|
7......0 | 15.....8 | 23....16 | 31....24 | 39....32 | 47....40 | 55....48 | 63....56 | bit |
76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | bit(per byte) |
......98 | 76543210 |
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | byte |
---|---|---|---|---|---|---|---|---|
7......0 | 15.....8 | 23....16 | 31....24 | 39....32 | 47....40 | 55....48 | 63....56 | bit |
76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | 76543210 | bit(per byte) |
76543210 | ......98 |
$ cantools dump example.dbc ================================= Messages ================================= ------------------------------------------------------------------------ Name: ExampleMessage Id: 0x1f0 Length: 8 bytes Cycle time: 100 ms Senders: PCM1 Layout: Bit 7 6 5 4 3 2 1 0 +---+---+---+---+---+---+---+---+ 0 |<-x|<---------------------x|<--| +---+---+---+---+---+---+---+---+ | +-- AverageRadius +-- Enable +---+---+---+---+---+---+---+---+ 1 |-------------------------------| +---+---+---+---+---+---+---+---+ 2 |----------x| | | | | | B +---+---+---+---+---+---+---+---+ y +-- Temperature t +---+---+---+---+---+---+---+---+ e 3 | | | | | | | | | +---+---+---+---+---+---+---+---+ 4 | | | | | | | | | +---+---+---+---+---+---+---+---+ 5 | | | | | | | | | +---+---+---+---+---+---+---+---+ 6 | | | | | | | | | +---+---+---+---+---+---+---+---+ 7 | | | | | | | | | +---+---+---+---+---+---+---+---+ Signal tree: -- {root} +-- Enable +-- AverageRadius +-- Temperature Signal choices: Enable 0 Disabled 1 Enabled ------------------------------------------------------------------------
update: 2022/07/12 17:36 | path: /pub/software/misc
$ sudo apt install build-essential linux-headers-$(uname -r) $ sudo CPATH=/usr/src/linux-headers-$(uname -r|sed s:amd64:common:)/include/linux /usr/bin/vmware-modconfig --console --install-all ... Starting VMware services: Virtual machine monitor failed Virtual machine communication interface done VM communication interface socket family done Virtual ethernet failed VMware Authentication Daemon done Unable to start services
$ sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./mod_vm.priv ./mod_vm.der $(modinfo -n vmmon) $ sudo /usr/src/linux-headers-`uname -r`/scripts/sign-file sha256 ./mod_vm.priv ./mod_vm.der $(modinfo -n vmnet)
$ sudo systemctl restart vmware
$ sudo CPATH=/usr/src/linux-headers-5.16.0-1-common/include/linux /usr/bin/vmware-modconfig --console --install-all
update: 2022/06/28 20:54 | path: /pub/software/vmware
$ sudo -u postgres pg_dump ${TARGET_DB} | nkf -w8 | sed 's/EUC_JP/UTF8/g' > ${TARGET_DB}-utf8.txt
$ sudo -u postgres createuser "${USERNAME}"- DBを作成する。
$ sudo -u postgres psql template1 template1=# CREATE DATABASE ${TARGET_DB} WITH OWNER "${USERNAME}"; CREATE DATABASE # \q- DBのバックアップを入れる
$ sudo -u postgres psql "${TARGET_DB}" < ${TARGET_DB}-utf8.txt
update: 2022/05/25 10:17 | path: /pub/software/postgresql
update: 2022/05/25 08:12 | path: /pub/software/googlechrome
update: 2022/05/24 18:03 | path: /pub/goods/roomba
決算日 | 基準価格 | 年利(平均) |
---|---|---|
2017-09-29 | 10,000円 | (設定日) |
2018-07-17 | 11,159円 | +11.59% |
2019-07-15 | 11,566円 | + 7.83% |
2020-07-15 | 12,263円 | + 7.54% |
2021-07-15 | 17,713円 | +19.28% |
決算日 | 基準価格 | 年利(平均) |
---|---|---|
2018-07-03 | 10,000円 | (設定日) |
2019-04-25 | 11,035円 | +10.35% |
2020-04-27 | 10,409円 | + 2.05% |
2021-04-26 | 15,592円 | +18.64% |
基準日 | 価格 | 年利(平均) |
---|---|---|
2001-06-01 | $57.79 | |
2002-05-31 | $49.98 | -13.51% |
2003-05-30 | $45.64 | -10.51% |
2004-06-04 | $54.29 | - 2.02% |
2005-06-03 | $58.58 | + 0.34% |
2006-06-09 | $62.20 | + 1.53% |
2007-06-01 | $76.63 | + 5.43% |
2008-05-30 | $70.08 | + 3.04% |
2009-06-05 | $47.47 | - 2.23% |
2010-06-04 | $54.67 | - 0.60% |
2011-06-10 | $65.89 | + 1.40% |
2012-06-08 | $68.09 | + 1.62% |
2013-06-07 | $84.83 | + 3.90% |
2014-05-30 | $99.58 | + 5.56% |
2015-05-29 | $109.31 | + 6.37% |
2016-06-03 | $107.69 | + 5.76% |
2017-06-02 | $125.41 | + 7.31% |
2018-06-01 | $141.50 | + 8.52% |
2019-05-31 | $140.69 | + 7.97% |
2020-06-05 | $161.90 | + 9.48% |
2021-06-04 | $219.39 | +13.98% |
基準日 | 価格 | 年利(平均) |
---|---|---|
2010/06/04 | 54.67 | |
2011/06/10 | 65.89 | +20.52% |
2012/06/08 | 68.09 | +12.27% |
2013/06/07 | 84.83 | +18.39% |
2014/05/30 | 99.58 | +20.54% |
2015/05/29 | 109.31 | +19.99% |
2016/06/03 | 107.69 | +16.16% |
2017/06/02 | 125.41 | +18.48% |
2018/06/01 | 141.50 | +19.85% |
2019/05/31 | 140.69 | +17.48% |
2020/06/05 | 161.90 | +19.61% |
2021/06/04 | 219.39 | +27.39% |
基準日 | 価格 | 年利(平均) |
---|---|---|
2010-09-10 | 101.78 | |
2011-09-09 | 106.00 | + 4.15% |
2012-09-07 | 132.10 | +14.89% |
2013-09-06 | 152.06 | +16.47% |
2014-09-12 | 182.58 | +19.85% |
2015-09-11 | 180.32 | +15.43% |
2016-09-09 | 195.68 | +15.38% |
2017-09-08 | 226.40 | +17.49% |
2018-09-07 | 264.18 | +19.94% |
2019-09-13 | 276.58 | +19.08% |
2020-09-11 | 306.98 | +20.16% |
2021-09-10 | 409.58 | +27.49% |
update: 2022/03/31 09:59 | path: /pub/life/invest
DOMAIN | IP | 受信日付 | 通報日付 |
---|---|---|---|
v133-130-55-219.a00c.g.tyo1.static.conoha.io | 133.130.55.219 | 2022-03-23 | 2022-03-31 |
v160-251-93-121.mfp4.static.cnode.io | 160.251.93.121 | 2022-03-21 | 2022-03-31 |
v150-95-208-158.eq7i.static.cnode.io | 150.95.208.158 | 2022-03-03 | 2022-03-15 |
update: 2022/03/31 09:57 | path: /pub/spam
$ sudo apt install openfortivpn* /etc/openfortivpn/config
host = vpn-server-hostname # or IP address port = 443 username = user-name password = secret set-dns = 0 set-routes = 0 trusted-cert = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxこの例は、/etc/resolv.conf をそのまま使い、routing もopenfortivpn の設定を別途用意する場合の例です。
#!/bin/sh #### PDEV=ppp0 PIDFILE=/var/run/openfortivpn.pid LOGFILE=/var/log/openfortivpn.log CMD=/usr/bin/openfortivpn INTRANETS="10.0.0.0:255.0.0.0 192.168.0.0:255.255.0.0" #### case "$1" in start) sudo start-stop-daemon --start --quiet -m -b --pidfile $PIDFILE -O $LOGFILE --exec $CMD sleep 5 # wait a few seconds for connect for i in $INTRANETS do NETWORK=${i%:*} MASK=${i#*:} sudo /sbin/route add -net $NETWORK netmask $MASK dev $PDEV metric 1 done ;; stop) sudo start-stop-daemon --stop --pidfile $PIDFILE ;; *) echo "Usage: $0 {start|stop}" ;; esac
update: 2022/03/16 15:57 | path: /pub/software/linux/fortivpn
update: 2022/03/07 17:20 | path: /pub/life/peace
DOMAIN | IP | 受信日付 | 通報日付 |
---|---|---|---|
v133-130-48-149.a005.g.tyo1.static.conoha.io | 133.130.48.149 | 2022-02-28 | 2022-03-04 |
v160-251-114-104.fv4s.static.cnode.io | 160.251.114.104 | 2022-02-26 | 2022-03-04 |
v118-27-121-116.pncf.static.cnode.io | 118.27.121.116 | 2022-02-23 | 2022-02-24 |
v160-251-1-247.wcb6.static.cnode.io | 160.251.1.247 | 2022-02-14 | 2022-02-24 |
v160-251-61-36.6vew.static.cnode.io | 160.251.61.36 | 2022-02-11 | 2022-02-14 |
update: 2022/03/04 16:10 | path: /pub/spam
DOMAIN | IP | 受信日付 | 通報日付 |
---|---|---|---|
v118-27-77-52.wj1b.static.cnode.io | 118.27.77.52 | 2022-01-23 | 2022-01-27 |
v160-251-38-223.bzpp.static.cnode.io | 160.251.38.223 | 2022-01-23 | 2022-01-27 |
v150-95-220-92.0tbu.static.cnode.io | 150.95.220.92 | 2022-01-16 | 2022-01-18 |
v160-251-62-60.41z4.static.cnode.io | 160.251.62.60 | 2022-01-08 | 2022-01-14 |
v160-251-2-196.mwqa.static.cnode.io | 160.251.2.196 | 2022-01-05(x2) | 2022-01-06 |
update: 2022/03/04 16:10 | path: /pub/spam
$ ssh servername Unable to negotiate with xxx.xxx.xxx.xxx port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss8.8になってから、相手先のHostのkey-typeから RSAとDSAタイプのhost keyを受けつけなくなったらしい...。
HOST servername HostKeyAlgorithms +ssh-dssさらに古いServer(RSA typeを使用している)の相手先だと、host keyおよびpublic key に RSA 追加が無いとだめ...。
HOST servername HostKeyAlgorithms +ssh-rsa PubkeyAcceptedKeyTypes +ssh-rsa
update: 2022/02/24 17:04 | path: /pub/software/ssh
update: 2022/02/08 13:24 | path: /pub/software/game
$ sudo apt install dovecot-core dovecot-imapd/etc/dovecot/conf.d/10-mail.confの"mail_location"を上記MDAにあわせて設定
mail_location = maildir:~/Maildir● SSL対応
... inet_listener imaps { port = 993 ssl = yes } .../etc/dovecot/conf.d/10-ssl.conf
ssl_verify_client_cert = no証明書関係は自動で生成される。
("ssl-verify-level" . 0) ; vefifyしないのようにして、verifyをしないようにする(個人で作成された証明書ではverifyが通らないので)。