podemos verificar as informações de login remoto usando o comando finger

0

Na página man do dedo, ele está sendo exibido

Finger may be used to look up users on a remote machine. The format is to specify a user as “user@host”, or “@host”

então eu tentei

[max@localhost ~]$ finger [email protected]

Então está mostrando esse erro

finger: cannot create socket / connect host

qual é o motivo?

Eu preciso de saída usando somente o comando finger

Estou usando Centos 6

atualização

[root@localhost ~]# yum install finger-server
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
 * base: mirrors.hns.net.in
 * epel: ftp.cuhk.edu.hk
 * extras: mirrors.hns.net.in
 * updates: mirrors.hns.net.in
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package finger-server.i686 0:0.17-39.el6 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package                Arch          Version               Repository     Size
================================================================================
Installing:
 finger-server          i686          0.17-39.el6           base           15 k

Transaction Summary
================================================================================
Install       1 Package(s)

Total download size: 15 k
Installed size: 11 k
Is this ok [y/N]: y
Downloading Packages:
finger-server-0.17-39.el6.i686.rpm                       |  15 kB     00:00     
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : finger-server-0.17-39.el6.i686                               1/1 
  Verifying  : finger-server-0.17-39.el6.i686                               1/1 

Installed:
  finger-server.i686 0:0.17-39.el6                                              

Complete!

Não há um daemon chamado fingerd

[root@localhost ~]# chkconfig --list | grep -i fingerd

apenas finger atende sua exibição e está ativada

[root@localhost ~]# chkconfig --list | grep -i finger
    finger:         on

mas ainda o mesmo problema ...

    
por max 07.11.2012 / 08:31

1 resposta

2

Isso só funcionará se o host remoto estiver executando um daemon finger que responderá à consulta, mas já faz muitos anos desde que era comum que os hosts executassem um deles.

    
por 07.11.2012 / 09:39