linux命令詳解 finger

2021-08-08 06:28:10 字數 2097 閱讀 7838

finger命令用來查詢並顯示使用者資訊,系統管理員通過使用該命令可以知道某個時候到底有多少使用者在使用這台linux主機。

usage: finger [-lmsp] [user ...] [user@host ...]

命令中各選項的含義如下:

-l 列出該使用者的帳號名稱,真實姓名,使用者專屬目錄,登入所用的 shell,登入時間,轉信位址,電子郵件狀態,還有計畫檔案和方案檔案內容。

-m 排除查詢使用者的真實姓名。

-s 列出該使用者的帳號名稱,真實姓名,登入終端機,閒置時間,登入時間以及位址和**。

-p 列出該使用者的帳號名稱,真實姓名,使用者專屬目錄,登入所用的 shell,登入時間,轉信位址,電子郵件狀態,但不顯示該使用者的計畫檔案和方案檔案內容。

finger -s

[html]view plain

copy

print?

login name tty idle login time office office phone  

ubuntu ubuntu tty1 2d aug 5 09:38  

ubuntu ubuntu pts/0 aug 13 21:59 (***.***.***.***)  

finger -l

[html]view plain

copy

print?

login: ubuntu name: ubuntu  

directory: /home/ubuntu shell: /bin/bash  

on since fri aug 5 09:38 (cst) on tty1 2 days 11 hours idle  

on since sat aug 13 21:59 (cst) on pts/0 from ***.***.***.***  

2 seconds idle  

no mail.  

no plan.  

ps:順帶認識一下chfn命令

chfn,即change finger information,是用來改變 finger 指令顯示的資訊。

chfn 指令可用來更改執行 finger 指令時所顯示的資訊,這些資訊都存放在/etc 目錄裡的 asswd 檔案裡。若不指定任何引數,則 chfn 指令會進入問答式介面。

usage: chfn [options] [login]

[html]view plain

copy

print?

options:  

-f, --full-name full_name change user's full name  

-h, --home-phone home_phone change user's home phone number  

-o, --other other_info change user's other gecos information  

-r, --room room_number change user's room number  

-r, --root chroot_dir directory to chroot into  

-u, --help display this help message and exit  

-w, --work-phone work_phone change user's office phone number  

引數:

sudo chfn -h 1234567890

sudo chfn -f l

finger root

[html]view plain

copy

print?

login: root name: l  

directory: /root shell: /bin/bash  

home phone: 123-456-7890  

last login thu jan 1 08:00 1970 (cst) on  

no mail.  

no plan.  

finger和chfn命令使用說明

1 命令概述 finger命令用於查詢並顯示使用者資訊。包括本地與遠端主機的使用者皆可,帳號名稱沒有大小寫的差別。單獨執行finger指令,它會顯示本地主機現在所有的使用者的登陸資訊,包括帳號名稱,真實姓名,登入終端機,閒置時間,登入時間以及位址和 chfn命令用來改變finger命令顯示的資訊。這...

DOS下常用網路命令解釋大全Finger Ftp

finger在執行 finger 服務的指定系統上顯示有關使用者的資訊。根據遠端系統輸出不同的變數。該命令只有在安裝了 tcp ip 協議之後才可用。finger l user computer 引數 l 以長列 式顯示資訊。user computer ftp 將檔案傳送到正在執行 ftp 服務的遠...

Linux 命令詳解

1 檢視程序號 2 刪除目錄 直接rm就可以了,不過要加兩個引數 rf 即 rm rf 目錄名字 r 就是向下遞迴,不管有多少級目錄,一併刪除 f 就是直接強行刪除,不作任何提示的意思 3 scp命令詳解 linux 的 scp 命令 可以 在 linux 之間複製 檔案 和 目錄 scp 命令 s...