yum --installroot should use /etc/yum.repos.d?
up vote
2
down vote
favorite
I have a chroot environment in a directory. I want to install some RPM packages using the repositories in that chroot environment instead of the host OS ones.
yum --installroot= will look for packages repositories only in myroot/etc/yum.repos.d or it will only/also look in /etc/yum/repos.d? RHEL 6 is having the latter behavior. If that is expected behavior, what is the best method to achieve what I need?
Thanks in advance.
yum chroot
add a comment |
up vote
2
down vote
favorite
I have a chroot environment in a directory. I want to install some RPM packages using the repositories in that chroot environment instead of the host OS ones.
yum --installroot= will look for packages repositories only in myroot/etc/yum.repos.d or it will only/also look in /etc/yum/repos.d? RHEL 6 is having the latter behavior. If that is expected behavior, what is the best method to achieve what I need?
Thanks in advance.
yum chroot
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I have a chroot environment in a directory. I want to install some RPM packages using the repositories in that chroot environment instead of the host OS ones.
yum --installroot= will look for packages repositories only in myroot/etc/yum.repos.d or it will only/also look in /etc/yum/repos.d? RHEL 6 is having the latter behavior. If that is expected behavior, what is the best method to achieve what I need?
Thanks in advance.
yum chroot
I have a chroot environment in a directory. I want to install some RPM packages using the repositories in that chroot environment instead of the host OS ones.
yum --installroot= will look for packages repositories only in myroot/etc/yum.repos.d or it will only/also look in /etc/yum/repos.d? RHEL 6 is having the latter behavior. If that is expected behavior, what is the best method to achieve what I need?
Thanks in advance.
yum chroot
yum chroot
asked Apr 2 '13 at 21:23
Alan Evangelista
1114
1114
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
I you start yum
from within the chroot, it will only look in myroot/etc/yum.repos.d
. If you start it from the normal system, it will always look in /etc/yum.repos.d
.
So just start yum
from within chroot. Of course you will first have to install yum
and everything needed for it in the chroot.
add a comment |
up vote
0
down vote
For all yum dists you can define your own configuration by:
yum -c myyum.conf --installroot=....
and create the myyum.conf
file e.g.
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=1
logfile=/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
distroverpkg=centos-release
reposdir=./my_yum.repos.d/
metadata_expire=90m
http_caching=all
color=off
which will in this case look for the repos in ./my_yum.repos.d/
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
I you start yum
from within the chroot, it will only look in myroot/etc/yum.repos.d
. If you start it from the normal system, it will always look in /etc/yum.repos.d
.
So just start yum
from within chroot. Of course you will first have to install yum
and everything needed for it in the chroot.
add a comment |
up vote
1
down vote
I you start yum
from within the chroot, it will only look in myroot/etc/yum.repos.d
. If you start it from the normal system, it will always look in /etc/yum.repos.d
.
So just start yum
from within chroot. Of course you will first have to install yum
and everything needed for it in the chroot.
add a comment |
up vote
1
down vote
up vote
1
down vote
I you start yum
from within the chroot, it will only look in myroot/etc/yum.repos.d
. If you start it from the normal system, it will always look in /etc/yum.repos.d
.
So just start yum
from within chroot. Of course you will first have to install yum
and everything needed for it in the chroot.
I you start yum
from within the chroot, it will only look in myroot/etc/yum.repos.d
. If you start it from the normal system, it will always look in /etc/yum.repos.d
.
So just start yum
from within chroot. Of course you will first have to install yum
and everything needed for it in the chroot.
answered Apr 7 '13 at 14:42
etagenklo
33116
33116
add a comment |
add a comment |
up vote
0
down vote
For all yum dists you can define your own configuration by:
yum -c myyum.conf --installroot=....
and create the myyum.conf
file e.g.
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=1
logfile=/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
distroverpkg=centos-release
reposdir=./my_yum.repos.d/
metadata_expire=90m
http_caching=all
color=off
which will in this case look for the repos in ./my_yum.repos.d/
add a comment |
up vote
0
down vote
For all yum dists you can define your own configuration by:
yum -c myyum.conf --installroot=....
and create the myyum.conf
file e.g.
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=1
logfile=/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
distroverpkg=centos-release
reposdir=./my_yum.repos.d/
metadata_expire=90m
http_caching=all
color=off
which will in this case look for the repos in ./my_yum.repos.d/
add a comment |
up vote
0
down vote
up vote
0
down vote
For all yum dists you can define your own configuration by:
yum -c myyum.conf --installroot=....
and create the myyum.conf
file e.g.
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=1
logfile=/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
distroverpkg=centos-release
reposdir=./my_yum.repos.d/
metadata_expire=90m
http_caching=all
color=off
which will in this case look for the repos in ./my_yum.repos.d/
For all yum dists you can define your own configuration by:
yum -c myyum.conf --installroot=....
and create the myyum.conf
file e.g.
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1
debuglevel=1
logfile=/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=5
distroverpkg=centos-release
reposdir=./my_yum.repos.d/
metadata_expire=90m
http_caching=all
color=off
which will in this case look for the repos in ./my_yum.repos.d/
answered Nov 20 at 7:53
Danny Goossen
1211
1211
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f577057%2fyum-installroot-should-use-etc-yum-repos-d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown