- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to install all the packages available at one r...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2010 07:48 AM
тАО03-30-2010 07:48 AM
How to install all the packages available at one repo in RHEL 5
How to install all the packages available at particular one repo "rhel-x86_64-server-5" in RHEL 5.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2010 09:15 AM
тАО03-30-2010 09:15 AM
Re: How to install all the packages available at one repo in RHEL 5
what is wrong with "yum install or yum update" ? see man yum for install vs update
now, I would bet there may be some packages in the repo that either do not apply to your system or are for rpms that you do not have installed. so I guess you would have to define "all"
another option (probably not the best) would be to download them all locally, then rpm -ivh *.rpm ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-30-2010 10:06 AM
тАО03-30-2010 10:06 AM
Re: How to install all the packages available at one repo in RHEL 5
Machine needs to be registered to RHN and have an Internet connection.
OR:
You need to have a repository built on your local network.
yum list
#lists all possible packages that can be installed.
yum install
#Name as displayed on yum list
The above sequence will install a package and necessary dependencies.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2010 03:50 AM
тАО03-31-2010 03:50 AM
Re: How to install all the packages available at one repo in RHEL 5
I have registered my server with RHN.
I am able to list all the packages available in RHN repos.
In RHEL4 we can use below mentioned command to install all the packages available in one channel.
Ex:
#up2date --installall=├в rhel-i386-es-4├в
Like above , what is the command syntax is used with yum on RHEL 5?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-31-2010 03:55 AM
тАО03-31-2010 03:55 AM
Re: How to install all the packages available at one repo in RHEL 5
Define a group that includes all the packages in the repository, then use:
yum groupinstall
More details:
http://ramblings.narrabilis.com/wp/creating-a-yum-repository-repo-and-creating-a-yum-group-to-install-kickstart/
MK