Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 22nd December 2004, 05:45 AM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
Flash plugin PLZ HELP!

Well firstly, I am a mojor newb when it comes to linux. I decided that it would be worth a try since i bought a AMD 64 and would not get windows for a few weeks. But it has become so complecated to do such a simple task it makes me doubt the usefullness of installing linux. My main problem is that i can install the 'Package' just fine but i dont know where it goes from there? where do the 'packages' I install go? this is not the only program i have tried that when i install the program it just says 'package installed' and vanishes.
Reply With Quote
  #2  
Old 22nd December 2004, 06:54 AM
h4d's Avatar
h4d Offline
Registered User
 
Join Date: Feb 2004
Location: Boston
Posts: 239
A couple of questions in order to answer yours. Which package did you install? and How did you install it (yum, downloaded rpm and installed, compiled source)?
If it´s the flash player plugin for mozilla, try accessing a website that uses flash and that way you´ll check if it´s intalled. But if I knew it was an rpm you installed, you could do (from a terminal)
Code:
rpm -qa |grep flash
Hope this helps a bit, but as I said, we need more info, especially how it is that you installed it.
Reply With Quote
  #3  
Old 22nd December 2004, 07:32 AM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
I think it is a .rpm file. I tried going to a flash website and apperently i still dont have it. It just says "Flash plugin installed" but i dont know the directory it was put in. I am so used to windows and this is really weird to me.
Reply With Quote
  #4  
Old 22nd December 2004, 07:36 AM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
i dont understand the consept of a 'package'
Reply With Quote
  #5  
Old 22nd December 2004, 07:39 AM
amit2301 Offline
Registered User
 
Join Date: Dec 2004
Posts: 2
install firefox browser from www.mozilla.org
it detects the plugins automatically
moreover u can download the flashplayer for linux from www.macromedia.com
Reply With Quote
  #6  
Old 22nd December 2004, 07:43 AM
amit2301 Offline
Registered User
 
Join Date: Dec 2004
Posts: 2
if u r looking fr the file, use this command at the root directory .... type : #cd /
#find . -name <name of file you desire to search> -print
Reply With Quote
  #7  
Old 22nd December 2004, 07:49 AM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
well the thing is. I have installed the 'package' but i want to know how i open the thing it installed this is not the only app i have had a problem finding the executibles to. i assume packages are like setup siles right?
Reply With Quote
  #8  
Old 22nd December 2004, 07:58 AM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
and firefox always comes up 'fail' after i install it
Reply With Quote
  #9  
Old 22nd December 2004, 06:30 PM
Absent Shdow Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
well i think i figured out how to do it but it says only the 'Owner' can move files... But I AM the owner. How can i give myself privledges?
Reply With Quote
  #10  
Old 23rd December 2004, 04:25 AM
cybrjackle's Avatar
cybrjackle Offline
Registered User
 
Join Date: Jan 2004
Posts: 456
Are you talking about firefox right now or a different package? Another way to find everything that an rpm has touched is to run the following command:

Code:
$rpm -ql firefox
another way to find exectuables is
Code:
$ whereis firefox
firefox: /usr/bin/firefox /usr/sbin/firefox /usr/lib/firefox
the "executable" in this example is /usr/bin/firefox, however anything in /usr/bin should be in your users path:

Code:
$ echo $PATH
/usr/kerberos/bin:/usr/lib64/ccache/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/justin/bin
As you can see from this example, "/usr/bin" is in my path so simple executing "firefox" in a terminal with the "&" to run it in the background.

Code:
$firefox&
Will launch firefox.
__________________
aka "jlc" on irc.

Main Desktop:
Rawhide x86_64
MSI K8N NEO2 Platinum
AMD Athlon 64 3200+ Winchester @ 2350MHz
CORSAIR XMS TWINX1024-3200C2 2GB
BFG Nvidia GeForce 6800GT OC @ 370MHz 256MB GDDR3
2x80GB SATA 150 Segate Raid 0
Reply With Quote
  #11  
Old 23rd December 2004, 04:55 AM
cybrjackle's Avatar
cybrjackle Offline
Registered User
 
Join Date: Jan 2004
Posts: 456
Quote:
Originally Posted by Absent Shdow
well i think i figured out how to do it but it says only the 'Owner' can move files... But I AM the owner. How can i give myself privledges?
What file are you talking you are the owner of? The way to look in a terminal is:

Code:
$ ls -la 
drwxrwxr-x    2 justin justin      4096 Dec 18 11:32 Documents
That means the following:
d = directory
r = read (owner)
w = write (owner)
x = execute (owner)
r = read (group)
w = write ( greop)
x = execute (group)
r = read (other)
- = no permision (other)
x = execute (other)

first justin = owner
second justin = group

So this means that the:

User justin has read/write/execute permisions on the dir Documents
Group justin has read/write/execute permisions on the dir Documents
Other(everyone on the system) can read/execute the dir Documents but can't write to it.

Example with a text file:

Code:
$ touch readme
$ ls -la readme
-rw-rw-r--  1 justin justin 0 Dec 22 22:26 readme
$ chmod u+x readme ; chmod go-rwx readme
[justin@morpheus ~]$ ls -la readme
-rwx------  1 justin justin 0 Dec 22 22:26 readme
- = file
The rest of that means that only the user "justin" can read/write/execute the file readme, while the rest of the world can't even view it.

Code:
$ echo test 1,2,3 >> readme
$ cat readme
test 1,2,3
As you can see me "justin" could write and view the file readme


Thats as good as my explanation can get
__________________
aka "jlc" on irc.

Main Desktop:
Rawhide x86_64
MSI K8N NEO2 Platinum
AMD Athlon 64 3200+ Winchester @ 2350MHz
CORSAIR XMS TWINX1024-3200C2 2GB
BFG Nvidia GeForce 6800GT OC @ 370MHz 256MB GDDR3
2x80GB SATA 150 Segate Raid 0
Reply With Quote
Reply

Tags
flash, plugin, plz

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
F11 x86_64, Firefox 3.5, flash-plugin i386, mozilla-plugin-config bongoman Using Fedora 21 30th July 2009 02:58 AM
mozilla-plugin-config and flash plugin nick623 Using Fedora 31 17th November 2008 04:36 PM
gnash-plugin instead of flash-plugin marisdembovskis Using Fedora 3 12th June 2007 06:43 PM
64-Bit Flash-Plugin front243 Using Fedora 0 23rd August 2005 10:55 PM


Current GMT-time: 18:10 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat