Why when I try to install the ssh on ubuntu does it show me an error? [closed]

0

I try to install the ssh in ubuntu I do: sudo apt-get install ssh , then ask me Do you want to continue [Y/n]? . Digit And then it shows me the following error:

  

dpkg: warning: there's no installed package matching   ttf-mscorefonts-installer: i386

It was not installed because when I try to start it with sudo /etc/init.d/ssh start it shows me the following:

  

Rather than invoking init scripts through /etc/init.d, use the   service (8) utility, e.g. service ssh start

     

Since the script you are attempting to invoke has been converted to an   Upstart job, you may also use the start (8) utility, e.g. start ssh

    
asked by lucho 26.08.2017 в 22:22
source

1 answer

2

I found something that might help.

sudo apt-get update
sudo apt-get -f install

And if this does not solve it, then:

sudo dpkg -r ttf-mscorefonts-installer
    
answered by 30.08.2017 / 20:40
source