Today we will show you how to create repository in Linux. We know that we can install packages in Linux by using RPM (Red Hat Package Management) but disadvantage is that by using RPM we can’t install packages wich depend on other packages i.e dependencies. so in order to install packages which depend on other packages, we have to install packages by using YUM (Yellowdog Updater Modified). Actually YUM is added from RHEL5 onwards. YUM uses a repository for installation. YUM automatically computes dependencies and figure out what things should occur to install packages. YUM can install, remove upgrade or query the packages.
How to Create Repository?
Follow these tips to add a local repository in your hard drive, here I am showing how to create repository in RHEL6.
Step 1: Create any folder i.e Directory
# mkdir /var/ftp/pub
Step 2: Move all RHEL DVD files to this directory /var/ftp/pub
# cd /var/ftp/pub
Step 3: Append the file localRepo:
# cd /etc/yum.repos.d
# vi localRepo.repo
[localRepo] name=localRepo baseurl=file:///var/ftp/pub enabled=1 gpgcheck=0 :wq! (Save and Quit)
Step 4: Create repository
#cd /var/ftp/pub/Packages
#rpm -ivh createrepo* --force
#createrepo -g /var/ftp/pub/repodata/repomd.xml /var/ftp/pub/Packages
Step 5: Run following command
# yum clean all
To checkout list of installed packages use following command:
# yum list installed
So this is all about how to create repository. Actually we make our system to know where repository is located i.e index.











Delete Files Older than ‘x’ Days in Linux
Choosing a Linux Distro: Which Flavor of Linux is Best for Me?
Play Windows Games on Linux
Package Management Tips for Linux Users