Raspbian: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Zeile 66: | Zeile 66: | ||
export LC_ALL=C | export LC_ALL=C | ||
</pre> | </pre> | ||
== Java == | |||
=== Java 11 === | |||
<pre> | |||
wget https://github.com/bell-sw/Liberica/releases/download/11.0.2/bellsoft-jdk11.0.2-linux-arm32-vfp-hflt.deb | |||
</pre> | |||
<pre> | |||
sudo apt-get install ./bellsoft-jdk11.0.2-linux-arm32-vfp-hflt.deb | |||
</pre> | |||
<pre> | |||
sudo update-alternatives --config javac | |||
sudo update-alternatives --config java | |||
</pre> | |||
==== Links ==== | |||
[http://hirt.se/blog/?p=1116 http://hirt.se/blog/?p=1116] | |||
== Links == | == Links == |
Version vom 5. Mai 2019, 18:57 Uhr
Installation
Voraussetzungen
Etcher muss installiert sein.
Download
wget https://downloads.raspberrypi.org/raspbian_latest
Konfiguration
sudo raspi-config
raspi-config ermöglicht unter anderem:
- Partition maximieren
- SSH erlauben
- Zeitzone anpassen
- Keyboard-Layout einstellen
Zeitzone ändern
sudo dpkg-reconfigure tzdata
Netzwerk
Werkzeuge
sudo apt-get update sudo apt-get install dnsutils
Konfigurationen
Allgemein
Externe USB-Festplatte (Raspbian)
Probleme
locale: Cannot set LC_ALL to default locale: No such file or directory
In .bashrc folgende Zeile hinzufügen:
export LC_ALL=C
Java
Java 11
wget https://github.com/bell-sw/Liberica/releases/download/11.0.2/bellsoft-jdk11.0.2-linux-arm32-vfp-hflt.deb
sudo apt-get install ./bellsoft-jdk11.0.2-linux-arm32-vfp-hflt.deb
sudo update-alternatives --config javac sudo update-alternatives --config java
Links
Links
https://www.elektronik-kompendium.de/sites/raspberry-pi/
http://www.netzmafia.de/skripten/hardware/RasPi/RasPi_Network.html
http://raspberrypiguide.de/howtos/ssh-zugriff-unter-raspbian-einrichten/
https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
https://www.raspberrypi.org/forums/viewtopic.php?p=855239#p855239
http://www.fabiandeitelhoff.de/2014/07/raspberry-pi-speicherplatz-der-sd-karte-ausnutzen/
Zurück zu Hauptseite