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

システム管理

LinuxTips(RedHat系)

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

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.
LinuxTips(RedHat系)

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

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.
LinuxTips(RedHat系)

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

プロセスの状態を表示する プロセスを表示するには、psコマンドを使用します。 psコマンドを実行すると、/proc以下の...
LinuxTips(RedHat系)

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

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

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

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

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

実行中のプロセス・特定のプロセスのみ表示する ●実行中のプロセスのみ表示する psコマンドは基本的にプロセスが完了してい...
LinuxTips(RedHat系)

プロセスを終了する

プロセスを終了する ●実行中のプロセスを終了する 実行中のプロセスを終了するには、killコマンドを使用します。 引数と...
LinuxTips(RedHat系)

killシグナルを表示する

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

システムを停止する

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

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

Linuxのディストリビューションとバージョンの確認 ●CentOS7系の場合 # cat /etc/redhat-re...
LinuxTips(RedHat系)

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

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

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

カーネルモジュールの詳細情報を表示する ロードされている各モジュールの詳細情報を表示するには、modinfoコマンドを使...
LinuxTips(RedHat系)

不要サービスを停止する

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.
LinuxTips(RedHat系)

CPUの各種情報を表示する

CPUの各種情報を表示する ●PCに搭載されているCPU情報を表示する PCに搭載されているCPU情報を表示する場合、「...
LinuxTips(RedHat系)

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

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