Yum requires NET

Status
Not open for further replies.

praka123

left this forum longback
aptsh is not installed in debian.though u can.my bash_completion works without any such packages installed.
the completion feature is not limited to apt-* searches.it works!
if u have bash completion installed just source ur /etc/bash_completion and check for urself whether it completes yum/rpm commands.
Code:
~$source  /etc/bash_completion
then check like yum -y php (TAB TAB) in the same terminal.
 

mediator

Technomancer
Hmmm......I have fedora 5 installed without any updates. I think thats y it may not be happening. Neways ubuntu is up-to-date. I'll try it out on Ubuntu when ever I'll have the time and access to it.
 

praka123

left this forum longback
in ubuntu/debian its easy.
just uncomment these lines in ur $HOME/.bashrc.
Code:
 if [ -f /etc/bash_completion ]; then
    . /etc/bash_completion
fi
it will work.
 
Status
Not open for further replies.
Top Bottom