LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 04-24-2009, 07:10 PM   #16
dbpbandit
LQ Newbie
 
Registered: Apr 2009
Location: Oregon, USA
Distribution: Debian - Lenny
Posts: 10

Original Poster
Rep: Reputation: 0

OK, I did exactly what you said and added the deb http:// at the beginning. I got further this time but this is what I got and still cant do the apt-get install Flash?

debian:/home/davep# apt-get update
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny Release.gpg
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny/contrib Translation-en_US
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny/main Translation-en_US
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny Release
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny/contrib Packages/DiffIndex
Ign cdrom://[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54] lenny/main Packages/DiffIndex
Hit http://http.us.debian.org lenny Release.gpg
Ign http://http.us.debian.org lenny/main Translation-en_US
Get:1 http://gulus.usherbrooke.ca stable Release.gpg [197B]
Hit http://gulus.usherbrooke.ca stable/main Translation-en_US
Hit http://security.debian.org lenny/updates Release.gpg
Ign http://security.debian.org lenny/updates/contrib Translation-en_US
Hit http://gulus.usherbrooke.ca stable Release
Err http://gulus.usherbrooke.ca stable Release

Hit http://volatile.debian.org lenny/volatile Release.gpg
Ign http://volatile.debian.org lenny/volatile/contrib Translation-en_US
Ign http://volatile.debian.org lenny/volatile/main Translation-en_US
Ign http://security.debian.org lenny/updates/main Translation-en_US
Hit http://security.debian.org lenny/updates Release
Get:2 http://gulus.usherbrooke.ca stable Release [11.5kB]
Hit http://volatile.debian.org lenny/volatile Release
Ign http://security.debian.org lenny/updates/contrib Packages/DiffIndex
Hit http://http.us.debian.org lenny Release
Ign http://http.us.debian.org lenny/main Packages/DiffIndex
Ign http://security.debian.org lenny/updates/main Packages/DiffIndex
Ign http://security.debian.org lenny/updates/contrib Sources/DiffIndex
Ign http://security.debian.org lenny/updates/main Sources/DiffIndex
Ign http://gulus.usherbrooke.ca stable Release
Ign http://volatile.debian.org lenny/volatile/contrib Packages/DiffIndex
Hit http://http.us.debian.org lenny/main Packages
Hit http://gulus.usherbrooke.ca stable/main Packages/DiffIndex
Hit http://security.debian.org lenny/updates/contrib Packages
Ign http://volatile.debian.org lenny/volatile/main Packages/DiffIndex
Ign http://volatile.debian.org lenny/volatile/contrib Sources/DiffIndex
Ign http://volatile.debian.org lenny/volatile/main Sources/DiffIndex
Hit http://security.debian.org lenny/updates/main Packages
Hit http://security.debian.org lenny/updates/contrib Sources
Hit http://volatile.debian.org lenny/volatile/contrib Packages
Hit http://security.debian.org lenny/updates/main Sources
Hit http://volatile.debian.org lenny/volatile/main Packages
Hit http://volatile.debian.org lenny/volatile/contrib Sources
Hit http://volatile.debian.org lenny/volatile/main Sources
Fetched 11.7kB in 3s (3553B/s)
Reading package lists... Done
W: GPG error: http://gulus.usherbrooke.ca stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 07DC563D1F41B907
W: You may want to run apt-get update to correct these problems
debian:/home/davep#

Thanks...

-Dave
 
Old 04-25-2009, 12:28 AM   #17
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
W: GPG error: http://gulus.usherbrooke.ca stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 07DC563D1F41B907
W: You may want to run apt-get update to correct these problems
You need to add the signature

as root

Code:
apt-get install debian-archive-keyring
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 07DC563D1F41B907
gpg --armor --export 07DC563D1F41B907 | apt-key add -
then again
Code:
apt-get update
 
Old 04-27-2009, 12:24 PM   #18
dbpbandit
LQ Newbie
 
Registered: Apr 2009
Location: Oregon, USA
Distribution: Debian - Lenny
Posts: 10

Original Poster
Rep: Reputation: 0
This still isnt working, when i apt-get install flash I'm getting the same "couldn't find package". her is my "sources.list" file, does this look correct? Thanks...

#
deb cdrom:[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54]/ lenny contrib main

deb cdrom:[Debian GNU/Linux 5.0.0 _Lenny_ - Official i386 DVD Binary-1 20090214-16:54]/ lenny contrib main

deb http://security.debian.org/ lenny/updates contrib main
deb-src http://security.debian.org/ lenny/updates contrib main

deb http://volatile.debian.org/debian-volatile lenny/volatile contrib main
deb http://http.us.debian.org/debian/ lenny main
deb-src http://volatile.debian.org/debian-volatile lenny/volatile contrib main

# multimedia
deb http://gulus.usherbrooke.ca/pub/dist...an-multimedia/ stable main
 
Old 04-27-2009, 12:34 PM   #19
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
as root, run
Code:
synaptic
Then do a search for
Code:
sun-java
and install
 
Old 04-28-2009, 12:47 PM   #20
dbpbandit
LQ Newbie
 
Registered: Apr 2009
Location: Oregon, USA
Distribution: Debian - Lenny
Posts: 10

Original Poster
Rep: Reputation: 0
OK, sorry i didn't get back sooner but got busy. I did this but the only thing that comes out of the search for sun-java is Open Office....???? It sill wont get any of the apps...

-Dave
 
Old 04-28-2009, 07:25 PM   #21
stratotak
Member
 
Registered: Sep 2005
Distribution: Today Debian . Tomorrow ..??
Posts: 386

Rep: Reputation: 39
Well..first you might want to clean up your source list.At command line and as su
Code:
gedit  /etc/apt/sources.list
Then comment out the reference to the dvd's.
And instead of using the repo the was posted go to the http://debian-multimedia.org/
and choose a mirror near you..I believe that one you are using is in France or Belgium.when I clicked it..it looked french
You should get better download rates with a local mirror.
Your debian lenny repo's should have main contrib non-free like mine except mine is for Squeeze..this is just a example..
Code:
eb http://ftp.us.debian.org/debian/ squeeze main non-free contrib 
deb-src http://ftp.us.debian.org/debian/ squeeze main non-free contrib 

deb http://security.debian.org/ squeeze/updates main contrib non-free 
deb-src http://security.debian.org/ squeeze/updates main contrib non-free 

deb http://www.debian-multimedia.org/ testing main 


# Unstable Sid
# deb http://http.us.debian.org/debian/ unstable main contrib non-free  
# Unstable Sources
# deb-src http://http.us.debian.org/debian/ unstable main contrib non-free  

deb http://www.lamaresh.net/apt squeeze main
After getting your source list cleaned up do..
apt-get update
Since its lenny apt-get upgrade wont really be needed as software is froze in stable but you can still do it to see if anything comes up that is upgradeable.
And If not all ready...
apt-get install synaptic
Synaptic is a frontend to apt-get..Makes it easy for managing your software,install/uninstall/upgrades...
Then search for what you want..Java is starts of with Sun..so searching for Sun should bring it up..
Some app's that are there are Java ,Flash,realPlayer,Adobe Acrobat.For multimedia things like w32codecs,libdvdcss are required.

Last edited by stratotak; 04-28-2009 at 08:06 PM.
 
Old 04-28-2009, 07:49 PM   #22
stratotak
Member
 
Registered: Sep 2005
Distribution: Today Debian . Tomorrow ..??
Posts: 386

Rep: Reputation: 39
Ok.I just checked something out..Debian Multimedia doesnt have java in there repo.When ever I install debian one of the first things I do is add Debian Multimedia and wine repos to source list.So I always assumed java came from there repo.It is actually in the Debians non-free repo.So if your source list correct it should have it.I noticed you didnt have non-free in your source list..If you add that you should be able to apt-get update and search for sun and install it..Debian multimedia is still a good repo to have to get things like flash,w32codecs,libdvdcss...Also If you have already installed java and you want to install the debian package you should probably remove the version you installed..

Last edited by stratotak; 04-28-2009 at 07:59 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
I got error with this command 'java -jar NodeView-v1.1.jar' mohdismiaswaly Linux - Software 3 04-23-2009 06:24 AM
package java program into .jar file rabbit2345 Programming 4 01-23-2008 07:41 AM
How to run JAR from within Java program ?! EAD Programming 1 12-31-2006 07:11 PM
How jar java program? treotan Programming 3 09-08-2005 12:03 AM
Fedora Core 1 Associating .jar files with java -jar command pymehta Fedora 0 01-13-2005 05:26 AM

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

All times are GMT -5. The time now is 07:57 PM.

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