0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VSCodeの拡張機能をインストールして、ubuntu22.04にssh接続する

Last updated at Posted at 2024-09-26

ubuntuの設定

1.opensshをインストール

$ sudo apt install openssh

2.configファイルの設定
・パスワード認証でログインする場合

/etc/ssh/sshd_config
PasswordAuthentication yes

無効になっている場合は、公開鍵認証等他の認証方法を設定する必要があります。

VScodeの設定

1.VSCodeインストール
※インストール手順は割愛

2.ExtentionsからRemoto-SSHをインストール
拡張機能(Extentions)の検索欄に{remote ssh}と入力してインストール
vs-remote.png

3.RemoteExplorerから歯車マークをクリックし、configファイルを開きます
vs-remote-2.png

4.configファイルの設定

C:users/{$ユーザー}/.ssh/config
# Read more about SSH config files: https://linux.die.net/man/5/ssh_config
Host Ubuntu
    HostName {接続先のIP}
    User {接続先のユーザー名}
項目
Host VScodeに表示される名前で何でも構いません
HostName UbuntuのIP
User Ubuntuのユーザー名

5.connect in New Windowsをクリックしssh接続
vs-remote-3.png

6.パスワードを入力し、OpenFolderでUbuntu上のファイルを確認できます
vs-remote-4.png

7.適当なファイルを右クリックし、[Open in integrated Terminal]を選択するとファイルシステムが表示されます。

8.VScodeでファイルを開く

/etc/ssh/sshd_config
$ code [ファイルパス]
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?