如何在 Ubuntu 14.04 上安装 unity web player?

agh*_*bas 14 unity-web-player

我想知道如何为 ubuntu 14.04 LTS 64 位版本安装统一网络播放器,因为我无法访问许多在线应用程序,他们建议我下载统一网络播放器。

我可以得到一个简单的程序来下载它吗?

小智 11

一个解决方案可能是使用 Pipelight:

这里如何在 Ubuntu 上安装 Pipelight:http ://pipelight.net/cms/install/installation-ubuntu.html

sudo add-apt-repository ppa:pipelight/stable
sudo apt-get update
sudo apt-get install --install-recommends pipelight-multi
sudo pipelight-plugin --update
Run Code Online (Sandbox Code Playgroud)

这里如何激活 Unity Web Player 插件:http : //wiki.unity3d.com/index.php/Running_Unity_Web_Player_on_Linux_using_Pipelight

#!/bin/bash

#FDS-Team: Pipelight Project
#Tomasz Zackiewicz, Pipelight.sh


#update the checksum of Unity3D Web Player
sudo pipelight-plugin --update

#for Firefox, clear the plugin cache
sudo pipelight-plugin --create-mozilla-plugins

#enabling Unity3D Web Player
sudo pipelight-plugin --enable unity3d
Run Code Online (Sandbox Code Playgroud)

  • 与提到的 [here](http://askubuntu.com/a/498915/62483) 相同的命令:) (4认同)
  • 这似乎不适用于较新版本的 Firefox,可能是 2014 年之后推出的版本 (2认同)