Onde está o sshd no OpenSuse 13.2?

2

Depois de instalar o OpenSuse 13.2, descobri que, mesmo que a conexão ssh tenha sido bem-sucedida, não consegui encontrar o serviço em execução como antes (com o comando chkconfig )

Por quê?

Minha última versão familiar do Suse foi 11.4

    
por Alex 26.01.2015 / 10:38

2 respostas

3

O sistema init antigo foi substituído pelo SystemD, com systemctl como a interface principal desse sistema.

    
por 26.01.2015 / 10:56
2

tente

 systemctl list-units sshd.service

(serviço real encontrado usando systemctl list-units | grep ssh , sem necessidade de raiz pelo caminho)

Archemar@tatouin:~/> systemctl list-units sshd.service
UNIT         LOAD   ACTIVE SUB     DESCRIPTION
sshd.service loaded active running OpenSSH Daemon

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

1 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
    
por 29.01.2015 / 11:08