業務用エアコン関連の技術情報、エラーコード、環境問題対策に関する別サイト「エアコンの安全な修理・適切なフロン回収」

nuy

Archlinux_en

ArchLinux : SSH , Firewall (ufw)

1. SSH Service Security SettingsChange the configuration file for the SSH service, which is "/etc/ssh/sshd_config".In this case, we will change the default SSH port 22 to 2244.Change /etc/ssh/sshd_config as follows2. Firewall (ufw)2.1 Install# pacman -S ufw# systemctl status ufw○ ufw.service - CLI Netfilter Manager Loaded: loaded (/usr/lib/systemd/system/ufw.service; disabled; preset: dis> Active: inactive (dead)You can confirm that the ufw service is stopped by displaying "Active: inactive (dead)"
Archlinux_en

ArchLinux : Initial settings after OS installation

1. User Account CreationAdd user (huong) to wheel group and create home directory# useradd -m -G wheel huongUser (huong) password setting# passwd huongNew password:Retype new password:passwd: password updated successfullyGrant sudo privileges to the added huong user2 . Configuration of the text editor vimVim was already installed during the Arch Linux installation, so this is just a configuration file.If you are installing vim3. Network Connections■ If using systemd-resolved, create /etc/resolv.conf as a link file# ln -sf /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf■ If systemd-resolved is not used
Archlinux_en

ArchLinux : Installation #4 How to install with btrfs file system

For installation with ext4 file system, please refer to the following pagehttps://korodes.com/arch_en_02/https://korodes.com/arch_en_03/1.Creating partitions1.1 Confirmation of installation deviceCheck the target device with the lsblk command
Archlinux_en

ArchLinux : Installation #2 Disk Partitioning

1. Partitioning the disk on which Arch Linux is installedThis time, use gdisk command in UEFI mode and GPT for the partition table.Check current disk information# lsblkNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTSloop0 7:0 0 693.5M 1 loop /run/archiso/airootfssda 8:0 0 20G 0 disksr0 11:0 1 813.3M 0 rom /run/archiso/bootmntIn the above case, a 20 GB virtual HDD was created on VmwareWorkstion, so the SIZE of the sda is set to 20 GB.The sda in the NAME line is the name of the device that represents the entire disk and will be partitioned to this sda.This time, create an EFI partition and a partition for Arch Linux, but not a swap partition.In the past, a partition was created for swap and allocated as swap, but now a "swap file" can be used without a swap partition.A "swap file" is a method of creating a single file of any size for swap and using that area as swap, which can be created, deleted, and resized.
Debian11.11_en

Debian11.11 : WEB Server(Apache2)

Web server Apache2 installationAllow http:80 and https:443 p...
Debian11.11_en

Debian11.11 : Initialization

1. Installing and configuring the vim editorDebian has "nano...
Debian11.11_en

Debian11.11 : SSH , Firewall Setting

1. SSH Service Security SettingsThe SSH service allows the r...
Debian11.11_en

Debian11.11 : SSH connection using public key cryptography

RSA SSH connection with authentication using public key cryp...
Debian11.11_en

Debian11.11 : NTP ,FTP Server Installation

1. Install NTP serverSetting ReflectionOperation check2. Ins...
Debian11.11_en

Debian11.11 : Anti-virus(Clamav) , Mail Server

1. Antivirus software Clamav installedInstall Clam AntiVirus...
Debian11.11_en

Debian11.11 : Let's Encrypt WEB , Mail Server SSL

1. Obtain a certificate (Let's Encrypt)1.1 advance preparati...
Debian11.11_en

Debian11.11 : MySQL8 , WordPress Install

1. MySQL 81. 1 Update package indexInstall necessary package...
Debian11.11_en

Debian11.11 : SNORT2 , Tripwire Install

1.SNORT2Snort is an open source network intrusion detection ...
Debian11.11_en

Debian11.11 : logwatch , Disk Usage Check Script

1. Introduce disk usage check script1.1 Script CreationConte...
Debian11.11_en

Debian11.11 : System Backup and Restore

1. System Backup1.1 Backup under /var/www/html① Create backu...