「エアコンの安全な修理・適切なフロン回収」はこちら

システム管理

システム管理

システムをすぐに再起動する

reboot is a command to reboot the system immediately. Usually, the shutdown command is used to stop the system, but reboot is a shortened form of the shutdown command. To reboot the system with the shutdown command, you need to add the option "r" as an argument, but reboot does not need any argument. There is also halt, which is a command to stop the system immediately as well as reboot.
システム管理

メモリの各種情報を表示する

Display various information of memory ●Information about memory To get information about memory, refer to the /proc/meminfo file. This file is used as the memory information displayed by the top, free, and vmstat commands.
システム管理

プロセスの状態を表示する

プロセスの状態を表示する プロセスを表示するには、psコマンドを使用します。 psコマンドを実行すると、/proc以下の...
システム管理

すべてのプロセスを表示する

すべてのプロセスを表示する すべてのプロセスを表示するには「-a」オプションをつけてpsコマンドを実行します。 ログイン...
システム管理

プロセスの親子関係を含めて表示する

プロセスの親子関係を含めて表示する プロセスの親子関係を表示させるには、psコマンドにオプション「-f」を付けて実行しま...
システム管理

実行中のプロセス・特定のプロセスのみ表示する

実行中のプロセス・特定のプロセスのみ表示する ●実行中のプロセスのみ表示する psコマンドは基本的にプロセスが完了してい...
システム管理

プロセスを終了する

プロセスを終了する ●実行中のプロセスを終了する 実行中のプロセスを終了するには、killコマンドを使用します。 引数と...
システム管理

killシグナルを表示する

killシグナルを表示する killコマンドはプロセスを終了するだけではなく、様々な制御をする事が出来ます。 この制御に...
システム管理

システムを停止する

システムを停止する ●haltコマンドでシステムを停止する システムを停止するにはいくつか方法がありますが、haltコマ...
システム管理

Linuxのディストリビューションとバージョンの確認

Linuxのディストリビューションとバージョンの確認 ●CentOS7系の場合 # cat /etc/redhat-re...
システム管理

ロードされているカーネルモジュールを表示する

ロードされているカーネルモジュールを表示する Linuxは、カーネルの肥大化を防ぐために、動作に最低限必要なプログラム以...
システム管理

カーネルモジュールの詳細情報を表示する

カーネルモジュールの詳細情報を表示する ロードされている各モジュールの詳細情報を表示するには、modinfoコマンドを使...
システム管理

不要サービスを停止する

Linux starts many unnecessary services (programs) that are not used immediately after installation. Services that are not used consume server resources unnecessarily just by being started and running, which is not desirable for security measures. There are two commands to stop services: service and chkconfig, but the service command will cancel the settings and start the stopped service when the server is restarted. Stop the service with the chkconfig command, which will keep the service stopped even after restarting the server.
システム管理

CPUの各種情報を表示する

CPUの各種情報を表示する ●PCに搭載されているCPU情報を表示する PCに搭載されているCPU情報を表示する場合、「...
システム管理

デーモンプロセスも含めて表示する

デーモンプロセスも含めて表示する Linuxの場合、システム維持の為に命令を与えなくても特別に動作しているプロセスがあり...