Linux 從遠端伺服器複製檔案 - scp

摘要 scp是一種Linux指令,可以實現跨Internet(WAN/LAN)傳送資料。 1 2 #example: scp -r [email protected]:/home/neil/Documents/Dev/ ~/Downloads 1 2 # -r 指複製整個目錄(資料夾) scp -r <username>@host:<which remote dir cp to> <local dir>

June 5, 2020 · 1 分鐘 · 75 字 · Byte4Cat

Ubuntu Change Screen Resolution via Terminal

摘要 Xrandr工具可用於動態設定螢幕輸出解析度及比例,默認情況下,此軟體安裝在Ubuntu 18.04上。 Changing Screen Resolution through Terminal ...

June 5, 2020 · 1 分鐘 · 188 字 · Byte4Cat

解決Ubuntu安裝軟體snap "code-insiders" has "install-snap" change

摘要 ⚠️ 我通過Ubuntu自帶的『Software』下載安裝,可是他卻提示我: 1 Unable to install "Visual Studio Code": snap "code" has "install-snap" change in progress. 原因: 軟體之前安裝過一次,但是因為一些原因沒有安裝成功 ...

June 5, 2020 · 1 分鐘 · 111 字 · Byte4Cat

Linux使用find指令查詢特定檔案及目錄並刪除

摘要 在Linux底下當我們要針對資料夾的特定檔案執行操作時,如果一個一個的做非常麻煩又沒消率,我們可以透過 find 指令解決這個問題,以下提供一個刪除檔案的例子。 ...

May 28, 2020 · 2 分鐘 · 666 字 · Byte4Cat