<?xml version="1.0"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
		<channel><title>[ISyE Helpdesk] Recently Added Articles</title><link>http://www.isye.gatech.edu/helpdesk/rss/kb/new_articles</link><description></description><item><title>Why did my job die?</title><description>&lt;p&gt;There is no limit to the number of jobs you can submit.  If there are no resources to run jobs, they will simply wait in the queue until resources are made available.  There are a number of reasons jobs might be killed.  The most common reason is that a job used more memory than was available on the machine.  When this happens, the job will be killed in order to preserve the usability of the system.  In addition, the job would most likely not have completed in a reasonable amount of time due to swapping to disk, having used up all available physical memory.  Another possible reason is that the job ran on a private node and the owner logged in or submitted a job to that node.  Private nodes, when not in use by their owners, are in the general cluster.  When a node's owner logs into it, or submits jobs to it, community jobs on the node will be pre-empted in favor of the owner's jobs.  The final reason for a job being killed is that a parallel job was submitted and your job was running on the boyles/wilkins and took longer than 5 calendar days to complete.  These are the parallel machines and will kill serial jobs in favor of a parallel job, but they do have a grace period of 5 calendar days in order to allow the serial jobs to try to reach completion.&lt;/p&gt;

&lt;p&gt;You can see your job history with the condor_history command.  Like so:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;condor_history &amp;lt;username&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;You can then see the specifics about the job using the -long modifier with the job number.  e.g.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;condor_history -long &amp;lt;jobID&amp;gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;That's the first place to start.&lt;/p&gt;

&lt;p&gt;There is also the log in /tmp.  That gives some very basic info about job statuses.&lt;/p&gt;

&lt;p&gt;If you find more specific details, I may be able to help you interpret them.&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/119</link><pubDate>Wed, 24 Apr 2013 12:58:49 GMT</pubDate><guid isPermaLink="false">b8e7cd422cfe0f51e286a2dc38efb20b</guid></item><item><title>Tracking time in condor</title><description>&lt;p&gt;Condor tracks a number of different elapsed time counters.  This page details the different time counters that condor maintains.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://research.cs.wisc.edu/htcondor/manual/v7.6/2_6Managing_Job.html" title="http://research.cs.wisc.edu/htcondor/manual/v7.6/2_6Managing_Job.html"&gt;http://research.cs.wisc.edu/htcondor/manual/v7.6/2&lt;em&gt;6Managing&lt;/em&gt;Job.html&lt;/a&gt;&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/118</link><pubDate>Mon, 25 Feb 2013 02:11:52 GMT</pubDate><guid isPermaLink="false">b7d50c004df7e5d333823f9eea7ddcd7</guid></item><item><title>Why is my job stuck in idle?</title><description>&lt;p&gt;There are any number of reasons a job can remain idle. The first thing to do is check the job's output files, then use the command "condor_q -l" to get a long format job listing.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;One common reason for idle jobs is running out of memory, which is usually due to memory leaks. The condor_q -l output contains the "ImageSize" attribute, expressed in KB. If this amount is larger than 12000000 (12GB) then you know you have a problem; and it could be a problem even at "only" 8GB.&lt;/p&gt;&#xD;
&#xD;
For more detailed information, please see the appropriate section of the condorHT manual &lt;a href="http://research.cs.wisc.edu/htcondor/manual/v7.9/2_6Managing_Job.html#SECTION00365000000000000000"&gt;2.6.5 Why is the job not running?&lt;/a&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/117</link><pubDate>Mon, 25 Feb 2013 13:39:34 GMT</pubDate><guid isPermaLink="false">b6f4b8a9d1c99303c430e11580e5fe35</guid></item><item><title>Running out of memory</title><description>&lt;p&gt;Most of the time, if a program is compiled in C and it is using an unusually large amount of memory, then there is a memory leak. Unless you have some specific reason to expect a very large data set in memory, you should first attempt to find the memory leak.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;In most cases, there are techniques you can utilize to optimize your code and reduce your memory footprint.  You might also need to change your strategy for handling your computations.  Perhaps you can slice your dataset and run more smaller jobs to achieve your results.  This is going to give you much more redundancy and a better chance of completing your work, simply because you'll be less vulnerable to losing a lot of work when one job is somehow killed.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;It is not unreasonable to need more than a couple of GB of memory these days, especially if you are using Matlab or another product which can add a fair amount of overhead.  In those cases, you should run a test job to determine the size of your memory footprint.  Run a job and then use the condor_history -long command to view the classed attributes of the job.  Look for image_size.  This is the maximum observed image size reported in KB.  Use this as a guide for setting the image_size attribute in your command file.  That attribute is set in KB as well.  This attribute tells condor that your job may use up to the amount of memory specified.  Condor will use this attribute to match appropriate resources so that you job will not run on a machine with too little memory.</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/116</link><pubDate>Mon, 25 Feb 2013 21:19:06 GMT</pubDate><guid isPermaLink="false">8b17a2d269582fed8a351c30e616bf9c</guid></item><item><title>How can I avoid pre-emption of my long-running jobs?</title><description>&lt;p&gt;The best way to use Condor, when possible, is to break down large tasks into smaller ones and submit many small jobs rather than a few large ones. This makes preemption irrelevant because it's not a big deal if small jobs are restarted from the beginning.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;For longer jobs, checkpointing is recommended.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;If a job can't be easily broken down into smaller components, and it isn't checkpointed, then routine preemption can be prevented by running in the dedicated queue on hooke.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/115</link><pubDate>Fri, 30 Nov 2012 17:51:42 GMT</pubDate><guid isPermaLink="false">063f0b80450ccc882f43d151a1596fbb</guid></item><item><title>Why do my jobs keep restarting in condor?</title><description>&lt;p&gt;Jobs in the normal Condor queues (those on Wren) are subject to preemption. When a job is preempted, it is vacated from the node and restarted elsewhere.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Jobs are usually stopped and restarted on Condor for one of four reasons:&lt;/p&gt;&#xD;
&#xD;
&lt;ol&gt;&#xD;
&lt;li&gt;Someone logs in locally to the execute machine. Many of our Condor compute nodes were bought by individual faculty members for their own research, and a direct shell login by one of their users will cause jobs to vacate.&lt;/li&gt;&#xD;
&lt;li&gt;You're running your job on the boyles and someone submitted an MPI job.  While we have turned off priority pre-emption, parallel universe jobs will still pre-empt other jobs.  The time to vacate is set at 5 calendar days.  If your job does not complete within 5 calendar days, it will be vacated from the nodes in deference to the parallel universe job.&lt;/li&gt;&#xD;
&lt;li&gt;The job ran out of memory.   Initially the process will be killed and the job will be restarted on another machine with more available memory. If memory usage keeps rising, eventually the job will just remain idle.&lt;/li&gt;&#xD;
&lt;li&gt;The node died while your job was running on it. This usually happens due to memory errors, which could be either yours or another user's.&lt;/li&gt;&lt;/ol&gt;&#xD;
&#xD;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/114</link><pubDate>Thu, 06 Dec 2012 13:56:09 GMT</pubDate><guid isPermaLink="false">c5986f5720352a9910072b75e2b36584</guid></item><item><title>Matlab in condor</title><description>&lt;p&gt;Matlab must have threading disabled for use in the normal Condor queue. To do tihs, use the command line argument "-singleCompThread".&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Under Condor we can achieve total higher compute throughput without threading, and will finish more jobs faster.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;When launching Matlab in batch mode from the Unix shell, the program name is piped from STDIN rather than being an argument as in some other languages.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Thus for the Matlab program "program0.m", the command line for testing would be:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;matlab -singleCompThread &lt; program0.m&lt;/pre&gt;&#xD;
&#xD;
&lt;p&gt;Then the Condor submit script would look like this:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
universe = vanilla&#xD;
executable  = /usr/local/bin/matlab&#xD;
arguments   = -singleCompThread&#xD;
input       = program0.m&#xD;
output      = program0.out&#xD;
error       = program0.err&#xD;
queue&lt;/pre&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/113</link><pubDate>Fri, 30 Nov 2012 17:48:05 GMT</pubDate><guid isPermaLink="false">2c6d8fa04f272f8d5f4092fad6b8f6c0</guid></item><item><title>CPLEX in condor</title><description>&lt;h3&gt;Disabling threading in CPLEX&lt;/h3&gt;&#xD;
&#xD;
&lt;p&gt;Since version 12.2, CPlex defaults to multithreading its executables.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;This is a problem for several reasons and multithreading should be disabled in almost all cases. Not only does Condor handle single threaded jobs much better, but they will usually produce better performance.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;We've modified the default environment in several places but it doesn't seem to work consistently. Thus users need to manually add a line to their C/C++ programs before compilation to turn off threading.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;The C function call to disable threading should be put at the beginning of main():&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;CPXsetintparam(env, CPX_PARAM_THREADS, 1);&lt;/pre&gt;&#xD;
&lt;p&gt;In an AMPL batch file the command to turn off multithreading is:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;option cplex_options 'threads=1';&lt;/pre&gt;&#xD;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/112</link><pubDate>Fri, 30 Nov 2012 17:45:57 GMT</pubDate><guid isPermaLink="false">15aca35fa3d3207691c7d37b617be742</guid></item><item><title>Timing processes</title><description>&lt;p&gt;Determining process compute time is a common need in ISyE for such tasks as comparing algorithm efficiency.   However, use of real time is likely to give erroneous results due to variations in compute environment, such as higher load and more context switching on some nodes than others.  It is also possible that jobs can be suspended briefly without restarting from the beginning, which could greatly throw off compute times.&lt;/p&gt;&#xD;
&lt;p&gt;If you need to measure the compute time, you should use the USER time of the process to get the actual time it has been running on the processor.&lt;/p&gt;&#xD;
&lt;p&gt;In C, this value can be extracted with the getrusage() function.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;The following example program runs three counting loops, but each subsequent step includes a longer sleep().   Nevertheless, the same elapsed time is reported for each step (within a millisecond).  The function timeval_subtract() is taken from this GNU tutorial determining on elapsed CPU time.&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
#include &lt;sys/time.h&gt;&#xD;
#include &lt;sys/resource.h&gt;&#xD;
#include &lt;stdio.h&gt; &#xD;
&#xD;
int main() {&#xD;
  int i, j, k;&#xD;
  struct rusage usage;&#xD;
  struct timeval current;&#xD;
  struct timeval previous = {0, 0}; &#xD;
&#xD;
  for (i=0; i&lt;3; i++)  {&#xD;
     k=0;&#xD;
     for (j=0; j&lt;100000000; j++) {&#xD;
        k++;&#xD;
     }&#xD;
     printf("Sleeping for %d seconds after counting\n", i);&#xD;
     sleep(i);&#xD;
     getrusage(RUSAGE_SELF, &amp;usage);&#xD;
     timeval_subtract (&amp;current, &amp;usage.ru_utime, &amp;previous);&#xD;
     printf("Part %d took %d.%06d seconds of CPU time\n",i+1,  current.tv_sec,current.tv_usec);&#xD;
     previous=usage.ru_utime;&#xD;
  }&#xD;
} &#xD;
&#xD;
int timeval_subtract (result, x, y)&#xD;
struct timeval *result, *x, *y;&#xD;
{ &#xD;
&#xD;
 /* Perform the carry for the later subtraction by updating y. */&#xD;
  if (x-&gt;tv_usec &lt; y-&gt;tv_usec) {&#xD;
     int nsec = (y-&gt;tv_usec - x-&gt;tv_usec) / 1000000 + 1;&#xD;
     y-&gt;tv_usec -= 1000000 * nsec;&#xD;
     y-&gt;tv_sec += nsec;&#xD;
  }&#xD;
  if (x-&gt;tv_usec - y-&gt;tv_usec &gt; 1000000) {&#xD;
     int nsec = (x-&gt;tv_usec - y-&gt;tv_usec) / 1000000;&#xD;
     y-&gt;tv_usec += 1000000 * nsec;&#xD;
     y-&gt;tv_sec -= nsec;&#xD;
  } &#xD;
&#xD;
  /* Compute the time remaining */&#xD;
  /* tv_usec is certainly positive */&#xD;
  result-&gt;tv_sec = x-&gt;tv_sec - y-&gt;tv_sec;&#xD;
  result-&gt;tv_usec = x-&gt;tv_usec - y-&gt;tv_usec; &#xD;
&#xD;
 /* Return 1 if result is negative. */&#xD;
  return x-&gt;tv_sec &lt; y-&gt;tv_sec;&#xD;
}&#xD;
&lt;/pre&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/111</link><pubDate>Fri, 30 Nov 2012 17:44:16 GMT</pubDate><guid isPermaLink="false">55212dd6179f47bf26b020f42bf0a2c9</guid></item><item><title>Condor and library paths</title><description>&lt;p&gt;Sometimes a condor job will return an error beginning with: &lt;pre&gt;condor_exec.exe: error while loading shared libraries&lt;/pre&gt;&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;This can happen because the software you need is not installed on the execute node, in which case you should exclude that execute node in your submit file and let us know about the problem.    You can safely assume that is the problem if you're still getting the error after following the steps outlined below.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;More often, the software is on the execute node but is not in its default library search path. All third-party software is installed in /opt, which is a shared network filesystem common to all execute nodes as well as some other machines, including hooke.   Thus if the program works in one place, it should work everywhere  IF the default library paths are the same.   Sometimes they aren't.   We try to keep the nodes consistent, but there are over 100 of them in many different small clusters, and sometimes they diverge.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Fortunately, the problem can be easily remedied in the user's shell environment. The search path will add the paths in the environment variable LD_LIBRARY_PATH.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Here is an example using Gurobi 4.5:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;condor_exec.exe: error while loading shared libraries: libgurobi45.so: cannot open shared object file: No such file or directory&lt;/pre&gt;&#xD;
&#xD;
&lt;p&gt;The problem here is most likely that the execute node doesn't know where to find the shared library file it needs, libgurobi45.so. It should be able to, if wren could, but sometimes that doesn't happen even though the software is actually there.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Fortunately, this is a very easy fix. We only need to find the location of libgurobi45.so, and add that directory path to our environment on the execute node.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;The library should be in a fairly obvious place. All special third-party applications are installed in /opt, and most libraries are in a "lib" or "lib64" subdirectory somewhere in their application's directory tree. If we do an "ls" in /opt we find that Gurobi 4.5 is in /opt/gurobi450. It's quickly obvious from there that the most likely library path is /opt/gurobi450/linux64/lib, and an "ls" on that directory does in fact show that it contains libgurobi45.so.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Alternatively, we could use the "find" command, like this:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
wren:~ $ cd /opt/gurobi&#xD;
wren:/opt/gurobi $ find . -name libgurobi45.so 2&gt;/dev/null&#xD;
./linux64/lib/libgurobi45.so&lt;/pre&gt;&#xD;
&#xD;
&lt;p&gt;Once we know the directory that contains the needed library, we need to add it to the environment variable LD_LIBRARY_PATH on the execute node. This in can be done in two ways:&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;1. Add it to your login profile (usually via .profile, .bashrc, or .bash_profile) and ensure "getenv = True" is in your submit file so that the execute node uses your login environment. The syntax in your login profile is:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/gurobi450/linux64/lib&lt;/pre&gt;&#xD;
&#xD;
&lt;p&gt;This is usually the best method.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;2. If for some reason you don't want your entire login environment exported on the submit node, you could add the needed environment variable to the submit file explicitly:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;Environment LD_LIBRARY_PATH=/opt/gurobi450/linux64/lib&lt;/pre&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/110</link><pubDate>Fri, 30 Nov 2012 17:42:17 GMT</pubDate><guid isPermaLink="false">ca114824a31838e0ee15fa11d17d02be</guid></item><item><title>Condor submit file examples</title><description>Some example submit file syntax all would go before the "queue" command.&#xD;
&#xD;
&lt;p&gt;Force a job to run on a single node:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;+Requirements = Machine == "boyle16.isye.gatech.edu"&lt;/pre&gt;&#xD;
&lt;p&gt;Allow each queued process to run on any one of a specified set of multiple nodes:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;+Requirements = (Machine == "boyle1.isye.gatech.edu" || Machine == "boyle2.isye.gatech.edu" || Machine == "boyle3.isye.gatech.edu")&lt;/pre&gt;&#xD;
&lt;p&gt;Thus far the only method we've gotten to work is the use of a separate full test statement for each desired machine. We've seen no examples using wildcard or syntax shortcuts, and the obvious guesses fail.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Also, if all specified nodes are unavailable, the job will remain idle with LastRejMatchReason = "no match found"&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;To disallow specific nodes, simply replace the operator:&lt;/p&gt;&#xD;
&#xD;
&lt;pre&gt;+Requirements = (Machine != "goddard1.isye.gatech.edu" || Machine != "goddard2.isye.gatech.edu")&lt;/pre&gt;&#xD;
&lt;p&gt;This can be useful if you find that software is misconfigured on a given set of nodes, etc. We try to avoid this but it does occasionally happen.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/109</link><pubDate>Fri, 30 Nov 2012 17:36:24 GMT</pubDate><guid isPermaLink="false">55a58e9131a635301af111bd611b7373</guid></item><item><title>Dedicated Queue</title><description>&lt;p&gt;Condor's primary queue is oriented towards cycle harvesting.   This means that jobs running in the vanilla universe on Wren are subject to preemption for one of several reasons.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Some users need to run long jobs without checkpointing, where preemption means restarting from the beginning and losing days of computing time.    As a practical matter it can often mean never finishing the job at all.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;To alleviate this problem we have provided a dedicated queue.   This queue runs from a different submission machine, hooke (hooke.isye.gatech.edu).   The queue does have a disadvantage in that it has fewer assigned machines and you may have to wait longer for a slot to open up.   However, if you have just a few long-running jobs, it's the way to go.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Submitting from hooke requires only a couple of changes.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;First, obviously, you must log into hooke to submit the job.   This can be done simply by doing "ssh hooke" whenever your code is ready to go.   You don't need to do any of the development on hooke;  that should be done on wren and then just log into hooke when you're ready to submit.  Once you've submitted the job, you will need to monitor it on hooke as well.    Wren's queue and history will not contain the details of the job.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Finally, the submit file requires a couple of changes.   The universe should be changed to "parallel", and the line "machine count = 1" needs to be added before the"queue" statement.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;So an example submit file for the dedicated queue from hooke looks like this:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
universe   = parallel&#xD;
executable = mycode&#xD;
output     = mycode.out&#xD;
error      = mycode.err&#xD;
arguments  = 10 20&#xD;
machine_count = 1&#xD;
queue&lt;/pre&gt;&#xD;
&lt;p&gt;Once you have this in place you can submit the job normally via "condor_submit", and the job should normally run to completion rather than being subject to preemption.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/108</link><pubDate>Fri, 30 Nov 2012 17:31:41 GMT</pubDate><guid isPermaLink="false">59b0085f60fcf3ff36d27d5ac15ab07f</guid></item><item><title>MPI Jobs</title><description>&lt;p&gt;Condor supports high-speed distributed parallel computing using OpenMPI.   MPI jobs require use of the dedicated queue on hooke, and can't be submitted from wren.&lt;/p&gt;

&lt;p&gt;MPI jobs are run on the Boyle nodes, consisting of 16 eight-core machines with a low-latency Infiniband cross-connect between the nodes. OpenMPI jobs automatically use the fastest available transport method for message passing between processes.&lt;/p&gt;

&lt;p&gt;Condor handles MPI jobs via a front end wrapper script called ompiscript (full path:  /usr/local/bin/ompiscript).   This wrapper is submitted as the executable name, and the submitter's MPI executable becomes the first command line argument.   The wrapper automates all of the usual tasks associated with starting an MPI job:  creates a hosts file, does the "mpirun" command, and takes care of passwordless ssh access.&lt;/p&gt;

&lt;p&gt;Of course it remains crucial that users make sure their MPI code works in the shell before submitting it to Condor.&lt;/p&gt;

&lt;p&gt;Submit file examples follow.&lt;/p&gt;

&lt;p&gt;&lt;h3&gt;Example 1:  running on any available nodes&lt;/h3&gt;&lt;/p&gt;

&lt;p&gt;The generic form of MPI submission will run on any available CPU (currently this means just on the boyle nodes).   Contact IT first if you intend to submit an MPI job to more than 32 CPUs.&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
universe = parallel
executable = /usr/local/bin/ompiscript
arguments = exe1 argv1 argv2 ....
getenv = True          ## needed for your env to be present on execute nodes
output = exe1.out   ## stdout
error = exe.err    ## stderr
machine_count = 32
queue&lt;/pre&gt;
&lt;p&gt;If you want separate output files for each process, you can use a macro like this:&lt;/p&gt;
&lt;pre&gt;
output = out/exe1.out.$(NODE)
error = out/exe1.err.$(NODE)&lt;/pre&gt;
&lt;h3&gt;Example 2: Running a job on a specific node&lt;/h3&gt;&lt;/p&gt;

&lt;p&gt;If a job is run on 8 CPUs it can be kept on a single node, which will produce slightly faster interprocess communication. The user will need to find a node with no jobs currently running on it and specify that node in the command file.&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
universe = parallel
executable = /usr/local/bin/ompiscript
arguments = exe2 argv1 argv2 ....
getenv = True&lt;br&gt;
output = exe2.out
error = exe2.err
machine_count = 8
queue
&lt;/pre&gt;&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/107</link><pubDate>Fri, 30 Nov 2012 17:25:14 GMT</pubDate><guid isPermaLink="false">b69553fafb4fda6781d0e4e4fb94083a</guid></item><item><title>Running multiple iterations in condor</title><description>&lt;p&gt;Many ISyE research problems involve running many separate iterations of the same code with either random or predetermined inputs.   Condor excels at these types of problems.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;When running on a single computer, the most common solution is set up  loops and let just one or a few processes iterate through the inputs (sometimes generating random inputs along the way).&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;However, it is much more convenient and faster to let Condor handle the looping.   If you can feed Condor multiple small jobs - anywhere from a minute to an hour in expected run time - it can spread them out onto all available resources and finish them very quickly.&lt;/p&gt;&#xD;
&#xD;
&lt;h3&gt;Example 1:  C program&lt;/h3&gt;&#xD;
&#xD;
&lt;p&gt;We need to process 1000 different sets of input constraints using a compiled executable named "program0", written in C with the first argument being the input file.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;First in our working directory we do 'mkdir in;  mkdir out'.   Put the data in 1000 separate files in the input directory, with names containing the integers 0 through 999.   Here we will use 0.in through 999.in.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Then create the Condor submit file, 'program0.cmd':&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
universe    = vanilla&#xD;
executable  = program0&#xD;
arguments   = in/$(Process).in&#xD;
output      = out/$(Process).out&#xD;
error       = out/$(Process).err&#xD;
queue 1000&#xD;
&lt;/pre&gt;&#xD;
Submit this script, and you should have 1000 jobs queued up that will iterate through your data and create 1000 output files.&#xD;
&#xD;
&lt;h3&gt;Example 2 :  Matlab&lt;/h3&gt;&#xD;
&#xD;
&lt;p.Sometimes we need to include the name of our input data file in the code, rather than using an argument.   One such case is with Matlab.    Nevertheless, the technique is still very simple.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;First, we need for our Matlab program to have an input variable for the process number, taken from Condor's $(Process) macro.  Then we use that variable within the Matlab program to determine the name of the file to read.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Then the Condor submit file looks like this:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
universe = vanilla&#xD;
executable  = /usr/local/bin/matlab&#xD;
arguments   = -singleCompThread -r clear -r procnum=$(Process)&#xD;
input       = program0.m&#xD;
output      = out/$(Process).out&#xD;
error       = out/$(Process).err&#xD;
queue 1000&#xD;
&lt;/pre&gt;&#xD;
&lt;h3&gt;Random inputs:&lt;/h3&gt;&#xD;
&#xD;
&lt;p&gt;The above examples assume that the user has a predetermined set of input data to use, but what about generating the data at random in the program?&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;That can be done, but there is a major catch:  the random seed needs to be the same to ensure valid randomness.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;This could be accomplished by importing a constant random seed within the program.  But the far easier method is to use a single program to generate the random input data you need, then set it up as in the examples above.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/106</link><pubDate>Thu, 06 Dec 2012 16:25:56 GMT</pubDate><guid isPermaLink="false">6e9398e440cf17ed4902b11e489ea6c9</guid></item><item><title>Outlook 2010 Setup Instruction for the New IMAP Accounts</title><description>&lt;h2&gt;Problem: &lt;/h2&gt;
&lt;p&gt;How do I set up my new IMAP email account on a new or existing installation of Outlook 2010?
&lt;/p&gt;
&lt;h2&gt;Solution: &lt;/h2&gt;
&lt;ol&gt;
&lt;LI&gt; In Outlook 2010, click the File tab and click the Account Settings button.&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/1.png" alt="" /&gt;
&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; It will display the Account Settings window with Email tab open.  &lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/2.png" alt="" /&gt;&lt;br clear="all"&gt;&lt;br clear="all"&gt;

&lt;LI&gt; Click New option to open the Add New Account Windows.  Select  Manually configure server settings or additional server types. Then click Next button.&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/3.png" alt="" /&gt;&lt;br clear="all"&gt;&lt;br clear="all"&gt;

&lt;LI&gt; Select Internet E-mail, then click Next .
&lt;ul&gt;
&lt;li&gt; Enter your full name as "Your Name". 
&lt;li&gt; Enter your Email Address (such as "allen.belletti@isye.gatech.edu".)
&lt;li&gt; Select IMAP as Account Type 
&lt;li&gt; Set the Incoming mail server (IMAP) to "imap.isye.gatech.edu".
&lt;li&gt; Set the Outgoing mail server (SMTP) to "mail.isye.gatech.edu"
&lt;li&gt; Enter your ISyE account name for the User Name (for example, "allen".)
&lt;li&gt; Enter your ISyE account password.
&lt;li&gt; It is recommended that you uncheck "Remember password".
&lt;li&gt; Make sure that "Require logon using Secure Password Authentication (SPA)" is not checked.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/4.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click "More Settings" tab to open the Internet Email Settings window.
&lt;ul&gt;
&lt;li&gt; Click the "Outgoing Server" tab.
&lt;li&gt; Check "My outgoing server (SMTP) requires authentication."
&lt;li&gt; Ensure that "Use same settings as my incoming mail server" is selected.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/5.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Sent Items tab. 
&lt;ul&gt;
&lt;li&gt; Check "Save sent items in the following folder on the server" .
&lt;li&gt; Select Sent folder in the ISyE email list.
&lt;/ul&gt;
&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/6.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Deleted Items tab.
&lt;ul&gt;
&lt;li&gt; Check "Move deleted items to the following folder on the server"
&lt;li&gt; Select Trash folder in the ISyE email folder list.
&lt;li&gt; Uncheck Purge items when switching folders while online
&lt;/ul&gt;
&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/7.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click Advanced tab.
&lt;ul&gt;
&lt;li&gt; Select port 143 for incoming server (IMAP) and 587 for Outgoing server (SMTP)
&lt;li&gt; Select TLS as the encrypted connection for both Incoming and Outgoing server.
&lt;/ul&gt;&lt;br clear="all"&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/outlook2010/8.png" alt="" /&gt;&lt;br clear="all"&gt;
&lt;br clear="all"&gt;
&lt;LI&gt; Click OK to close Internet E-mail Settings window.
&lt;LI&gt; Click Next in Add New Account window, then click Finish to close the window.
&lt;/ol&gt;
&lt;/body&gt;
&lt;/html&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/105</link><pubDate>Fri, 09 Sep 2011 18:06:51 GMT</pubDate><guid isPermaLink="false">4da17ad91449f77ecd981c1cec67ffb6</guid></item><item><title>Installing the GT Root certificate (fixes intranet errors)</title><description>&lt;p&gt;The ISyE Intranet is now encrypted with a Georgia Tech SSL certificate.  This means that "out of the box" most browsers will show an error message when you try to visit the Intranet.&lt;/p&gt;

&lt;p&gt;Installing the GT certificate should prevent this problem.  To install the GT certificate, visit &lt;a href="http://ca.gatech.edu" title="ca.gatech.edu"&gt;ca.gatech.edu&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The web page there should automatically detect your browser and operating system, and give you the instructions to install the certificate.&lt;/p&gt;

&lt;p&gt;NOTE:  this will only work for the browser you are using at the time.  If you use Firefox and Chrome, you may need to install it for each browser.  If you have more that one computer, like a desktop and a laptop, you will need to install it on each system.&lt;/p&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/104</link><pubDate>Tue, 14 Jun 2011 17:24:58 GMT</pubDate><guid isPermaLink="false">a4ab7b978b22f1c2330736d07dbb9b55</guid></item><item><title>Copying files from your incoming ftp directory</title><description>&lt;p&gt;If you have had files placed in an incoming ftp directory, here is the method for retrieving those files.&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;ssh to castle.isye.gatech.edu using SecureCRT or another ssh client&lt;/li&gt;
&lt;li&gt;ssh from castle to ftp.isye.gatech.edu&lt;/li&gt;
&lt;li&gt;copy the files using cp&lt;/li&gt;&lt;/ol&gt;

See the transcript below as an example:
&lt;ol&gt;&lt;li&gt;
&lt;pre&gt;
zero:~ lsharp$ ssh castle.isye.gatech.edu

Unauthorized system access is prohibited.

System use is governed by the GIT Computer and
Network Usage, Security and Data Access Policies.

Warning: untrusted X11 forwarding setup failed: xauth key data not generated
Warning: No xauth data; using fake authentication data for X11 forwarding.
Last login: Mon Jan 24 14:36:21 2011 from adsl-074-244-119-076.sip.asm.bellsouth.net

----[ 10/29/2010 ]---------------------------------------------------------

Castle is now enforcing limits on CPU time and memory for all users.  You
may run for up to 60 minutes of CPU time and use up to 4GB of memory.  If
either of these are exceeded, the job will automatically be killed by the
system.

This machine is intended for general use and development, so these limits
should not pose a problem for anyone and will ensure that the system
remains responsive for all.  Please contact us via helpdesk@isye.gatech.edu
if you have questions or concerns.  Long running and/or large jobs should
be run via the ISyE Compute infrastructure.  Please contact Trey Palmer
(trey@isye.gatech.edu) for additional information.

Also please note that keep.isye.gatech.edu is available to everyone as an
alternate to castle, should the latter become unavailable at any point.

--------------------------------------------------------------------------

-bash-3.2$
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;
-bash-3.2$ ssh ftp.isye.gatech.edu

Unauthorized system access is prohibited.

System use is governed by the GIT Computer and
Network Usage, Security and Data Access Policies.


lsharp@ftp.isye.gatech.edu's password: 
Last login: Thu Oct 23 10:53:35 2008 from argo.isye.gatech.edu
-bash-3.2$
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;
-bash-3.2$ cd /ftp/incoming
-bash-3.2$ cd lsharp
-bash-3.2$ ls -l
total 22020
-rw-r--r--+ 1 ftp ftp      131 Jan 12  2010 callhome.sh
-rw-r--r--+ 1 ftp ftp 24145004 Jan 12  2010 vlc-0.8.6b.dmg
-rw-r--r--+ 1 ftp ftp    42387 Sep  1 09:13 z5b9J.gif
-bash-3.2$ cp z5b9J.gif ~lsharp 
&lt;/pre&gt;&lt;/li&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/103</link><pubDate>Mon, 24 Jan 2011 19:55:52 GMT</pubDate><guid isPermaLink="false">bb4e8e35b9c0f076dd498883296046df</guid></item><item><title>Web Server Migration</title><description>&lt;h3&gt;ISyE Web Server Upgrade&lt;/h3&gt;

&lt;p&gt;ISyE is moving our web servers to new hardware in the coming weeks.  We are using this opportunity to make some security fixes to the server software.  For the majority of ISyE users this will have no impact on your web pages.  A few users may have to make some changes to their code to work with the new security settings.
&lt;/p&gt;
&lt;h3&gt;How Can I Know If My Web Page Will Work?&lt;/h3&gt;

&lt;p&gt;Our current web server uses the url &lt;a href="http://www2.isye.gatech.edu"&gt;http://www2.isye.gatech.edu&lt;/a&gt;.  The new web server is using the url &lt;a href="http://www2.isye.gatech.edu"&gt;http://www3.isye.gatech.edu&lt;/a&gt;.  
&lt;/p&gt;

&lt;p&gt;So if your current web pages are located at &lt;a href="http://www2.isye.gatech.edu/workforcecom/"&gt;http://www2.isye.gatech.edu/workforcecom/&lt;/a&gt; you can see them viewed on the new server by changing the url from www2 to www3:  &lt;a href="http://www3.isye.gatech.edu/workforcecom/"&gt;http://www3.isye.gatech.edu/workforcecom/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;There are two main groups of users who should check their code:  Users who have web forms, and users who connect to databases.&lt;/p&gt;

&lt;h3&gt;Database users&lt;/h3&gt;

&lt;p&gt;In the past, the web server and the database server were both on the same hardware.  Database connections to 'localhost' would work.  The new web server is separate from the database server, so localhost connections will no longer work.  If you have a page that connects to a database as localhost or ballista.isye.gatech.edu, you will need to change the connection to &lt;strong&gt;mysql.isye.gatech.edu&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;Web Form users&lt;/h3&gt;

&lt;p&gt;The old web server had the php setting Register Globals turned on.  This meant that in web forms, each field you submitted would be converted to a php variable.  For example, if you had a form that requested the field "firstname" it would be automatically converted to a php variable $firstname.  On the new server this setting is turned off, so variables will not be automatically created.&lt;/p&gt;

&lt;p&gt;If you have a web form that requests the field "firstname" now you will need to either address the POST variable directly, as $_POST['firstname'] or copy its value with the following line of code:&lt;/p&gt;

&lt;p&gt;    $firstname =  $_POST['firstname'];&lt;/p&gt;

&lt;h3&gt;Having problems?&lt;/h3&gt;

&lt;p&gt;If you have any problems with your web pages or have any further questions about these changes, email us at helpdesk@isye.gatech.edu and we will be glad to help you.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/102</link><pubDate>Tue, 13 Apr 2010 20:28:53 GMT</pubDate><guid isPermaLink="false">a994cbcda82d04c70e434b8ff8791fea</guid></item><item><title>Thunderbird 3 setup instructions</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I set up my new IMAP email account on a new or existing installation of Thunderbird 3.0?
&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;h1&gt;Configuring Thunderbird 3.0&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;New Installation  &lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;1. Download thunderbird from &lt;a href="http://getthunderbird.com/"&gt;http://getthunderbird.com&lt;/A&gt;&lt;/p&gt;
&lt;P&gt;2. Install using all the default setup options. At the end of the install you will be able to launch Thunderbird.&lt;/P&gt;
&lt;P&gt;3. When Thunderbird starts, you will be presented with the Mail Account Setup window.  Enter your name, your ISyE Email and your ISyE password.&lt;BR&gt;&lt;BR&gt;
&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird31.jpg" width="633" height="226" /&gt;
&lt;/p&gt;

&lt;p&gt;4. Thunderbird should autodetect the settings for ISyE mail servers as follows:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird32.jpg" width="635" height="342" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;5.  The Incoming setup is correct, but the outgoing setup is not, so click on the Manual Setup in the lower left corner of the window&lt;/p&gt;


&lt;p&gt;6. The Account Settings window will appear.  Click the &amp;quot;Outgoing Server (SMTP)&amp;quot; option at the bottom of the list on the left &lt;/P&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird33.jpg" width="591" height="572" /&gt;&lt;br /&gt;
&lt;/p&gt;
  7. When the Outgoing Server settings appear, click the Edit button on the right side.
&lt;/p&gt;
&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird34.jpg" width="590" height="572" /&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;8. When the SMTP Server window appears, go to the &amp;quot;Connection Security&amp;quot; pulldown at the bottom and select &amp;quot;STARTTLS&amp;quot;&lt;br /&gt;
&lt;P&gt;&lt;p&gt;&lt;img src="http://herald.isye.gatech.edu/helpdesk/isyedata/images/thunderbird3/tbird36.jpg" width="266" height="315" /&gt;&lt;/p&gt;
&lt;p&gt;9. Click OK in the SMTP Server Window. &lt;/p&gt;
&lt;p&gt;10. Click OK in the Account Settings window.&lt;/p&gt;
&lt;p&gt;11.Click OK in the Mail Account Setup window.&lt;/p&gt;
&lt;P&gt;Thunderbird should now successfully connect to the ISyE Mail servers and download your messages.&lt;/P&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/100</link><pubDate>Tue, 05 Jan 2010 18:18:13 GMT</pubDate><guid isPermaLink="false">f70ff42aa5a90eeed2358e3af794bd56</guid></item><item><title>Install lightning and Create ICS calendar</title><description>&lt;p&gt;Part I: Install Lightening Add-on in Thunderbird   &lt;/p&gt;

&lt;pre&gt;&lt;code&gt;Follow the instruction online by click the link below.  
http://www.mozilla.org/projects/calendar/lightning/download.html  
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Part II: Create ICS calendar in Thunderbird to sync with My Gatech Calendar  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open the calendar in Thunderbird.   &lt;/li&gt;
&lt;li&gt;Go to Calendar, click New Calendar to open the window.  &lt;/li&gt;
&lt;li&gt;Select on the Network and click Next  &lt;/li&gt;
&lt;li&gt;Select iCalendar (ICS). For the location, input https://mail.gatech.edu/home/&lt;username&gt;@mail.gatech.edu/Calendar&lt;br&gt;
  ( &lt;username&gt; is your GT Unix account. ) Then click Next.  &lt;/li&gt;
&lt;li&gt;Give a name to the calendar you created. Leave E-mail as none. Click Next.  &lt;/li&gt;
&lt;li&gt;You may be asked for the user name and password for your GT account.   &lt;/li&gt;
&lt;li&gt;Click finish.   &lt;/li&gt;
&lt;li&gt;After the calendar is created, right click it to open its properties setting. Uncheck Read Only property. &lt;/li&gt;
&lt;/ul&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/99</link><pubDate>Thu, 28 May 2009 18:11:04 GMT</pubDate><guid isPermaLink="false">edb9327da67e24fb28049793904e3e72</guid></item><item><title>Setting file permissions for web files</title><description>&lt;p&gt;Files must be made world readable to be accessible on the web.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From the command line:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;chmod a+r filename&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From Fugu on a Mac:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing Command-I on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Info button at the top of the window, or&lt;br /&gt;&#xD;
c) right clicking on the file and selecting &amp;quot;Get Info&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;Read&amp;quot; box is checked for the Owner, Group and Others, then click the Apply button.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From WinSCP on a PC:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt; Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing F9 on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Properties button at the bottom of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Properties&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;R&amp;quot; box is checked for the Owner, Group and Others, then click the OK button.&lt;/p&gt;&#xD;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&#xD;
&lt;p&gt;Directories need to be world readable and executable to be accessible on the web. The process is very similar to files:&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From the command line:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;chmod a+rx filename&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From Fugu on a Mac:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt;Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing Command-I on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Info button at the top of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Get Info&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;Read&amp;quot; and &amp;quot;Execute&amp;quot; boxes are checked for the Owner, Group and Others, then click the Apply button.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;strong&gt;From WinSCP on a PC:&lt;/strong&gt;&lt;/p&gt;&#xD;
&lt;p&gt; Bring up the file info window by:&lt;/p&gt;&#xD;
&lt;p&gt;a) selecting the file and pressing F9 on the keyboard, or&lt;br /&gt;&#xD;
  b) selecting the file and clicking the Properties button at the bottom of the window, or&lt;br /&gt;&#xD;
  c) right clicking on the file and selecting &amp;quot;Properties&amp;quot; from the menu&lt;/p&gt;&#xD;
&lt;p&gt;then in the permissions section, make sure the &amp;quot;R&amp;quot; and &amp;quot;X&amp;quot; boxes are checked for the Owner, Group and Others, then click the OK button.&lt;/p&gt;&#xD;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/98</link><pubDate>Mon, 02 Feb 2009 19:04:16 GMT</pubDate><guid isPermaLink="false">8f11591336d53d3d8244c53d3742adb4</guid></item><item><title>Note PHD students only: Printing from a personal computer to ricphd</title><description>&lt;p&gt;There is no way to directly print to that printer from a personal machine, however you can print by:  &lt;/p&gt;

&lt;p&gt;Using winscp, (or similar scp application) copy the files you want to print from your computer to one of the&lt;br&gt;
ISyE unix computers, say castle.isye.gatech.edu  &lt;/p&gt;

&lt;p&gt;Then log into castle.isye.gatech.edu using SSH.  &lt;/p&gt;

&lt;p&gt;From the console type: lp -d ricphd "filename"  &lt;/p&gt;

&lt;p&gt;http://herald.isye.gatech.edu/helpdesk/index.php/kb/article/000009  &lt;/p&gt;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/97</link><pubDate>Fri, 27 Mar 2009 14:57:40 GMT</pubDate><guid isPermaLink="false">ec88e1f1879d7d1fe6d9e1f7a57e4cc9</guid></item><item><title>IMAP Client Setup master instructions</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;
How do I configure my mail client to connect to ISyE's IMAP server?&lt;br /&gt;

&lt;br&gt;
&lt;br&gt;
&lt;hr&gt;
&lt;br&gt;
&lt;h3&gt;Solution: &lt;/h3&gt;
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
&lt;HTML&gt;
&lt;HEAD&gt;
	&lt;META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=utf-8"&gt;
	&lt;TITLE&gt;&lt;/TITLE&gt;
	&lt;META NAME="GENERATOR" CONTENT="OpenOffice.org 2.3  (Linux)"&gt;
	&lt;META NAME="CREATED" CONTENT="20060823;12174500"&gt;
	&lt;META NAME="CHANGEDBY" CONTENT="Allen Belletti"&gt;
	&lt;META NAME="CHANGED" CONTENT="20080411;17082300"&gt;
	&lt;META NAME="SDFOOTNOTE" CONTENT=";;;;P"&gt;
	&lt;META NAME="SDENDNOTE" CONTENT="ARABIC"&gt;
	&lt;STYLE TYPE="text/css"&gt;
	&lt;!--
		@page { size: 8.5in 11in; margin-left: 1.25in; margin-right: 1.25in; margin-top: 1in; margin-bottom: 1in }
		P { margin-bottom: 0.08in }
	--&gt;
	&lt;/STYLE&gt;
&lt;/HEAD&gt;
&lt;BODY LANG="en-US" DIR="LTR"&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Introduction&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;This document
provides step-by-step instructions to configure your email client for
use with the ISyE IMAP email system.  In order to use mail, you must
first have an ISyE computer account.  If you do not yet have an
account, please visit &lt;A HREF="http://www.isye.gatech.edu/apps/unix-account/"&gt;http://www.isye.gatech.edu/apps/unix-account/&lt;/A&gt;
to apply for one.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;The following
clients are addressed herein:&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Thunderbird
1.5/2.0&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Evolution 2.0&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Outlook 2003&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Outlook 2000&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Pine&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Mutt&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Eudora&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;In addition, if
you are using a client other than the ones listed above, general
connection information may be found at in the final section.  Please
note that the preferred client on all platforms is Thunderbird 2.0,
and that the IT department suggests that you try using it first.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in; font-weight: medium"&gt;Please feel free
to contact us with any questions or concerns via
&lt;A HREF="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/A&gt;.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Thunderbird 1.5/2.0 " new
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;From the "New Account Setup"
	window, select "Email account" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name and preferred
	email address (for example, &lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;),
	click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select server type "IMAP",
	enter "imap.isye.gatech.edu" as Incoming Server.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "mail.isye.gatech.edu"
	as the Outgoing Server, click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name (for
	example, "allen") as the Incoming User Name.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter the same account name as the
	Outgoing User Name, click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Choose a name for this account
	such as "ISyE Mail" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If everything is correct, click
	"Finish".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;When prompted, enter your ISyE
	account password and click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Select Tools-&gt;Account Settings
	from the menu (note that on Linux, this will be Edit-&gt;Account
	Settings.)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click on "Outgoing Server
	(SMTP)" at the bottom of the leftmost portion of the window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click the "Edit" button in
	the upper right, beneath "Outgoing Server (SMTP) Settings".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click the button next to "TLS"
	(not "TLS, if available".)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Note: If you are at home and are
	unable to send mail, please try changing the Port number from "25"
	to "587" as some Internet Service Providers require this.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click "OK" again to exit the
	Account Settings page.&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Thunderbird 1.5/2.0 " existing
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select Tools-&gt;Account Settings
	from the menu (note that on Linux, this will be Edit-&gt;Account
	Settings.)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click the "Add Account" button
	in the bottom left.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select "Email account" and
	click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name and preferred
	email address (for example, &lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;),
	click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select server type "IMAP",
	enter "imap.isye.gatech.edu" as Incoming Server, click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name (for
	example, "allen") as the Incoming User Name, click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Choose a name for this account
	such as "ISyE Mail" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If everything is correct, click
	"Finish".  The account name will appear in the left side of the
	window above items such as "Server Settings" and "Copies &amp;
	Folders".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click on "Outgoing Server
	(SMTP)" at the bottom of the leftmost portion of the window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click the "Add" button in the
	upper right, beneath "Outgoing Server (SMTP) Settings"&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Enter "mail.isye.gatech.edu"
	for the Server Name.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Make sure that "Use name and
	password" is checked, and enter your account name next to "User
	Name".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click the button next to "TLS"
	(not "TLS, if available".)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Note: If you are at home and are
	unable to send mail, please try changing the Port number from "25"
	to "587" as some Internet Service Providers require this.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click the name of your new
	account that appeared in the left-hand portion of the window (for
	example "ISyE Mail").&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Near the bottom of the right-hand
	side you will see "Outgoing Server (SMTP)".  Make sure that the
	"mail.isye.gatech.edu" entry that you created above has been
	selected.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click on "Server Settings"
	located beneath the name of your new account, in the left-hand
	portion of the window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Under "Security Settings" on
	the right side, select "TLS"&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; If desired, check the "Check
	for new messages at startup" button and also enter how often you
	wish to check for new messages (the default is every 10 minutes.)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click "OK" and the "Account
	Settings" window will disappear.  You are now ready to read and
	send email with Thunderbird.  Note that you may need to click on
	"Inbox" to get started.&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Evolution 2.0 " new installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Start Evolution and click the
	"Forward" button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your Full Name (ie, Allen
	Belletti) and your preferred Email Address (such as
	"&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;").&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Leave "Make this my default
	account" checked and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Server Type to "IMAP".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "imap.isye.gatech.edu"
	for the Host.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name (such
	as "allen") as the Username.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;For Use Secure Connection (SSL),
	select "Always".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Leave Authentication Type set to
	"Password" and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If desired, check "Automatically
	check for new mail" and set an interval.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  If you have a large number of
	folders, please uncheck "Check for new messages in all folders".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Forward" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Confirm that the Server Type is
	"SMTP" and enter "mail.isye.gatech.edu" for the Host.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check "Server requires
	authentication" and set Use Secure Connection (SSL) to "Whenever
	Possible".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Ensure that the Authentication
	Type is "PLAIN" and enter your ISyE account name as the
	Username.  Click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Choose a name for your account
	such as "ISyE Mail" and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select the proper time zone and
	click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Apply"&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Evolution 2.0 " existing
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select Tools-&gt;Settings from the
	menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Press the "Add" button in the
	upper-right of the window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Forward" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your Full Name (ie, Allen
	Belletti) and your preferred Email Address (such as
	"&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;").&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Check "Make this my default
	account" and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Server Type to "IMAP".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "imap.isye.gatech.edu"
	for the Host.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name (such
	as "allen") as the Username.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;For Use Secure Connection (SSL),
	select "Always".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Leave Authentication Type set to
	"Password" and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  If desired, check "Automatically
	check for new mail" and set an interval.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  If you have a large number of
	folders, please uncheck "Check for new messages in all folders".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Forward" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Confirm that the Server Type is
	"SMTP" and enter "mail.isye.gatech.edu" for the Host.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check "Server requires
	authentication" and set Use Secure Connection (SSL) to "Whenever
	Possible".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Ensure that the Authentication
	Type is "PLAIN" and enter your ISyE account name as the
	Username.  Click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Choose a name for your account
	such as "ISyE Mail" and click "Forward".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Apply"&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Outlook 2003 " new installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;From the beginning of the Outlook 2003
Startup wizard:&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If asked about upgrading, choose
	"Do not upgrade" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;When asked about configuring an
	email account, select "Yes" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Choose "IMAP" and click
	"Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name as "Your
	Name".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your preferred Email Address
	(such as "&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Incoming mail server
	(IMAP) to "imap.isye.gatech.edu".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Outgoing mail server
	(SMTP) to "mail.isye.gatech.edu"&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name for
	the User Name (for example, "allen".)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter your ISyE account
	password.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  It is recommended that you
	uncheck "Remember password".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that "Log on using
	Secure Password Authentication (SPA)" is not checked.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "More Settings"
	button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Outgoing Server"
	tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check "My outgoing server
	(SMTP) requires authentication."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Ensure that "Use same settings
	as my incoming mail server" is selected.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Advanced" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Beneath "Incoming server
	(IMAP)", check the box for "This server requires an encrypted
	connection (SSL)".  Do not check the second box beneath "Outgoing
	server (SMTP)".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Finish".&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Outlook 2003 " existing
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select Tools-&gt;Email Accounts
	from the menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select "Add a new e-mail
	account" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Choose "IMAP" and click
	"Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name as "Your
	Name".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your preferred Email Address
	(such as "&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Incoming mail server
	(IMAP) to "imap.isye.gatech.edu".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Set the Outgoing mail server
	(SMTP) to "mail.isye.gatech.edu"&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name for
	the User Name (for example, "allen".)&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account password.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  It is recommended that you
	uncheck "Remember password".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that "Log on using
	Secure Password Authentication (SPA)" is not checked.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "More Settings"
	button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Outgoing Server"
	tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check "My outgoing server
	(SMTP) requires authentication."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Ensure that "Use same settings
	as my incoming mail server" is selected.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Advanced" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Beneath "Incoming server
	(IMAP)", check the box for "This server requires an encrypted
	connection (SSL)".  Do not check the second box beneath "Outgoing
	server (SMTP)".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Finish".&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Outlook 2000 " new installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;From the beginning of the Outlook 2000
Startup wizard&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Next"&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If prompted to use settings from
	another version of Outlook, select "No" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If prompted to upgrade, select
	"None of the above" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select "Internet Only" and
	click "Next".&lt;/P&gt;
&lt;/OL&gt;
&lt;OL START=5&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If you are warned about not being
	able to use Exchange Server, click "Yes".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name and click
	"Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your preferred email address
	such as "&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;"
	and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;For "My incoming mail server",
	select "IMAP".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "imap.isye.gatech.edu"
	for "Incoming mail (POP3 or IMAP) server".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter "mail.isye.gatech.edu"
	for your "Outgoing mail (SMTP) server".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter your ISyE account name for
	the "Account name" field.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter your ISyE account
	password.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  It is recommended that you
	uncheck "Remember password".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that "Log on using
	Secure Password Authentication (SPA)" is not checked.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select "Connect using my local
	area network (LAN)" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Finish".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Once Outlook is started, select
	Tools-&gt;Accounts from the menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that your new email
	account is selected and click "Properties".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Servers" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check the box next to "My
	server requires authentication".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Advanced" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check the box next to "This
	server requires a secure connection (SSL)" that is located beneath
	"Incoming mail (IMAP)".  Do not check the one beneath "Outgoing
	mail (SMTP)".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "IMAP" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter "INBOX." (note the
	period) as the "Root folder path".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  If you have a large number of
	folders, please un-check "Check for new messages in all folders"
	as this can cause a large load on the mail servers.&lt;/P&gt;
&lt;/OL&gt;
&lt;OL START=28&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Apply".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select your ISyE inbox from the
	Folder list by clicking on it.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select Tools-&gt;IMAP Folders
	from the menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Query" button
	which should retrieve a list of your folders.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Un-check the box next to "When
	displaying hierarchy in Outlook, show only subscribed folders."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  From the View-&gt;Current View
	menu, check "Hide Messages Marked for Deletion."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Quit and restart Outlook.&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Outlook 2000 " existing
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select Tools-&gt;Accounts from the
	menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Add" and select "Mail".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your full name and click
	"Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your preferred email address
	such as "&lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;"
	and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;For "My incoming mail server",
	select "IMAP".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "imap.isye.gatech.edu"
	for "Incoming mail (POP3 or IMAP) server".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "mail.isye.gatech.edu"
	for your "Outgoing mail (SMTP) server".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Next" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name for
	the "Account name" field.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter your ISyE account
	password.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  It is recommended that you
	uncheck "Remember password".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that "Log on using
	Secure Password Authentication (SPA)" is not checked.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next" to continue.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select "Connect using my local
	area network (LAN)" and click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Finish".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Make sure that your new email
	account is selected and click "Properties".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Servers" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check the box next to "My
	server requires authentication".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Advanced" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Check the box next to "This
	server requires a secure connection (SSL)" that is located beneath
	"Incoming mail (IMAP)".  Do not check the one beneath "Outgoing
	mail (SMTP)".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "IMAP" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter "INBOX." (note the
	period) as the "Root folder path".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  If you have a large number of
	folders, please un-check "Check for new messages in all folders"
	as this can cause a large load on the mail servers.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Close".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select your ISyE inbox from the
	Folder list by clicking on it.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Select Tools-&gt;IMAP Folders
	from the menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click the "Query" button
	which should retrieve a list of your folders.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Un-check the box next to "When
	displaying hierarchy in Outlook, show only subscribed folders."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  From the View-&gt;Current View
	menu, check "Hide Messages Marked for Deletion."&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Quit and restart Outlook.&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Mac OS X Mail " existing
installation&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;From the "Mail" menu
	, select "Preferences" and click the "Accounts" button in at the top of the Preferences window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click the "plus" icon at the bottom of the accounts window to add a new account.&lt;/P&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;In the "Add Account" window, enter your full name and preferred
	email address (for example, &lt;A HREF="mailto:allen.belletti@isye.gatech.edu"&gt;allen.belletti@isye.gatech.edu&lt;/A&gt;), along with the password for your ISyE email account
	click "Continue".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select account type "IMAP",
	enter "imap.isye.gatech.edu" as Incoming Mail Server, and choose a name for this account, such as "ISyE IMAP" to enter into the "Description" field.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter your ISyE account name (for
	example, "allen") as the User Name.  Click "Continue".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Use Secure Sockets Layer (SSL)" in the "Incoming Mail Security" window.  Select "Password" in the Authentication drop-down menu.  Click "Continue".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Choose a name for this outgoing server
	such as "ISyE Mail" and enter it in the "Description" field.  Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Enter "mail.isye.gatech.edu"
	as the Outgoing Mail Server.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Use Authentication" and enter the same account name and password, click "Continue".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If everything is correct, click
	"Take account online" and then click "Create".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;When prompted, enter your ISyE
	account password and click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Note: If you are at home and are
	unable to send mail, please try changing the Port number from "25"
	to "587" as some Internet Service Providers require this.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; To do this, go back to the Account Preferences window.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Click on your ISyE account and then select "Edit server list..." 	in the "Outgoing Mail Server (SMTP):" menu.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; In the next window, click once on mail.isye.gatech.edu and click the "Advanced" button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Change the "Server port:" field to 587 and click "OK".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt; Close the Preferences dialog.&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Pine&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;For Pine users, we have found that
setting the following options in .pinerc works well.  This will cause
Pine to access mail via IMAP from the new server cluster.  Please
note that this will work best from Castle.  Feel free to contact us
with any questions about using Pine on other hosts.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;user-domain=isye.gatech.edu&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;smtp-server=mail.isye.gatech.edu&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;inbox-path={imap.isye.gatech.edu}INBOX&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;default-fcc=Sent&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;feature-list=enable-incoming-folders&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;folder-collections="IMAP Server"
{imap.isye.gatech.edu}INBOX.[]&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;rsh-open-timeout=0&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Mutt&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;The following options should be set to
enable Mutt to access mail via IMAP.  Please note that you must be
using a version of Mutt which has been compiled using the proper
options.  The version on Castle is one such.  Feel free to contact us
with any questions about using Mutt on other hosts.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;set
folder=imaps://imap.isye.gatech.edu/INBOX&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;set
spoolfile=imaps://imap.isye.gatech.edu/INBOX&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;set hostname=isye.gatech.edu&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;set use_domain&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;set imap_user=allen&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Eudora&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;SPAN STYLE="font-weight: medium"&gt;We do
not currently recommend Eudora for use with the ISyE mail system.  It
is known to have difficulties with IMAP and further, is no longer
supported by OIT.  Consider using Thunderbird instead as it works
well, is free, and is our departmental standard.  Please feel free to
contact us via &lt;A HREF="mailto:helpdesk@isye.gatech.edu"&gt;helpdesk@isye.gatech.edu&lt;/A&gt;
with any questions or concerns.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;B&gt;Importing the Georgia Tech root
certificate on Windows&lt;/B&gt;&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;When using Microsoft Outlook 2003 you
may receive a message that reads "The server you are connected to
is using a security certificate that could not be verified.  A
certificate chain processed, but terminated in a root certificate
which is not trusted by the trust provider.  Do you want to continue
using this server?"  Follow these steps to install the correct
certificate:&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;OL&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Browse to
	"&lt;A HREF="http://ca.gatech.edu/root-formats.php"&gt;http://ca.gatech.edu/root-formats.php&lt;/A&gt;".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;At the very bottom of the page,
	right click where it says "Right click and download".  
	&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select "Save Target As" or
	"Save Link As" and choose a location for the file.  It should be
	named "gt-cert-chain.p7b".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;If not already open, start
	Microsoft Internet Explorer.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Select Tools-&gt;Internet Options.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click the "Content" tab.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click the "Certificates"
	button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click the "Import" button.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Enter the filename that you
	saved in step 3 or click "Browse" and locate that file.  If
	using "Browse" you will need to select "PKCS #7 Certificates"
	next to "Files of type:" at the bottom of the dialog.&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Choose "Automatically select
	the certificate store based on the type of certificate" and click
	"Next".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "Finish".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  You may be prompted about
	installing a certificate representing "Education and Research
	Client CA".  If so, click "Yes".&lt;/P&gt;
	&lt;LI&gt;&lt;P STYLE="margin-bottom: 0in"&gt;  Click "OK" in response to
	"The import was successful."&lt;/P&gt;
&lt;/OL&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;You may now close any open windows and

quit Internet Explorer if you desire.  Microsoft Outlook 2003 should
no longer prompt you about an invalid certificate.&lt;/P&gt;
&lt;P STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;&lt;B&gt;General Connection
Information&lt;/B&gt;&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;If you are using a mail
client which is not addressed in detail by this document, the
following information should allow you to get connected:&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;Receiving mail: Server
"imap.isye.gatech.edu", protocol IMAP, port 143 with TLS
security.  You may also use SSL on port 993 if necessary.  Do not use
"secure authentication" as this is not supported.&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;&lt;BR&gt;
&lt;/P&gt;
&lt;P ALIGN=LEFT STYLE="margin-bottom: 0in"&gt;Sending mail: Server
"mail.isye.gatech.edu", port 25.  Authenticated login is
preferred but not required.  Mail may not be sent by unauthenticated
users except when located in an ISyE building and connected directly
to the network.  Secure connection using TLS is preferred.  Note:
some Internet Service Providers will block this connection.  If you
find that you are unable to send mail, try using port 587 instead. 
This is an alternate which will often solve the problem.&lt;/P&gt;
&lt;/BODY&gt;
&lt;/HTML&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/96</link><pubDate>Thu, 01 May 2008 19:23:48 GMT</pubDate><guid isPermaLink="false">7337d4b4b6360c429a1f63796dbd66c2</guid></item><item><title>START HERE:  How to run Unix/Linux compute jobs using Condor</title><description>&lt;h2&gt;Instructions for the use of ISyE's computational Linux cluster:&lt;/h2&gt;&#xD;
&lt;b&gt;Initial requirements&lt;/b&gt;&#xD;
&lt;p&gt;You need an &lt;a href="http://www2.isye.gatech.edu/helpdesk/index.php?x=&amp;mod_id=2&amp;root=16&amp;id=29"&gt;ISyE Unix Account&lt;/a&gt;.&lt;/p&gt;&#xD;
&lt;b&gt;Logging in&lt;/b&gt;&#xD;
&lt;p&gt;The central 64-bit compute server is wren.isye.gatech.edu (or just "wren" if you are on ISyE's subnets).&lt;br&gt;&#xD;
You should be able to access wren via ssh using your usual ISyE Unix account and password.  Your Unix home directory will be mounted and accessible.&lt;/p&gt;&#xD;
&lt;b&gt;Compute cluster hierarchy&lt;/b&gt;&#xD;
&lt;p&gt;The central server, Wren, is called the "head node".  When compute jobs are ready to be run, the head node assigns execution of them to subordinate servers which are called "compute nodes".&lt;br&gt;&#xD;
Users only need to log into the head node.   The compute nodes do not support direct logins, and they cannot mount home directories.  Compute jobs must be submitted to them through the Condor batch queue scheduler.&lt;/p&gt;&#xD;
&lt;b&gt;Development&lt;/b&gt;&#xD;
&lt;p&gt;Development for 64-bit Linux compute jobs should be done on wren, and short interactive test runs can be performed there.  You should test your program "locally" on the head node before submitting it to Condor.   By "local" we mean executing the program in your login shell on wren.&lt;br&gt;&#xD;
You want to make sure your code starts and runs as you expect for at least a few minutes locally on wren, before you submit it to Condor.   By testing the program locally first, you will save yourself and everyone a lot of headaches.  Condor works great once your code is ready to go, but it's a very frustrating way to debug!&lt;br&gt;&#xD;
Long-running compute jobs and large batches of unattended short-running jobs are not allowed on the head node.&lt;br&gt;&#xD;
GUI development interfaces can be exported to the local X Windows desktop via ssh X forwarding (the ssh -X option).&lt;/p&gt;&#xD;
&lt;b&gt;Condor commands&lt;/b&gt;&#xD;
&lt;p&gt;Condor's executables are located in /opt/condor/bin, which should be in your default command path on wren, with man pages available for most important commands.&lt;/p&gt;&#xD;
Generally the most useful Condor commands are:&#xD;
&lt;pre&gt;&#xD;
   condor_submit -- submit jobs to the condor batch scheduler.&lt;br&gt;&#xD;
   condor_status -- show overall cluster status.&lt;br&gt;&#xD;
   condor_q      -- show current job queue and status of jobs.&lt;br&gt;&#xD;
   condor_rm     -- remove jobs from the condor queue.&lt;br&gt;&#xD;
&lt;/pre&gt;&#xD;
&lt;b&gt;Job submission&lt;/b&gt;&#xD;
&lt;p&gt;For most compute jobs, you will need to create a condor submit description file (a ".cmd" file) and then run "condor_submit &lt;filename&gt;.cmd".&lt;br&gt;&#xD;
An example .cmd file is listed below.   Other examples can be found in /opt/condor/examples, and the syntax for .cmd files is documented in the condor_submit man page.&lt;br&gt;&#xD;
In the simplest cases, you can submit a job to condor by running "consub &lt;i&gt;filename&lt;/i&gt;".  This will work for a simple program that has no options, no input and output files (so if run locally, output would go to the screen).  consub will create a simple &lt;i&gt;filename&lt;/i&gt;.cmd file, copy the executable to a compute node and run the job, and then copy the output back to &lt;i&gt;filename&lt;/i&gt;.out.&lt;/p&gt;&#xD;
&lt;b&gt;File accessibility on the compute nodes&lt;/b&gt;&#xD;
&lt;p&gt;You can run jobs directly from your Unix home directory tree, and all your files will be accessible to the compute nodes.&lt;br&gt;&#xD;
If you need more space than currently allocated, request it from IT.&lt;br&gt;&#xD;
It is possible to transfer files to the nodes, and then back to wren upon completion (should_transfer_files).  On dedicated compute clusters like ours this is generally not the desired method.  Your home directory is mounted on the compute nodes just as it is on wren or castle, so there is really no need to transfer files.&lt;/p&gt;&#xD;
&lt;b&gt;Log files&lt;/b&gt;&#xD;
&lt;p&gt;The Condor log file should be written to /tmp, rather than to your home directory tree.   Any user can create a directory in /tmp.   Typically just create /tmp/&lt;username&gt; and use that as an output path for the "log" directive (see example below).&lt;/p&gt;&#xD;
&lt;b&gt;Condor universe&lt;/b&gt;&#xD;
&lt;p&gt;You must specify a "universe" to run a condor job in.  For basic compute jobs written in any language, add a line to use the "vanilla" universe.  If you do not explicitly specify the universe, it will default to "standard" universe which will not work without special compile-time options.&lt;/p&gt;&#xD;
&lt;b&gt;Example .cmd file&lt;/b&gt;&#xD;
&lt;pre&gt;&#xD;
    universe        = vanilla&#xD;
    executable      = foo&#xD;
    output          = foo.out&#xD;
    error           = foo.err&#xD;
    log             = /tmp/&lt;username&gt;/foo.log&#xD;
    arguments       = 10 20 30&#xD;
    queue&#xD;
&lt;/pre&gt;&#xD;
&lt;p&gt;This command file should be called "foo.cmd" and placed in the same global scratch space subdirectory as the program "foo".  You will then type "condor_submit foo.cmd" to run this compute job.   Normal screen output will go to to "foo.out" and stderr will go to "foo.err".   The program expects three command-line&#xD;
arguments which are "10", "20", and "30".&lt;/p&gt;&#xD;
&lt;p&gt;&lt;b&gt;Note that the log file is placed in /tmp!  This is very important!&lt;/b&gt;   Log files written to NFS-mounted home or scratch directories will often break condor due to NFS locking problems.   So, once again, create a directory for yourself in /tmp, and write your log files there.&lt;/p&gt;&#xD;
&lt;p&gt;Any other input and output files generated by the program will be accessed normally, as long as the path is accessible to the program (normally, this means in your home or scratch directory).&lt;/p&gt;&#xD;
&lt;p&gt;In many cases you may also need to run jobs that won't work correctly without your login environment variables (such as PATH, LD_LIBRARY_PATH, or software-specific environment variables).  Since these won't be available by default on the compute nodes, you need to explicitly add them via the submit file using this line:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
     getenv = true&#xD;
&lt;/pre&gt;&#xD;
&lt;b&gt;Notification&lt;/b&gt;&#xD;
&lt;p&gt;The cluster will not normally notify you of job completion.   If you'd like notification, you should add one of the following lines depending on the level of notification you would like:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
    notification = error        &#xD;
    notification = complete&#xD;
    notification = always&#xD;
&lt;/pre&gt;&#xD;
&lt;p&gt;The default email address for these notifications is the ISyE email address of the user submitting the jobs.  If you'd like mail sent to an alternate address, add the following line:&lt;/p&gt;&#xD;
&lt;pre&gt;&#xD;
    notify_user = my.email@domain.com&#xD;
&lt;/pre&gt;&#xD;
&lt;b&gt;More on Condor&lt;/b&gt;&#xD;
&lt;p&gt;For further documentation, please see the &lt;a href="http://www.cs.wisc.edu/htcondor/manual/v7.9"&gt;Condor User's Manual&lt;/a&gt;.&lt;/p&gt;</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/95</link><pubDate>Mon, 25 Feb 2013 21:07:53 GMT</pubDate><guid isPermaLink="false">7bd9c8a2f87f425f4ac8e13028bf63e5</guid></item><item><title>How to securely delete sensitive data files.</title><description>&lt;h3&gt;Problem: &lt;/h3&gt;&#xD;
How to securely delete sensitive data files after looking at the spider generated log file.&#xD;
&lt;br&gt;&#xD;
&lt;br&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;br&gt;&#xD;
&lt;h3&gt;Solution: &lt;/h3&gt;&#xD;
1. Check whether Eraser is installed on your computer.&lt;br /&gt;&#xD;
This can be done by right clicking on the recycle bin. There should be 7 different ways of erasing your recycle bin. &lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
If this option is not available you can either:&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
a. &lt;br /&gt;&#xD;
Download then install the eraser application from the following location. &lt;br /&gt;&#xD;
http://www2.isye.gatech.edu/intranet/modules/spider/EraserSetup32.exe&lt;br /&gt;&#xD;
Note you will have be to be logged in with Administrative privileges to install this application.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
b. &lt;br /&gt;&#xD;
Send a request to helpdesk@isye.gatech.edu and we will install the application asap.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
2. After ensuring that the eraser application is installed, delete any sensitive files like you normally would, thus sending the files to the recycle bin.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
3. To securely erase them, right click on the recycle bin and select "Erase Recycle bin (1-pass Pseudorandom Data)"&lt;br /&gt;&#xD;
 &lt;br /&gt;&#xD;
You will get a prompt asking you to confirm erasing of recycle bin. Clicking "yes" will then securely empty your recycle bin.&lt;br /&gt;&#xD;
&lt;br /&gt;&#xD;
</description><link>http://www.isye.gatech.edu/helpdesk/kb/article/94</link><pubDate>Wed, 23 Apr 2008 21:48:43 GMT</pubDate><guid isPermaLink="false">85a489a5ec56054955fa31ab62d2f877</guid></item></channel></rss>
