[GRASSLIST:1448] mv: can't stat source(on GRASSLinks)

Dear GRASS Users:

I'm trying to make new location on GRASSLinks.
I done as following
1) I made directory "gamahara" for new location at /*/grasslinks/ .
2) I copied directory "grasslinks*" from "sample of spearfish" in "gamahara".
3) I modify some files for "gamahara" (grass.cmd .grassrc* GRASSlinks etc).

I executed GRASSLinks from web browser.
But GRASSLinks doesn't work.
In Apache error log
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks1/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks2/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks3/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks4/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks5/UNLOCK

I think that
in grasslinks/prog/grass.cmd
   if mv -f $location$locnumber/UNLOCK $location$locnumber/LOCK
doesn't return status value.

My question is
1. Why doesn't "mv" command return status value?
2. Which set up file did I mistake to write?

Please give me your suggestion.
Thank you in advance.
Sincerely yours.

----
Hayashi Shin-ichiro
mail:forest@bres.tsukuba.ac.jp URL:http://ryuiki.agbi.tsukuba.ac.jp/~forest
Watershed Management Lab., University of TSUKUBA

On Thu, Oct 09, 2003 at 07:14:19AM +0900, Hayashi Shin-ichiro wrote:

I executed GRASSLinks from web browser.
But GRASSLinks doesn't work.
In Apache error log
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks1/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks2/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks3/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks4/UNLOCK
mv: can't stat source /home/grass/grasslinks/gamahara/grasslinks5/UNLOCK

I think that
in grasslinks/prog/grass.cmd
   if mv -f $location$locnumber/UNLOCK $location$locnumber/LOCK
doesn't return status value.

My question is
1. Why doesn't "mv" command return status value?

Note that "stat" here means the unix system call stat()
which gets the file status. So mv basically cannot find or access
the file in question.

I don't know details about GRASSLinks, but maybe me hint
helps you to further analyse the situation.