LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-18-2009, 04:27 AM   #1
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Rep: Reputation: 15
problem in galaxium instalition


hi i have problem in galaxium instalition i test this

open terminal and sudo gedit /etc/apt/sources.list

and added this

deb http://ppa.launchpad.net/galaxium/ubuntu hardy main
deb-src http://ppa.launchpad.net/galaxium/ubuntu hardy main

and saved file

sudo apt-get update

but in last update this proplem

Reading package lists... Done
W: GPG error: http://ppa.launchpad.net hardy Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 3E0219167854A3A9
W: You may want to run apt-get update to correct these problems

and sudo apt-get install galaxium

mesho@mesho-desktop:~/Desktop/galaxium-0.7.4.1$ sudo apt-get install galaxium
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package galaxium

thnxxxxxxxxx
 
Old 04-18-2009, 04:31 AM   #2
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:

Code:
apt-get install debian-archive-keyring
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg --armor --export 3E0219167854A3A9 | apt-key add -

apt-get update
apt-get install galaxium
 
Old 04-18-2009, 04:54 AM   #3
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
i will test now
 
Old 04-18-2009, 05:00 AM   #4
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
i added this in source.list
apt-get install debian-archive-keyring
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg --armor --export 3E0219167854A3A9 | apt-key add -

but this is problem
mesho@mesho-desktop:~$ apt-get update
E: Type 'apt-get' is not known on line 54 in source list /etc/apt/sources.list
 
Old 04-18-2009, 05:02 AM   #5
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
remember i have ubuntu 9.4
 
Old 04-18-2009, 05:04 AM   #6
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Hi,

You don't nee to add this to the sources list.
First remove the lines and safe the file.

Then open a terminal, and run the commands as root
They are needed to get and install the public key

Code:
sudo apt-get install debian-archive-keyring
sudo gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
Then run
Code:
sudo apt-get update
sudo apt-get install galaxium

You should see something like this

Code:
cannabis:/home/repo# gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg: requesting key 7854A3A9 from hkp server wwwkeys.eu.pgp.net
gpg: key 7854A3A9: public key "Launchpad PPA for Team Galaxium" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
cannabis:/home/repo# gpg --armor --export 3E0219167854A3A9 | apt-key add -
OK
cannabis:/home/repo#

Last edited by repo; 04-18-2009 at 05:07 AM.
 
Old 04-18-2009, 05:13 AM   #7
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
mesho@mesho-desktop:~$ sudo gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg: WARNING: unsafe ownership on configuration file `/home/mesho/.gnupg/gpg.conf'
gpg: external program calls are disabled due to unsafe options file permissions
gpg: keyserver communications error: general error
gpg: keyserver receive failed: general error

mesho@mesho-desktop:~$ sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
gpg: WARNING: unsafe ownership on configuration file `/home/mesho/.gnupg/gpg.conf'
gpg: WARNING: nothing exported
gpg: no valid OpenPGP data found.

mesho@mesho-desktop:~$ sudo apt-get install galaxium
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package galaxium
 
Old 04-18-2009, 05:22 AM   #8
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
try

Code:
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
 
Old 04-18-2009, 05:40 AM   #9
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
mesho@mesho-desktop:~$ gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg: requesting key 7854A3A9 from hkp server wwwkeys.eu.pgp.net
gpg: can't open `/home/mesho/.gnupg/pubring.gpg'
gpg: keydb_get_keyblock failed: eof
gpg: no writable keyring found: eof
gpg: error reading `[stream]': general error
gpg: Total number processed: 0
mesho@mesho-desktop:~$ sudo gpg --armor --export 3E0219167854A3A9 | apt-key add
 
Old 04-18-2009, 05:41 AM   #10
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
if u have this program .deb give me link
 
Old 04-18-2009, 05:45 AM   #11
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
try

Code:
sudo chown mesho /home/mesho/.gnupg/pubring.gpg
gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
sudo update
sudo install galaxium
 
Old 04-18-2009, 05:49 AM   #12
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
esho@mesho-desktop:~$ sudo chown mesho /home/mesho/.gnupg/pubring.gpg
mesho@mesho-desktop:~$ gpg --keyserver hkp://wwwkeys.eu.pgp.net --recv-keys 3E0219167854A3A9
gpg: requesting key 7854A3A9 from hkp server wwwkeys.eu.pgp.net
gpg: key 7854A3A9: "Launchpad PPA for Team Galaxium" not changed
gpg: Total number processed: 1
gpg: unchanged: 1
mesho@mesho-desktop:~$ sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
gpg: WARNING: unsafe ownership on configuration file `/home/mesho/.gnupg/gpg.conf'
gpg: no writable keyring found: eof
gpg: error reading `-': general error
gpg: import from `-' failed: general error
mesho@mesho-desktop:~$ sudo update
sudo: update: command not found
mesho@mesho-desktop:~$ sudo apt-get update
Hit http://eg.archive.ubuntu.com jaunty Release.gpg
Ign http://eg.archive.ubuntu.com jaunty/main Translation-en_US
Hit http://security.ubuntu.com jaunty-security Release.gpg
Ign http://security.ubuntu.com jaunty-security/main Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty/restricted Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty/universe Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty/multiverse Translation-en_US
Hit http://eg.archive.ubuntu.com jaunty-updates Release.gpg
Ign http://eg.archive.ubuntu.com jaunty-updates/main Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty-updates/restricted Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty-updates/universe Translation-en_US
Ign http://eg.archive.ubuntu.com jaunty-updates/multiverse Translation-en_US
Hit http://eg.archive.ubuntu.com jaunty Release
Ign http://security.ubuntu.com jaunty-security/restricted Translation-en_US
Ign http://security.ubuntu.com jaunty-security/universe Translation-en_US
Ign http://security.ubuntu.com jaunty-security/multiverse Translation-en_US
Hit http://security.ubuntu.com jaunty-security Release
Hit http://eg.archive.ubuntu.com jaunty-updates Release
Hit http://security.ubuntu.com jaunty-security/main Packages
Hit http://eg.archive.ubuntu.com jaunty/main Packages
Hit http://eg.archive.ubuntu.com jaunty/restricted Packages
Hit http://eg.archive.ubuntu.com jaunty/main Sources
Hit http://eg.archive.ubuntu.com jaunty/restricted Sources
Hit http://eg.archive.ubuntu.com jaunty/universe Packages
Hit http://security.ubuntu.com jaunty-security/restricted Packages
Hit http://security.ubuntu.com jaunty-security/main Sources
Hit http://security.ubuntu.com jaunty-security/restricted Sources
Hit http://security.ubuntu.com jaunty-security/universe Packages
Hit http://eg.archive.ubuntu.com jaunty/universe Sources
Hit http://eg.archive.ubuntu.com jaunty/multiverse Packages
Hit http://eg.archive.ubuntu.com jaunty/multiverse Sources
Hit http://eg.archive.ubuntu.com jaunty-updates/main Packages
Hit http://eg.archive.ubuntu.com jaunty-updates/restricted Packages
Hit http://eg.archive.ubuntu.com jaunty-updates/main Sources
Hit http://eg.archive.ubuntu.com jaunty-updates/restricted Sources
Hit http://eg.archive.ubuntu.com jaunty-updates/universe Packages
Hit http://eg.archive.ubuntu.com jaunty-updates/universe Sources
Hit http://eg.archive.ubuntu.com jaunty-updates/multiverse Packages
Hit http://security.ubuntu.com jaunty-security/universe Sources
Hit http://security.ubuntu.com jaunty-security/multiverse Packages
Hit http://eg.archive.ubuntu.com jaunty-updates/multiverse Sources
W: Failed to fetch http://security.ubuntu.com/ubuntu/di...curity/Release Unable to find expected entry multiverse-/source/Sources in Meta-index file (malformed Release file?)

E: Some index files failed to download, they have been ignored, or old ones used instead.
mesho@mesho-desktop:~$ sudo install galaxium
install: missing destination file operand after `galaxium'
Try `install --help' for more information.
 
Old 04-18-2009, 05:49 AM   #13
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
please send me u email in yahoo
 
Old 04-18-2009, 06:00 AM   #14
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
There is something wrong with the permissions of
/home/mesho/.gnupg/pubring.gpg

try

Code:
sudo chown root /home/mesho/.gnupg/pubring.gpg
sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
apt-get update
apt-get install galaxium
 
Old 04-18-2009, 06:03 AM   #15
mesho
LQ Newbie
 
Registered: Apr 2009
Posts: 28

Original Poster
Rep: Reputation: 15
mesho@mesho-desktop:~$ sudo chown root /home/mesho/.gnupg/pubring.gpg
mesho@mesho-desktop:~$ sudo gpg --armor --export 3E0219167854A3A9 | apt-key add -
gpg: WARNING: unsafe ownership on configuration file `/home/mesho/.gnupg/gpg.conf'
gpg: no writable keyring found: eof
gpg: error reading `-': general error
gpg: import from `-' failed: general error
 
  


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
Sound Card problem(every time i install linux i have diffirent hardware problem) jacka1l Linux - Newbie 7 08-11-2005 06:10 AM
Lan configuration problem - NFS boot problem - RX&TX packets errors 242VDM242 Linux - Networking 4 11-25-2004 01:35 PM
hi.. im new and having problem with prm instalition New In Linux 11 Linux - Software 4 07-23-2004 11:06 AM
perl problem? apache problem? cgi problem? WorldBuilder Linux - Software 1 09-17-2003 07:45 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

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