[Unix] vmstat – 仮想メモリやディスクI/Oの統計情報を表示する[Unix] vmstat – 仮想メモリやディスクI/Oの統計情報を表示する
まずは –help で指定可能なオプションを確認。 $ vmstat --help Usage: vmstat [options] [delay [count]] Options: -a, --active active […]
まずは –help で指定可能なオプションを確認。 $ vmstat --help Usage: vmstat [options] [delay [count]] Options: -a, --active active […]
まずは –help で指定可能なオプションを確認。 $ free --help Usage: free [options] Options: -b, --bytes show output in bytes -k, -- […]
よく使う割に使いこなせていないので再勉強。 まずは –help で指定可能なオプションを確認。 $ ps --help ********* simple selection ********* ******* […]
インストール (CentOS 7) psmiscというパッケージに含まれているらしい。 $ yum info psmisc Available Packages Name : psmisc Arch : x86_64 V […]
起動プロセスの段取りぐらいは押さえておかねば。 というわけで覚書リンク。 【新旧対応】Linuxでの自動起動の設定方法を解説 https://eng-entrance.com/linux_startup chkconfi […]
/etc/passwordでログインシェルに/sbin/nologinが指定されているユーザはsuできない。 # su apache This account is currently not available. そう […]
$ groups user1 user1 : user1 wheel 参考サイト Linuxコマンドでユーザーのグループ確認・変更。 – Qiita https://qiita.com/niiyz/items […]
ユーザのUIDを調べる $ id -u username ユーザのGIDを調べる $ id -g username 参考サイト id – ユーザのUIDやGIDを表示 http://www.ksknet.ne […]
GitHubから好みのカラースキームを落としてきて適用する。 $ mkdir ~/.vim $ cd ~/.vim $ mkdir colors $ git clone https://github.com/tomasr […]
-a オプション必須。 コマンド実行例 rsync -av 同期元/ 同期先/ 「-a」で有効になるオプション 短いオプション 長いオプション 意味 -r –recursive ディレクトリを再帰的に処理する […]
SSH接続に以下の条件があったとする。 サーバーAには直接接続できる。 サーバーBには直接接続できない。サーバーA経由ならば接続できる。 後者の接続をOpenSSHでどうやって実現するか。参考サイトに事例があったので覚書 […]
rootになってpasswdに続けてパスワード変更したいユーザ名を入力。 # passwd user1 参考サイト ◇パスワードの設定と変更◇初心者のためのLinuxサーバー構築講座(CentOS 自宅サーバー対応)☆お […]
参考サイトから抜粋。 カレント行で最初に合致した文字列を置換する :s/置換対象文字列/置換後文字列/ カレント行の全置換対象文字列を置換する :s/置換対象文字列/置換後文字列/g ファイル全体の全置換対象文字列を置換 […]
CentOS 6以前 # service crond status //状態取得 # service crond start //起動 # service crond stop //停止 # chkconfig --li […]
findとchmodを繋いで使う。 $ find /path/to/dir -type d -exec chmod 755 {} + $ find /path/to/dir -type f -exec chmod 644 […]
【 dig 】コマンド――ドメイン名からIPアドレスを調べる:Linux基本コマンドTips(158) – @IT http://www.atmarkit.co.jp/ait/articles/1711/09 […]
以下のような状況。 $ sudo npm run dev sudo: npm: command not found sudoのパスが通っていない。カレントユーザのパスを継承したければ以下のように設定する。 $ sudo […]
実行中のプロセスの起動時オプションが見たいときはxを付ける。 $ ps -x PID TTY STAT TIME COMMAND 912 ? S 0:00 sshd: user001@pts/0 913 pts/0 Ss […]
アーカイブする。 $ tar cvfz abc.tar.gz ./* 解凍する。 $ tar xvfz abc.tar.gz 参考サイト [tar] 複数ファイルやディレクトリを一つのファイルにまとめる – […]
MTAの設定を確認するならmailコマンドが手っ取り早い。 echo "本文" | mail -s "タイトル" -r from@example.com -c cc@example.com -b bcc@example. […]