如何在同一个 Ubuntu 上运行两个 Skype 帐户?

如何在同一个 Ubuntu 上运行两个 Skype 帐户?

如果我使用 Windows,这是可能的。我可以在 Ubuntu 中做同样的事情吗?

在 Windows 中我要做的就是:

在运行窗口中,输入以下命令(包括引号)并按确定:

"C:\Program Files\Skype\Phone\Skype.exe" /secondary

我知道您可以使用 pidgin 或 empathy 但我想使用官方 Skype 帐户来实现此功能。

谢谢

答案1

在终端上运行此命令:

skype --secondary

答案2

我在用Ubuntu 17.04并拥有 Skype 测试版 5.4.0.1。我无法使用命令通过终端运行第二个实例skype --secondary

新的Skype应用程序现在被称为skypeforlinux,因此我使用了这个命令:

$ skypeforlinux --secondary

如果skypeforlinux未找到,您可以尝试使用完整路径:

$ /usr/bin/skypeforlinux --secondary

skypeforlinux如果您在目录中没有看到该应用程序/usr/bin/,那么它可能没有正确安装在您的机器上。

希望这对您使用新版本的 Skype 有所帮助。

答案3

skype --help给了我这个:

Usage: skype [options]
Options:
  --dbpath=<path>       Specify an alternative path to store Skype data files.
                        Default: ~/.Skype
  --resources=<path>    Specify a path where Skype can find its resource files.
                        Default: /usr/share/skype
  --disable-api         Disable Skype Public API.
  --callto <nick>
  skype:<nick>?<action>
                        These commands allow Skype links handling.
  --pipelogin           Command line login. "echo username password | skype --pipelogin"
  --version             Display version information and exit.

因此您可以用skype --dbpath=<path>它启动另一个实例。

编辑:根据 Pavel 的评论更新了我的答案。

答案4

skype --secondary &

在终端中启动它是一种稍微方便的方法。在这种情况下,您将能够轻松关闭终端窗口::)

相关内容