Updating Kodi from 14.2 to 16.2 on RBP 2
|
Posts: 26
Threads: 3
Joined: Oct 2015
Reputation:
2
[Not Solved]
Apr 26, 2016, 01:52 PM
(This post was last modified: Apr 26, 2016, 01:53 PM by DiscoSuperFly.)
Hi there!
Last year I used the HTPC Installer to create a Raspberry Pi 2 mediacentre. I was wondering if I could somehow update my Kodi version from 14.2 to 16.2. How would I go about this? Can I SSH into my Pi and just run some updates? I've checked in Kodi itself but there doesn't seem to be an option that allows me to update.
Thanks in Advance!
Jelle
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Not Solved]
Apr 26, 2016, 03:10 PM
(This post was last modified: Apr 26, 2016, 03:10 PM by Mike.)
Hi, the Installer relies on a repository to be updated with the latest version of Kodi. If the repository has been updated then this should get you the latest version
Code:
sudo apt-get update
sudo apt-get upgrade
Or
Code:
sudo apt-get dist-upgrade
Let us know how it goes
Posts: 26
Threads: 3
Joined: Oct 2015
Reputation:
2
[Not Solved]
Apr 27, 2016, 10:13 AM
(Apr 26, 2016, 03:10 PM)Mike Wrote: Hi, the Installer relies on a repository to be updated with the latest version of Kodi. If the repository has been updated then this should get you the latest version
Code:
sudo apt-get update
sudo apt-get upgrade
Or
Code:
sudo apt-get dist-upgrade
Let us know how it goes
Thx for the reply! I found the code sudo apt-get dist-upgrade on the forum already and ran it. This updated me from version 14.2 to 15.2 (as displayed in the system info tab in Kodi).
When running sudo apt-get update I get these errors at the end:
Code:
W: GPG error: http://debian.yeasoft.net wheezy InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 40FC0CD26BF18B15[/align]
W: Size of file /var/lib/apt/lists/partial/github.com_XavierBerger_RPi-Monitor-deb_raw_master_repo_Release.gpg is not what the server reported 473 152[/align]
W: Size of file /var/lib/apt/lists/partial/github.com_XavierBerger_RPi-Monitor-deb_raw_master_repo_Release is not what the server reported 1428 148[/align]
W: Size of file /var/lib/apt/lists/partial/github.com_XavierBerger_RPi-Monitor-deb_raw_master_repo_Packages.gz is not what the server reported 442 152[/align]
W: Failed to fetch http://debian.yeasoft.net/btsync/dists/wheezy/non-freedeb/binary-armhf/Packages 404 Not Found [IP: 77.232.232.105 80][/align]
W: Failed to fetch http://debian.yeasoft.net/btsync/dists/wheezy/http://debian.yeasoft.net/btsync/binary-armhf/Packages 404 Not Found [IP: 77.232.232.105 80][/align]
W: Failed to fetch http://debian.yeasoft.net/btsync/dists/wheezy/wheezy/binary-armhf/Packages 404 Not Found [IP: 77.232.232.105 80][/align]
E: Some index files failed to download. They have been ignored, or old ones used instead.[/align]
When I run sudo apt-get upgrade I get these errors:
Code:
W: Duplicate sources.list entry http://debian.yeasoft.net/btsync/ wheezy/main armhf Packages (/var/lib/apt/lists/debian.yeasoft.net_btsync_dists_wheezy_main_binary-armhf_Packages)
W: Duplicate sources.list entry http://debian.yeasoft.net/btsync/ wheezy/contrib armhf Packages (/var/lib/apt/lists/debian.yeasoft.net_btsync_dists_wheezy_contrib_binary-armhf_Packages)
W: You may want to run apt-get update to correct these problems
When I run Sudo apt-get dist-upgrade I get no errors and it doesn't really update anything:
Code:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Could you please elaborate on what is happening?
Thx in advance!
Jelle
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Not Solved]
Apr 27, 2016, 10:19 AM
Your sources file is malformed, the btsync repo is http://debian.yeasoft.net/btsync/dists/wheezy/
I don't use rpi-monitor but it looks like the GPG key isn't there or it needs to be redownloaded.
For Kodi try changing wheezy to jessie in this file
Code:
/etc/apt/sources.list.d/mene.list
Then sudo apt-get update and dist-upgrade again
Posts: 26
Threads: 3
Joined: Oct 2015
Reputation:
2
[Not Solved]
Apr 27, 2016, 11:00 AM
(Apr 27, 2016, 10:19 AM)Mike Wrote: Your sources file is malformed, the btsync repo is http://debian.yeasoft.net/btsync/dists/wheezy/
I don't use rpi-monitor but it looks like the GPG key isn't there or it needs to be redownloaded.
For Kodi try changing wheezy to jessie in this file
Code:
/etc/apt/sources.list.d/mene.list
Then sudo apt-get update and dist-upgrade again
Thanks for the quick reply!
I entered the code above and got this as a result:
Code:
root@raspberrypi:~# /etc/apt/sources.list.d/mene.list
-bash: /etc/apt/sources.list.d/mene.list: Permission denied
How do I go about this and get me some persmission?
Cheers,
Jelle
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Not Solved]
Apr 27, 2016, 11:02 AM
The magical sudo command meaning super user do, you can put it in front of any command and you will usually get the permission required.
Code:
sudo nano /etc/apt/sources.list.d/mene.list
Posts: 26
Threads: 3
Joined: Oct 2015
Reputation:
2
[Not Solved]
Apr 27, 2016, 11:36 AM
(Apr 27, 2016, 11:02 AM)Mike Wrote: The magical sudo command meaning super user do, you can put it in front of any command and you will usually get the permission required.
Code:
sudo nano /etc/apt/sources.list.d/mene.list
Thx. That worked. I changed the name from weezie to jessie
Code:
deb http://archive.mene.za.net/raspbian jessie contrib
Is there something I have todo with the new URL u posted? Because when I run the commands again I get the same errors.
Thanks for helping!
Jelle
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Not Solved]
Apr 29, 2016, 05:22 AM
Those other errors shouldn't affect any Kodi upgrade, they are just warnings that things won't be downloaded from those repositories.
You will need to edit the repository files or remove them. The main repository list is in this file
Code:
sudo nano /etc/apt/sources.list
Custom repository files are in here so you can edit them with nano and make any adjustments you need to
Code:
cd /etc/apt/sources.list.d/
Posts: 215
Threads: 25
Joined: Aug 2015
Reputation:
26
[Not Solved]
May 01, 2016, 08:34 PM
If you want to go to Kodi 16.1, http://pipplware.pplware.pt/ has a repo for it. I had it installed but for me I had the problem that it froze my library a couple times but a lot of people doesn't seem to have problems with it. To install it (only Jessie):
Code:
echo "deb http://pipplware.pplware.pt/pipplware/dists/jessie/main/binary /" | sudo tee /etc/apt/sources.list.d/mene.list
Code:
wget -O - http://pipplware.pplware.pt/pipplware/key.asc | sudo apt-key add -
Code:
sudo apt-get update && sudo apt-get dist-upgrade
And now you should have Kodi 16.1
That McNugget sauce. I want that Mulan McNugget sauce, Morty. That's my series arc, Morty! If it takes nine seasons!
Posts: 23
Threads: 4
Joined: Feb 2016
Reputation:
4
[Not Solved]
May 20, 2016, 08:14 AM
(May 01, 2016, 08:34 PM)Yveske Wrote: If you want to go to Kodi 16.1, http://pipplware.pplware.pt/ has a repo for it. I had it installed but for me I had the problem that it froze my library a couple times but a lot of people doesn't seem to have problems with it. To install it (only Jessie):
Code:
echo "deb http://pipplware.pplware.pt/pipplware/dists/jessie/main/binary /" | sudo tee /etc/apt/sources.list.d/mene.list
Code:
wget -O - http://pipplware.pplware.pt/pipplware/key.asc | sudo apt-key add -
Code:
sudo apt-get update && sudo apt-get dist-upgrade
And now you should have Kodi 16.1
b]Yveske - [/b]I - - [/b]I - [/b]I followed your advice above and upgraded to Kodi 16.1 - it seems to be working ok, but if I reboot - it does not start up automatically - I need to go through Putty and start Kodi. Do you have any idea on how to get it to start automatically once I reboot?
Thank you
|
|
|