From salgak at comcast.net Thu Sep 6 11:52:20 2018 From: salgak at comcast.net (Keith Glass) Date: Thu, 6 Sep 2018 07:52:20 -0400 (EDT) Subject: [Yum] YUM client for Windows Message-ID: <1995367602.477141.1536234740900@connect.xfinity.com> I know, I know, YUM is for Linux. But my current Lab environment in AWS is prevented from connecting outside our VPC (corporate decision), so I'm looking for a method to pull down the RPMs on my corporate Windows client, and move them over to our CentOS boxes in AWS. Any suggestions ??? ______________________________________________________________________________________ It is by Caffeine alone, that I set my Mind in Motion. It is by the Beans of Java that thought acquires speed, the hands develop shakes, the shakes become a warning. It is by Caffeine alone that I set my Mind in Motion. ______________________________________________________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From tibbs at math.uh.edu Thu Sep 6 12:02:55 2018 From: tibbs at math.uh.edu (Jason L Tibbitts III) Date: Thu, 06 Sep 2018 07:02:55 -0500 Subject: [Yum] YUM client for Windows In-Reply-To: <1995367602.477141.1536234740900@connect.xfinity.com> (Keith Glass's message of "Thu, 6 Sep 2018 07:52:20 -0400 (EDT)") References: <1995367602.477141.1536234740900@connect.xfinity.com> Message-ID: >>>>> "KG" == Keith Glass writes: KG> [...] I'm looking for a method to pull down the RPMs on my KG> corporate Windows client, and move them over to our CentOS boxes KG> in AWS. Any suggestions ??? Yum only needs the content to be available on a web server; it doesn't care what OS runs it. Make a local mirror of the repositories you want (preferably using rsync from a nearby public mirror) and modify the repository files in /etc/yum.repos.d on your clients to talk to your new local mirror. You can limit rsync to only the content that is truly needed with liberal use of "--exclude" options. If carrying a full mirror is too problematic, you could also just run a proxy. I've no idea how to do that on Windows, though, and it would probably fall afoul of your corporate policy. - J<