Package bash-completion missing from Yum in CentOS 6
Clash Royale CLAN TAG#URR8PPP
up vote
16
down vote
favorite
I am trying to get tab-completion working in Yum in CentOS 6 (so I can do something like yum install firefo<TAB>
and get back firefox
), and I have found many tutorials which say to simply do yum install bash-completion
, but when I do this, I get this back:
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirror.anl.gov
* extras: yum.singlehop.com
* updates: mirror.ubiquityservers.com
Setting up Install Process
No package bash-completion available.
Error: Nothing to do
I am new to CentOS/Yum so I am lost- is there some repository I should add?
centos yum
add a comment |Â
up vote
16
down vote
favorite
I am trying to get tab-completion working in Yum in CentOS 6 (so I can do something like yum install firefo<TAB>
and get back firefox
), and I have found many tutorials which say to simply do yum install bash-completion
, but when I do this, I get this back:
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirror.anl.gov
* extras: yum.singlehop.com
* updates: mirror.ubiquityservers.com
Setting up Install Process
No package bash-completion available.
Error: Nothing to do
I am new to CentOS/Yum so I am lost- is there some repository I should add?
centos yum
add a comment |Â
up vote
16
down vote
favorite
up vote
16
down vote
favorite
I am trying to get tab-completion working in Yum in CentOS 6 (so I can do something like yum install firefo<TAB>
and get back firefox
), and I have found many tutorials which say to simply do yum install bash-completion
, but when I do this, I get this back:
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirror.anl.gov
* extras: yum.singlehop.com
* updates: mirror.ubiquityservers.com
Setting up Install Process
No package bash-completion available.
Error: Nothing to do
I am new to CentOS/Yum so I am lost- is there some repository I should add?
centos yum
I am trying to get tab-completion working in Yum in CentOS 6 (so I can do something like yum install firefo<TAB>
and get back firefox
), and I have found many tutorials which say to simply do yum install bash-completion
, but when I do this, I get this back:
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* base: mirror.anl.gov
* extras: yum.singlehop.com
* updates: mirror.ubiquityservers.com
Setting up Install Process
No package bash-completion available.
Error: Nothing to do
I am new to CentOS/Yum so I am lost- is there some repository I should add?
centos yum
centos yum
asked Sep 20 '11 at 21:23
sans
183115
183115
add a comment |Â
add a comment |Â
4 Answers
4
active
oldest
votes
up vote
14
down vote
accepted
CentOS needs to have EPEL Yum repository enabled in order to install bash-completion package.
See https://fedoraproject.org/wiki/EPEL for details.
add a comment |Â
up vote
7
down vote
There is only one command you have to get bash-completion:
yum install epel-release.noarch bash-completion.noarch
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
add a comment |Â
up vote
4
down vote
Download the
bash-completion
RPMwget http://www.caliban.org/files/redhat/RPMS/noarch/bash-completion-20060301-1.noarch.rpm
Install the RPM
rpm -ivh bash-completion-20060301-1.noarch.rpm
Execute the command
. /etc/bash_completion
Now you can try the autocompletion
yum ins â [TAB][TAB]
Edit: for Centos 6, you can grab this RPM
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
add a comment |Â
up vote
0
down vote
If you don't have EPEL installed then first run:
yum install epel-release
Then run the following command:
yum install bash-completion --enablerepo=epel
After installation you have to logout/login in order for it to start working. To start using it in the current session, source it with the .
command:
. /etc/bash_completion
add a comment |Â
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
14
down vote
accepted
CentOS needs to have EPEL Yum repository enabled in order to install bash-completion package.
See https://fedoraproject.org/wiki/EPEL for details.
add a comment |Â
up vote
14
down vote
accepted
CentOS needs to have EPEL Yum repository enabled in order to install bash-completion package.
See https://fedoraproject.org/wiki/EPEL for details.
add a comment |Â
up vote
14
down vote
accepted
up vote
14
down vote
accepted
CentOS needs to have EPEL Yum repository enabled in order to install bash-completion package.
See https://fedoraproject.org/wiki/EPEL for details.
CentOS needs to have EPEL Yum repository enabled in order to install bash-completion package.
See https://fedoraproject.org/wiki/EPEL for details.
edited Sep 26 '13 at 4:47
Communityâ¦
1
1
answered Sep 20 '11 at 21:28
Ignacio Vazquez-Abrams
32.5k66880
32.5k66880
add a comment |Â
add a comment |Â
up vote
7
down vote
There is only one command you have to get bash-completion:
yum install epel-release.noarch bash-completion.noarch
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
add a comment |Â
up vote
7
down vote
There is only one command you have to get bash-completion:
yum install epel-release.noarch bash-completion.noarch
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
add a comment |Â
up vote
7
down vote
up vote
7
down vote
There is only one command you have to get bash-completion:
yum install epel-release.noarch bash-completion.noarch
There is only one command you have to get bash-completion:
yum install epel-release.noarch bash-completion.noarch
answered Sep 9 '15 at 11:33
Dmitry Shost
21121
21121
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
add a comment |Â
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
Concisely perfect!
â 1111161171159459134
Jul 12 '16 at 14:36
add a comment |Â
up vote
4
down vote
Download the
bash-completion
RPMwget http://www.caliban.org/files/redhat/RPMS/noarch/bash-completion-20060301-1.noarch.rpm
Install the RPM
rpm -ivh bash-completion-20060301-1.noarch.rpm
Execute the command
. /etc/bash_completion
Now you can try the autocompletion
yum ins â [TAB][TAB]
Edit: for Centos 6, you can grab this RPM
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
add a comment |Â
up vote
4
down vote
Download the
bash-completion
RPMwget http://www.caliban.org/files/redhat/RPMS/noarch/bash-completion-20060301-1.noarch.rpm
Install the RPM
rpm -ivh bash-completion-20060301-1.noarch.rpm
Execute the command
. /etc/bash_completion
Now you can try the autocompletion
yum ins â [TAB][TAB]
Edit: for Centos 6, you can grab this RPM
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Download the
bash-completion
RPMwget http://www.caliban.org/files/redhat/RPMS/noarch/bash-completion-20060301-1.noarch.rpm
Install the RPM
rpm -ivh bash-completion-20060301-1.noarch.rpm
Execute the command
. /etc/bash_completion
Now you can try the autocompletion
yum ins â [TAB][TAB]
Edit: for Centos 6, you can grab this RPM
Download the
bash-completion
RPMwget http://www.caliban.org/files/redhat/RPMS/noarch/bash-completion-20060301-1.noarch.rpm
Install the RPM
rpm -ivh bash-completion-20060301-1.noarch.rpm
Execute the command
. /etc/bash_completion
Now you can try the autocompletion
yum ins â [TAB][TAB]
Edit: for Centos 6, you can grab this RPM
edited Feb 7 '12 at 22:13
Kevin
26.3k105997
26.3k105997
answered Oct 4 '11 at 15:45
iDon
412
412
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
add a comment |Â
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
Installing unsigned packages from untrusted source is huge security risk.
â gavenkoa
May 31 '17 at 10:59
add a comment |Â
up vote
0
down vote
If you don't have EPEL installed then first run:
yum install epel-release
Then run the following command:
yum install bash-completion --enablerepo=epel
After installation you have to logout/login in order for it to start working. To start using it in the current session, source it with the .
command:
. /etc/bash_completion
add a comment |Â
up vote
0
down vote
If you don't have EPEL installed then first run:
yum install epel-release
Then run the following command:
yum install bash-completion --enablerepo=epel
After installation you have to logout/login in order for it to start working. To start using it in the current session, source it with the .
command:
. /etc/bash_completion
add a comment |Â
up vote
0
down vote
up vote
0
down vote
If you don't have EPEL installed then first run:
yum install epel-release
Then run the following command:
yum install bash-completion --enablerepo=epel
After installation you have to logout/login in order for it to start working. To start using it in the current session, source it with the .
command:
. /etc/bash_completion
If you don't have EPEL installed then first run:
yum install epel-release
Then run the following command:
yum install bash-completion --enablerepo=epel
After installation you have to logout/login in order for it to start working. To start using it in the current session, source it with the .
command:
. /etc/bash_completion
answered 7 mins ago
isapir
21624
21624
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f21135%2fpackage-bash-completion-missing-from-yum-in-centos-6%23new-answer', 'question_page');
);
Post as a guest
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
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
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