0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Linuxのルートディレクトリ構造

Last updated at Posted at 2021-07-05
  • cd /で移動するディレクトリ

全体

/
├── /bin:標準コマンド実行ファイル(cd,cp,grep,mkdirなど)
├── /boot:システムの起動に必要なファイル
├── /dev:ハードウェア機器(device)
├── /etc:設定ファイル
├── /home:ユーザーのホームディレクトリ
├── /lib:OSに必要なライブラリファイル
├── /mnt:ファイルシステムの一時的なマウントポイント用
├── /media:CD-ROMなどのリムーバブル媒体(media)のマウントポイント用
├── /opt:サイズの大きい追加アプリがインストールされる
├── /proc:カーネルやプロセスに関する情報をテキストで表示する仮想ファイルシステム(CPU/メモリ容量とか)
├── /root:root用ホームディレクトリ(管理者用ディレクトリ)
├── /sbin:ルートユーザー用コマンド実行
├── /sys:OSの現在の状況に関する情報(デバイスやドライバーの設定ファイルなど)
├── /usr:全ユーザーが共通して利用するプログラムのデータ
└── /var:システムログなどの動的データ

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?