//檢視磁碟記憶體使用情況
df -h
//重啟網路服務
systemctl restart network.service
//進入網路配置介面
nmtui
//防火牆相關
//關閉防火牆命令
systemctl stop firewalld.service
//開啟防火牆
systemctl start firewalld.service
//關閉防火牆開機自啟動
systemctl disable firewalld.service
//開啟防火牆開機自啟動
systemctl enable firewalld.service
//日期相關
//查詢當前日期date
,後面跟上[-s]+時間可直接修改日期,例如:date -s "2021-06-27 09:00:00"
需要同步網路日期的話:
//安裝ntp服務:yum install -y ntpdate
//同步ntp伺服器(上海)的時間ntpdate -u ntp.api.bz
零散知識收集
success在介面com.opensymphony.xwork2.action中定義,另外同時定義的還有error,input,login,none。值得一提的是struts 2.0中的result不僅僅是struts 1.x中forward的別名,它可以實現除forward外的很激動人心的功能,...
C 零散知識
全域性變數的初始化時機 c 是在編譯期初始化,c 是在程式執行時,main 函式之前初始化.不使用中間變數實現 strlen int mystrlen const char str c 語言函式引數入棧順序為從右至左。具體原因為 c 方式引數入棧順序 從右至左 的好處就是可以動態變化引數個數。通過棧...
Python 零散知識
1.set 集合 2.格式化字串時 可以使用 元組 eg info zhangsan 18 print s 年齡是 d info 3.zip的 使用方法 a 1,2,3 b 4,5,6 c 4,5,6,7,8 zipped zip a,b 打包為元組的列表 1,4 2,5 3,6 zip a,c 元...