SparkyLinux Forums

General => General discussion => Topic started by: ocalasun on September 21, 2015, 09:43:50 PM

Title: Current repos
Post by: ocalasun on September 21, 2015, 09:43:50 PM
Greetings,
I've been gone for a while due to my laptop taking a fall, but I finally got around to fixing it. I would appreciate a listing of the current repos...it's been almost a year since I last updated and I get some failures when re-loading in synaptic.

Thanks

Btw it's nice to be back, unfortunately Sparky wouldn't run on my backup hardware.
Title: Re: Current repos
Post by: pavroo on September 21, 2015, 11:16:45 PM
Do you have up-to-date Sparky repository list?
It has been changed in February 2014.
The present one:
http://sparkylinux.org/wiki/doku.php/repository
Title: Re: Current repos
Post by: ocalasun on September 21, 2015, 11:53:10 PM
Thanks pavroo...that was the repo I had, however it was failing. Per your instructions I updated the key and it is still failing. Any ideas?

Thanks again
Title: Re: Current repos
Post by: pavroo on September 22, 2015, 01:11:24 PM
Show me:
cat /etc/apt/sources.list
cat /etc/apt/sources.list.d/sparky.list
ls /etc/apt/sources.list.d
apt-get update
Title: Re: Current repos
Post by: ocalasun on September 23, 2015, 01:43:25 PM
Here you go....thanks again for looking at this.
Greetings and have a nice day.

john@raptor:~$ cat /etc/apt/sources.list
deb http://ftp.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.debian.org/debian/ testing main contrib non-free
deb http://security.debian.org/ testing/updates main contrib non-free
deb-src http://security.debian.org/ testing/updates main contrib non-free
# deb http://www.deb-multimedia.org testing main non-free
# deb http://crawl.develz.org/debian crawl 0.15
deb http://sparkylinux.org/repo testing main


john@raptor:~$ cat /etc/apt/sources.list.d/sparky.list
## sparky
deb http://sparkylinux.org/repo testing main
# deb http://sparkylinux.org/repo e18 main


john@raptor:~$ ls /etc/apt/sources.list.d
boot-repair.list       opera.list             sparky.list
boot-repair.list.save  opera.list.save        sparky.list.save
google.list            playonlinux.list       virtualbox.list
google.list.save       playonlinux.list.save  virtualbox.list.save
liquorix.list          sid.list
liquorix.list.save     sid.list.save

john@raptor:~$ sudo apt-get update
Hit http://security.debian.org testing/updates InRelease
Hit http://ftp.debian.org testing InRelease                                   
Hit http://security.debian.org testing/updates/main Sources                   
Hit http://security.debian.org testing/updates/contrib Sources                 
Get:1 http://ftp.debian.org testing/main Sources/DiffIndex [7,876 B]
Hit http://security.debian.org testing/updates/non-free Sources               
Hit http://security.debian.org testing/updates/main amd64 Packages
Hit http://security.debian.org testing/updates/contrib amd64 Packages
Hit http://security.debian.org testing/updates/non-free amd64 Packages
Hit http://security.debian.org testing/updates/main i386 Packages
Hit http://security.debian.org testing/updates/contrib i386 Packages
Hit http://security.debian.org testing/updates/non-free i386 Packages
Hit http://security.debian.org testing/updates/contrib Translation-en
Hit http://security.debian.org testing/updates/main Translation-en
Hit http://security.debian.org testing/updates/non-free Translation-en
Hit http://sparkylinux.org testing InRelease   
Get:2 http://ftp.debian.org testing/contrib Sources/DiffIndex [7,819 B]
Get:3 http://ftp.debian.org testing/non-free Sources/DiffIndex [7,819 B]
Get:4 http://ftp.debian.org testing/main amd64 Packages/DiffIndex [7,876 B]
Get:5 http://ftp.debian.org testing/contrib amd64 Packages/DiffIndex [7,819 B]
Get:6 http://ftp.debian.org testing/non-free amd64 Packages/DiffIndex [7,819 B]
Get:7 http://ftp.debian.org testing/main i386 Packages/DiffIndex [7,876 B]
Get:8 http://ftp.debian.org testing/contrib i386 Packages/DiffIndex [7,819 B]
Hit http://sparkylinux.org testing/main amd64 Packages
Get:9 http://ftp.debian.org testing/non-free i386 Packages/DiffIndex [7,819 B]
Get:10 http://ftp.debian.org testing/contrib Translation-en/DiffIndex [5,749 B]
Get:11 http://ftp.debian.org testing/main Translation-en/DiffIndex [7,876 B]
Get:12 http://ftp.debian.org testing/non-free Translation-en/DiffIndex [6,715 B]
Hit http://sparkylinux.org testing/main i386 Packages
Ign http://sparkylinux.org testing/main Translation-en_US                     
Ign http://sparkylinux.org testing/main Translation-en                         
Fetched 90.9 kB in 6s (13.2 kB/s)                                             
Reading package lists... Done
W: There is no public key available for the following key IDs:
9D6D8F6BC857C906
W: There is no public key available for the following key IDs:
7638D0442B90D010
W: Duplicate sources.list entry http://sparkylinux.org/repo/ testing/main amd64 Packages (/var/lib/apt/lists/sparkylinux.org_repo_dists_testing_main_binary-amd64_Packages)
W: Duplicate sources.list entry http://sparkylinux.org/repo/ testing/main i386 Packages (/var/lib/apt/lists/sparkylinux.org_repo_dists_testing_main_binary-i386_Packages)
Title: Re: Current repos
Post by: pavroo on September 23, 2015, 04:36:34 PM
There are two issues:
1. You have duplicated sparky repos, so remove one of them:
sudo nano /etc/apt/sources.list
and remove:
deb http://sparkylinux.org/repo testing main
then save it 'Ctr' + 'o' and 'Ctr' + 'x'
2. Missing two public keys to be installed:
gpg --keyserver keys.gnupg.net --recv 9D6D8F6BC857C906
sudo gpg --export 9D6D8F6BC857C906 | apt-key add -

and
gpg --keyserver keys.gnupg.net --recv 7638D0442B90D010
sudo gpg --export 7638D0442B90D010 | apt-key add -

Then check it out:
sudo apt-get update
Title: Re: Current repos
Post by: ocalasun on September 23, 2015, 07:39:27 PM
Success!!
Thanks for taking the time to straighten that out for me, now I can do my updates.