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?

More than 3 years have passed since last update.

Macからvirtualbox上端末にリモート接続する方法

Posted at

こんにちはspchanです。本日はMacからvirtualbox上端末にリモート接続する方法について説明します。

まずvirtualboxのポートフォワーディング設定をします。
次にvirtualboxの接続したいマシンにopenssh-serverをインストールしてsshd待機状態にします。
次にローカルホスト、ここではMacの~/.ssh/configに

~/.ssh/config
Host matcha(任意の名前)
Hostname  hogehoge(ホスト名やipアドレス)
User hoge(リモート側のログインする名前)
Port 2022(ローカル側のホスト番号)
IdentityFile ~/.ssh/id_rsa

と書き込んで、

$ssh matcha

と先ほど書き込んだ任意のHostの名前を書くと、リモート側のログインパスワードを聞かれ、正しいパスワードを入力すると、無事接続が完了します。
接続を切りたいときは、

matcha@hogehoge$ exit

とすれば切ることができます。

以上で説明を終わります。
Macはssh環境が既にターミナルにインストールされているため、簡単にリモート接続ができますね♪

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?