Skip to content

Instantly share code, notes, and snippets.

View bachkukkik's full-sized avatar
:octocat:
Unable to comply, building in progress

Bachkukkik bachkukkik

:octocat:
Unable to comply, building in progress
View GitHub Profile

Ref: https://www.makeuseof.com/tag/raspberry-pi-update-raspbian-os/

  • Begin by updating the repository package list: sudo apt-get update && sudo apt-get upgrade
  • When this is done, run the upgrade command: sudo apt-get dist-upgrade
  • Follow any prompts and wait for the Pi to be upgraded. When you’re done, type: sudo apt-get clean
  • This will discard any unneeded files that have been downloaded as part of the upgrade. Finish by restarting: sudo reboot
@bachkukkik
bachkukkik / macos_raspi_backup_clone.md
Last active May 31, 2020 07:48
MacOS Terminal for Backup and clone raspberry pi SD Card

Backup Procedure:

Check disk -> unmount disk -> Backup SD Card -> Eject

Clone Procedure:

Check disk -> unmount disk -> Format card -> unmount disk -> Clone SD Card -> Eject

MacOS Command Line

  • Check disk diskutil list

  • unmount disk sudo diskutil unmountDisk /dev/disk4

@bachkukkik
bachkukkik / octave.md
Created July 31, 2016 12:34 — forked from obstschale/octave.md
An Octave introduction cheat sheet.

Octave CheatSheet

GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)

Basics

  • not equal ~=
  • logical AND &&