Raspberry Pi: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| (2 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
== Links == | == Links == | ||
*[http://www.raspberrypi.org Raspberrypi.org] | *[http://www.raspberrypi.org Raspberrypi.org] | ||
*[http://www.raspbian.org Raspbian] | *[http://www.raspbian.org Raspbian], [http://www.linuxsystems.it/raspbian-wheezy-armhf-raspberry-pi-minimal-image Minimales Raspbian-Image] | ||
*[http://openelec.tv OpenElec] | *[http://openelec.tv OpenElec] | ||
*[http://www.forum-raspberrypi.de/Thread-tutorial-seafile-als-dropbox-und-owncloud-ersatz-auf-dem-pi-installieren Seafile auf dem Raspberry Pi] | *[http://www.forum-raspberrypi.de/Thread-tutorial-seafile-als-dropbox-und-owncloud-ersatz-auf-dem-pi-installieren Seafile auf dem Raspberry Pi] | ||
*[https://arkos.io arkOS] (noch sehr instabil) | *[https://arkos.io arkOS] (noch sehr instabil) | ||
== Installation Raspbian == | |||
=== Vorbereitung === | |||
* Raspbian Image herunterladen | |||
* Image auf SD-Karte kopieren | |||
=== Debian aktualisieren === | |||
<pre> | |||
# apt-get update | |||
# apt-get dist-upgrade | |||
</pre> | |||
=== System konfigurieren === | |||
<pre> | |||
# dpkg-reconfigure keyboard-configuration | |||
# dpkg-reconfigure locales | |||
# dpkg-reconfigure tzdata | |||
# passwd | |||
# reboot | |||
</pre> | |||
=== Systempartition expandieren === | |||
<pre> | |||
# cfdisk | |||
</pre> | |||
Partitionen 2 und 3 löschen, 2 neu erstellen (83, fast max), 3 neu erstellen (82, 100MB) | |||
<pre> | |||
# reboot | |||
# resize2fs /dev/mmcblk0p2 | |||
# mkswap /dev/mmcblk0p3 | |||
# swapon --all | |||
</pre> | |||
=== Pakete installieren === | |||
<pre> | |||
apt-get install ruby sqlite3 git apache2 php5 | |||
</pre> | |||
Aktuelle Version vom 22. September 2014, 21:39 Uhr
Links[Bearbeiten]
- Raspberrypi.org
- Raspbian, Minimales Raspbian-Image
- OpenElec
- Seafile auf dem Raspberry Pi
- arkOS (noch sehr instabil)
Installation Raspbian[Bearbeiten]
Vorbereitung[Bearbeiten]
- Raspbian Image herunterladen
- Image auf SD-Karte kopieren
Debian aktualisieren[Bearbeiten]
# apt-get update # apt-get dist-upgrade
System konfigurieren[Bearbeiten]
# dpkg-reconfigure keyboard-configuration # dpkg-reconfigure locales # dpkg-reconfigure tzdata # passwd # reboot
Systempartition expandieren[Bearbeiten]
# cfdisk
Partitionen 2 und 3 löschen, 2 neu erstellen (83, fast max), 3 neu erstellen (82, 100MB)
# reboot # resize2fs /dev/mmcblk0p2 # mkswap /dev/mmcblk0p3 # swapon --all
Pakete installieren[Bearbeiten]
apt-get install ruby sqlite3 git apache2 php5