Raspbian: Difference between revisions

From DaqWiki
Jump to navigation Jump to search
 
(15 intermediate revisions by the same user not shown)
Line 4: Line 4:


* https://www.raspberrypi.org/software/operating-systems/
* https://www.raspberrypi.org/software/operating-systems/
== Versions ==
* buster is debian 10
* bullseye is debian 11


== Install ==
== Install ==


* boot from SD flash, follow stock documention
* boot from SD flash, follow stock documention:
* boot from network  
** unzip 2021-10-30-raspios-bullseye-armhf-lite.zip into a .img
** dd of=/dev/sda if=2021-10-30-raspios-bullseye-armhf-lite.img bs=1024k status=progress
** boot from flash
** user pi password raspberry
** run rasp[i-config to enable US locale and US keyboard
** ifconfig -a to capture mac address, enter into dhcp, plug ethernet cable
** apt update; apt upgrade
** passwd pi change default password
** systemctl enable ssh; systemctl start ssh
** login remotely, run the ubuntu (debian 11) installation checklist
* boot from network
** TBD


== Post install ==
== "lite" image enable graphics ==


* install missing packages
<pre>
<pre>
apt get install emacs-nox git
apt -y install mate-desktop mate-core mate-themes mate-desktop-environment mate-applets --fix-missing
apt -y install lightdm lightdm-gtk-greeter
systemctl enable lightdm
systemctl start lightdm
</pre>
</pre>


== General things ==
== "lite" image missing packages ==


* follow the installation checklist for [[Ubuntu]]
<pre>
apt -y install git emacs lm-sensors # system
apt -y install cmake libcurl4-openssl-dev mariadb-client libmariadb-dev libsqlite3-dev # midas
apt -y install chromium-browser # arm version of google-chrome
</pre>


== ZZZ ==
== ZZZ ==

Latest revision as of 20:01, 23 December 2021

Raspbian OS

Links

Versions

  • buster is debian 10
  • bullseye is debian 11

Install

  • boot from SD flash, follow stock documention:
    • unzip 2021-10-30-raspios-bullseye-armhf-lite.zip into a .img
    • dd of=/dev/sda if=2021-10-30-raspios-bullseye-armhf-lite.img bs=1024k status=progress
    • boot from flash
    • user pi password raspberry
    • run rasp[i-config to enable US locale and US keyboard
    • ifconfig -a to capture mac address, enter into dhcp, plug ethernet cable
    • apt update; apt upgrade
    • passwd pi change default password
    • systemctl enable ssh; systemctl start ssh
    • login remotely, run the ubuntu (debian 11) installation checklist
  • boot from network
    • TBD

"lite" image enable graphics

apt -y install mate-desktop mate-core mate-themes mate-desktop-environment mate-applets --fix-missing
apt -y install lightdm lightdm-gtk-greeter
systemctl enable lightdm
systemctl start lightdm

"lite" image missing packages

apt -y install git emacs lm-sensors # system
apt -y install cmake libcurl4-openssl-dev mariadb-client libmariadb-dev libsqlite3-dev # midas
apt -y install chromium-browser # arm version of google-chrome

ZZZ