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

LinuxTips(RedHat系)

LinuxTips(RedHat系)

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

Linuxで画像形式のファイルを編集する ●画像を回転させる Linuxのconvertコマンドは、画像を回転させること...
LinuxTips(RedHat系)

ファイルの並べ替え

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

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

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

ファイルの比較

ファイルの比較 ●2つのファイルを比較する 2つのファイルに違いがあるかを確認するには、cmpコマンドを使用します。 引...
LinuxTips(RedHat系)

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

ファイル内の文字列・行抽出 ●特定文字から始まる文字列を抽出する 長文のファイルから特定の文字列を抽出する場合、grep...
LinuxTips(RedHat系)

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

tarコマンドでファイル操作 ●tarコマンドで作成したアーカイブの内容を表示 tarコマンドで作成したアーカイブの内容...
LinuxTips(RedHat系)

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

ハードディスクの使用状況を確認する Linuxのハードディスク情報を確認するには「dfコマンド」を使用します。 dfコマ...
LinuxTips(RedHat系)

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

パーティションテーブルを表示する パーティションテーブルを表示するにはfdiskコマンドに「-l」オプションを付けてコマ...
LinuxTips(RedHat系)

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

使用できるフォーマット形式を表示する Linuxは複数のファイル形式をサポートしており、これはバージョンアップするごとに...
LinuxTips(RedHat系)

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

ファイルシステムを検査する ファイルシステムに問題が疑われる場合、fsckコマンドを使用してファイルシステムの検査を行い...
LinuxTips(RedHat系)

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

SCSIホストアダプタの状況を確認する SCSIカードを装着しているシステムでSCSIカードのメーカーや機種名、型番、接...
LinuxTips(RedHat系)

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