Ssandeepinsandeep2024.hashnode.dev·Nov 26, 2024 · 1 min readCreate a new volume group in RHELCreate a Physical Volume: Initialize the disk or partition you want to use. For example, if you want to use /dev/sdb: sudo pvcreate /dev/sdb Create a Volume Group: Create a new volume group and add the physical volume to it. For example, to create a ...00
Ssandeepinsandeep2024.hashnode.dev·Jul 26, 2024 · 1 min readInstall FTP server in REDHAT8Install FTP server . Login as a root user. yum install -y vsftpd systemctl enable vsftpd.service systemctl status vsftpd.service Update /etc/vsftpd/vsftpd.conf anonymous_enable=YES systemctl start vsftpd.service Install client yum install -y lft...00
Ssandeepinsandeep2024.hashnode.dev·Jul 11, 2024 · 1 min readHow to Install Docker and Docker-Compose in RHEL8step 1 - dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo step 2 - sudo dnf install docker-ce --nobest -y step 3 - sudo systemctl enable docker sudo systemctl start docker step 4 - sudo curl -L "[https://github.co...00