I forgot a command with SSH which could search software name.

For explain: If I want install mysql-server, but I want choose a version before yum install. This command can make a search (return all the software contains mysql), then a list return like:

mysql-5.0.77-4.tar.gz 
mysql-server-5.0.77-4.el5_6.6.i386.rpm
...
link|improve this question

3  
This has nothing to do with SSH. – larsmans Jan 24 at 15:04
2  
Or programming. Did you try yum search? – Johnsyweb Jan 24 at 15:05
@larsmans , I remember I have used before, but now I forgot it. – cj333 Jan 24 at 15:05
1  
@Johnsyweb, right, that is that, thanks. foolish me. – cj333 Jan 24 at 15:06
feedback

closed as off topic by larsmans, glglgl, kan, casperOne Jan 24 at 19:19

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

3 Answers

up vote 0 down vote accepted

As has been pointed out, this is not related to SSH, but a function of your package manager, yum.

You can use yum search or yum list.

list List a package or groups of packages

search Search package details for the given string

(From the yum help).

link|improve this answer
feedback

You are not searching with "ssh". You are searching with yum. http://www.centos.org/docs/5/html/yum/sn-searching-packages.html

link|improve this answer
feedback

I think your question is wrong:

SSH is a network-protocol, which provides a shell to a remote system.

I think you are looking for something like:

man -q mysql

rpm-howto

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.