LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-26-2011, 07:42 PM   #16
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651

hi wildcat777
those are two different commands
the first is
Code:
uname -a -m -p
and the second is
Code:
cat /proc/cpuinfo
but you might want to pass it to the "more " or " less" command
Code:
cat /proc/cpuinfo | more
also this is an OLDER acer ? right ?
so it most likely has "limpus light" installed
limpus light is the #1 worst distro (- i right know can not think of one that is worse )

and if that is what is installed it is based on a old and no longer supported version of fedora ( the very long dead fedora 8)

if this is what is installed on the net book then installing flash and getting it to work might not be possible
that uname command should tell us ( and you )

Last edited by John VV; 03-26-2011 at 07:49 PM.
 
Old 03-26-2011, 09:01 PM   #17
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
@wildcat777: can you give me the result of this command:
Code:
ldd /usr/lib/opera/plugins/libflashplayer.so
I'm particularly interested in any lines that say 'not found'.
 
Old 03-26-2011, 09:52 PM   #18
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by ruario View Post
@wildcat777: can you give me the result of this command:
Code:
ldd /usr/lib/opera/plugins/libflashplayer.so
I'm particularly interested in any lines that say 'not found'.
hi ruario, i typed it in and it gave me loads of lines of text and numbers. there was one line that had NOT FOUND in it was as Follows: libnssutil3.so => not found,that was the only line that had not found in.Hope this means something to you that can end this nightmare:-( cheers mate.
 
Old 03-26-2011, 09:57 PM   #19
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by John VV View Post
hi wildcat777
those are two different commands
the first is
Code:
uname -a -m -p
and the second is
Code:
cat /proc/cpuinfo
but you might want to pass it to the "more " or " less" command
Code:
cat /proc/cpuinfo | more
also this is an OLDER acer ? right ?
so it most likely has "limpus light" installed
limpus light is the #1 worst distro (- i right know can not think of one that is worse )

and if that is what is installed it is based on a old and no longer supported version of fedora ( the very long dead fedora 8)

if this is what is installed on the net book then installing flash and getting it to work might not be possible
that uname command should tell us ( and you )
hi johnvv, i got all the imfo up on my screen and there's rows and rows of jargon,do you need me to post it all word for word or is there something specific i need to look for and thus post.
 
Old 03-27-2011, 02:48 AM   #20
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by wildcat777 View Post
there was one line that had NOT FOUND in it was as Follows: libnssutil3.so => not found,that was the only line that had not found in.
The file libnssutil3.so is a dependency of Flash and needed for it to operate correctly. I did a quick search on the internet for you and it would seem that on Linpus, the name of the package that contains this file is 'nss'. Hence you should be able to type the following as root to download and install the nss package and resolve this issue:
Code:
yum install nss

Last edited by ruario; 03-27-2011 at 07:22 AM.
 
Old 03-27-2011, 03:09 AM   #21
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
we really DO need to know the operating system
because if it is "Linpus light" then that --- " yum install nss" -- will not work


linpus might not have removed this program
Code:
gnome-system-monitor
that will tell you

and so would "uname"
Code:
 uname -o
-- or --
uname -a
 
Old 03-27-2011, 04:14 AM   #22
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Linpus (including Lite) was forked from Fedora 8, so if there is no yum you could issue the following command as root instead:

Code:
rpm -Uvh ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/8/i386.newkey/nss-3.12.2.0-1.1.fc8.i386.rpm

Last edited by ruario; 03-27-2011 at 07:25 AM.
 
Old 03-27-2011, 09:13 AM   #23
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by ruario View Post
The file libnssutil3.so is a dependency of Flash and needed for it to operate correctly. I did a quick search on the internet for you and it would seem that on Linpus, the name of the package that contains this file is 'nss'. Hence you should be able to type the following as root to download and install the nss package and resolve this issue:
Code:
yum install nss
Hi ruario i did above it started searching for mirrors,it did this for about 5 minutes but kept getting messeage Error performing checksum trying other mirror,eventaully it stopped downloading and gave message Error:failure:repodata(then 2 rows of random numbers and letters)primary.sqlite.bz2 from development source no more mirrors to try.
 
Old 03-27-2011, 09:16 AM   #24
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by ruario View Post
Linpus (including Lite) was forked from Fedora 8, so if there is no yum you could issue the following command as root instead:

Code:
rpm -Uvh ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/8/i386.newkey/nss-3.12.2.0-1.1.fc8.i386.rpm
Hi again ruario i typed the above as instructed as root and got message Bash:rpm -uvh:command not found
 
Old 03-27-2011, 09:36 AM   #25
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by John VV View Post
we really DO need to know the operating system
because if it is "Linpus light" then that --- " yum install nss" -- will not work


linpus might not have removed this program
Code:
gnome-system-monitor
that will tell you

and so would "uname"
Code:
 uname -o
-- or --
uname -a
Hi johnvv 1st i typed in gnome system monitor and it brought up a menu with System/processes/resources/filesystems in it.
So i chose systems(hope that was the correct one)and heres what it said:
Local host:
Distributor id:n/a
release release n/a (codename:n/a)
kernal linux 2.623.9lw
Hardware: memory 492.9mib
Processor 0:intel(r) atom(tm) cpu n270 @1.60ghz:
Processor 1:intel(r) atom(tm) cpu n270 @1.60ghz:
System status: available disk space 3.1gib.
Ok then i exited the menu that gnome system monitor had feteched up and in terminal i typed in uname -o and got message
Gnu/linux. and when i typed in uname -a i got message
86 i136 Gnu/linux.

Last edited by wildcat777; 03-27-2011 at 09:49 AM.
 
Old 03-27-2011, 11:52 AM   #26
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by wildcat777 View Post
Hi again ruario i typed the above as instructed as root and got message Bash:rpm -uvh:command not found
Are you sure you typed this correctly. i.e. you didn't type rmp or some other variant. rpm is a standard command on Fedora based distros, so it would be very odd for it not to be present. I must admit I am slightly suspicious because your 'error' has a lower case 'u' and I asked that you type with an upper case 'U'. Typing exactly what I wrote is important so it would be best to copy and paste it.

Last edited by ruario; 03-27-2011 at 11:54 AM.
 
Old 03-27-2011, 12:00 PM   #27
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
also to help get the information that John VV requested, could you also type the following and report back the result:

Code:
cat /etc/linpus-release
 
Old 03-27-2011, 12:02 PM   #28
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Quote:
Originally Posted by wildcat777 View Post
Hi ruario i did above it started searching for mirrors,it did this for about 5 minutes but kept getting messeage Error performing checksum trying other mirror,eventaully it stopped downloading and gave message Error:failure:repodata(then 2 rows of random numbers and letters)primary.sqlite.bz2 from development source no more mirrors to try.
Where you connected to the internet when you did this? Because in case it wasn't clear. You need to be.
 
Old 03-27-2011, 12:25 PM   #29
wildcat777
LQ Newbie
 
Registered: Mar 2011
Posts: 12

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by ruario View Post
Are you sure you typed this correctly. i.e. you didn't type rmp or some other variant. rpm is a standard command on Fedora based distros, so it would be very odd for it not to be present. I must admit I am slightly suspicious because your 'error' has a lower case 'u' and I asked that you type with an upper case 'U'. Typing exactly what I wrote is important so it would be best to copy and paste it.
Hi ruario you were right i must have typed it wrong,anyway i copy and pasted it into the terminal whilst rooted and got following message:
Error:failed dependencies:
nspr=>4.7 is needed by nss-3.12.2.0-1.1.fc8.i386
In answer to your other questions. I was connected to the internet.
Also i copy and pasted that other command you asked me to do cat /etc/linpus-release it gave
Linpus linux lite
v 1.0.9.E
 
Old 03-27-2011, 01:26 PM   #30
ruario
Senior Member
 
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,557

Rep: Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761Reputation: 1761
Ok, then try this (as root):
Code:
rpm -Uvh ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/8/i386.newkey/nspr-4.7.3-1.fc8.i386.rpm
and if it works try the earlier command again
Code:
rpm -Uvh ftp://ftp.pbone.net/mirror/archive.fedoraproject.org/fedora/linux/updates/8/i386.newkey/nss-3.12.2.0-1.1.fc8.i386.rpm
 
  


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
install flashplayer 10?? ClayOgre Slackware 13 11-02-2009 04:59 AM
How do I install flashplayer 7 genuinefake Linux - Software 7 08-13-2006 08:39 PM
ho to install flashplayer howarddevore Ubuntu 5 12-07-2005 05:49 AM
Flashplayer install MRDucks Linux - Newbie 1 09-03-2005 08:46 PM
install flashplayer romcgill Linux - Software 8 03-22-2003 06:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:31 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