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

LinuxTips(RedHat系)

ディレクトリ・ファイル操作

Linuxで画像形式のファイルを編集する

Linuxで画像形式のファイルを編集する ●画像を回転させる Linuxのconvertコマンドは、画像を回転させること...
ディレクトリ・ファイル操作

ファイルの並べ替え

ファイルの並べ替え ●ファイルサイズが大きい順に並べる ディレクトリ内にあるファイルを表示する場合、通常はファイル名のア...
ディレクトリ・ファイル操作

ファイルのいろいろな表示方法

ファイルのいろいろな表示方法 ●ディレクトリ内のファイル数を表示 lsコマンドは、カレントディレクトリや特定のディレクト...
ディレクトリ・ファイル操作

ファイルの比較

ファイルの比較 ●2つのファイルを比較する 2つのファイルに違いがあるかを確認するには、cmpコマンドを使用します。 引...
ディレクトリ・ファイル操作

ファイル内の文字列・行抽出

ファイル内の文字列・行抽出 ●特定文字から始まる文字列を抽出する 長文のファイルから特定の文字列を抽出する場合、grep...
ディレクトリ・ファイル操作

tarコマンドでファイル操作

tarコマンドでファイル操作 ●tarコマンドで作成したアーカイブの内容を表示 tarコマンドで作成したアーカイブの内容...
ディスク・デバイス管理

ハードディスクの使用状況を確認する

ハードディスクの使用状況を確認する Linuxのハードディスク情報を確認するには「dfコマンド」を使用します。 dfコマ...
ディスク・デバイス管理

パーティションテーブルを表示する

パーティションテーブルを表示する パーティションテーブルを表示するにはfdiskコマンドに「-l」オプションを付けてコマ...
ディスク・デバイス管理

使用できるフォーマット形式を表示する

使用できるフォーマット形式を表示する Linuxは複数のファイル形式をサポートしており、これはバージョンアップするごとに...
ディスク・デバイス管理

ファイルシステムを検査する

ファイルシステムを検査する ファイルシステムに問題が疑われる場合、fsckコマンドを使用してファイルシステムの検査を行い...
ディスク・デバイス管理

SCSIホストアダプタの状況を確認する

SCSIホストアダプタの状況を確認する SCSIカードを装着しているシステムでSCSIカードのメーカーや機種名、型番、接...
ディスク・デバイス管理

I/Oアドレスの情報を表示する

I/O address information On Linux systems, you can display the memory map of the CPU reserved for I/O devices. To display the information, refer to the /proc/ioports file. You can use the more or less command to see the screen transition.
システム管理

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

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以下の...