Virtualbox 桌面上無回應區域

Virtualbox 桌面上無回應區域

在運行 Ubuntu 的 Virtualbox 上,我遇到過幾次錯誤,桌面的左上四分之一突然對滑鼠點擊沒有回應,是什麼原因導致的以及如何解決這個問題?

答案1

這個問題似乎與 VBoxClient 進程被卡住有關,只需從進程列表中尋找並結束該進程似乎就可以解決問題。

對我來說,殺死使用 --draganddrop 參數運行的實例恢復了該區域的功能。

您可以使用 ctrl+alt+t 鍵盤組合開啟終端,然後輸入:

ps aux www | grep VBoxClient --

尋找進程 ID (PID),然後將其殺死

kill -9 PID

或者也pkill VBoxClient可以解決這個問題。

之後恢復拖放支持,您可以運行

VBoxClient-all

這裡提供不可點擊區域的 xwininfo 供參考:

  xwininfo: Window id: 0x1200001 "VBoxClientWndDnD"

  Absolute upper-left X:  0
  Absolute upper-left Y:  0
  Relative upper-left X:  0
  Relative upper-left Y:  0
  Width: 800
  Height: 600
  Depth: 0
  Visual: 0x21
  Visual Class: TrueColor
  Border width: 0
  Class: InputOnly
  Colormap: 0x0 (not installed)
  Bit Gravity State: ForgetGravity
  Window Gravity State: NorthWestGravity
  Backing Store State: NotUseful
  Save Under State: no
  Map State: IsViewable
  Override Redirect State: yes
  Corners:  +0+0  -1120+0  -1120-375  +0-375
  -geometry 800x600+0+0

答案2

無法評論 Allu2 的答案,在使用 Pycharm 時遇到與 Ubuntu 18 相同的問題。似乎是在一兩個小時編碼後複製程式碼區塊的事情。整個桌面區域停止工作,但 Gnome 的工作列仍然工作。

使用以下命令透過管道將 --draganddrop 進程殺死: ps aux www |grep 'VBoxClient --draganddrop' | awk '{print $2}' | xargs kill

答案3

使用 Visual Studio Code 時在 Ubuntu 20.04.4 LTS 上遇到相同的問題。 Allu2的回答非常有幫助。
(這是我的第一篇文章,所以我無法直接評論他的答案)

重新啟動的另一種方法VBoxClientWndDnD是停用拖放從功能表欄,然後重新啟用它。

在此輸入影像描述

答案4

這很奇怪,但對我來說,我打開了網路風暴。重新啟動即可解決問題。請注意,我已嘗試儲存機器狀態並重新啟動 vbox,但這不起作用

相關內容