在远程FreeBSD服务器上运行VirtualBox
📜 现时提倡的安装方式为 pkg,本文并未对此进行更新。
VirtualBox可以在远程运行,并把界面通过 ssh 的 X11 转发放到管理员的桌面。
共 2 篇文章。
📜 现时提倡的安装方式为 pkg,本文并未对此进行更新。
VirtualBox可以在远程运行,并把界面通过 ssh 的 X11 转发放到管理员的桌面。
Many SSH clients supports “key agent” or “authentication agent”, which holds private key for you, and ease the authentication process.
By default, OpenSSH does not enable this. You can easily use ssh-agent(1) to accomplish the mission.
ssh-agent startx
The above command will start X session with ssh-agent. This means that you can add private key to the agent.
ssh-add ~/.ssh/id_dsa
Add your own ssh key.
Then ssh authentications will be accomplished automatically. Note that you may need to use ssh -A in certain configurations.