linux伺服器 一 之時間與幫助詳解

2021-07-07 05:48:12 字數 3146 閱讀 3641

一、linux的時間管理:

[jingfu@localhost /]$ date

mon nov 16 00:34:49 pst 2015  

顯示當前的系統時間。linux為實時時鐘(rtc),使用網路時間協議(ntp),分為硬體時鐘(開機讀取)和系統時鐘(軟體模擬)

[root@localhost /]# clock

mon 16 nov 2015 08:40:40 am pst  -0.921939 seconds

[root@localhost /]# hwclock

mon 16 nov 2015 08:43:52 am pst  -0.954398 seconds

(一)、help

[root@localhost /]# help cd

cd: cd [-l|-p] [dir]

change the shell working directory.

change the current directory to dir.  the default dir is the value of the

home shell variable.

[root@localhost /]# ls --help

usage: ls [option]... [file]...

list information about the files (the current directory by default).

sort entries alphabetically if none of -cftuvsux nor --sort.

(二)、命令手冊:manual

[root@localhost /]# man ls

formatting page, please wait...

man命令的詳細解讀:

man 分章節:

1~8常見章節

1:使用者命令(所有使用者都可以使用的)

(/bin,/usr/bin,/usr/local/bin)

2:系統呼叫

3:庫呼叫

4:特殊檔案(裝置檔案)

5:檔案格式(配置檔案的語法):

6:遊戲

7:雜項 

miscellaneous

8:管理命令

(/sbin,/usr/sbin,/usr/local/sbin)

man 

name:簡要名稱

synopsis:用法說明,包括可用的選項

description:命令功能詳盡說明,可能包括每乙個選項的意義

options:說明每乙個選項的意義

files:此命令相關的配置檔案

bugs:

example:使用示例

see also:另外參照

檢視檔案的一些操作

翻屏:向後翻一屏:space

向前翻一屏:b

向後翻一行:enter

向前翻一行:k

查詢:/keyword:向後

?keyword:向前

n(小)

:下乙個

n(大)

:前乙個

q(小):退出

格式化時間輸出:

linux下socket程式設計之時間伺服器

為網路上的使用者提供時間服務,即為網路使用者返回伺服器的當前時間 記錄發出請求的網路使用者的ip位址 儲存到檔案中 編寫時間服務客戶端timeclient,該客戶端能夠向伺服器傳送時間服務請求,並把獲得的時間返回給使用者。開發環境 fedora13,vim,gcc timeserver.c檔案。in...

linux設定時間伺服器

對多個linux伺服器,時間保持一致是很必要的。根據精確度要求,應該有相應的時間間隔進行時間同步。如果不進行時間同步,時間久了就會差別很大,遇到問題時定位就很困難。因為多台裝置的配合,log之間可能有前因後果,時間是同步事件的先後的重要依據。一般來說,對乙個機房內的裝置,可以設定一台時間伺服器,由它...

Linux伺服器時間同步

linux伺服器執行久時,系統時間就會存在一定的誤差,一般情況下可以使用date命令進行時間設定,但在做資料庫集群分片等操作時對多台機器的時間差是有要求的,此時就需要使用ntpdate進行時間同步。date命令 date 檢視當前時間,結果如下 tue mar 4 01 36 45 cst 2014...