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

nuy

LinuxTips(RedHat系)

PCIデバイスの情報を表示する

Display PCI device informationTo check the information of a PCI device in Linux, use the lspci command.This lspci command can be executed with the option "-v" to display more detailed information.You will need super user (root) privileges to run this command.
LinuxTips(RedHat系)

不要サービスを停止する

Linux starts many unnecessary services (programs) that are not used immediately after installation.Services that are not used consume server resources unnecessarily just by being started and running, which is not desirable for security measures.There are two commands to stop services: service and chkconfig, but the service command will cancel the settings and start the stopped service when the server is restarted.Stop the service with the chkconfig command, which will keep the service stopped even after restarting the server.
LinuxTips(RedHat系)

CPUの各種情報を表示する

CPUの各種情報を表示する●PCに搭載されているCPU情報を表示するPCに搭載されているCPU情報を表示する場合、「/p...
LinuxTips(RedHat系)

デーモンプロセスも含めて表示する

デーモンプロセスも含めて表示するLinuxの場合、システム維持の為に命令を与えなくても特別に動作しているプロセスがありま...
LinuxTips(RedHat系)

インストール済みのRPMパッケージを確認

Check the installed RPM packages.Red Hat Enterprise Linux and CentOS, which was developed based on Red Hat Enterprise Linux, use a package management tool called RPM (Redhat Package Manager).。RPM is a handy management tool that allows you to easily install and uninstall software and manage RPM packages with dependencies in mind, preventing you from accidentally removing RPM packages that you need.If you want to use this RPM, use the "rpm" command.Use the "-q" option to examine the RPM packages already installed, and the "-a" option to list the installed packages.rpm -qa" alone will show you all the packages installed on your Linux system, and is not suitable for checking specific packages.It is not suitable for checking a specific package.To check if a specific package is installed, specify the PRM package you want to check in "rpm -qa".
Ubuntu18.04

Ubuntu Server 18.04 : イメージの入手とインストール

Ubuntu Server 18.04インストールイメージのダウンロードUbuntu Serverのインストール用メディアはインターネット上の公式サイトからダウンロードできます。高速な回線さえあれば2~3分程度でOS自体をダウンロードすることができます。ダウンロードしたisoファイルからインストール用CD/DVDを作成する必要があります。isoファイルのダウンロード先は「Ubuntu 公式ダウンロードサイト」です。Ubuntu Server 18.04 インストール上記で作成したインストールディスクから起動できるようにBIOSを変更して、PCを起動する。
Ubuntu18.04

Ubuntu Server 18.04 : MySQLインストール

MySQLインストール1.必要なパッケージをインストールする# apt update# apt install mysql-server2.MySQLサーバのセキュリティ設定を行うMySQLサーバのセキュリティ関連の設定を行うためにmysql_secure_installtionというツールが用意されているのでこれを実行します。実行すると、質問形式でいくつかのセキュリティ設定がはじまります。
Ubuntu18.04

Ubuntu Server 18.04 : 初期設定

1. rootパスワードを設定し、SUコマンドを利用$  sudo passwd rootpassword for ← 現在のユーザのパスワードEnter new UNIX password: ← 設定するrootパスワードを入力Retype new UNIX password: ← 設定するrootパスワードを再入力passwd: password updated successfully2. SSHの初期設定$ su -パスワード :# cd /etc/ssh# vi sshd_configPermitRootLogin no ← #rootでログイン不可にする
Ubuntu18.04

Ubuntu Server 18.04 : FTPサーバー、NTPサーバー導入

1.FTPサーバー vsftpdをインストール①インストール# apt install vsftpd# ufw reload②UFWにてFTPが利用するPORT21を許可する# ufw allow ftp③設定ファイル(vsftpd.conf)の編集
Ubuntu18.04

Ubuntu Server 18.04 : WEBサーバー、ウイルス対策導入

1. WEBサーバー導入1. 1 Apache2インストール①インストール# apt -y install apache2②設定ファイル編集# vi /etc/apache2/conf-enabled/security.conf# 25行目:変更ServerTokens  Prod# vi /etc/apache2/mods-enabled/dir.conf# 2行目:ディレクトリ名のみでアクセスできるファイル名を設定
Ubuntu18.04

Ubuntu Server 18.04 : メールサーバー導入

1.Postfix : インストール/設定Postfix は、sendmail に代わるMTA (Mail Transport Agent)として開発されたソフトウェアで、sendmail との互換性が高く、安全、メンテナンスが容易、速い、などの特徴を兼ね備えたメールサーバーです。また、Postfix はメールを送信するSMTP サーバーとしての機能しか無いため、後述でメール受信のPOP サーバーのインストールを別途行います。1.1 インストール
Ubuntu18.04

Ubuntu Server 18.04 : SSL証明書を取得(Let's Encrypt)

Let’s Encryptで証明書取得①mod_sslを有効にする# a2enmod ssl②Gitをインストール# apt-get install -y git③証明書取得ツールのインストール# cd /usr/local/# git clone https://github.com/certbot/certbot
Ubuntu18.04

Ubuntu Server 18.04 : WEBサーバー・メールサーバー・FTPサーバーにSSL/TLS 適用

1. Apache2 : SSL/TLS の設定Let’s Encryptで取得したSSL証明書をapacheへ適用する方法を説明。ドメイン名 : hoge.comとする1.1 Apache2の設定①Apache2設定ファイルの編集デフォルトのconfファイルをリネームしてコピー(例として「hoge.com-ssl.conf」)# cd /etc/apache2/sites-available/# cp default-ssl.conf hoge.com-ssl.conf
LinuxTips(RedHat系)

デフォルトゲートウェイ(ルータ)を設定する

デフォルトゲートウェイ(ルータ)を設定する●現状のデフォルトゲートウェイ確認「route -n」コマンドを実行する。 -...