This is experimental software and probably contains defects. It remains under development. When available, newer versions of tk5 will be made available for download at this web site.
View the installation notes for Tcl/Tk version 8.4. Download and install the free Tcl/Tk software from: http://downloads.activestate.com/ActiveTcl/Linux/8.4.1/ActiveTcl8.4.1.0-linux-ix86.tar.gz . (The file size is about 10.4 MB.)
mkdir /home/username/tk5
cd /home/username/tk5 tar -zxvf tk5-0.6.tgzThis will create a new subdirectory, named tk5.0.6 and place the files there.
tk5=/home/username/tk5/tk5.0.6 export tk5To make the change permanent, you must add the two lines above to your shell's profile, e.g., /home/username/.bash_profile if you use the bash shell.
For example, I use /dev/ttyS1 as the serial port to connect the radio. If I type in a console window:
ls -l /dev/ttyS1the output shows the permissions:
crw-rw-rw- 1 root uucp 4, 65 Aug 15 06:40 /dev/ttyS1Notice that /dev/ttyS1 is readable and writeable by everyone (user, group, and others).
Login as root or run the su program to assume root privileges. Then, change the permissions and exit.
chmod ugo+rw /dev/ttyS1 exit
Revised December 15, 2004