1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WSLとWindowsのSSHフォルダをまとめる

Last updated at Posted at 2021-06-10

WindowsからSSHするのとWSLからSSHするのは、基本的には別物として扱われることになっている。

フォルダが違えば、中に入っているconfigや鍵も異なるわけだから、当たり前だが正直面倒なことが多い。

そこで、シンボリックリンクを用いることによってSSHのフォルダを共有するという発想に至った。

まず、WSLの方の.sshファイルを削除する。中身がある人は移しておこう。

# {hoge} は 自身の当てはまるフォルダ名に変える。
$ ln -s /mnt/c/User/{hoge}/.ssh .ssh

こうすることによって、 WindowsのSSHフォルダがWSLでも利用することができるようになる。

configも鍵も共通で使えるので便利。

大丈夫だと思うけど、フォルダ権限には気を付けよう。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?