LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 05-27-2004, 05:21 PM   #1
wi_slacker
LQ Newbie
 
Registered: Apr 2004
Distribution: Slackware 9.1
Posts: 14

Rep: Reputation: 0
java plugin for firefox


when i run:
Code:
ln -s /usr/lib/java/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so /mnt/data/firefox/plugins/libjavaplugin_oji.so
it comes back saying "operation not permitted", even as root. I think this has something to do w/ the fact that I'm working w/ 2 partitions. how can I get around this?
 
Old 05-27-2004, 05:28 PM   #2
mcd
Member
 
Registered: Aug 2003
Location: Denver, CO
Distribution: CentOS, Debian
Posts: 825

Rep: Reputation: 33
well, i'm not sure what's going on, but is there suposed to be a " oji.so" at the end of those pathnames? it looks like there's a space between the n and the o, which might be causing trouble. otherwise, i guess i would just make sure that the directory and file that you're trying to link to exist, and whatnot. you might ls -al that file to see it's properties and see if anything jumps out at you.
 
Old 05-27-2004, 05:37 PM   #3
wi_slacker
LQ Newbie
 
Registered: Apr 2004
Distribution: Slackware 9.1
Posts: 14

Original Poster
Rep: Reputation: 0
the command is formatted correctly on my screen, you must be having some browser issues?

ls -al does not report anything unusual.
 
Old 05-27-2004, 07:46 PM   #4
ProtoformX
Member
 
Registered: Feb 2004
Location: Canada
Distribution: LFS SVN
Posts: 334

Rep: Reputation: 34
Re: java plugin for firefox

Quote:
Originally posted by wi_slacker
when i run:
Code:
ln -s /usr/lib/java/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so /mnt/data/firefox/plugins/libjavaplugin_oji.so
it comes back saying "operation not permitted", even as root. I think this has something to do w/ the fact that I'm working w/ 2 partitions. how can I get around this?

Try this: cd into firefox's plugin driectory and type this:
Code:
ln -s /usr/lib/java/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so

Last edited by ProtoformX; 05-27-2004 at 07:47 PM.
 
Old 05-27-2004, 08:53 PM   #5
slackwarefan
Member
 
Registered: Oct 2003
Location: Florida
Distribution: Slackware
Posts: 273

Rep: Reputation: 30
Did you try just cp ing it? It looks like it may not be letting you link across partitions.

-Hope this helps.
 
Old 05-27-2004, 08:57 PM   #6
quatsch
LQ Addict
 
Registered: Aug 2003
Location: New York, NY
Distribution: gentoo, gentooPPC
Posts: 1,661

Rep: Reputation: 48
what is the file system type of the partition where you have firefox installed? If it's fat32 by any chance, you won't be able to create symlinks - and it's got to be a symlink for java; copying the thing won't do.
 
Old 05-27-2004, 09:24 PM   #7
wi_slacker
LQ Newbie
 
Registered: Apr 2004
Distribution: Slackware 9.1
Posts: 14

Original Poster
Rep: Reputation: 0
nice call quatsch, it is a fat32 partition - am I sol?

Thanks for all the other suggestions.
 
Old 05-27-2004, 11:02 PM   #8
quatsch
LQ Addict
 
Registered: Aug 2003
Location: New York, NY
Distribution: gentoo, gentooPPC
Posts: 1,661

Rep: Reputation: 48
I guess you'll have to move the firefox installation to the same partition as java. You can just move the whole firefox directory. That should work.
 
Old 05-28-2004, 10:43 AM   #9
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
May I ask why you're using a fat32 partition for Linux? It just seems to me to be inefficient and not really the first choice of many....
 
Old 05-28-2004, 12:09 PM   #10
wi_slacker
LQ Newbie
 
Registered: Apr 2004
Distribution: Slackware 9.1
Posts: 14

Original Poster
Rep: Reputation: 0
I seem to have forgotten why its formatted that way. After giving some thought, I think I will reformat it. This wasn't a system partition, just one I created for important files. That way I can nuke my os partitions if I want and don't have to worry about losing anything.
 
Old 05-28-2004, 12:12 PM   #11
mcd
Member
 
Registered: Aug 2003
Location: Denver, CO
Distribution: CentOS, Debian
Posts: 825

Rep: Reputation: 33
if it's not a system partition you may have done it to be able to read/write in windows too, i have a large fat32 partition that I use for all my files/mp3s/etc because any OS can read/write.
 
Old 05-28-2004, 12:21 PM   #12
wi_slacker
LQ Newbie
 
Registered: Apr 2004
Distribution: Slackware 9.1
Posts: 14

Original Poster
Rep: Reputation: 0
thats what I thought at first, but I have win2k on a completely separate box, with another fat32 data partition on it, accessible to linux via smbfs. The data partition on my linux box is soley for linux os's, so I guess theres no real need for it to be fat32.
 
Old 05-28-2004, 03:54 PM   #13
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
Quote:
Originally posted by wi_slacker
thats what I thought at first, but I have win2k on a completely separate box, with another fat32 data partition on it, accessible to linux via smbfs. The data partition on my linux box is soley for linux os's, so I guess theres no real need for it to be fat32.
If you're accessing the Win2k computer via smb, then it can be NTFS if you'd like. It only needs to be FAT32 if you actually mount it onto your file systems rather than just seeing it as a networked hard drive.
 
Old 05-28-2004, 05:44 PM   #14
bugsbunny
Member
 
Registered: Jan 2003
Location: London/UK
Distribution: Slackware 9.1
Posts: 111

Rep: Reputation: 15
There is actually a plugin package for firefox at http://www.linuxpackages.net/. just download and install and thats it.
 
Old 05-29-2004, 02:06 PM   #15
r_jensen11
Senior Member
 
Registered: Apr 2003
Location: Minnesota, USA
Distribution: Slack 10.0 w/2.4.26
Posts: 1,032

Rep: Reputation: 45
Quote:
Originally posted by bugsbunny
There is actually a plugin package for firefox at http://www.linuxpackages.net/. just download and install and thats it.
... Or you could do the following:

as a user, untar the package with "tar -zxf" or "tar -jxf", depending on which file format it's in.

As root, mv the new directory and its contents to /usr/local/lib and then run ln -s /usr/local/lib/FireFox/FireFox /usr/local/bin/FireFox, or whatever the path is to the program. Then chmod 755 the symbolic link, and you're set. No pre-packaged stuff from linuxquestions, and only stuff that comes directly from mozilla.org
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Java plugin installed correctly for Firefox but not able to view any java applet tvn Linux - Software 10 04-15-2010 02:13 AM
java plugin for firefox velska Linux - Software 8 04-15-2006 07:00 PM
Firefox Java Plugin Unresponsive aeuzent Linux - Software 4 03-22-2005 07:20 PM
Firefox 1.0.1 and Java 1.5 plugin: no go Kropotkin Linux - Software 8 03-19-2005 01:01 PM
Java Plugin for Firefox wiskic10_4 Linux - Software 3 12-17-2004 08:09 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:55 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration