Hello Rich
By default, /home is backed up, as is everything under /home , unless excluded by .xfiletool.lst.
Agreed, or by "home=" bootcode and removing home from backup.. but that's one of the beauties of TinyCore, there are various methods to achieve persistence
What I should have said was "As long as you have persistence to ensure the contents of .Xd will be present on reboot"
Also if we need to wait for a wifi connection before running Free RDP then perhaps a script to launch FreeRDP after testing for a wifi connection
I use something more elaborate, but something as simple as
a script named launchFreeRDP
#!/bin/sh
CARRIER=0
DEVICE=$(iwconfig 2>/dev/null | awk '{if (NR==1)print $1}')
while [ "$CARRIER" = 0 ]; do
sleep 2
CARRIER=$(cat /sys/class/net/$DEVICE/carrier)
done
" FreeRDP launch command here "
exit
should suffice right?
the above script could be placed in /home/tc/scripts
called from a file /home/tc/.Xd/RDP with the entry " /home/tc/scripts/launchFreeRDP "