test

PC 

Download a lite Raspbian image

https://www.raspberrypi.org/downloads/raspbian/

  für Raspberry 4 benötigst du mindestens Raspbian Buster Lite  
 mit Rufus, image file, auf sd Karte kopieren
  auf der SDH Karte ein file mit nur ssh  
  dann noch ein file  wpa_supplicant.conf
  mit folgendem Inhalt
country=ch
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="NETWORK-NAME"
    psk="NETWORK-PASSWORD"
}
  SD Karte ins Raspberry Pi einfügen  
  Raspberry Pi am Strom anschliessen  
  Beim DHCP Server überprüfen welche IP Adresse bezogen worden ist  
  oder mit einem LAN Scanner die IP Adresse suchen  
  Mit Teraterm oder Putty auf RaspberryPi verbinden  
  #  sudo -i  
#   apt update -y 
 #  apt install vim-nox -y
  #  echo set number >> ~/.vimrc  
#   vi /etc/hostname
#   vi /etc/hosts
#   vi /usr/local/bin/update

#!/bin/bash
clear
apt update -y && apt upgrade -y && apt-get autoremove -y
apt autoremove -y

clear
echo ---------------------------------
hostnamectl
echo - - - -
uptime -p
date +"%A %d. %B %Y | %T"
hostname -I
echo - - - -
dmesg | grep -i "Machine model" | awk '{print $5,$6,$7,$8.$9,$10,$11,$12,$13,$14,$15}'

cpu=$(</sys/class/thermal/thermal_zone0/temp)
echo "GPU => $(/opt/vc/bin/vcgencmd measure_temp)"
echo "CPU => $((cpu/1000))'C"
echo - - - -

#   chmod +x /usr/local/bin/update
# update
Gerät nach upgrade nochmals rebooten
  #  raspi-config möglich für weitere Config wenn gewünscht und nötig
     
     
     
   AND UPDATE TO Pixel Desktop   
  #   apt dist-upgrade  
  ?????      apt-get install raspberrypi-ui-mods  
  #   apt  install -y rpi-chromium-mods  
  #  apt   install -y python-sense-emu python3-sense-emu  
  #  apt  install -y python-sense-emu-doc realvnc-vnc-viewer  
  #  apt  install -y realvnc-vnc-server  
     
  #    raspi-config Now, enable VNC Server by doing the following:
5 Interface Option
P3 VNC
would you like to enable [yes]

3 Boot Option
B1 Desktop / CLI
B4 Desktop Autologin
     
     
 

Install Arduino IDE on your Raspberry Pi

 
  #   apt install -y arduino  
     
   

 

a b c d

Quellen/Source:

Raspberry Pi 4 USB Boot Config Guide for SSD / Flash Drives
raspberrypi.org | documentation | vnc
-
-
-
-
-
-
-