전체 글 썸네일형 리스트형 How to install and configure chrony How to install and configure chrony The test environment docker run -d --privileged --name ubunut anti1346/ubuntu2204:systemd docker exec -it ubunut bash To install and configure chrony, a time synchronization tool, you can follow these steps: 1. Install chrony: Use the package manager of your Linux distribution to install chrony. For example, on Ubuntu or Debian, run the following command: sudo.. 더보기 How to set or change timezone on Ubuntu How to set or change timezone on Ubuntu 22.04 The test environment docker run -d --privileged --name ubunut anti1346/ubuntu2204:systemd docker exec -it ubunut bash To set or change the timezone on Ubuntu, you can follow the steps below 1. Check the current timezone configuration timedatectl show $ timedatectl Local time: Mon 2023-06-19 11:19:07 UTC Universal time: Mon 2023-06-19 11:19:07 UTC RTC.. 더보기 How to Install SSH Server on Ubuntu How to Install SSH Server on Ubuntu To install an SSH server on Ubuntu, you can follow these steps: 1. Update package lists Open a terminal on your Ubuntu system and run the following command to update the package lists: sudo apt update 2. Install the SSH server package Run the following command to install the SSH server package called openssh-server: sudo apt install openssh-server 3. Configure.. 더보기 How to install Apache from source code on CentOS 7 and enable HTTP/2 How to install Apache from source code on CentOS 7 and enable HTTP/2 To install Apache from source code on CentOS 7 and enable HTTP/2, you can follow these steps: 1. Install the necessary dependencies sudo yum install -y gcc pcre-devel openssl-devel zlib-devel sudo yum install -y libnghttp2-devel 2. Download the Apache source code from the Apache website. Choose the version you want to install. .. 더보기 How to ubuntu with docker container How to ubuntu with docker container 1. Pull the Ubuntu image from Docker Hub. docker pull ubuntu 2. Create a new container based on the Ubuntu image. docker run -it ubuntu 3. Access the Ubuntu container. docker attach ubuntu 4. Perform your desired tasks within the Ubuntu container. 5. Stop the Ubuntu container. docker stop ubuntu 6. Remove the Ubuntu container. docker rm ubuntu Run a Docker con.. 더보기 이전 1 ··· 10 11 12 13 다음