0

Linux noob here. I want to download a program. Lets say this time its an ssh server.

How do I know what to type in sudo apt-get ???? install?

I tried ssh and sshserver just off the top of my head, but they didn't work.

Is there a search function or something?

Gilles Quénot
  • 173,512
  • 41
  • 224
  • 223
Magicaxis
  • 371
  • 7
  • 16

2 Answers2

4

apt-cache search is what you might find useful. apt-cache search ssh server should show you the relevant packages.

vpit3833
  • 7,817
  • 2
  • 25
  • 25
1

With bash-completion package installed, you can try doing :

sudo apt-get install opensstab

you will find :

openssh-blacklist openssh-blacklist-extra openssh-client openssh server openssl openssl-blacklist openssl-blacklist-extra

Gilles Quénot
  • 173,512
  • 41
  • 224
  • 223