end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2023-02-26から1日間の記事一覧

install nginx-1.23 from source to rhel9

$ cat /etc/redhat-release Red Hat Enterprise Linux release 9.1 (Plow) $ sudo yum install pcre-devel $ curl -OL http://nginx.org/download/nginx-1.23.3.tar.gz $ cd nginx-1.23.3 $ ./configure \ --prefix=/home/end0tknr/local/nginx \ --with-htt…

pyenv で python install する際の Missing the lzma lib エラーには yum install xz-devel

$ cat /etc/redhat-release Red Hat Enterprise Linux release 9.1 (Plow) $ pyenv install 3.7.16 : Traceback (most recent call last): File "<string>", line 1, in <module> File "/home/end0tknr/.pyenv/versions/3.7.16/lib/python3.7/lzma.py", line 27, in <module> from _l</module></module></string>…

rhel9における selinux の off化は grubby コマンドで

firewalld を offし、pdbedit -a でユーザ追加しても、 samba で rhel9 へ接続できない。 そこで、selinux を off化を考えましたが、 rhel9における selinux の off化は grubby コマンドで行うことになったらしく、少々、手こずりました。 $ sudo grubby --u…

動的計画法 - Dynamic Programming

「細かくアルゴリズムが定義されているわけではない」がポイント 定義 - wikipedia より 細かくアルゴリズムが定義されているわけではなく、 下記2条件を満たすアルゴリズムの総称。 帰納的な関係の利用: より小さな問題例の解や計算結果を帰納的な関係を …