我在一个分区上安装了 Windows 7 并且运行良好,但我想从我的 Ubuntu 安装中使用 VirtualBox 访问该分区。我已经创建了虚拟磁盘文件和所有内容,但是 Windows 在加载后给了我一个蓝屏死机 (BSOD) error 0000007B
(它找不到磁盘或其他东西)。
有没有人设法解决这个问题?
我最近启用ControlMaster
并启用ControlPersist
了 SSH,以便它重用和多路复用连接以提高速度。配置是:
ControlMaster auto
ControlPath /tmp/ssh_mux_%h_%p_%r
ControlPersist 4h
Run Code Online (Sandbox Code Playgroud)
如果我ControlPersist
关闭,一切都很好。有了它的,不过,第一混帐/ HG连接将永远定格。SSH 正常(在 shell 中)运行正常,这是第一次,但 git/hg 冻结。如果我用 ctrl+C 停止它然后重试,它将使用已经建立的连接进行多路复用,它会很快,但它不会第一次这样做。谈到LogLevel
多达11给我:
remote: debug2: fd 4 setting O_NONBLOCK
remote: debug1: forking to background
remote: debug1: Entering interactive session.
remote: debug2: set_control_persist_exit_time: schedule exit in 14400 seconds
remote: debug1: multiplexing control connection
remote: debug2: fd 5 setting O_NONBLOCK
Run Code Online (Sandbox Code Playgroud)
在这一点上,它只是冻结并永远留在那里。怎么了?