个人工具

“UbuntuHelp:FlashPlayerStandalone”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
 
(未显示同一用户的6个中间版本)
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/FlashPlayerStandalone}}
 
{{From|https://help.ubuntu.com/community/FlashPlayerStandalone}}
 
{{Languages|UbuntuHelp:FlashPlayerStandalone}}
 
{{Languages|UbuntuHelp:FlashPlayerStandalone}}
== Adobe Flash ==
+
'''For the regular Flash 9 browser plugin, please see [[UbuntuHelp:RestrictedFormats|RestrictedFormats]], [[UbuntuHelp:RestrictedFormats/Flash|RestrictedFormats/Flash]] and its "free alternatives" section.'''
'''For the regular Flash 9 browser plugin, please see [[UbuntuHelp:RestrictedFormats]], [[UbuntuHelp:RestrictedFormats/Flash]] and its "free alternatives" section.'''
+
Since Adobe Flash player 9 beta, Adobe has released a standalone Flash player for linux. Prior to this the only way to obtain and standalone player was to use [[UbuntuHelp:Wine|Wine]] - this is no longer necessary.
 
+
== Installing the Linux Version ==
Adobe has released a standalone Flash player as part of Adobe Flash player 9 beta. You can find it [http://labs.adobe.com/downloads/flashplayer9.html here] (that page links to Windows, GNU/Linux and Mac files for the plugin and the standalone player).
+
The standalone player can be downloaded from the  [http://www.adobe.com/support/flashplayer/downloads.html Adobe website] (the page links to Windows, GNU/Linux and Mac files for the plugin and the standalone player - look for "Download the Linux debugger and standalone players").
 
+
Unpack the archive you downloaded and navigate to the folder release (via the standalone folder). Inside this folder will be another archive (flashplayer.tar.gz), so extract this and there is your standalone player (double click to launch).
This is designed to be a cookbook entry. Since Macromedia doesn't release a standalone flash player for Linux, and their plugin has some serious flaws in its audio syncing and a few other features, it is better to just use a Windows version.
+
 
+
(NOTE: Macromedia bundles a standalone version of Flash Player with the trial versions of Flash. Although the trial version of Flash MX [Flash 6] installs well in WINE, that player is out of date and the native Linux player is a better option. Flash MX 2004 [Flash 7] and Flash 8 have exhibited problems with their installation and access to that player has been problematic.  However if you have access to a real Microsoft Windows system then you can install the trial there and copy across the standalone player.
+
 
+
'''Note''':  This entry assumes some familiarity with the terminal: Applications -> Accessories -> Terminal (in Ubuntu 7.04 (Feisty)).
+
 
+
The commands listed in this section are entered in the terminal.  All of the commands on this page require super-user privileges.  To become the super-user in Ubuntu 7.04, enter the following command in the terminal at your regular user prompt:
+
<pre><nowiki>
+
sudo -s
+
</nowiki></pre>
+
 
+
You will then be asked to type your password. If the password is accepted, the prompt will change to show that you have successfully logged in as a super-user. In a default system, the prompt will change from a $ to a #.  This is the mode you must use to make administrative changes to your system, such as the ones we will be making in this section.  Alternatively, you can skip the step of logging in as super-user and instead precede each command with "sudo" while logged in under your normal login.
+
 
+
=== Installing Wine ===
+
 
+
To see how to install and configure Wine, see [[UbuntuHelp:Wine]].
+
 
+
=== Setting Up Flashplayer ===
+
 
+
First, download a Stand-alone Flash Player .exe.  I used this Flash Player 6 because it was the best thing I could find.
+
<pre><nowiki>
+
wget http://www.ahlrates.com/players/SAFlashPlayer.exe
+
</nowiki></pre>
+
 
+
Put it somewhere central on the computer.  I decided to put it in /usr/win.  You can substitute this directory with wherever, or leave it where it is.
+
<pre><nowiki>
+
sudo mkdir /usr/win
+
sudo mv SAFlashPlayer.exe /usr/win/
+
</nowiki></pre>
+
 
+
Now make a desktop icon.  Right-click on your desktop and select "'''Create Launcher'''".  Name it Flash Player, and in the "Command" field type
+
<pre><nowiki>
+
wine /usr/win/SAFlashPlayer.exe
+
</nowiki></pre>
+
 
+
You can even give it an icon.  I used this one:
+
<pre><nowiki>
+
wget http://www.macromedia.com/shockwave/download/images/flash_rune.gif
+
</nowiki></pre>
+
 
+
Tuck this away somewhere like /usr/share/icons
+
<pre><nowiki>
+
sudo mv flash_rune.gif /usr/share/icons/
+
</nowiki></pre>
+
 
+
Then click on the big icon that says "No Icon" in your Create Launcher window, type in the proper directory (/usr/share/icons/) and select the icon for it. Voila, a beautifully installed Flash Player that will keep audio sync.  Double-click it and test it.  You can type any URL into the File->Open dialog, and it will load and play it for you.  Enjoy!
+
 
+
Written by NicholasRetallack.
+
 
+
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
+
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2009年5月12日 (二) 16:49的最新版本

For the regular Flash 9 browser plugin, please see RestrictedFormats, RestrictedFormats/Flash and its "free alternatives" section. Since Adobe Flash player 9 beta, Adobe has released a standalone Flash player for linux. Prior to this the only way to obtain and standalone player was to use Wine - this is no longer necessary.

Installing the Linux Version

The standalone player can be downloaded from the Adobe website (the page links to Windows, GNU/Linux and Mac files for the plugin and the standalone player - look for "Download the Linux debugger and standalone players"). Unpack the archive you downloaded and navigate to the folder release (via the standalone folder). Inside this folder will be another archive (flashplayer.tar.gz), so extract this and there is your standalone player (double click to launch).