Reply
Thread Tools
kgingeri's Avatar
Posts: 26 | Thanked: 2 times | Joined on Nov 2007 @ Canada
#1
Hi all,

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
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#2
Don't use ChangeName, I tested it earlier and it looks like it will set the hotsync name in slightly the wrong place.

Hotsync should set the name itself. Try scratching the /home/user/.gvm directory and maybe also re-installing the gvm, to get an empty, clear non-named installation (this is to fix the slight damage that ChangeName did), then hotsync again with your Palmdesktop set up correctly with your intended hotsync name.
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 

The Following User Says Thank You to TA-t3 For This Useful Post:
kgingeri's Avatar
Posts: 26 | Thanked: 2 times | Joined on Nov 2007 @ Canada
#3
Thanks TA-t3, but it didn't work I uninstalled and made sure the .gvm folder was gone via xTerm (it was)).

I was getting complaints in the hotsync log about DocsToGo, so I created a new user, copied my Palm backup folder contents (less programs I wanted in GVM) and I got a sync. Oh yeah and I opened DocsToGo and told it not to do any syncing with the new user. I did have to restart GVM to see apps I could now launch (maybe there's a refresh somewhere?).

Now all that said, it won't let me register some apps cuz I hav a different user name, so I'll have to move aside my PC files create the same user name with apps I want, and then hotsync that folder - and then move back my Treo username when done. That should do it. I'll post back when I know...

Thanks Again!
Karl

Last edited by kgingeri; 2007-11-23 at 00:52.
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#4
That's great, thanks for posting! I haven't tried synching yet, I don't normally synch. But one of these days I'll probably try to see how the low-level pilot-link tools work (can't do that yet, I used to interact with the T3 through bluetooth but that's not an option with the gvm, and my computer isn't on the same wi-fi network as the N800).
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 
kgingeri's Avatar
Posts: 26 | Thanked: 2 times | Joined on Nov 2007 @ Canada
#5
Here's a bit of an update:
I am finding GVM to be very unstable I did get apps to register properly with my suggested procedure above but at times when I start GVM, it takes forever and I'm back at no apps but the defalts - like it reformats the memory. I'm reserving 64M and formatting it specifically. I am also loading some large ebook like files.

I have only gotten 1 successful Hotsync and only that after stripping out a wack of files, turning off the 'Backup' option in Hotsync (so apps just get installed and not backed up back to my PC).

Anyway the biggest grief is after all that work it doesn't seem reliable. I can work for a while and then booom - no apps at all ;(
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#6
That's very strange. What I see is that either the apps work, or they don't work at all. I haven't seen any corruption of the installed setup, save for my initial forays into applications needing mathlib.prc - that definitely locked everything down. Still, nothing like you describe.

It would be interesting to see if we have the same version - you mention "reserving 64MB", which doesn't seem to be an option for the version I have. Could you please try the following:
  1. Open an xterm
  2. Enter /usr/bin/gvm/gvm --help | head -1
My version prints 'Garnet (tm) VM v1.0 (Prod-Release) - Build 564139 (Nov 12 2007-17:46:49)'
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 
kgingeri's Avatar
Posts: 26 | Thanked: 2 times | Joined on Nov 2007 @ Canada
#7
Heres my info...

Garnet (tm) VM v1.0 (Prod-Release) - Build 564139 (Nov 12 2007-17:46:49)

Same as yours The 64M option is in the settings window - accessed from the Settings button. I have a ton of stuff loaded in my original PDA (Treo650) but I rebuilt a new user and and have yet to do another successful hotsync. I can do a partial one - enough to get my user name loaded (I think) - as I've at least gotten some apps registered now. This new setup is still very unstable. I have put together some scripts to backup everything as I loose it so often.

Here's my backup script (for those who may want it):

edited: sorry - looks like indentation gets lost in the HTML rendering

#!/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.
'
and here the restore script:

#!/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.
'
edited: OK I've edited this about 4 time now - anyway, I put these scripts in the .gvm directory so they get backed up along with other files - create the and do 'chmod a+x gvm-*' to make them executable, then run them using './gvm-bkup' - for those who may not know how to create shell scripts

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 GVM screen occasionally (at least 3 times this has happened) hangs up my entire N800 and I have to pull the battery to get it back!! I cannot get an xterm or any response whatsoever. Maybe if I waited hours - not sure - I've waited at least 15 minutes and then got impatient

It seems once I've installed stuff and am just running the emulator things are fairly stable - not sure I can trust it yet tho - time will tell.

BTW, I have very recently reflash back to OS2007 from a OS2008 trial on my N800,
unless that has something to do with it. I highly doubt it tho. Maybe I should try it running 2008 :P

Don't feel obligated to help TA-t3, it's not a critical issue - just kinda interesting.

Karl

Edited: Oh yeah one other thing... I noticed after one crash that the .gvm/gmv_settings file "storage Heap" value had gotten reset back to 16M. Changing that and reunning GVM got all my apps back. But this is not always the case - only happened once.
Also, my hotsync always chokes when backing up .prc apps - sync data ok.

Last edited by kgingeri; 2007-11-26 at 20:39.
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#8
Originally Posted by kgingeri View Post
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.
That _is_ interesting. I'm assuming you mean you have a Palm app running in the emulator and then you switch back to the launcher?

As for registrated applications - did you see my other posting about manually executing the emulator? http://internettablettalk.com/forums...147#post100147
It seems like it should be possible to do something like:
/usr/bin/gvm/gvm --hotsyncid=MyHotsyncName:1234 --appcreator=ABCD
where the :number is the numerical id (I'm not sure where to see that number on the Palm or desktop - I can see it when I connect to my T3 with the pilot-link tools). ABCD is the application ID which you can find with e.g. FileZ. In any case, without it you can still just click Home and switch to the (registered to your hotsync name) app from there. NB: I haven't tested this yet, just noticed the options.
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.

Last edited by TA-t3; 2007-11-27 at 12:17.
 

The Following User Says Thank You to TA-t3 For This Useful Post:
kgingeri's Avatar
Posts: 26 | Thanked: 2 times | Joined on Nov 2007 @ Canada
#9
Thanks for the other post,TA-t3, I was going to look into the direct launch thing and never got around to it. I figured it might be possible with command line args. I suppose we should formulate a .desktop file so people could put it right into their main menu (apps launcher) :P

And yes, I did mean if you run some other Palm app in the emulator - so you start GVM, launch an app, come back to GVM and do the installs while the app is running .

here's a thought related to your other post... I wonder if we could use a different ROM image file for GVM? Not likely, it looks like this one has special hooks and is trimmed down for reasons.
 
Posts: 5,335 | Thanked: 8,187 times | Joined on Mar 2007 @ Pennsylvania, USA
#10
Do those of you who are successfully syncing GarnetVM with HotSync on Window have both your N800 and your Windows computer in the same subnet? GarnetVM can't connect to my Windows desktop at work, and I'm trying to figure out why.
 
Reply

Tags
garnet, palm


 
Forum Jump


All times are GMT. The time now is 01:15.