Hi -- Did all of the other rpms install correctly before you tried the tinyos 1.1.0?
The tinyos 1.1.0 rpm does compile the java tools after it installs. This would be the only thing that might take some time, but 4 hours is not expected :) . As for the applet error, not sure -- while it doesn't have anything to do with the TinyOS rpm, it might be a side effect of whatever is going wrong with the rpm system when you're installing. I can think of two suggestions: if the other rpms installed, manually do the tinyos installation yourself. The second option is to try a more up-to-date rpm (we're up to 1.1.14) (the tradeoff is that you'll get more up-to-date code, but some things could be considered 'bleeding edge'.) The tinyos 1.1.0 rpm does two things: puts the tinyos source tree on your machine, and compiles the java tools that comprise part of the tinyos sdk. If the other rpms installed correctly, you might try just pulling the tinyos source down, and compiling the tools yourself (cd tools; make). You can get the source from sourceforge or, easier, you can get it from the tinyos web site http://www.tinyos.net/dist-1.1.0/tinyos/source/ The last thing that the tinyos 1.1.0 rpm does is set up a tinyos.sh in your /etc/profile.d script space (we have changed this procedure, however, since it could cause problems in some circumstances) to set up your environment. I put a copy of the script below. If you run that script, you should be able to compile the java tools yourself. -kw TOSROOT="<where-my-tinyos-is>/tinyos-1.x" export TOSROOT TOSDIR="$TOSROOT/tos" export TOSDIR CLASSPATH=`$TOSROOT/tools/java/javapath` export CLASSPATH MAKERULES="$TOSROOT/tools/make/Makerules" export MAKERULES # Extend path for java type java >/dev/null 2>/dev/null || PATH=`/usr/local/bin/locate-jre --java`:$PATH type javac >/dev/null 2>/dev/null || PATH=`/usr/local/bin/locate-jre --javac`:$PATH echo $PATH | grep -q /usr/local/bin || PATH=/usr/local/bin:$PATH -kw On 11/28/05, 泽 江 <[EMAIL PROTECTED]> wrote: > hi,everyone > Thanks those who give me the answer about why can not install tinyos in > fedora core 4 asked yesterday. > But I still have a even more puzzle question:because I can not install the > tinyos in fedora core 4,so today I installed the redhat linux 9.I think all > the instructions on the > websites:http://www.tinyos.net/tinyos-1.x/doc/install.html > take redhat 9 as an example and all the files mentioned in the instructions > should work properly in redhat 9. > But, after I finished the redhat 9 and the preinstalled packages > installation, The tinyos-1.1.0-1.noarch.rpm still use 4 hours and did not > stop. In attention, there is a popup message:the "notification-area-applet" > process had crashed. > I cannot understand why all the files work well in other people's > machines,but can not work in my computer? > I think perhaps there are two differences about my machine:The P4's > multi-process technolo! gy(I do not know whether it is called so,but the > linux kernel installed in my machine all have a smp postfix),and the other > difference it my linux OS's language is chinese. > Is there anybody can give me an advise on how can I do now? Is the > http://www.tinyos.net/dist-1.2.0/tools/linux/ 's package > work ? > I want to try again on fedora core 4 use these1.2 package and > tinyos-1.1.14Jul2005cvs-1.noarch.rpm ,I do not know how I > should do? > Thanks all the reply and all the people read this!! > I apology again for my poor english:) > > > ________________________________ > 雅虎免费G邮箱-中国第一绝无垃圾邮件骚扰超大邮箱 > 雅虎助手¨D搜索、杀毒、防骚扰 > > > _______________________________________________ > Tinyos-help mailing list > [email protected] > https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help > > > _______________________________________________ Tinyos-help mailing list [email protected] https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help
