Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen Revision Vorhergehende Überarbeitung Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
it:linux:raspberry_pi4 [2024/03/03 09:23] – [MCR 9.14 installieren] admin | it:linux:raspberry_pi4 [2024/08/28 12:37] (aktuell) – admin | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
====== Raspberry PI4 ====== | ====== Raspberry PI4 ====== | ||
+ | ===== Overclock ===== | ||
+ | <code bash> | ||
+ | over_voltage=8 | ||
+ | arm_freq=2147 | ||
+ | gpu_freq=750" | ||
+ | </ | ||
+ | |||
===== Matlab x86/amd64 binary auf raspberry ausfuehren ===== | ===== Matlab x86/amd64 binary auf raspberry ausfuehren ===== | ||
- | Getestet mit Matlab 2023a. | + | Getestet mit Matlab 2023a auf raspbian lite 64bit. |
==== Mittels debootstrap eine amd64 Umgebung erstellen ==== | ==== Mittels debootstrap eine amd64 Umgebung erstellen ==== | ||
- | <code bash> | + | <code bash> |
+ | apt-get -y install qemu-user qemu-user-static binfmt-support debootstrap binutils | ||
mkdir emu | mkdir emu | ||
debootstrap --foreign --arch amd64 bookworm emu http:// | debootstrap --foreign --arch amd64 bookworm emu http:// | ||
- | cp / | ||
cp /etc/passwd emu/ | cp /etc/passwd emu/ | ||
Zeile 17: | Zeile 24: | ||
mount -t proc /proc $dir/proc/ | mount -t proc /proc $dir/proc/ | ||
mount --bind /dev $dir/dev/ | mount --bind /dev $dir/dev/ | ||
- | mount --bind /dev/pts $dir/ | + | #mount --bind /dev/pts $dir/ |
mount --bind /dev/shm $dir/ | mount --bind /dev/shm $dir/ | ||
Zeile 25: | Zeile 32: | ||
==== Abhaengigkeiten in chroot installieren ==== | ==== Abhaengigkeiten in chroot installieren ==== | ||
<code bash> | <code bash> | ||
- | apt-get install unzip gawk libgl-dev libxt6 | + | apt-get |
+ | apt-get -y install unzip gawk libgl-dev libxt6 | ||
</ | </ | ||
+ | |||
+ | ==== Python installieren ==== | ||
+ | <code bash> | ||
+ | wget https:// | ||
+ | tar -xvzf Python-3.10.10.tgz | ||
+ | cd Python-3.10.30 | ||
+ | ./configure --enable-optimizations --enable-shared | ||
+ | make && make install | ||
+ | </ | ||
+ | |||
==== MCR 9.14 in chroot installieren ==== | ==== MCR 9.14 in chroot installieren ==== | ||
Zeile 33: | Zeile 51: | ||
wget " | wget " | ||
unzip MATLAB_Runtime_R2023a_Update_6_glnxa64.zip | unzip MATLAB_Runtime_R2023a_Update_6_glnxa64.zip | ||
- | ./install | + | ./ |
</ | </ | ||
==== / | ==== / | ||
- | In chroot | + | In chroot |
<code bash> | <code bash> | ||
export LD_LIBRARY_PATH=/ | export LD_LIBRARY_PATH=/ |