Click here for "Error Codes for Commercial Air Conditioners".(Japanese Version)

nuy

Disk and device management

Check the hard disk usage.

To check the Linux hard disk information, use the "df command". The df command is used to set the hard disk's Used space Free space Percentage of usage The df command displays the following information In Linux, hard disks are treated as special files called device files. IDE drives have the names /dev/hda (primary star hard disk), /dev/hdb (primary slave hard disk), etc. on Linux systems. The results of the df command will also show the names of these files, so you can distinguish between them and check their usage even if you are using multiple hard disks.
Disk and device management

Display the partition table

Display the partition table To view the partition table, run...
Disk and device management

Show the available formatting formats.

Linux supports multiple file formats, and this tends to increase with each version upgrade. So, if you want to check what file formats are supported, you can run the fdisk command with the device as an argument, and then run the interactive command "l" to display the list of supported files.
Disk and device management

Inspect the file system.

If a problem is suspected in the file system, use the fsck command to inspect the file system. When the fsck command is executed, it will check the file system for abnormalities, and if any abnormalities are found, it will display a return value depending on the nature of the problem. If no abnormality is found, the number of files contained on the disk, the number of blocks in use, and the number of available blocks will be displayed. If the command is executed with no arguments, all devices described in /etc/fstab will be scanned, and if the command is executed with a device name specified as an argument, only the specified device will be scanned. Caution. Since disk access while the check is in progress may destroy the system, it is safe to unmount any volume that can be unmounted when executing the fsck command, and to run it in single-user mode if it contains a volume on which / is placed.
Disk and device management

Check for filesystem consistency.

Use the e2fsck command to check the consistency of the file system for ext2 (Linux 2nd extended file system) and ext3 (Linux 2nd extended file system with journal and automatic record keeping). Specify the device name of the volume to be checked as an argument. Caution. Since disk access while the inspection is in progress may destroy the system, it is safe to unmount any volume that can be unmounted when running the e2fsck command, and to run it in single-user mode if it contains a volume with / placed on it. Also, root privileges are required to run this e2fsck command.
Disk and device management

Check the status of the SCSI host adapter.

Check the status of the SCSI host adapter. To find out the manufacturer, model name, model number, and connection status of the SCSI card in a system with a SCSI card installed, you can check the status of the SCSI card by viewing the information in the "/proc/scsi/scsi" file.
Disk and device management

Displays information on I/O addresses.

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)_en

Reboot the system immediately.

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)_en

Display various information of memory

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)_en

Display the status of a process

To view the processes, use the ps command. When the ps command is executed, it will display the process information based on the information under /proc. If the ps command is executed without any options, the process status of the user who executed the command will be displayed.
LinuxTips(RedHat)_en

Show all processes

Show all processes To see all the processes, run the ps command with the "-a" option. If you want to see the processes executed by the logged-in user, you can use the "-a" option without any arguments, but if you want to see which processes are being executed by other users, you can use the "-u" option as well.
LinuxTips(RedHat)_en

Display processes including their parent-child relationships.

Display processes including their parent-child relationships...
LinuxTips(RedHat)_en

Show only running processes and specific processes

Show only running processes and specific processes ●View running processes The ps command basically shows all the processes that are not completed, so it will also show the processes that are stopped. To show only running processes, run the ps command with the option "-r".
LinuxTips(RedHat)_en

Display the kill signal

Display the kill signal The kill command not only kills the process, but it can also control various other things. The signals used for this control are called signals, and there are numbers, names, and abbreviations that can be used for control. To check which signals can be used with the kill command, execute the kill command with the option "-l".
LinuxTips(RedHat)_en

Shut down the system.

Shut down the system. ●top the system with the halt command There are several ways to stop the system, but executing the halt command will send a system stop message to all connected users, shift the run level to "0", and start the stop process. Normally, you need to be the root user to execute this command, but the halt command can also be executed by a general user. However, when run as a general user, the behavior differs depending on the distribution as follows. RedHat system:Can be executed by general users. However, if the command is executed from a remote host, it will be ignored. Vine Linux system:Ask for the root user's password, and if correct, run the stop process. Debian GNU/Linux system:Cannot be executed by general users Plamo Linux system:Cannot be executed by general users