ubuntu 22.04 썸네일형 리스트형 우분투에서 고정 IP 주소로 설정하는 방법(Static IP Address) 우분투에서 IP 주소를 고정하는 방법(How to set up a static IP address in Ubuntu) Ubuntu 22.04에서 IP 주소를 고정하는 방법은 다음과 같습니다. 1. 네트워크 설정 파일 열기 sudo vim /etc/netplan/00-installer-config.yaml 2. 파일 내에서 네트워크 설정 구성 변경 예를 들어, Ethernet 인터페이스(enp0s3)의 IP 주소를 192.168.0.10로 고정하고자 한다면, 아래와 같이 수정합니다. network: ethernets: enp0s3: addresses: - 192.168.0.10/24 gateway4: 192.168.0.1 nameservers: addresses: [8.8.8.8, 8.8.4.4] vers.. 더보기 How to Enable HTTP/2 in Apache 2.4 on Ubuntu 22.04 How to Enable HTTP/2 in Apache 2.4 on Ubuntu 22.04 To enable HTTP/2 in Apache 2.4 on Ubuntu 22.04, you can follow these steps: 1. Update your system: sudo apt update 2. Install Apache 2.4 with SSL support and HTTP/2 module: sudo apt install apache2 sudo apt install libapache2-mod-http2 3. Enable the necessary modules: sudo a2enmod http2 sudo a2enmod ssl 4. Configure your virtual hosts: Edit the .. 더보기 이전 1 다음