Quote:
Originally posted by eppoh
Is there a way I can check the association or link using a graphical interface?
|
I'm sure there is, but I couldn't tell you what. Perhaps whichever file manager you use can show symlinks and such, many can. CLI is just sometimes a necessity - don't be scared of it. I'll explain in a bit of detail what I showed before:
Quote:
|
$ ls -l /usr/lib/mozilla-firefox/plugins/ |grep java
|
$ is my prompt sign at my terminal window
ls -l is the command I ran. The ls command is to 'list', the -l switch means a long list
/usr/lib/mozilla-firefox/plugins/ is the directory I wanted a list of
| is called a pipe, it allowed me to enter a 2nd command based on the output of the previous one...
grep java since all I was interested in was the output related to java, I used the grep command to single that stuff out for me.
The sum of which resulted as:
Quote:
|
lrwxrwxrwx 1 root root 67 Dec 4 17:01 libjavaplugin_oji.so -> /opt/j2sdk1.4.2_04/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so
|
lrwxrwxrwx 1 root root 67 Dec 4 17:01 are the permissions, ownership, date created etc for the stuff I wanted listed
libjavaplugin_oji.so is the stuff I wanted listed
-> denotes that the file is a symlink, a bit like a shortcut in Microsoft Windows, but much more versatile
/opt/j2sdk1.4.2_04/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so is the file the symlink points to.
Don't be afraid to drop to the command line, it's where the real power of Linux lies. Here are a few links that might help you out with commands:
clicky
clicky
clicky
clicky