just got the hang of sudo nano in command line, that is my level of experience.
thanks
AndrewS wrote:I made a couple of little bash-scripts last night to make this easier, but all the rebooting corrupted my filesysytem so I lost my changes!I'll try to reproduce it for you again this evening.
sudo cp /boot/config.txt /boot/config_normal.txt
sudo cp /boot/config.txt /boot/config_emu.txt#!/bin/bash
if [[ $EUID -ne 0 ]]
then
echo "This tool must be run as root"
exit 1
fi
cp /boot/config_emu.txt /boot/config.txt
touch /boot/run_emu
sync
rebootsudo chmod +x /usr/bin/local/runemuif [ -f /boot/run_emu ]; then
cp /boot/config_normal.txt /boot/config.txt
rm /boot/run_emu
sync
fi