使用 SSH 建立通道 Posted on 2023-05-07 Edited on 2025-05-20 In Linux Word count in article: 324 Reading time ≈ 1 mins. 本機特定端口轉發至跳板機 1ssh -p [跳板機端口] -C -f -N -g -L [本地端口]:[遠端服務IP]:[遠端服務端口] [帳號]@[跳板機IP] Read more »
使用 lldb 分析 Dotnet 核心傾印檔案 Posted on 2023-05-07 Edited on 2025-05-20 In .Net Word count in article: 713 Reading time ≈ 3 mins. 查詢服務資訊 使用 journalctl 查詢服務 Log 12journalctl -r --identifier=[服務的identifier] --since "2 minute ago"journalctl -r -u [服務名稱] --since "2 day ago" 取得系統產生的傾印檔案 安裝 apport 1sudo apt install apport 進入目錄 /var/crash 搜尋核心傾印檔案,之後使用 apport 解壓縮 1apport-unpack [核心傾印檔案].crash [解壓縮目錄] Read more »
.Net 如何解析 JSON 資料 Posted on 2023-05-07 Edited on 2025-05-20 In .Net Word count in article: 172 Reading time ≈ 1 mins. 建立 JSON 檔案 建立檔案 Request.json 內容如下 123456789101112131415{ "info": { "address": [ { "town": "Belgrade" }, { "town": "Paris" }, { "town": "Madrid" } ] }} Read more »
Win10 家用版安裝 Docker Posted on 2023-05-05 Edited on 2025-05-20 In Docker Word count in article: 459 Reading time ≈ 2 mins. ⚠️ 請注意,因 Win10 家用版本身不支援安裝下方功能,開啟後可能發生未知錯誤,僅供學習使用,產生之行為與後果由使用者自行負責 Read more »
WSL2 移動至其它硬碟 Posted on 2023-05-05 Edited on 2025-05-20 In Linux Word count in article: 159 Reading time ≈ 1 mins. 列出已安裝的 Linux 發行版 執行下方命令 1wsl -l -v Read more »