moodLearning Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

raspbian-upgrade [2018/12/18 14:41]
serbizadmin
raspbian-upgrade [2020/06/13 15:10]
Line 1: Line 1:
-====== Raspbian Upgrade for eLib Box ====== 
  
-====== Upgrade====== 
-As it it, the Tambayayong eLib Box is released as a stand-alone deployment. No need for any upgrade with the OS. (The contents could be changed to suit the needs of partner schools.)  
-\\ 
-\\ 
-However, in certain cases (say, changing board to Raspberry Pi 3 Beta **Plus**) where a later system is needed, one may upgrade the OS. As of this writing, Raspbian "Jessie" (version 8) is used as default version of the operating system. Check if there's enough space on your microSD card. Also confirm version with 
-<code> 
-less /etc/os-release 
-</code> 
-To upgrade to the later version ("Stretch" as of this writing), connect the box to the internet via RJ-45 jack, and do 
-<code> 
-sudo apt-get update 
-sudo apt-get -y dist-upgrade 
-</code> 
-To ensure you have everything of the upgrade version, do 
-<code> 
-sudo apt-get update 
-sudo apt-get upgrade 
-</code> 
-Packages have to be upgraded as well, and they may have to be "forced" 
-<code> 
-sudo rpi-update 
-</code> 
-Edit  
-<code> 
-/etc/apt/sources.list 
-/etc/apt/sources.list.d/raspi.list 
-</code> 
-to ensure "stretch" is indicated. For instance, 
-<code> 
-deb http://archive.raspberrypi.org/debian stretch main ui 
-</code> 
-You may have to remove the changelog 
-<code> 
-sudo apt-get remove apt-listchanges 
-</code> 
-for faster upgrade. 
-\\ 
-\\ 
-Repeat the update/upgrade routine. Once done, clean up: 
-<code> 
-sudo apt-get autoremove -y 
-sudo apt-get autoclean 
-</code> 
-Then reboot. 
-\\