본문 바로가기

728x90
반응형

Linux Distributions

What Is My IP?(myip) What Is My IP? bind utilities centos yum install -y bind-utils ubuntu apt-get install -y bind9-dnsutils Public IP Address dig @resolver1.opendns.com myip.opendns.com +short Private IP Address ip route get 1.2.3.4 | awk '{ print $7 }' | egrep -v '^$' 더보기
How to install Ruby on Ubuntu How to install Ruby on Ubuntu Method 1: Installing Ruby using the Default Package Manager 1. Update the package list Open a terminal and update the package list to make sure you have the latest information about available packages sudo apt update 2. Install Ruby To install the default version of Ruby provided by Ubuntu's package manager, you can use the following command sudo apt install ruby-fu.. 더보기
How to install libmcrypt on CentOS 7.9 How to install libmcrypt on CentOS 7.9 problem with libmcrypt libmcrypt-devel installation $ yum install libmcrypt libmcrypt-devel Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile * base: mirror.kakao.com * extras: mirror.kakao.com * updates: mirror.centos.iad1.serverforge.org No package libmcrypt available. No package libmcrypt-devel available. Error: Nothing to do .. 더보기
How to install and use stress How to install and use stress Stress is a command-line tool that can be used to stress test a system by generating a workload on the CPU, memory, and I/O. It is a useful tool for testing the performance of a system under load, and can also be used to troubleshoot performance problems. To install stress, you can use the following command: sudo apt install stress Once stress is installed, you can .. 더보기
How to Install Webalizer on CentOS 8 How to Install Webalizer on CentOS 8 To install Webalizer on CentOS 8, you can follow these steps: 1. Update the system: sudo dnf update 2. Install the EPEL repository: Webalizer is available in the EPEL repository. Install the EPEL repository by running the following command: sudo dnf install epel-release 3. Install Webalizer: Once the EPEL repository is installed, you can install Webalizer usi.. 더보기
How to Install Apachetop on CentOS 7 How to Install Apachetop on CentOS 7 To install apachetop on CentOS 7, you can follow these steps: 1. Enable the Extra Packages for Enterprise Linux (EPEL) repository, which provides additional packages: sudo yum install epel-release 2. Install apachetop using the yum package manager: sudo yum install apachetop 3. Once the installation is complete, you can run apachetop to monitor Apache web ser.. 더보기
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 .. 더보기
How to install the latest version of influxdb on Ubuntu How to install the latest version of influxdb on Ubuntu Install the latest version of InfluxDB on Ubuntu 1. Update the system packages: sudo apt update 2. Import the InfluxDB GPG key: wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add - 3. Add the InfluxDB repository to the package manager: For Ubuntu 22.04: echo "deb https://repos.influxdata.com/$(lsb_release -si) $(lsb_rele.. 더보기

728x90
반응형