Just installed RHEL 6.1 and i have 0 repositories
*Hi,
Im just wondering if someone know how to install packages on RHEL 6.1, I have installed the demo version* but the repositories are empty. I want* to install a GUI on that, along with DB2 and Websphere.. Anybody know how to do that? * * Thanks. -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines |
Just installed RHEL 6.1 and i have 0 repositories
En 24/10/2011 13:19:28, Maxime Alarie <malarie@processia.com> escribió:
> Im just wondering if someone know how to install packages on RHEL 6.1, I > have installed the demo version but the repositories are empty You should have in "/etc/yum.repos.d/" folder a file "rhel-base.repo", check inside in the property "enabled" and set it to 1 and then try: # yum update To download the package database and the try installing a desktop environment like GNOME or XCFE. Regards, Lázaro. Este mensaje de correo electrónico ha sido procesado por el servidor de Frioclima -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines |
Just installed RHEL 6.1 and i have 0 repositories
Thanks for the quick reply,
The file is empty.. [root@RHELV6 yum.repos.d]# cat redhat.repo # # Red Hat Repositories # Managed by (rhsm) subscription-manager #[root@RHELV6 yum.repos.d]# -----Original Message----- From: users-bounces@lists.fedoraproject.org [mailto:users-bounces@lists.fedoraproject.org] On Behalf Of Lázaro Morales Sent: Monday, October 24, 2011 2:27 PM To: Community support for Fedora users Subject: Re: Just installed RHEL 6.1 and i have 0 repositories En 24/10/2011 13:19:28, Maxime Alarie <malarie@processia.com> escribió: > Im just wondering if someone know how to install packages on RHEL 6.1, I > have installed the demo version but the repositories are empty You should have in "/etc/yum.repos.d/" folder a file "rhel-base.repo", check inside in the property "enabled" and set it to 1 and then try: # yum update To download the package database and the try installing a desktop environment like GNOME or XCFE. Regards, Lázaro. Este mensaje de correo electrónico ha sido procesado por el servidor de Frioclima -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines |
Just installed RHEL 6.1 and i have 0 repositories
En 24/10/2011 14:55:53, Maxime Alarie <malarie@processia.com> escribió:
> # Managed by (rhsm) subscription-manager If you have a valid subscription refer to: * http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/index.html Part II. "Package Management", Chapter 4: "Product Subscriptions and Entitlements" to activate it. If not you can looking for availables packages at your DVD: Mount your DVD at "/media/rhel" # mkdir /media/rhel-dvd # mount /dev/dvd /media/rhel-dvd create a custom .repo file pointing your DVD if it not exist under "/etc/yum.repos.d/": # cat > /etc/yum.repos.d/rhel-media.repo << "EOF" [rhel-media] name=RHEL-$releasever - Media baseurl=file:///media/rhel-dvd/ gpgcheck=1 enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-RHEL-6 EOF And then try looking for packages in you DVD: # yum update # yum search php Regards, Lázaro. Este mensaje de correo electrónico ha sido procesado por el servidor de Frioclima -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines |
Just installed RHEL 6.1 and i have 0 repositories
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 Jeronimo Calvo jeronimocalvop@hush.com On 24 Oct 2011, at 19:55, Maxime Alarie wrote: > Thanks for the quick reply, > > The file is empty.. > Create a new repo file. rhel6.repo and add the following: ================= # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #released updates [updates] name=CentOS-$releasever - Updates mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #additional packages that may be useful [extras] name=CentOS-$releasever - Extras mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplu s #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #contrib - packages by Centos Users [contrib] name=CentOS-$releasever - Contrib mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib #baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 ================================= After that do the following: yum clean all yum update you should accept the gpg keys from the centos repo. try your new repo with: yum list Cheers, Jero -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.17 (Darwin) Comment: GPGTools - http://gpgtools.org iQEcBAEBAgAGBQJOpcUXAAoJEGNDE5xD5Cq4E1YIAN2tDBSuZt 2Jeb37kTwKQ7fB nNyf271pB+kvMQKl9FzvYuAgvi5fmvZ/TkY54xbyYYaH/Ne/QG9w7XFLpmI1v35b XDA8e2WO9FJYCIR+IJTPGzol6ZtZVgUhgQ/UZJBhjk6+OkK7r5AAKi42UFVvTUJO 49kQvUjbAY7N1yGVRLkbV5CqTfYHOO1wzn12G/Je/xfzJpx2m0HQIU5ZPfuKwKaz X2DWCd0/DVCEExft5bW6WDQNBaEvltX5eAXfIC2WueBVbV0W04I8uMghuP mnmvav OgZF5TuZL+CmvPy9KXu2Ou2lq88XQTqqVNbrYH1xWmDVEkYTBn WYuMKcR4Z0pZw= =wfui -----END PGP SIGNATURE----- -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines |
| All times are GMT. The time now is 07:54 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.