On Tue, Apr 17, 2007 at 11:04:57AM -0500, Brian Barnes wrote:
I am having trouble using wildcards ("*") with yum in Centos 5. Listing
You're probably having problems with shell expansions.
[root@granta ~]# yum list kern* yum: No match.
This is the shell saying that; it's trying to expand kern* and failing. Whenever you use * or ? on command lines you should quote them. So yum list 'kern*' OR yum list kern* to stop the shell from changing your input.