VSCode遠端連線備忘錄

2021-10-25 06:28:24 字數 662 閱讀 6294

1. 安裝 remote-ssh, remote development外掛程式。

2. 點左邊remote exploer 進入 configure-> .ssh/config進行配置。

host 別名

hostname 使用者ip位址

user 使用者名稱

port 埠號

3. 開啟相應資料夾目錄。

4. vscode 遠端失敗解決方法。

5. 報錯解決:downloading vs code server failed. please try again later.

>$ passwd root

>$ apt update

>$ apt install -y --no-install-recommends openssh-server

>$ vim /etc/ssh/sshd_config

#authentication

logingracetime 120

permitrootlogin yes

strictmodes yes

>$ service ssh start

>$ ps -e | grep ssh

注意事項:

1.如果第二天登不上: 在容器中執行 service ssh restart 重啟ssh服務。

自己常用的vscode的外掛程式備忘錄

1 42header korofileheader psioniq file header這三個是由於插入檔案說明,函式說明的。我在編寫c語言的時候經常用到的。記得要修改快捷方式。2 c c c c snippets,這兩個是用於語法高亮,模板 3 c c compile run這個可以用於一鍵編譯...

備忘錄模式

備忘錄模式 memento 在不破壞封裝性的前提下,捕獲乙個物件的內部狀態,並在該物件之外儲存這個狀態。這樣以後就可將該物件恢復到原先儲存的狀態。originator 發起人 負責建立乙個備忘錄memento,用以記錄當前時刻它的內部狀態,並可以使用備忘錄恢復內部狀態。originator可根據需要...

備忘錄模式

先從物件導向的三大特徵之一封裝說起。物件導向的封裝簡單點說就是把狀態 資料 和行為 操作這些資料的方法 放到一起,構成乙個單元,通常叫做類。乙個物件的行為是事先確定好的 靜態 一些指令碼,如果物件的狀態相同,物件看起來就是一樣的。所以當我們需要把乙個物件的某一時刻儲存起來,那麼只需要儲存它在那個時刻...