如何从命令行启动 Google Chrome 的新实例?

如何从命令行启动 Google Chrome 的新实例?

有没有任何我可以通过命令行启动 Google Chrome 的新实例吗?我不是指打开新窗口 - 我想要一个新实例. 原因如下:

假设我打开 Chrome 并导航到某个页面。然后我从其他地方通过 SSH 进入同一个帐户。当我运行:

google-chrome

...我得到的只是现有窗口中的一个新选项卡。当我通过 SSH 连接时,这完全没用。

我如何启动分离使用同一帐户运行但可以通过 SSH 使用的 Chrome 实例?

答案1

这是一个已知错误。一种解决方法是传递参数--user-data-dir=$(mktemp -d)(或者您可以使用任何临时或空目录)来启动新会话。

答案2

我这样做

cd ~/.config/google-chrome
mkdir /tmp/chrome2
查找 . -print | cpio -mpdv /tmp/chrome2 # 我那个年代没有 cp -R!
rm -fr /tmp/chrome2/Singleton*
rm -fr /tmp/chrome2/Session*
google-chrome --user-data-dir=/tmp/chrome2/

我现在用的是这个,而不是 cpio/rm 行

rsync -av --delete --exclude=/Singleton* --exclude=/Session* ~/.config/google-chrome/ /tmp/chrome2/

答案3

使用--new-window参数。

喜欢: 

google-chrome --new-window www.google.com

相关内容