本機特定端口轉發至跳板機

1
ssh -p [跳板機端口] -C -f -N -g -L [本地端口]:[遠端服務IP]:[遠端服務端口] [帳號]@[跳板機IP]
Read more »

查詢服務資訊

使用 journalctl 查詢服務 Log

1
2
journalctl -r --identifier=[服務的identifier] --since "2 minute ago"
journalctl -r -u [服務名稱] --since "2 day ago"

取得系統產生的傾印檔案

安裝 apport

1
sudo apt install apport

進入目錄 /var/crash 搜尋核心傾印檔案,之後使用 apport 解壓縮

1
apport-unpack [核心傾印檔案].crash [解壓縮目錄]
Read more »

建立 JSON 檔案

建立檔案 Request.json 內容如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"info": {
"address": [
{
"town": "Belgrade"
},
{
"town": "Paris"
},
{
"town": "Madrid"
}
]
}
}
Read more »

⚠️請注意,因 Win10 家用版本身不支援安裝下方功能,開啟後可能發生未知錯誤,僅供學習使用

Read more »
0%