People using suse are familiar with yast. But in this article, I want to show how you can install yum, on your suse machine.
1. Download yum and all its dependencies from this link:
http://download.opensuse.org/distribution/10.2/repo/oss/suse/i586/
python-urlgrabber
python-sqlite
rpm-python
yum-metadata-parser (used option --nodeps)
yum
2. Install them all using this command: ->
rpm -Uvh (name of packages above) but for yum-metadata-parser use ->
rpm -Uvh --nodeps yum-metadata-parser3. Prepare yum config file
a. ->
cd /etc/yum.repos.d/ b. create file with .repo (ex: suse.repo) containing:
[base]
name=OpenSUSE_10.2 Base
type=rpm-md
baseurl=http://download.opensuse.org/distribution/10.2/repo/oss/suse/
gpgcheck=1
gpgkey=http://download.opensuse.org/distribution/10.2/repo
/oss/gpg-pubkey-a1912208-446a0899.asc
enabled=1
4. yum is ready for usage.