我目前正在尝试在装有 Ubuntu 18.04 的新电脑上设置 chrome 远程桌面。但每当我尝试按照https://support.google.com/chrome/answer/1649523#linux-crd,它会跳过设置阶段并直接进入“设置另一台设备进行远程访问”。
为了澄清起见,步骤如下:
- 安装 chrome 扩展
- 安装 Debian 文件https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
- 检查是否成功使用
systemctl status chrome-remote-desktop
- 蓝色设置按钮https://remotedesktop.google.com/access/永远卡住
- 如果我尝试在新选项卡中打开它或刷新它,我唯一的选择是“设置另一个设备进行远程访问”或远程进入我已经设置的设备。
今年早些时候,我已经在虚拟机上运行了它,它在我的 Windows 电脑上运行良好。但它似乎只在我的 Ubuntu 18.04 电脑上失败。我还尝试重新安装 google-chrome、chrome-remote-desktop chrome 扩展和 chrome-remote-desktop Debian 文件安装。
有人对可能发生的事情有什么建议吗?
答案1
如果其他人有这个问题,请尝试以下方法:
mkdir ~/.config/chrome-remote-desktop
答案2
刚刚又检查了一下,看起来他们已经修复了这个问题,所以它又可以正常工作了!如果其他人也遇到这个问题,更新一下就可以了!
答案3
我在 Ubuntu 20+ 上遇到了这个问题:
我安装了 Google Chrome,然后尝试安装 Chrome 远程桌面。
Google Chrome 尝试使用 Snap Store 打开 chrome-remote-desktop_current_amd64.deb,然后失败。
解决方案:安装 gdebi,使其成为打开 .deb 文件的默认应用程序,然后再次尝试安装 Chrome 远程桌面。
答案4
我在 Ubuntu 21.04 上遇到了同样的问题,因此:
- 尝试使用安装
.deb
包dpkg
并查看错误。例如,我的错误如下:
$ sudo dpkg -i "./path/to/file.deb"
[sudo] password for user:
...
dpkg: dependency problems prevent configuration of chrome-remote-desktop:
chrome-remote-desktop depends on xvfb; however:
Package xvfb is not installed.
chrome-remote-desktop depends on xbase-clients; however:
Package xbase-clients is not installed.
chrome-remote-desktop depends on python3-psutil; however:
Package python3-psutil is not installed.
如果输出与此类似,请尝试安装它们。例如:
$ sudo apt install xvfb xbase-clients python3-psutil
希望这有帮助。