Skip to content

Troubleshooting

Joonas Trussmann edited this page Aug 3, 2022 · 28 revisions

If the services tab in configurator is blank

Try the following commands in cli:

opkg install --force-reinstall dinit
/opt/etc/init.d/S01dinit.sh start
opkg remove tweak-prevent-force-upgrade
reboot

When your Goggles boot slow or the GUI crashes every once in a while

Just update to the latest wtfos using configurator, the issue will be fixed automatically.

The following is here for reference purposes only.

There's an (unknown) issue that writes OSD stream data into gui translation files.

To disable this behavior, edit /system/gui/etc/diskorc.xml (eg with vi) and change

<parameter name="addtranslations" value="true"         />

to

<parameter name="addtranslations" value="false"         />

Use the following to restore the original files:

mkdir /tmp/systwo
mount -t ext4 /dev/block/platform/soc/f0000000.ahb/f0400000.dwmmc0/mirror/system_2 /tmp/systwo
cp /tmp/systwo/gui/lang/* /system/gui/lang/
sync
/system/bin/umount -d -l /system
sleep 1
/system/bin/mount -o rw,remount /system
sleep 1
cp /tmp/systwo/gui/lang/* /system/gui/lang/
sync
reboot