「業務用エアコンのエラーコード」はこちら

LinuxTips(RedHat系)

システム管理

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

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

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

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

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

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

プロセスを終了する

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

killシグナルを表示する

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

システムを停止する

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

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

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

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

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

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

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

RPMパッケージの情報を表示

Display RPM package information To find out what features a particular package provides, use the -q option to make a query, and the -i sub-option in combination to display that information. Specify the package name of the package for which you want to display information as an argument.
RPMパッケージ管理

RPMパッケージがインストールされたディレクトリを表示する

Display the directory where the RPM package is installed. To find out where the relevant files are when you install a particular package, run the rpm command with the To check where the related files are located after installing a particular package, run the rpm command with the "-ql" option. Specify the package name as an argument.
RPMパッケージ管理

特定のプログラムがどのRPMパッケージに含まれているかを確認する

Check which RPM package a particular program is included in. To check which RPM package a particular program is included in, add the "-qf" option to the rpm command and specify the program (executable file) as an argument. [root@Lion ~]# rpm -qf /usr/sbin/dovecot dovecot-2.2.36-3.el7.x86_64
RPMパッケージ管理

RPMパッケージのインストールテストを行う

Test the installation of RPM packages. Sometimes, due to dependencies, conflicts, or other problems, an error message will be displayed when executing the install command and the installation will fail. It is possible to test for such problems before installation. To do so, run the rpm command with the "--test" option and execute the installation. [root@Lion ~]# rpm -ivh --test zlib-devel-1.2.3-4vl5.i386.rpm ↑Test the installation of the rpm package
RPMパッケージ管理

RPM依存パッケージを表示する

Show RPM dependent packages Dependencies are often a problem when manipulating packages, such as installing, upgrading, or removing RPM packages. So to avoid these problems, it is important to check the dependencies in advance. To check what package a particular package depends on, run the rpm command with the "-q" option in combination with the "-R" option to display the name of the dependent package.
RPMパッケージ管理

RPMパッケージをインストールする

RPMパッケージをインストールする rpmパッケージをインストールするには、rpmコマンドにオプション「-i」を付けてコ...