Linux常用命令(自己記不住常忘記的)

2021-10-08 13:10:43 字數 679 閱讀 1972

資料庫的啟動 lsnrctl start啟動網路監聽服務,執行dbstart啟動資料庫系統。

資料庫的關閉 lsnrctl stop關閉網路監聽服務,執行dbshut關閉資料庫系統。

啟動

systemctl start firewalld
重啟

systemctl restart firewalld
關閉

systemctl stop firewalld
設定開機時啟用防火牆服務。

systemctl enable firewalld
設定開機時禁用防火牆服務。

systemctl disable firewalld
開放埠

firewall-cmd --zone=

public

--add-port=

1521

/tcp --permanent

關閉埠

firewall-cmd --zone=

public

--remove-port=

1521

/tcp --permanent

自己git常用命令,老是記不住單詞,淦

1 git push 推 git push origin 分支名 2 git pull 拉 git pull origin 分支名 3 合併分支在自己分支上寫完,推到測試的時候先推到自己分支上然後 git checkout test git merge 合併想要合併的分支名 git push ori...

Linux近期常用記不住命令

adb adb shell pm list packages f d e s 3 i u user user id filter adb shell input tap 150 140 adb shell input tap 300 200 adb shell input tap 150 100 a...

linux 自己常用命令總結

零碎的記錄下自己使用linux下常用的一些命令和簡單的說明,希望能幫助一些人!1.ss 用於顯示socket狀態.他可以顯示packet sockets,tcp sockets,udp sockets,dccp sockets,raw sockets,unix domain sockets等等統計。...