UDOO: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K (10 Versionen importiert) |
(Änderung 119 von Suelmann (Diskussion) rückgängig gemacht.) Markierung: Rückgängigmachung |
||
Zeile 6: | Zeile 6: | ||
== Webseiten == | == Webseiten == | ||
[http://www.udoo.org/ Homepage]<<BR>> | |||
[http://elinux.org/UDOO Wiki]<<BR>> | |||
[https://gist.github.com/2xyo/8519167 Kernel mit iptables]<<BR>> | |||
[https://eewiki.net/display/linuxonarm/UDOO Anleitung Installation]<<BR>> | |||
== Info == | == Info == | ||
=== Kernel bauen === | |||
<pre><nowiki> | |||
mount /data | |||
cd /data/home/src | |||
#git clone https://github.com/UDOOboard/Kernel_Unico kernel-unico | |||
cd kernel-unico | |||
make menuconfig | |||
make -j5 uImage modules | |||
make modules_install | |||
cp arch/arm/boot/uImage /boot/ | |||
</nowiki></pre> | |||
=== Kernel-Modul asix === | |||
Siehe http://plugable.com/2010/10/18/howto-asix-88178-usb-ethernet-adapter-on-ubuntu-10-10-linux<<BR>> | |||
Neue Version: http://www.asix.com.tw/FrootAttach/driver/AX88772C_772B_772A_760_772_178_LINUX_DRIVER_v4.13.0_Source.tar.bz2<<BR>> | |||
<pre><nowiki> | |||
cd /data/home/src/asix-4.13 | |||
make | |||
make install | |||
</nowiki></pre> | |||
=== Temparatur anzeigen === | === Temparatur anzeigen === | ||
Zeile 18: | Zeile 44: | ||
</nowiki></pre> | </nowiki></pre> | ||
=== Netzwerk === | |||
<pre><nowiki> | |||
speedometer -r ppp0 -t ppp0 | |||
pktstat -i eth0 -nt | |||
</nowiki></pre> | |||
---- | ---- | ||
[[KategorieWissen]] | [[KategorieWissen]] | ||
Aktuelle Version vom 20. Dezember 2021, 14:03 Uhr
UDOO
UDOO ist ein Hybrid-Rechner mit einem Dual- oder Quad-Core Cortex A9 und einem Aduino Due auf einem Board.
Webseiten
Homepage<
>
Wiki<
>
Kernel mit iptables<
>
Anleitung Installation<
>
Info
Kernel bauen
mount /data cd /data/home/src #git clone https://github.com/UDOOboard/Kernel_Unico kernel-unico cd kernel-unico make menuconfig make -j5 uImage modules make modules_install cp arch/arm/boot/uImage /boot/
Kernel-Modul asix
Siehe http://plugable.com/2010/10/18/howto-asix-88178-usb-ethernet-adapter-on-ubuntu-10-10-linux<
>
Neue Version: http://www.asix.com.tw/FrootAttach/driver/AX88772C_772B_772A_760_772_178_LINUX_DRIVER_v4.13.0_Source.tar.bz2<
>
cd /data/home/src/asix-4.13 make make install
Temparatur anzeigen
cat /sys/class/thermal/thermal_zone0/temp
Netzwerk
speedometer -r ppp0 -t ppp0 pktstat -i eth0 -nt