![]() |
2007-11-20
, 11:53
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#2
|
The Following User Says Thank You to TA-t3 For This Useful Post: | ||
![]() |
2007-11-23
, 00:49
|
|
Posts: 26 |
Thanked: 2 times |
Joined on Nov 2007
@ Canada
|
#3
|
![]() |
2007-11-23
, 11:36
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#4
|
![]() |
2007-11-23
, 16:21
|
|
Posts: 26 |
Thanked: 2 times |
Joined on Nov 2007
@ Canada
|
#5
|
![]() |
2007-11-26
, 11:28
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#6
|
![]() |
2007-11-26
, 20:27
|
|
Posts: 26 |
Thanked: 2 times |
Joined on Nov 2007
@ Canada
|
#7
|
#!/bin/sh
# gvm-bkup for GarnetVM
#
DEST=/media/mmc1/GVMFiles
if [ -d $DEST ]
then
echo
else
mkdir $DEST
fi
echo -n "Backing up GarnetVM files to [$DEST]:
Are you sure!? (y/[n]): "
read RSP
if [ $RSP"es" != 'yes' ]
then
echo "
OK, Nothing done.
"
exit
fi
cd ~/.gvm
for SRC in *
do
echo ' '$SRC' to '$DEST'...'
cp -rf $SRC $DEST
done
echo '
All done.
'
#!/bin/sh
# gvm-rstor for GarnetVM
#
SRC=/media/mmc1/GVMFiles
DEST=~/.gvm
if [ -d $SRC ]
then
echo
else
echo 'No backup directory found!'
exit
fi
echo -n "Restoring GarnetVM files from $SRC.
Are you sure!? (y/[n]): "
read RSP
if [ $RSP"es" != 'yes' ]
then
echo "
OK, Nothing done.
"
exit
fi
for SFILE in $SRC/*
do
echo ' Restoring '$SFILE'...'
cp -rf $SFILE $DEST/
done
echo '
Restore complete.
'
![]() |
2007-11-27
, 12:14
|
Posts: 3,841 |
Thanked: 1,079 times |
Joined on Nov 2006
|
#8
|
Here another VERY INTERESTING THING! I was hand installing everything because I couldn't Hotsync and discovered that if I have the emulator running the installs and refresh are almost instant as opposed to installing without the Palm emulator started, just in GVM. I initially figured it would be better to install apps in GVM without the emulator actually running as it may lock files etc - but I guess not.
The Following User Says Thank You to TA-t3 For This Useful Post: | ||
![]() |
2007-11-27
, 16:30
|
|
Posts: 26 |
Thanked: 2 times |
Joined on Nov 2007
@ Canada
|
#9
|
![]() |
2007-11-29
, 15:11
|
Posts: 5,335 |
Thanked: 8,187 times |
Joined on Mar 2007
@ Pennsylvania, USA
|
#10
|
I am having issues get my files to sync and am not able to register my Palm programs either. Hotsync happens but nothing changes in GVM.
It seems my Username and ID (numeric value) are not registering in GVM. I downloaded ChangeName and installed it but noticed that a registration screen from Dragonedit still doesn't show my Username in GVM.
Any thought or ideas?
ChangeName download link