Sponsored Content
Operating Systems Linux Ubuntu How to configure YUM in RHEL 4.0 Post 302257712 by daya.pandit on Wednesday 12th of November 2008 11:30:12 PM
Old 11-13-2008
actually i mean source file of YUM !!
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do I verify the integrity of a package? And how do I configure yum to add a site

How do I verify the integrity of a package? And how do I configure yum to add a site (3 Replies)
Discussion started by: 3junior
3 Replies

2. Red Hat

Who can give me a document for configure nagios on RHEL 5

Who can give me a document for configure nagios on RHEL 5,thanks . (1 Reply)
Discussion started by: zhengsenlin
1 Replies

3. UNIX for Dummies Questions & Answers

Centos commands: Yum Upgrade versus Yum update

Hi, I would like to know the difference between YUM UPDATE and YUM UPGRADE. The man pages say upgrade is same as update with the obsolete option. And by default it says the obsolete option is turned on, which would make them equivalent. Does not say what obsolete does. Can someone please... (3 Replies)
Discussion started by: mojoman
3 Replies

4. Red Hat

Configure yum repository

how to configure yum server to get rpms from any repository or redhat repo. (4 Replies)
Discussion started by: leganti
4 Replies

5. Red Hat

How to configure vnc on RHEL 6.1?

i am first time using RHEL 6.1 i have to configure vnc on this server to access desktop remotely for this server. i installed these rpm : rpm -ivh VNC-Server-5.0.3-Linux-x64.rpm rpm -ivh VNC-Viewer-5.0.3-Linux-x64.rpm there is no directory /etc/sysconfig/vncserver in RHEL 6 as it was... (6 Replies)
Discussion started by: rehantayyab82
6 Replies

6. Red Hat

Concept of yum in RHEL

I have a confusion that even though yum is not configured on my RHEL server but yum list is showing. Yum install <package_name> fails. I hope, my question is clear of how yum list is working even though yum is not configured on the server. Please revert with the reply to my query. Regards (8 Replies)
Discussion started by: RHCE
8 Replies

7. Red Hat

Error throwing while installing vsftpd package in rhel 6. using rhel 6 dvd.

Hi all, Im studying rhcsa as of now, so yum installation and dependencies are messing me to not workit out. i have dual os, win 7 & rhel 6. i have tried this installation of vsftpd package with rhel 6 dvd in VM rhel 6 in win 7 as well as host rhel 6.still the same issue. below error... (6 Replies)
Discussion started by: redhatlbug
6 Replies

8. Red Hat

How to configure DNS configuration for RHEL 5?

I wanted to know how to configure DNS configuration for RHEL 5. I hope, my query is clear of how to setup DNS for RHEL 5. Please revert with the reply to my query Regards (6 Replies)
Discussion started by: RHCE
6 Replies

9. Linux

Local YUM Repository for RHEL versions

Hello, I need to know regarding setting up of Local repositories so that I can update or install packages on other RHEL servers. In our environment we have many servers with different RHEL versions. Like RHEL 7.2, RHEL 7.3, RHEL 7.4, RHEL 7.5 Arch = x86_64 I have setup one Repo server;... (0 Replies)
Discussion started by: SunshineMLinux
0 Replies

10. UNIX for Beginners Questions & Answers

Installation of virt-manager while yum update and yum install rhvm does not work

I have downloaded RHEV-H 4.2 Red Hat Virtualization - Red Hat Customer Portal (RHVirtualization 4.2 Host and Manager iso). I uploaded the image and installed on an HP G9 server baremetal. I found I dont have a WAN/net connectivity later on HPG9 server. How can I still install virt-manager on... (1 Reply)
Discussion started by: Paras Pandey
1 Replies
yum-groups-manager(1)													     yum-groups-manager(1)

NAME
yum-groups-manager - create and edit yum's group metadata SYNOPSIS
yum-groups-manager [options] [packages] DESCRIPTION
yum-groups-manager is used to create or edit a group metadata file for a yum repository. This is often much easier than writing/editing the XML by hand. The yum-groups-manager can load an entire file of groups metadata and either create a new group or edit an existing group and then write all of the groups metadata back out. OPTIONS
-h, --help Display a help message, and then quit. --version Display a version message, and then quit. -n, --name The name to lookup/use for the group. If you specify an existing group id, then the group with that id will have it's name changed to this value. --id The id to lookup/use for the group. If you don't specify an id, but do specify a name that doesn't refer to an existing group, then an id for the group is generated based on the name. --description The description to use for the group. --mandatory Store the package names specified within the mandatory section of the specified group, the default is to use the default section. This overrides the optional argument. --optional Store the package names specified within the optional section of the specified group, the default is to use the default section. This option is overridden by the mandatory argument. --dependencies Also include the names of the direct dependencies for each package specified. --not-user-visible Make the group not visible in yum grouplist. --user-visible Make the group visible in yum grouplist (this is the default). --display-order Change the integer which controls the order groups are presented in, for example in yum grouplist. --load Load the groups metadata information from the specified file, before performing any operations. This option can be specified multi- ple times. --save Save the result to this file, you can specify the name of a file you are loading from as the data will only be saved when all the operations have been performed. This option can also be specified multiple times. --merge This is the same as loading and saving a file, however the "merge" file is loaded before any others and saved last. --print Also print the result to stdout, if saving or merging. --remove Instead of adding package, remove them. Note that the packages are removed from all sections (default, mandatory and optional). --translated-name This is another name for the group within the locale given. The syntax is lang:text. Eg. en:my-group-name-in-english --translated-description This is another description for the group within the locale given. The syntax is lang:text. Eg. en:my-group-description-in-english. YUM OPTIONS
The following options are meant to be the same as those with the same name in yum. -c CONFIG, --config=CONFIG --quiet --verbose --enablerepo --disablerepo --noplugins -C, --cache --tempcache EXAMPLES
Create a new group metadata file, with a group called yum containing all the packages that start with yum: yum-groups-manager --name YUM --save groups.xml 'yum*' After the above command, load the groups.xml data, work with the yum group, make the group not user visible, and remove the yum-skip-broken and yum-priorities packages from it: yum-groups-manager -n YUM --merge groups.xml --remove yum-skip-broken yum-priorities --not-user-visible After the above commands, add a description and a translated name to the yum group: yum-groups-manager -n YUM --merge groups.xml --description 'This is a group with most of the yum packages in it' --translated-name 'en:yum packages' FILES
yum-groups-manager uses the yum libraries for retrieving information and packages. If no configuration file is specified, the default yum configuration will be used. /etc/yum.conf /etc/yum/repos.d/ SEE ALSO
yum (8) yum.conf (5) http://yum.baseurl.org/ AUTHORS
See the Authors file included with this program. BUGS
There are a couple of options you can't set, yet. Most notably you cannot put package names into the conditional section (where they are installed with groupinstall only if another package is installed). Other than that, there are no bugs, but should you find any, you should first consult the FAQ section on http://yum.baseurl.org/wiki/Faq and if unsuccessful in finding a resolution contact the mailing list: yum-devel@lists.baseurl.org. To file a bug use http://bugzilla.redhat.com for Fedora/RHEL/Centos related bugs and http://yum.baseurl.org/report for all other bugs. 23 August 2008 yum-groups-manager(1)
All times are GMT -4. The time now is 04:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy