How to Confiure YUM server in Linux
What is yum? The Yellowdog Updater, Modified (yum) is an open-source command-line package-management utility for Linux operating systems using the RPM Package Manager. Yum allows automatic updates, package and dependency management, on RPM-based distributions. yum works with software repositories (collections of packages), which can be accessed locally or over a network connection. Step1: Prerequisites: Below are the rpm based packages need to be installed to continue. vsftpd*, deltarpm*, python-deltarpm*, createrepo* Install below packages using rpm command from /misc/cd/Server/Packages Command: rpm -ivh vsftpd Command: rpm -ivh deltarpm* Command: rpm -ivh python-deltarpm* Command: rpm -ivh createrepo* Step2: Create directory Server under /var/ftp/pub/ Command: mkdir -p /var/ftp/pub/Server Step3: Now move to /misc/cd/ and copy all the content to /var/ftp/pub/Server/ Command: cp -avr * /var/ftp/pub/Se...