rpi_common

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revisionBoth sides next revision
rpi_common [2019/04/21 16:02] โ€“ [General Things on Raspbian] Jรบne Parkrpi_common [2020/02/10 18:47] โ€“ [Upgrade Raspbian from Jessie to Stretch] Jรบne Park
Line 89: Line 89:
   * Change proper configuration with editing ''/etc/network/interfaces''    * Change proper configuration with editing ''/etc/network/interfaces'' 
  
-{{fa>warning?color=#000000}} Since ''Stretch'', ''/etc/network/interfaces'' is not useless unless stop ''dhcpcd'' service. Use ''/etc/dhcpcd.conf'' instead. +{{fa>warning?size=16&color=#b84592}} Since ''Stretch'', ''/etc/network/interfaces'' is not useless unless stop ''dhcpcd'' service. Use ''/etc/dhcpcd.conf'' instead. 
  
 <code ini> <code ini>
Line 227: Line 227:
 sudo vi /etc/apt/source.lists  sudo vi /etc/apt/source.lists 
 </code>  </code> 
 +
 +Remove downloaded repository information from the ''/var/lib/apt/lists/'' directory.
 +
 +<code bash>
 +sudo rm -rf /var/lib/apt/lists/*
 +</code>
  
 Change mirror address seemingly to be fast.  Change mirror address seemingly to be fast. 
Line 271: Line 277:
  
 ---- ----
 +
 +==== Upgrade Raspbian from Stretch to Buster ==== 
 +
 +Preparing upgrade with keeping up latest 
 +
 +<code bash> 
 +sudo apt update 
 +sudo apt dist-upgrade -y 
 +</code> 
 +
 +Update Raspberry Pi's firmware, 
 +
 +<code bash> 
 +sudo rpi-update 
 +</code> 
 +
 +After rebooting, modify source list with ''buster'' Edit ''/etc/apt/source.list 
 +
 +<code apt>
 +deb http://raspbian.raspberrypi.org/raspbian/ buster main contrib non-free rpi
 +</code> 
 +
 +Edit ''/etc/apt/sources.list.d/raspi.list'' 
 +
 +<code apt> 
 +deb http://archive.raspberrypi.org/debian/ buster main
 +</code> 
 +
 +To optimize upgrading process, remove ''apt-listchanges'' package 
 +
 +<code bash> 
 +sudo apt-get remove apt-listchanges
 +</code> 
 +
 +
 +----
 +
 ==== Customize login messages ====  ==== Customize login messages ==== 
  
  • rpi_common
  • Last modified: 2024/04/18 08:52
  • by Jรบne Park