blackbelt_jones
10-06-2007, 12:27 AM
I got this in my private box. I'm replying publically -- in part cause it turns out there's a limit for how long private messages can be.
blackbelt jones how u doing you dont know me but u were online at the time an i wanted to see if you can offer me some advice on installing a flashplayer on ydl v5.0 for the ps3 platform please if u can offer me any advice it would be most thankful
Well, I don't know anything about ps3 or yellow dog, so I'm just going to assume that we're talking about a computer, and all my experience isn't useless.
Of the three options for installing flash found here:
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash
Option one ( the tarball, the installion shell script) is the one that should work on any x-enabled Linux system that I am familiar with. Option one was always hard for me because I never knew what to answer when the installer prompted me for the browser "installation path"
Then I discovered the find command. Here's how I do it.
Login as root in the shell
type:
cd /
That'll put you in the root directory, sitting right in the center, on top of everything. (Sort of a mixed metaphor, I know) When you use the command from here, it'll search the entire system. You want to use it as root so that no part of the system will be denied access to "find".
Now the command. Type:
find -name *mozilla* -print
it may take a few minutes, but the shell will list every file in the system with "mozilla" somewhere in the path, and one of those will be the "installation path" that the installer asks you for, for firefox or seamonkey or whatever. If it's not the first one you try, you can just try another.
with the information, you can go ahead and use the tarball installer (option one) pretty easy.
unzip the tarball, cd to the directory, login as root, and type:
sh flashplayer-installer
With the "find" command, you should have all the information you need to follow the prompts without any trouble.
:eek:Hold the phone! :eek:
instead of
find -name *mozilla* -print
first try:
find -name *mozilla*sh -print
cause I think the installation path directory should contain an installation script. The first command produced an output of a page and a half on my system. The second command produced this:
/usr/lib/thunderbird-2.0.0.4/run-mozilla.sh
/usr/lib/seamonkey-1.1.2/run-mozilla.sh
/usr/lib/firefox-2.0.0.4/run-mozilla.sh
I've already installed flashplayer on this system, so I can't be test it to be certain, but I think these are the installtion scripts of all three of my mozilla based browsers.
So the installation paths would simply be the directories those scripts inhabit:
./usr/lib/thunderbird-2.0.0.4/
./usr/lib/seamonkey-1.1.2/
./usr/lib/firefox-2.0.0.4/
Hope that's helpful. I know it was long.:rolleyes:
:o One more thing. Most people use the find command like this:
find / -name *mozilla*sh -print
Or do they? I kept running into problems with it, so maybe I was doing it wrong. The "/" after "find" supposedly means that you're searching the whole root directory, but sometimes it would work for me and other times I'd get an unaccountable error message. For the life of me I don't know what I was doing differently, but I discovered that by cd-ing to / and making the command from there, I could end all that nonsense.
blackbelt jones how u doing you dont know me but u were online at the time an i wanted to see if you can offer me some advice on installing a flashplayer on ydl v5.0 for the ps3 platform please if u can offer me any advice it would be most thankful
Well, I don't know anything about ps3 or yellow dog, so I'm just going to assume that we're talking about a computer, and all my experience isn't useless.
Of the three options for installing flash found here:
http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash
Option one ( the tarball, the installion shell script) is the one that should work on any x-enabled Linux system that I am familiar with. Option one was always hard for me because I never knew what to answer when the installer prompted me for the browser "installation path"
Then I discovered the find command. Here's how I do it.
Login as root in the shell
type:
cd /
That'll put you in the root directory, sitting right in the center, on top of everything. (Sort of a mixed metaphor, I know) When you use the command from here, it'll search the entire system. You want to use it as root so that no part of the system will be denied access to "find".
Now the command. Type:
find -name *mozilla* -print
it may take a few minutes, but the shell will list every file in the system with "mozilla" somewhere in the path, and one of those will be the "installation path" that the installer asks you for, for firefox or seamonkey or whatever. If it's not the first one you try, you can just try another.
with the information, you can go ahead and use the tarball installer (option one) pretty easy.
unzip the tarball, cd to the directory, login as root, and type:
sh flashplayer-installer
With the "find" command, you should have all the information you need to follow the prompts without any trouble.
:eek:Hold the phone! :eek:
instead of
find -name *mozilla* -print
first try:
find -name *mozilla*sh -print
cause I think the installation path directory should contain an installation script. The first command produced an output of a page and a half on my system. The second command produced this:
/usr/lib/thunderbird-2.0.0.4/run-mozilla.sh
/usr/lib/seamonkey-1.1.2/run-mozilla.sh
/usr/lib/firefox-2.0.0.4/run-mozilla.sh
I've already installed flashplayer on this system, so I can't be test it to be certain, but I think these are the installtion scripts of all three of my mozilla based browsers.
So the installation paths would simply be the directories those scripts inhabit:
./usr/lib/thunderbird-2.0.0.4/
./usr/lib/seamonkey-1.1.2/
./usr/lib/firefox-2.0.0.4/
Hope that's helpful. I know it was long.:rolleyes:
:o One more thing. Most people use the find command like this:
find / -name *mozilla*sh -print
Or do they? I kept running into problems with it, so maybe I was doing it wrong. The "/" after "find" supposedly means that you're searching the whole root directory, but sometimes it would work for me and other times I'd get an unaccountable error message. For the life of me I don't know what I was doing differently, but I discovered that by cd-ing to / and making the command from there, I could end all that nonsense.