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

システム管理

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 memoryTo 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コマンドを使用します。引数としてP...
LinuxTips(RedHat系)

killシグナルを表示する

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

システムを停止する

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

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

Linuxのディストリビューションとバージョンの確認●CentOS7系の場合# cat /etc/redhat-rele...
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情報を表示する場合、「/p...
LinuxTips(RedHat系)

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

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