This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
>From: "Thomas L. Mote" <address@hidden> >Organization: University of Georgia >Keywords: 200008241414.e7OEEjN11917 ldm-mcidas ROUTE.SYS BATCH McIDAS Tom, re: access as 'ldm' on sirocco. >I haven't changed the password since Anne took a look. > >I can take a look, but the paths are essentially the same >as on cacimbo (except the mcidas user is in /home/mcidas >rather than /unidata/home/mcidas). I took a quick look at ~ldm/decoders/bin/batch.k and found that /bin was not defined in PATH: PATH=${MCGUI}:/usr/X11R6/bin:/usr/bin:/usr/local/bin /bin is where 'sed' is found in Linux, so the following line was failing: command=`echo "$@" | sed 's/^BATCH/batch.k/'` I added /bin to PATH: PATH=${MCGUI}:/usr/X11R6/bin:/usr/bin:/usr/local/bin:/bin so the PostProcesses should start working now. Tom