9e9a63ea1a
Update startBrowser x MON PI
16 lines
359 B
Bash
Executable File
16 lines
359 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# installazione log2ram, vedere https://wiki.steamware.net/doku.php?id=software_prodotto:mapo:mapo_raspberry#fix_logging_su_ram_x_preservare_sd
|
|
|
|
cd /usr/src
|
|
git clone https://github.com/azlux/log2ram.git
|
|
cd log2ram
|
|
chmod +x install.sh
|
|
./install.sh
|
|
|
|
# cambio conf 40M --> 128M
|
|
sed -i -e 's/40M/128M/g' /etc/log2ram.conf
|
|
|
|
# riavvio sistema
|
|
reboot
|