2023-10-01から1ヶ月間の記事一覧

linuxファイル検索tips

深さ制限してfindする find /opt/jboss -maxdepth 4 -type f -name jboss-service.xml maxdepthのオプションは、-type よりも先に入れないといけないことに注意。 逆にすると以下のエラーが出る # find /opt/jboss -type f -name jboss-service.xml -maxdept…

Ansible for the Absolute Beginner 勉強メモ

はじめに www.udemy.com Ansible for the Absolute Beginner の勉強メモ。自分用 ansibleのきそ 「誰に」「何をするか」を規定する。 inventory ファイル(「誰に」) 管理するサーバ達の接続先の設定を入れる。ansible版のhostsに近い。複数サーバひとまとめ…

PC購入時のセットアップ

はじめに surface laprop 2 からXPS 13 に乗り換えた。 surface laptop 2は2019年から4年お世話になった。乗り換えた・買い換えた理由は以下。 画面焼けが激しい 画面端が黄色っぽくなる。購入して1年ほどしてから症状が出始め、最後のほうはだんだん我慢し…

rpmコマンド

はじめに rpmコマンドの覚書。 rpmパッケージ自体は以下から取ってくるなどする必要あり。 https://access.redhat.com/downloads/content/package-browser 参照 ### rpmの一覧表示 [root@my-instance ~]# rpm -qa | grep instantclient oracle-instantclient…