3

I need to download YUM packages (namely java-1.7.0-openjdk, gstreamer-plugins-good, gstreamer-plugins-bad and gstreamer-plugins-ugly) for an offline Fedora 20 machine, and I'm working on a Debian 7.

I cannot find directly the package online, only on repositories, repositories i cannot reach.

Any insight?

terdon
  • 54,564
Alfa Taurus
  • 173
  • 1
  • 5

1 Answers1

0

For the record: This can be done using:

apt-get install yum-utils

make sure that /etc/yum.repos.d/ contains .repo files (take it from target rpm machine)

yumdownloader --resolve --destdir DIR  java-1.7.0-openjdk
msuchy
  • 683