LoginSignup
2
2

More than 5 years have passed since last update.

自分用インフラの用語とコマンドのメモ

Last updated at Posted at 2017-11-25

目的

自分用のメモ

プロビジョニング

起動時に自動的に実行される一連の処理のこと

オーケストレーション

コンピュータシステム/ミドルウェア/サービスの配備/設定/管理の自動化
例: ECS、Kubernetes

シンボリックリンクの貼り方

$ ln -s from_path to_path

ファイル・ディレクトリ検索の仕方

$ find [開始ディレクトリ(省略した場合カレントディレクトリ)] [オプション]

  • ホームディレクトリ以下にあるhogeを含むファイル・ディレクトリを検索する
    $ find ~ -name *hoge*

  • ホームディレクトリ以下にある2.4時間以内に更新されたhogeを含むファイル・ディレクトリを検索する
    $ find ~ -name *hoge* -mtime -0.1

起動メッセージの確認コマンド

$ dmesg

コマンドの実行ファイルの場所を表示

$ which
$ whereis

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2