PDA

View Full Version : TYtool 5 , Please Help


davehazle
08-31-2002, 03:36 AM
I have installed and actualy USED this program , and then it just stopped working , i get



bash-2.02# /var/hack/tserver_mfs5
Doing the Lowest PriorityFix...
Priority set...
Waiting for an incomming connection!
SERVER: We got a message! buf = 'SHOWING'
sh: ./NowShowing.tcl: No such file or directory
Waiting for an incomming connection!


I am (of course) running XP Por, but it just seems strange that it stopped werking....

keith721
08-31-2002, 11:22 AM
TyTool expects the NowShowing.tcl file to be present in the same directory as the binary executable tserver_mfs5. make sure that both files are in the same directory, and both have executable permissions set:

bash-2.02# cd /hack/bin
bash-2.02# ls -al
total 1019
drwxr-xr-x 2 0 0 1024 Jul 27 17:29 .
drwxr-xr-x 5 0 0 1024 Apr 9 2001 ..
-rwxr-xr-x 1 0 0 14675 Jul 15 00:17 NowShowing.tcl
-rwxr-xr-x 1 0 0 47200 Jul 15 00:17 tserver_mfs5
bash-2.02#

since you're starting your tserver_mfs5 with an absolute path, it's looking for the NowShowing.tcl file in your current working directory. try changing your working directory to the path where both files are stored, and executing tserver_mfs5 without specifying an absolute path, like this:
bash-2.02# cd /var/hack/
bash-2.02# tserver_mfs5
Doing the Lowest PriorityFix...
Priority set...
Waiting for an incomming connection!
SERVER: We got a message! buf = 'SHOWING'