<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.umiacs.umd.edu/umiacs/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jwebs</id>
	<title>UMIACS - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.umiacs.umd.edu/umiacs/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jwebs"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php/Special:Contributions/Jwebs"/>
	<updated>2026-04-23T04:16:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=PythonVirtualEnv&amp;diff=7063</id>
		<title>PythonVirtualEnv</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=PythonVirtualEnv&amp;diff=7063"/>
		<updated>2016-08-03T18:41:38Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Using a different python version */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A virtual environment is an isolated working copy of Python, which allows you to work on specific projects without affecting others.  It creates an environment that has its own installation directories and that doesn’t share libraries with other virtualenv environments (and optionally doesn’t access the globally-installed libraries either).&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
virtualenv can be found in the following locations:&lt;br /&gt;
*&#039;&#039;&#039;RHEL5&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;/usr/local/stow/virtualenv-1.5.1/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;RHEL6&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;/opt/local/stow/virtualenv-1.9.1/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;RHEL7&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;/usr/lib/python2.7/site-packages/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;SOURCE&#039;&#039;&#039; (most up-to-date)&lt;br /&gt;
:&amp;lt;code&amp;gt;https://virtualenv.pypa.io/en/latest/&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;https://github.com/pypa/virtualenv&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Basic Usage==&lt;br /&gt;
The following steps outline how to create a virtual environment using the system Python.&lt;br /&gt;
&#039;&#039;Please note the that following examples were done using RHEL5.  Please adjust the commands to reflect the OS you are on.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Creating the virtual environment (example)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ git clone https://github.com/pypa/virtualenv.git&lt;br /&gt;
-bash-3.2$ python virtualenv/virtualenv.py env&lt;br /&gt;
New python executable in env/bin/python&lt;br /&gt;
Installing setuptools.............done.&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env/bin/activate&lt;br /&gt;
&lt;br /&gt;
(env)-bash-3.2$ which python&lt;br /&gt;
~/env/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will notice that once you have created your virtual environment, you will need to use the &#039;source&#039; command to load it into your environment. In bash and tcsh, the environment can be deactivated by typing &amp;lt;code&amp;gt;deactivate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Installing Python Modules====&lt;br /&gt;
Once you have created your virtual environment and sourced it, you can install additional modules using the &#039;pip&#039; command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip install nose&lt;br /&gt;
Downloading/unpacking nose&lt;br /&gt;
  Downloading nose-1.3.3.tar.gz (274Kb): 274Kb downloaded&lt;br /&gt;
  Running setup.py egg_info for package nose&lt;br /&gt;
&lt;br /&gt;
...output omitted for brevity...&lt;br /&gt;
&lt;br /&gt;
Successfully installed nose&lt;br /&gt;
Cleaning up...&lt;br /&gt;
(env)-bash-3.2$ &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Listing installed Python Modules====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip freeze&lt;br /&gt;
nose==1.3.3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
====Uninstalling Python Modules====&lt;br /&gt;
&#039;pip&#039; can also be used to remove a module from the environment.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip uninstall nose&lt;br /&gt;
Uninstalling nose:&lt;br /&gt;
  /chimerahomes/sabobbin/env/bin/nosetests&lt;br /&gt;
  /chimerahomes/sabobbin/env/bin/nosetests-2.4&lt;br /&gt;
  /chimerahomes/sabobbin/env/lib/python2.4/site-packages/nose&lt;br /&gt;
  /chimerahomes/sabobbin/env/lib/python2.4/site-packages/nose-1.3.3-py2.4.egg-info&lt;br /&gt;
  /chimerahomes/sabobbin/env/man/man1/nosetests.1&lt;br /&gt;
Proceed (y/n)? y&lt;br /&gt;
  Successfully uninstalled nose&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Switching between virtual environments===&lt;br /&gt;
To switch between different environments, simply deactivate your current virtual environment, and source the other.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ which python&lt;br /&gt;
~/env/bin/python&lt;br /&gt;
&lt;br /&gt;
(env)-bash-3.2$ deactivate &lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env2.7/bin/activate&lt;br /&gt;
&lt;br /&gt;
(env2.7)-bash-3.2$ which python&lt;br /&gt;
~/env2.7/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Using a different python version==&lt;br /&gt;
To create a virtual environment that uses a version of python that is different then the system default, simply create the virtualenv with your target version of Python. This could be a Python build we provide via [[Modules]], or one you&#039;ve built yourself. Virtualenv will pick up the first python version it finds in your $PATH, or you can direct it to a specific location with the &amp;quot;--python&amp;quot; flag.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ module load Python&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ which python&lt;br /&gt;
/usr/local/stow/python-2.7.2/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039;  virtualenv will include any modules listed in your PYTHONPATH when initializing the virtual environment.  To ensure a vanilla environment, it might be a good idea to verify your PYTHONPATH is empty.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ echo $PYTHONPATH&lt;br /&gt;
/usr/local/stow/python-commonmodules-2.7.2.0/lib/python2.7/site-packages&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ PYTHONPATH=&#039;&#039;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ /usr/local/stow/virtualenv-1.5.1/virtualenv.py env2.7&lt;br /&gt;
New python executable in env2.7/bin/python&lt;br /&gt;
Installing setuptools....................done.&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env2.7/bin/activate&lt;br /&gt;
(env2.7)-bash-3.2$ which python&lt;br /&gt;
~/env2.7/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UbuntuPrinting&amp;diff=6853</id>
		<title>UbuntuPrinting</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UbuntuPrinting&amp;diff=6853"/>
		<updated>2016-03-17T18:08:09Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: no Junos VPN availability in Ubuntu at the moment&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
:Printing from your personal Ubuntu laptop or desktop is supported.  If you are sitting at a supported UMIACS Ubuntu LTS desktop then please see our common UNIX/Linux printing documentation for [[CUPS]].  This documentation assumes the current Ubuntu LTS 12.04.xx release and while older or newer versions of Ubuntu may work, we have not tested them.&lt;br /&gt;
===Printer Accessibility===&lt;br /&gt;
:In order to print you will &#039;&#039;&#039;need to be on the UMIACS internal network,&#039;&#039;&#039; either via a wired proxy drop or an [https://wiki.umiacs.umd.edu/umiacs/index.php/SecureShellTunneling SSH tunnel].&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
==Connecting to a printer==&lt;br /&gt;
In order for printing to function properly, you must complete &#039;&#039;&#039;ALL&#039;&#039;&#039; of the following steps:&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
#Open the &#039;Printing&#039; dialog box and click &#039;Add&#039;&lt;br /&gt;
#Expand the &#039;Network Printer&#039; dropdown list, and select &#039;Find Network Printer&#039;&lt;br /&gt;
#In the host field type &amp;quot;print.umiacs.umd.edu&amp;quot; and click find.&lt;br /&gt;
#:[[Image:UbuntuPrint01.png|thumb|none|300px|[3] Type &#039;print.umiacs.umd.edu&#039; into the &#039;Host:&#039; field and then click Find]]&lt;br /&gt;
#Select the print queue you wish to print to, click forward.  If you are unsure which queue to use, see the [[PrinterQueueNaming| selecting a print queue]] page.&lt;br /&gt;
#:[[Image:UbuntuPrint02.png|thumb|none|300px|[4] Select the queue you wish to print too]]&lt;br /&gt;
#Name the printer.  &#039;&#039;&#039;Take note of the model name listed in the Description.  This will be used later!&#039;&#039;&#039; Then click &#039;Apply&#039;&lt;br /&gt;
#:[[Image:UbuntuPrint03.png|thumb|none|300px|[5] Take note of the printer description, this will be used in later steps!]]&lt;br /&gt;
#In the printing dialog box, right click the newly added printer and select properties.&lt;br /&gt;
#In the &#039;Make and Model&#039; line, click &#039;change&#039;&lt;br /&gt;
#:[[Image:UbuntuPrint04.png|thumb|none|300px|[7] Click &#039;change&#039; next the &#039;Make and Model&#039; field.]]&lt;br /&gt;
#Ubuntu will now load a list of printers models (This will take a few moments).  From that list, select the brand of the printer you are connecting to as noted in step 5.&lt;br /&gt;
#:[[Image:UbuntuPrint05.png|thumb|none|300px|[8] Select the brand of the printer as you noted in step 5]]&lt;br /&gt;
#Select the specific model of the printer as noted in step 5.  Then click forward.&lt;br /&gt;
#:[[Image:UbuntuPrint06.png|thumb|none|300px|[9] Select the model of the printer as you noted in step 5]]&lt;br /&gt;
#Leave the &amp;quot;try to copy the option settings over from the old PPD&#039; option selected and click forward.&lt;br /&gt;
#Select any additional features available for the printer (i.e. duplexing), and then click forward.&lt;br /&gt;
#Verify this process by printing a test page.  You should get the Default ubuntu test page.  If you just get a page with a string of text then printer is not properly configured, and you should verify the settings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==[[PrinterQueueNaming|How to select a print queue]]==&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Printing&amp;diff=6558</id>
		<title>Printing</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Printing&amp;diff=6558"/>
		<updated>2015-07-18T00:24:52Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Printing==&lt;br /&gt;
*&#039;&#039;&#039;Operating Specific printing guides:&#039;&#039;&#039;&lt;br /&gt;
:* [[WindowsPrinting|Windows Printing Guide]]&lt;br /&gt;
:* [[OSXPrinting|Mac OS X Printing Guide]]&lt;br /&gt;
:* [[CUPS|Linux Printing Guide (RHEL and Ubuntu)]]&lt;br /&gt;
:* [[UbuntuPrinting|Self supported Ubuntu Printing Guide]]&lt;br /&gt;
&lt;br /&gt;
* Printing from the wireless or Non-UMIACS Networks&lt;br /&gt;
** UMIACS account holders: Connect to the UMIACS [[VPN]].  Afterwards, follow the instructions in [[WindowsPrinting]] for Windows or [[OSXPrinting]] for Mac.&lt;br /&gt;
** UMIACS guests and self-supported systems may print using the [[Windows7PrintingNonUMIACS | open print server]]&lt;br /&gt;
&lt;br /&gt;
* [[PrinterQueueNaming|Selecting A Print Queue (Color, Banners, etc)]]&lt;br /&gt;
&lt;br /&gt;
* [[UNIXPrinting|Legacy UNIX Printing Guide (Linux and Solaris)]]&lt;br /&gt;
&lt;br /&gt;
* [[Umiacs_Public_Printers | Umiacs Public Printers]]&lt;br /&gt;
&lt;br /&gt;
*[[PrinterTroubleshooting | Printer troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=6500</id>
		<title>SecureShellTunneling</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=6500"/>
		<updated>2015-05-04T17:09:18Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Example: SOCKS proxy, Browser configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Port Forwarding==&lt;br /&gt;
&lt;br /&gt;
When you want to just forward a specific port locally to a remote port.   &lt;br /&gt;
&lt;br /&gt;
This example will create a local port 9999 that will be forwarded to the remote host webbserver.umiacs.umd.edu and its port 8000 through the host openlab.umiacs.umd.edu.&lt;br /&gt;
&lt;br /&gt;
* ssh -NfL 9999:webserver.umiacs.umd.edu:8000 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
This example will create a local port 13389 that will be forwarded to a remote host that is running a [[Remote Desktop |RDP]] client like Windows through the host openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
* ssh -L 13389:my-desktop.pc.umiacs.umd.edu:3389 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
==SOCKS Proxy==&lt;br /&gt;
&lt;br /&gt;
[[SSH]] can also tunnel all traffic coming into a certain port through a SOCKS v5 proxy.  Many browsers and some operating systems can be setup to then connect to this proxy to allow them again to look like they are coming from the host name you specify in your [[SSH]] command. &lt;br /&gt;
&lt;br /&gt;
* ssh -ND 7777 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
Please note: when you configure proxy settings for a browser (or your whole operating system) all the traffic for that browser (or the OS) will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
==Port Forwarding with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can achieve the same types of tunnels using PuTTY or a similar SSH client. In PuTTY, the port forwarding configuration dialogue can be found under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:PuTTYWin7Tunnel.png]]&lt;br /&gt;
&lt;br /&gt;
This example will create a local port &#039;&#039;&#039;8889&#039;&#039;&#039; that is attached to the remote host &#039;&#039;&#039;clipsm301.umiacs.umd.edu&#039;&#039;&#039; on its port &#039;&#039;&#039;8000&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Socks Proxy with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can tunnel traffic coming into a certain port through a SOCKS v5 proxy by using PuTTY or a similar SSH client. Many browsers and some operating systems can be setup to connect to this proxy to allow them to look like they are coming from the host name you specify.&lt;br /&gt;
&lt;br /&gt;
In PuTTY under &amp;quot;Sessions&amp;quot; set the Host Name:&lt;br /&gt;
[[Image:Putty1.png]]&lt;br /&gt;
&lt;br /&gt;
Then under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot; enter a port number and set the type of forwarding to &amp;quot;Dynamic&amp;quot; and press add:&lt;br /&gt;
&lt;br /&gt;
[[Image:Putty2.png]]&lt;br /&gt;
&lt;br /&gt;
Click Open and log into the host.&lt;br /&gt;
As long as this PuTTY window is open and you are logged in, you can use the SOCKS proxy.&lt;br /&gt;
&lt;br /&gt;
Please note that when you configure proxy settings for a browser or your whole operating system, all the traffic for that browser or your OS will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
== Example: SOCKS proxy, Browser configuration ==&lt;br /&gt;
[[Image:FF_Proxy_1.png|thumb|]] [[Image:FF_Proxy_2.png|thumb|]]&lt;br /&gt;
There are too many variations here to cover them all, but they all follow the same general pattern and the following example should be generally applicable. We&#039;ll use Firefox for this example. Screenshots are from FF 37.0.2&lt;br /&gt;
&lt;br /&gt;
* Under &amp;lt;code&amp;gt; Preferences &amp;gt; Advanced &amp;gt; Network &amp;gt; Connection &amp;gt; Settings... &amp;lt;/code&amp;gt; &lt;br /&gt;
* choose &amp;lt;code&amp;gt;Manually proxy configuration:&amp;lt;/code&amp;gt;,&lt;br /&gt;
* enter &amp;lt;code&amp;gt;127.0.0.1&amp;lt;/code&amp;gt; for the proxy&lt;br /&gt;
* enter the port you chose earlier for dynamic forwarding (7777 in the example above.) &lt;br /&gt;
* Check &amp;lt;code&amp;gt;Use this proxy server for all protocols&amp;lt;/code&amp;gt;, and then click OK. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; this will continue to send all browser traffic through your SSH tunnel until the configuration is reverted. The SSH connection must be established for traffic to pass through to the destination network. Firefox has a very useful plugin called &amp;quot;FoxyProxy&amp;quot; that allows conditional proxies to be set up, if you&#039;re interested in adding some intelligence/complexity to your proxy configuration.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=6499</id>
		<title>SecureShellTunneling</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=6499"/>
		<updated>2015-05-04T17:06:25Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added Browser Config example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Port Forwarding==&lt;br /&gt;
&lt;br /&gt;
When you want to just forward a specific port locally to a remote port.   &lt;br /&gt;
&lt;br /&gt;
This example will create a local port 9999 that will be forwarded to the remote host webbserver.umiacs.umd.edu and its port 8000 through the host openlab.umiacs.umd.edu.&lt;br /&gt;
&lt;br /&gt;
* ssh -NfL 9999:webserver.umiacs.umd.edu:8000 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
This example will create a local port 13389 that will be forwarded to a remote host that is running a [[Remote Desktop |RDP]] client like Windows through the host openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
* ssh -L 13389:my-desktop.pc.umiacs.umd.edu:3389 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
==SOCKS Proxy==&lt;br /&gt;
&lt;br /&gt;
[[SSH]] can also tunnel all traffic coming into a certain port through a SOCKS v5 proxy.  Many browsers and some operating systems can be setup to then connect to this proxy to allow them again to look like they are coming from the host name you specify in your [[SSH]] command. &lt;br /&gt;
&lt;br /&gt;
* ssh -ND 7777 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
Please note: when you configure proxy settings for a browser (or your whole operating system) all the traffic for that browser (or the OS) will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
==Port Forwarding with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can achieve the same types of tunnels using PuTTY or a similar SSH client. In PuTTY, the port forwarding configuration dialogue can be found under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:PuTTYWin7Tunnel.png]]&lt;br /&gt;
&lt;br /&gt;
This example will create a local port &#039;&#039;&#039;8889&#039;&#039;&#039; that is attached to the remote host &#039;&#039;&#039;clipsm301.umiacs.umd.edu&#039;&#039;&#039; on its port &#039;&#039;&#039;8000&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Socks Proxy with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can tunnel traffic coming into a certain port through a SOCKS v5 proxy by using PuTTY or a similar SSH client. Many browsers and some operating systems can be setup to connect to this proxy to allow them to look like they are coming from the host name you specify.&lt;br /&gt;
&lt;br /&gt;
In PuTTY under &amp;quot;Sessions&amp;quot; set the Host Name:&lt;br /&gt;
[[Image:Putty1.png]]&lt;br /&gt;
&lt;br /&gt;
Then under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot; enter a port number and set the type of forwarding to &amp;quot;Dynamic&amp;quot; and press add:&lt;br /&gt;
&lt;br /&gt;
[[Image:Putty2.png]]&lt;br /&gt;
&lt;br /&gt;
Click Open and log into the host.&lt;br /&gt;
As long as this PuTTY window is open and you are logged in, you can use the SOCKS proxy.&lt;br /&gt;
&lt;br /&gt;
Please note that when you configure proxy settings for a browser or your whole operating system, all the traffic for that browser or your OS will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
== Example: SOCKS proxy, Browser configuration ==&lt;br /&gt;
[[Image:FF_Proxy_1.png|thumb|]] [[Image:FF_Proxy_2.png|thumb|]]&lt;br /&gt;
There are too many variations here to cover them all, but they all follow the same general pattern and the following example should be generally applicable. We&#039;ll use Firefox for this example. Screenshots are from FF 37.0.2&lt;br /&gt;
&lt;br /&gt;
* Under &amp;lt;code&amp;gt; Preferences &amp;gt; Advanced &amp;gt; Network &amp;gt; Connection &amp;gt; Settings... &amp;lt;/code&amp;gt; &lt;br /&gt;
* choose &amp;lt;code&amp;gt;Manually proxy configuration:&amp;lt;/code&amp;gt;,&lt;br /&gt;
* enter &amp;lt;code&amp;gt;127.0.0.1&amp;lt;/code&amp;gt; for the proxy&lt;br /&gt;
* enter the port you chose earlier for dynamic forwarding (7777 in the example above.) &lt;br /&gt;
* Check &amp;lt;code&amp;gt;Use this proxy server for all protocols&amp;lt;/code&amp;gt;, and then click OK. &lt;br /&gt;
&lt;br /&gt;
Bear in mind that this will continue to send all browser traffic through your SSH tunnel until the configuration is reverted. The SSH connection must be established for traffic to pass through to the destination network. Firefox has a very useful plugin called &amp;quot;FoxyProxy&amp;quot; that allows conditional proxies to be set up, if you&#039;re interested in adding some intelligence/complexity to your proxy configuration.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=File:FF_Proxy_2.png&amp;diff=6498</id>
		<title>File:FF Proxy 2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=File:FF_Proxy_2.png&amp;diff=6498"/>
		<updated>2015-05-04T17:00:42Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: FF 37.0.2 Advanced Preferences&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;FF 37.0.2 Advanced Preferences&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=File:FF_Proxy_1.png&amp;diff=6497</id>
		<title>File:FF Proxy 1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=File:FF_Proxy_1.png&amp;diff=6497"/>
		<updated>2015-05-04T17:00:03Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: FF 37.0.2 Advanced Preferences&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;FF 37.0.2 Advanced Preferences&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=PythonVirtualEnv&amp;diff=6496</id>
		<title>PythonVirtualEnv</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=PythonVirtualEnv&amp;diff=6496"/>
		<updated>2015-05-02T23:17:51Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: some minor updates &amp;amp; broken link fix. This page needs an overhaul.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A virtual environment is an isolated working copy of Python which allows you to to work on specific projects, without affecting others.  It creates an environment that has its own installation directories, that doesn’t share libraries with other virtualenv environments (and optionally doesn’t access the globally installed libraries either).&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
virtualenv can be found in the following locations:&lt;br /&gt;
*&#039;&#039;&#039;RHEL5&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;usr/local/stow/virtualenv-1.5.1/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;RHEL6&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;/opt/local/stow/virtualenv-1.9.1/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;RHEL7&#039;&#039;&#039;&lt;br /&gt;
:&amp;lt;code&amp;gt;/usr/lib/python2.7/site-packages/virtualenv.py&amp;lt;/code&amp;gt;&lt;br /&gt;
*&#039;&#039;&#039;SOURCE&#039;&#039;&#039; (most up-to-date)&lt;br /&gt;
:&amp;lt;code&amp;gt;https://virtualenv.pypa.io/en/latest/&amp;lt;/code&amp;gt;&lt;br /&gt;
:&amp;lt;code&amp;gt;https://github.com/pypa/virtualenv&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Basic Usage==&lt;br /&gt;
The following steps outline how to create a virtual environment using the system Python.&lt;br /&gt;
&#039;&#039;Please note the that following examples were done using RHEL5.  Please adjust the commands to reflect the OS you are on.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Creating the virtual environment (example)====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Get a current version of UMIACS-provided python&lt;br /&gt;
-bash-3.2$ module load Python&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ git clone https://github.com/pypa/virtualenv.git&lt;br /&gt;
-bash-3.2$ python virtualenv/virtualenv.py env&lt;br /&gt;
New python executable in env/bin/python&lt;br /&gt;
Installing setuptools.............done.&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env/bin/activate&lt;br /&gt;
&lt;br /&gt;
(env)-bash-3.2$ which python&lt;br /&gt;
~/env/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will notice that once you have created your virtual environment, you will need to use the &#039;source&#039; command to load it into your environment. In bash and tcsh, the environment can be deactivated by typing &amp;lt;code&amp;gt;deactivate&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Installing Python Modules====&lt;br /&gt;
Once you have created your virtual environment and sourced it, you can install additional modules using the &#039;pip&#039; command.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip install nose&lt;br /&gt;
Downloading/unpacking nose&lt;br /&gt;
  Downloading nose-1.3.3.tar.gz (274Kb): 274Kb downloaded&lt;br /&gt;
  Running setup.py egg_info for package nose&lt;br /&gt;
&lt;br /&gt;
...output omitted for brevity...&lt;br /&gt;
&lt;br /&gt;
Successfully installed nose&lt;br /&gt;
Cleaning up...&lt;br /&gt;
(env)-bash-3.2$ &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Listing installed Python Modules====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip freeze&lt;br /&gt;
nose==1.3.3&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
====Uninstalling Python Modules====&lt;br /&gt;
&#039;pip&#039; can also be used to remove a module from the environment.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ pip uninstall nose&lt;br /&gt;
Uninstalling nose:&lt;br /&gt;
  /chimerahomes/sabobbin/env/bin/nosetests&lt;br /&gt;
  /chimerahomes/sabobbin/env/bin/nosetests-2.4&lt;br /&gt;
  /chimerahomes/sabobbin/env/lib/python2.4/site-packages/nose&lt;br /&gt;
  /chimerahomes/sabobbin/env/lib/python2.4/site-packages/nose-1.3.3-py2.4.egg-info&lt;br /&gt;
  /chimerahomes/sabobbin/env/man/man1/nosetests.1&lt;br /&gt;
Proceed (y/n)? y&lt;br /&gt;
  Successfully uninstalled nose&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Switching between virtual environments===&lt;br /&gt;
To switch between different environments, simply deactivate your current virtual environment, and source the other.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
(env)-bash-3.2$ which python&lt;br /&gt;
~/env/bin/python&lt;br /&gt;
&lt;br /&gt;
(env)-bash-3.2$ deactivate &lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env2.7/bin/activate&lt;br /&gt;
&lt;br /&gt;
(env2.7)-bash-3.2$ which python&lt;br /&gt;
~/env2.7/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Using a different python version==&lt;br /&gt;
To create a virtual environment that uses a version of python that is different then the system default, simply create the virtualenv with your target version of Python.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ module load Python&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ which python&lt;br /&gt;
/usr/local/stow/python-2.7.2/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Important:&#039;&#039;&#039;  virtualenv will include any modules listed in your PYTHONPATH when initializing the virtual environment.  To ensure a vanilla environment, it might be a good idea to verify your PYTHONPATH is empty.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ echo $PYTHONPATH&lt;br /&gt;
/usr/local/stow/python-commonmodules-2.7.2.0/lib/python2.7/site-packages&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ PYTHONPATH=&#039;&#039;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
-bash-3.2$ /usr/local/stow/virtualenv-1.5.1/virtualenv.py env2.7&lt;br /&gt;
New python executable in env2.7/bin/python&lt;br /&gt;
Installing setuptools....................done.&lt;br /&gt;
&lt;br /&gt;
-bash-3.2$ source env2.7/bin/activate&lt;br /&gt;
(env2.7)-bash-3.2$ which python&lt;br /&gt;
~/env2.7/bin/python&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UsrLocal&amp;diff=6478</id>
		<title>UsrLocal</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UsrLocal&amp;diff=6478"/>
		<updated>2015-02-28T02:01:11Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; Please see [[Modules]], which is now our preferred method of providing locally-built software to the Institute, as well as its various labs and centers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;/usr/local&amp;lt;/tt&amp;gt; is managed via a [[Stow]] system.&lt;br /&gt;
&lt;br /&gt;
If you are looking for a specific piece of software you can list the directory &amp;lt;tt&amp;gt;/usr/local/stow&amp;lt;/tt&amp;gt;.  Some software is linked in with the &amp;lt;tt&amp;gt;stow&amp;lt;/tt&amp;gt; command directly into &amp;lt;tt&amp;gt;bin,lib,man,sbin&amp;lt;/tt&amp;gt; directories in &amp;lt;tt&amp;gt;/usr/local&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Starting with [[RHEL6]] the software will be moving from &amp;lt;tt&amp;gt;/usr/local&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;/opt/local&amp;lt;/tt&amp;gt; to work around some issues with the root user and problems with NFS.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=CrowdStrike&amp;diff=6468</id>
		<title>CrowdStrike</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=CrowdStrike&amp;diff=6468"/>
		<updated>2015-01-30T23:15:57Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Free malware/virus removal tools ==&lt;br /&gt;
For non-UMIACS supported systems, there are several virus and malware protection and removal tools available. This page lists and describes some of them.&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; F-Secure&lt;br /&gt;
* [http://www.f-secure.com/en/web/labs_global/removal-tools/-/carousel/view/142 Bootable Scan]&lt;br /&gt;
If your computer no longer starts due to malware corrupting the operating system, or you suspect the security software has been compromised,this bootable cd can securely boot up the computer and check the programs installed.The Rescue CD can also be used for more advanced repair and data recovery operations.&lt;br /&gt;
* [http://www.f-secure.com/en/web/home_global/online-scanner Online Scan]&amp;lt;/li&amp;gt;&lt;br /&gt;
Similar to the bootable scan, the online scanner helps to get rid of viruses and spyware that may cause problems on your PC.&lt;br /&gt;
&amp;lt;li&amp;gt; [https://www.malwarebytes.org/mwb-download/ Malwarebytes]&amp;lt;/li&amp;gt;&lt;br /&gt;
This free version is limited, but can also perform malware and virus scans&lt;br /&gt;
&amp;lt;li&amp;gt; [http://www.superantispyware.com/superantispyware.html SUPERAntiSpyware]&amp;lt;/li&amp;gt;&lt;br /&gt;
This free version is also limited but performs multiple different malware scans such installed or internet spyware/adware&lt;br /&gt;
&amp;lt;li&amp;gt; [http://www.kaspersky.com/antivirus-removal-tool?form=1 Kaspersky virus removal tool]&amp;lt;/li&amp;gt;&lt;br /&gt;
This provides a virus scan with updated virus definitions&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Other &amp;quot;offline&amp;quot; (bootable) Scanners ==&lt;br /&gt;
Offline/bootable scanners work without loading your operating system, and can provide an alternate means for detecting and mitigating threats that may use various tactics to hide from your favorite installed AV suite.&lt;br /&gt;
* [http://support.kaspersky.com/viruses/rescuedisk#downloads Kaspersky Rescue Disk]&lt;br /&gt;
* [http://www.bitdefender.com/support/how-to-create-a-bitdefender-rescue-cd-627.html BitDefender Rescue CD]&lt;br /&gt;
* [https://www.f-secure.com/en/web/labs_global/rescue-cd F-Secure Rescue CD]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6369</id>
		<title>OBJ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6369"/>
		<updated>2014-11-04T19:59:37Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* UMIACS Object Store */ Added a link to OBJbox WebUI&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= UMIACS Object Store =&lt;br /&gt;
A object store is a simple web based storage solution focused on reliability, scalability and security. It is best suited for public content storage/distribution, archiving data or secure data sharing between users. Our Object Storage can be used through the [https://obj.umiacs.umd.edu/obj web interface], the command line [[UMobj]] utilities, third-party graphical [[S3Clients | clients]], and even programmatically using many popular programming languages.  We support a subset of the Amazon Simple Storage Services [http://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html (S3) API], built around a technology called [http://ceph.com/ Ceph].&lt;br /&gt;
&lt;br /&gt;
= Getting Started =&lt;br /&gt;
UMIACS users are initially allocated 50GB of storage and faculty 500GB.&lt;br /&gt;
To get started you just need to log in to create your account and you will be redirected to the initial help page.  You can find the link from our https://intranet.umiacs.umd.edu site as &amp;quot;OBJbox Object Store&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Phishing&amp;diff=6368</id>
		<title>Phishing</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Phishing&amp;diff=6368"/>
		<updated>2014-11-04T08:29:07Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Phishing attacks may be hard to distinguish from legitimate administrative messages, especially those in which the supposed UMIACS staff advise or require users to take administrative actions related to their account (e.g. storage quota, email account, or general account usage). &lt;br /&gt;
&lt;br /&gt;
Below are some helpful tips and practices that will make it easier to distinguish between legitimate UMIACS staff messages and phishing attempts.&lt;br /&gt;
&lt;br /&gt;
==Legitimate Mail from Staff==&lt;br /&gt;
&lt;br /&gt;
The [https://www.intranet.umiacs.umd.edu UMIACS intranet site] will always have a posted announcement of any administrative actions we wish our users to take collectively. We suggest to always type this address into your browser or have a bookmark for this site. This URL will also always redirect to a SSL-secured site. Please check that your browser is reporting a secure connection when visiting the site. This will always be the case for any URL in the *.umiacs.umd.edu domain and is currently valid until March 15th, 2017. UMIACS staff will communicate any changes or updates to the certificate validating this via an announcement.&lt;br /&gt;
&lt;br /&gt;
When we do send out requests for advisory and mandatory actions for a user they will be signed with a staff member&#039;s GPG key. We provide a tool called Verify Staff GPG Messages from the UMIACS intranet site (also linked below). This allows you to paste the text of the message and confirm that the sender is legitimate. Please note that other communications that are initiated by users through our Jira ticket system or in response to these tickets will not be signed.&lt;br /&gt;
* [https://intranet.umiacs.umd.edu/staff/gpg/verify Verify Staff GPG Messages]&lt;br /&gt;
&lt;br /&gt;
==Some Telltale Signs of Phishing==&lt;br /&gt;
&lt;br /&gt;
The above steps should ensure that you are properly able to identify legitimate messages sent by staff. Below are some additional generic signs that should help identify phishing attempts.&lt;br /&gt;
&lt;br /&gt;
* Bogus to and from addresses (not within the UMIACS or UMD domains)&lt;br /&gt;
* Message not directly referencing you by name (e.g. &amp;quot;Hello user&amp;quot; or &amp;quot;Hello researcher&amp;quot;)&lt;br /&gt;
* Sender of message demanding that action be taken immediately or consequences will occur (without an appropriate GPG key included)&lt;br /&gt;
* Poor grammar and spelling in the message&lt;br /&gt;
* Hyperlinks pointing to different locations than they claim to or shady attachments being included with the message&lt;br /&gt;
**&#039;&#039;&#039;WARNING: Do NOT click on any links or open any attachments in a message you suspect to be a phishing attempt, as these may lead to the execution of malicious programs on your machine. Instead, hover over links to check where they really point to.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If you ever have questions about the legitimacy of a message please open a ticket with staff by sending mail to [mailto:staff@umiacs.umd.edu staff] or call our [[HelpDesk | Help Desk]] and we can verify whether or not it was sent out by staff.&lt;br /&gt;
&lt;br /&gt;
==If You Have Fallen Victim==&lt;br /&gt;
&lt;br /&gt;
If you believe you&#039;ve fallen victim to a phishing attack or otherwise believe your account may have been compromised, please open a ticket via sending mail to [mailto:staff@umiacs.umd.edu staff] or contact the [[HelpDesk | Help Desk]] immediately. The sooner we know about any potential issues the sooner we can take preventive measures to make sure as little harm is done as possible. This typically will involve a password change as well as possibly locking out access to your account for some period of time while we ensure your account is secure.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6367</id>
		<title>OBJ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6367"/>
		<updated>2014-11-04T07:27:35Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= UMIACS Object Store =&lt;br /&gt;
A object store is a simple web based storage solution focused on reliability, scalability and security. It is best suited for public content storage/distribution, archiving data or secure data sharing between users. Our Object Storage can be used through the web interface, the command line [[UMobj]] utilities, third-party graphical [[S3Clients | clients]], and even programmatically using many popular programming languages.  We support a subset of the Amazon Simple Storage Services [http://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html (S3) API], built around a technology called [http://ceph.com/ Ceph].&lt;br /&gt;
&lt;br /&gt;
= Getting Started =&lt;br /&gt;
UMIACS users are initially allocated 50GB of storage and faculty 500GB.&lt;br /&gt;
To get started you just need to log in to create your account and you will be redirected to the initial help page.  You can find the link from our https://intranet.umiacs.umd.edu site as &amp;quot;OBJbox Object Store&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6366</id>
		<title>OBJ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6366"/>
		<updated>2014-11-04T07:27:19Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: added link to S3Clients&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= UMIACS Object Store =&lt;br /&gt;
A object store is a simple web based storage solution focused on reliability, scalability and security. It is best suited for public content storage/distribution, archiving data or secure data sharing between users. Our Object Storage can be used through the web interface, the command line [[UMobj]] utilities, third-party graphical [[S3Clients clients]], and even programmatically using many popular programming languages.  We support a subset of the Amazon Simple Storage Services [http://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html (S3) API], built around a technology called [http://ceph.com/ Ceph].&lt;br /&gt;
&lt;br /&gt;
= Getting Started =&lt;br /&gt;
UMIACS users are initially allocated 50GB of storage and faculty 500GB.&lt;br /&gt;
To get started you just need to log in to create your account and you will be redirected to the initial help page.  You can find the link from our https://intranet.umiacs.umd.edu site as &amp;quot;OBJbox Object Store&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6363</id>
		<title>OBJ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=OBJ&amp;diff=6363"/>
		<updated>2014-11-04T07:17:51Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: init&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= UMIACS Object Store =&lt;br /&gt;
A object store is a simple web based storage solution focused on reliability, scalability and security. It is best suited for public content storage/distribution, archiving data or secure data sharing between users. Our Object Storage can be used through the web interface, the command line [[UMobj]] utilities, third-party graphical clients, and even programmatically using many popular programming languages.  We support a subset of the Amazon Simple Storage Services [http://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html (S3) API], built around a technology called [http://ceph.com/ Ceph].&lt;br /&gt;
&lt;br /&gt;
= Getting Started =&lt;br /&gt;
UMIACS users are initially allocated 50GB of storage and faculty 500GB.&lt;br /&gt;
To get started you just need to log in to create your account and you will be redirected to the initial help page.  You can find the link from our https://intranet.umiacs.umd.edu site as &amp;quot;OBJbox Object Store&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=5311</id>
		<title>Jira</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=5311"/>
		<updated>2013-08-18T16:45:37Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;JIRA is a request and bug tracker that UMIACS uses to provide our [[HelpDesk]] functionality to our users. It can be accessed [https://intranet.umiacs.umd.edu/jira here. ]&lt;br /&gt;
&lt;br /&gt;
It is a web based ticketing system that allows both users and staff to maintain greater control over their tickets and makes communication and resolution of issues a seamless process. &lt;br /&gt;
&lt;br /&gt;
== Using JIRA ==&lt;br /&gt;
&lt;br /&gt;
JIRA automatically generates an account when it receives an email; &#039;&#039;&#039;by default, you can log in to JIRA with your UMIACS email address (not username!)&#039;&#039;&#039; and UMIACS [[Kerberos]] password. When you email JIRA, a ticket is created, and the email address your mail was sent from is added as a participant to the ticket -- this means that if you create a ticket using a non-UMIACS email address, you&#039;ll have to login to JIRA using that email address to see the ticket.&lt;br /&gt;
&lt;br /&gt;
[[Image:Jira_login.png]]&lt;br /&gt;
&lt;br /&gt;
* Off site users use their email address and can request a password be emailed to them via this [https://intranet.umiacs.umd.edu/jira/secure/ForgotLoginDetails!default.jspa link]. &#039;&#039;&#039;(For external users only!)&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=5310</id>
		<title>Jira</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=5310"/>
		<updated>2013-08-18T16:45:05Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: non-umiacs email wasn&amp;#039;t emphasized enough (probably still isnt...)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;JIRA is a request and bug tracker that UMIACS uses to provide our [[HelpDesk]] functionality to our users. It can be accessed [https://intranet.umiacs.umd.edu/jira here. ]&lt;br /&gt;
&lt;br /&gt;
It is a web based ticketing system that allows both users and staff to maintain greater control over their tickets and makes communication and resolution of issues a seamless process. &lt;br /&gt;
&lt;br /&gt;
== Using JIRA ==&lt;br /&gt;
&lt;br /&gt;
JIRA automatically generates an account when it receives an email; &#039;&#039;&#039;by default, you can log in to JIRA with your UMIACS email address (not username!)&#039;&#039;&#039; and UMIACS [[Kerberos]] password. When you email JIRA, a ticket is created, and the email address your mail was sent from is added as a participant to the ticket -- this means that if you create a ticket using a non-UMIACS email address, you&#039;ll have to login to JIRA using that email address* to see the ticket.&lt;br /&gt;
&lt;br /&gt;
[[Image:Jira_login.png]]&lt;br /&gt;
&lt;br /&gt;
* Off site users use their email address and can request a password be emailed to them via this [https://intranet.umiacs.umd.edu/jira/secure/ForgotLoginDetails!default.jspa link]. &#039;&#039;&#039;(For external users only!)&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=OptLocal&amp;diff=5296</id>
		<title>OptLocal</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=OptLocal&amp;diff=5296"/>
		<updated>2013-08-05T17:38:40Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: We use GNU Environment Modules now...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; Please see [[Modules]], which is now our preferred method of providing locally-built software to the Institute, as well as its various labs and centers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;/opt/local&amp;lt;/tt&amp;gt; is managed via a [[Stow]] system.&lt;br /&gt;
&lt;br /&gt;
If you are looking for a specific piece of software you can list the directory &amp;lt;tt&amp;gt;/opt/local/stow&amp;lt;/tt&amp;gt;.  Some software is linked in with the &amp;lt;tt&amp;gt;stow&amp;lt;/tt&amp;gt; command directly into &amp;lt;tt&amp;gt;bin,lib,man,sbin&amp;lt;/tt&amp;gt; directories in &amp;lt;tt&amp;gt;/opt/local&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This only pertains to [[RHEL6]] and above.  The software previously was found in &amp;lt;tt&amp;gt;/usr/local&amp;lt;/tt&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=5295</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=5295"/>
		<updated>2013-08-02T17:54:09Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Basic early-close message (for full-staff tech talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Announcements===&lt;br /&gt;
&lt;br /&gt;
== Help Desk Early Closing (Tuesday, August 6th, 2013) ==&lt;br /&gt;
The UMIACS Help Desk will be closing at 4PM on Tuesday, August 6th, 2013. Our normal schedule will resume on Wednesday, August 7th.&lt;br /&gt;
&lt;br /&gt;
==Java==&lt;br /&gt;
Due to the frequency and severity of recent Java vulnerabilities, it is strongly advised that &#039;&#039;&#039;Java be disabled&#039;&#039;&#039; in all browsers on your workstations.  If you do require Java, it is recommended to maintain a second, &#039;&#039;&#039;separate browser&#039;&#039;&#039;, solely for the instances which require Java.  For instructions on disabling Java on your workstation, please see the following: [[JavaDisableBrowser|How to disable Java]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;br /&gt;
&lt;br /&gt;
If you would like to open a support ticket, please contact the UMIACS [[HelpDesk]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Snapshots&amp;diff=5255</id>
		<title>Snapshots</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Snapshots&amp;diff=5255"/>
		<updated>2013-07-03T18:10:38Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added a more functional explanation of why snapshots are important&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Snapshots are a implementation of [http://en.wikipedia.org/wiki/Copy-on-write| copy-on-write] that allows for a file system to quickly take a point-in-time copy of the file system and provide access to the data through a .snapshot directory. Snapshots provide a fast, user-accessible way to recover data that has been accidentally deleted or corrupted within a recent time window -- rather than having to retrieve the data from comparatively slow tape backups. They also help to span the time gap between full backups.&lt;br /&gt;
&lt;br /&gt;
We provide [[Snapshots]] on our [[ONStor]], [[SnapshotsNexenta | Nexenta]] and [[Snapshots:FluidFS | FluidFS]] filers to certain file systems.&lt;br /&gt;
&lt;br /&gt;
Please see [[SnapshotFileSystems]] for a list of our file systems that have snapshots in the department.&lt;br /&gt;
&lt;br /&gt;
==Snapshot Policy==&lt;br /&gt;
&lt;br /&gt;
Our core file systems in the department are on a 4 hour snapshot cycle.  Snapshots are taken at,&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;color:green; background-color:#ffffcc;&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|  12am&lt;br /&gt;
| 4am&lt;br /&gt;
| 8am&lt;br /&gt;
| 12pm&lt;br /&gt;
| 4pm&lt;br /&gt;
| 8pm&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
We retain up to 8 hourly snapshots, 2 daily snapshots and 1 weekly snapshot.&lt;br /&gt;
&lt;br /&gt;
The [[OpenLAB]] filesystems on which snapshots are available are listed on the [[SnapshotFileSystems]] page.&lt;br /&gt;
&lt;br /&gt;
==Snapshot Restoring==&lt;br /&gt;
&lt;br /&gt;
If you have deleted a file by mistake and you need to get it back, you can use the snapshots directory to recopy the file.  This directory can typically be found in your home directory; it will be prepended by a ., so you will need to use the command &amp;quot;ls -a&amp;quot; to find it.  It will be one of three:&lt;br /&gt;
&lt;br /&gt;
* .snapshot for the [[ONStor]] (will be removed soon!) / [[Snapshots:NetApp | NetApp]] filers&lt;br /&gt;
* .snapshots for the [[Snapshots:FluidFS | FluidFS]] filer&lt;br /&gt;
* .zfs/snapshots for the [[SnapshotsNexenta | Nexenta]] / [[Snapshots:ZFS | ZFS]] filers&lt;br /&gt;
&lt;br /&gt;
The inside of one of these will look something like:&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot-.snapshot_-_bash.png]]&lt;br /&gt;
&lt;br /&gt;
For an example of file restoration, please see [[Snapshots:Example | this page]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Snapshots]]&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=FilesystemDataStorage&amp;diff=4884</id>
		<title>FilesystemDataStorage</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=FilesystemDataStorage&amp;diff=4884"/>
		<updated>2013-01-06T05:51:28Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added a section explicitly noting network-attached scratch space&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;UMIACS recommends that any and all important data be stored on a redundant, backed-up file server.  However, there are a number of cases where this is not feasible.&lt;br /&gt;
&lt;br /&gt;
==Windows Local Storage==&lt;br /&gt;
Windows hosts at UMIACS store user directories on their local drives.  Supported, UMIACS-managed hosts are automatically backed up using the Institute&#039;s backup system.  Laptops and non-standard hosts are not automatically backed up and be manually backed up by their users.&lt;br /&gt;
&lt;br /&gt;
==UNIX Remote Storage==&lt;br /&gt;
We provide storage to each of our users in our UNIX offerings through the [[OpenLAB]] [[NFShomes]].&lt;br /&gt;
&lt;br /&gt;
This home directory,&lt;br /&gt;
&lt;br /&gt;
    /nfshomes/username&lt;br /&gt;
&lt;br /&gt;
is backed up nightly into our [[TSM]] backup system.  If you wish to have files restored pleased follow these [[TSMRestore|instructions]].  We also now provide [[Snapshots]] on this file system.&lt;br /&gt;
&lt;br /&gt;
Users are given a 2 gigabyte [[Quota]].&lt;br /&gt;
&lt;br /&gt;
==UNIX Local Storage==&lt;br /&gt;
UNIX machines use redundant, backed-up network file shares for user directories.  Research data storage is also stored on redundant, backed-up network file shares and is generally available under /fs/&lt;br /&gt;
&lt;br /&gt;
All UNIX machines also have local storage available for transitory use.  These directories may be used to store temporary, local &#039;&#039;&#039;&#039;&#039;COPIES&#039;&#039;&#039;&#039;&#039; of data that is permanently stored elsewhere or as a staging point for output.&lt;br /&gt;
&lt;br /&gt;
These directories may not, &#039;&#039;&#039;&#039;&#039;under any circumstances&#039;&#039;&#039;&#039;&#039;, be used as permanent storage for unique, important data.  UMIACS staff cannot recover damaged or deleted data from these directories and will not be responsible for data loss if they are misused.&lt;br /&gt;
&lt;br /&gt;
Please note that &#039;&#039;&#039;/tmp&#039;&#039;&#039; in particular is at risk for data loss or corruption as that directory is regularly used by system processes and services for temporary storage.&lt;br /&gt;
&lt;br /&gt;
These directories include:&lt;br /&gt;
&lt;br /&gt;
  - /tmp&lt;br /&gt;
  - /scratch0, /scratch1, /scratch*&lt;br /&gt;
  - any directory named in whole or in part &amp;quot;tmp&amp;quot;, &amp;quot;temp&amp;quot;, or &amp;quot;scratch&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Locally Attached Storage==&lt;br /&gt;
Locally attached storage like USB flash drives and USB hard drives are very popular.  However, these devices are significantly more vulnerable to data loss or theft than internal or networked data storage.  In general, UMIACS discourages the use of locally attached network storage when any other option is available.  Please note that these devices are prone to high rates of failure and additional steps should be taken to ensure that the data is backed up and that critical or confidential data is not lost or stolen.&lt;br /&gt;
&lt;br /&gt;
==Network Scratch Storage==&lt;br /&gt;
Some labs have network-attached storage dedicated for scratch/temporary storage. These shares are named in the same manner as local scratch or temporary storage (i.e. /fs/lab-scratch or /lab/scratch0 ) and are subject to the same policies as local scratch/tmp (discussed above.)&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4881</id>
		<title>GettingStarted</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4881"/>
		<updated>2012-12-22T07:46:20Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Questions? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[UMIACS Account]] Introduction ==&lt;br /&gt;
&lt;br /&gt;
UMIACS maintains several different systems and facilities. The basic [[UMIACS Account]] includes access to facilities including:&lt;br /&gt;
&lt;br /&gt;
* [[EMail | E-mail]] (Which is automatically [[BarracudaSpamFirewall | SPAM-Filtered]])&lt;br /&gt;
* Several login machines ([[OpenLAB]])&lt;br /&gt;
* Basic home directory space&lt;br /&gt;
* [[WebSpace|Web]] and [[FileTransferProtocol | FTP]] space&lt;br /&gt;
* The [[OpenLAB]] HPC cluster&lt;br /&gt;
* [[VPN]], Printing ...&lt;br /&gt;
&lt;br /&gt;
Your UMIACS account actually consists of two system accounts, a Unix Account and Windows (also called your PC) Account.  You will use either of these two accounts to access different institute resources and, when you join or are affiliated with different labs, these accounts will be granted access to more lab specific resources.&lt;br /&gt;
&lt;br /&gt;
The goal of the [[OpenLAB]] is to provide a basic computing environment for communications, authoring, file sharing, and general administrative computing.  Use of facilities are subject to the [[OpenLAB]]&#039;s Acceptable Use Policy.&lt;br /&gt;
&lt;br /&gt;
== Getting An Account ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, you will need to fill out the account request form located at https://intranet.umiacs.umd.edu/requests/accounts/new/  Please note that for the PI field you will be entering your PI/Professor/Sponsor&#039;s account name here at UMIACS.  Also indicate any labs you are a member of in the notes field to speed up access to your lab&#039;s resources. &lt;br /&gt;
&lt;br /&gt;
Once the form is submitted, it will return to you your initial password for your accounts, please keep it.  If you forget your password, you can always come to the UMIACS Helpdesk in 3142 AVW with a photo ID to reset it.  Accounts can take anywhere from a few hours to a day for installation, depending on how quickly your PI approves your account.&lt;br /&gt;
&lt;br /&gt;
== Logging into your Account ==&lt;br /&gt;
&lt;br /&gt;
Once your account has been installed, you can use [[SSH]] to login to openlab.umiacs.umd.edu.  You can also login to other [[OpenLAB | OpenLab hosts]] or any machines located in the [[OpenLAB]] workstation room 4462 AVW.  You will also have login access to most department windows machines as well.&lt;br /&gt;
&lt;br /&gt;
== Account Maintenance ==&lt;br /&gt;
&lt;br /&gt;
There are a few web applications for managing your account:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/chinfo Directory Profile] &amp;lt;/b&amp;gt; Change your mail delivery/forward options, change your shells, and setting of office numbers&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/cgi-bin/changepass UMIACS Change Password] &amp;lt;/b&amp;gt; - Change either your [[Kerberos|UMIACS KRB5 Password (UNIX)]] or your Windows [[ActiveDirectory]] Password.&lt;br /&gt;
&lt;br /&gt;
== Where&#039;s my data? ==&lt;br /&gt;
&lt;br /&gt;
Your unix home directory is accessible from most machines from your [[NFShomes]].  You may have different home directories in different locations while using specific labs&#039; machines.  Your local data processing &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; different depending on the operating system of your desktop, please see:&lt;br /&gt;
&lt;br /&gt;
* [[UNIXDataPolicies | Unix/Linux Local Data Policies]]&lt;br /&gt;
* [[WindowsDataPolicies | Windows Local Data Policies]]&lt;br /&gt;
&lt;br /&gt;
Your can find out where your web space and FTP space are from [[NASUsers]].  and your lab may have data stored in a [[Subversion]] repository as well. If you need to access your data remotely, we recommend using [[SFTP]].  Many of our labs have specific network attached storage in addition to the default allocation a user is given.&lt;br /&gt;
&lt;br /&gt;
== Questions? ==&lt;br /&gt;
&lt;br /&gt;
Explore the rest of the wiki - if you have any problems or questions, you can contact the technical staff at&lt;br /&gt;
&lt;br /&gt;
[mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu] &lt;br /&gt;
&lt;br /&gt;
Or at the [[HelpDesk|UMIACS Helpdesk]] in A.V. Williams room 3142&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4879</id>
		<title>GettingStarted</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4879"/>
		<updated>2012-12-22T07:43:11Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* UMIACS Account Introduction */ moved a comma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[UMIACS Account]] Introduction ==&lt;br /&gt;
&lt;br /&gt;
UMIACS maintains several different systems and facilities. The basic [[UMIACS Account]] includes access to facilities including:&lt;br /&gt;
&lt;br /&gt;
* [[EMail | E-mail]] (Which is automatically [[BarracudaSpamFirewall | SPAM-Filtered]])&lt;br /&gt;
* Several login machines ([[OpenLAB]])&lt;br /&gt;
* Basic home directory space&lt;br /&gt;
* [[WebSpace|Web]] and [[FileTransferProtocol | FTP]] space&lt;br /&gt;
* The [[OpenLAB]] HPC cluster&lt;br /&gt;
* [[VPN]], Printing ...&lt;br /&gt;
&lt;br /&gt;
Your UMIACS account actually consists of two system accounts, a Unix Account and Windows (also called your PC) Account.  You will use either of these two accounts to access different institute resources and, when you join or are affiliated with different labs, these accounts will be granted access to more lab specific resources.&lt;br /&gt;
&lt;br /&gt;
The goal of the [[OpenLAB]] is to provide a basic computing environment for communications, authoring, file sharing, and general administrative computing.  Use of facilities are subject to the [[OpenLAB]]&#039;s Acceptable Use Policy.&lt;br /&gt;
&lt;br /&gt;
== Getting An Account ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, you will need to fill out the account request form located at https://intranet.umiacs.umd.edu/requests/accounts/new/  Please note that for the PI field you will be entering your PI/Professor/Sponsor&#039;s account name here at UMIACS.  Also indicate any labs you are a member of in the notes field to speed up access to your lab&#039;s resources. &lt;br /&gt;
&lt;br /&gt;
Once the form is submitted, it will return to you your initial password for your accounts, please keep it.  If you forget your password, you can always come to the UMIACS Helpdesk in 3142 AVW with a photo ID to reset it.  Accounts can take anywhere from a few hours to a day for installation, depending on how quickly your PI approves your account.&lt;br /&gt;
&lt;br /&gt;
== Logging into your Account ==&lt;br /&gt;
&lt;br /&gt;
Once your account has been installed, you can use [[SSH]] to login to openlab.umiacs.umd.edu.  You can also login to other [[OpenLAB | OpenLab hosts]] or any machines located in the [[OpenLAB]] workstation room 4462 AVW.  You will also have login access to most department windows machines as well.&lt;br /&gt;
&lt;br /&gt;
== Account Maintenance ==&lt;br /&gt;
&lt;br /&gt;
There are a few web applications for managing your account:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/chinfo Directory Profile] &amp;lt;/b&amp;gt; Change your mail delivery/forward options, change your shells, and setting of office numbers&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/cgi-bin/changepass UMIACS Change Password] &amp;lt;/b&amp;gt; - Change either your [[Kerberos|UMIACS KRB5 Password (UNIX)]] or your Windows [[ActiveDirectory]] Password.&lt;br /&gt;
&lt;br /&gt;
== Where&#039;s my data? ==&lt;br /&gt;
&lt;br /&gt;
Your unix home directory is accessible from most machines from your [[NFShomes]].  You may have different home directories in different locations while using specific labs&#039; machines.  Your local data processing &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; different depending on the operating system of your desktop, please see:&lt;br /&gt;
&lt;br /&gt;
* [[UNIXDataPolicies | Unix/Linux Local Data Policies]]&lt;br /&gt;
* [[WindowsDataPolicies | Windows Local Data Policies]]&lt;br /&gt;
&lt;br /&gt;
Your can find out where your web space and FTP space are from [[NASUsers]].  and your lab may have data stored in a [[Subversion]] repository as well. If you need to access your data remotely, we recommend using [[SFTP]].  Many of our labs have specific network attached storage in addition to the default allocation a user is given.&lt;br /&gt;
&lt;br /&gt;
== Questions? ==&lt;br /&gt;
&lt;br /&gt;
Explore the rest of the wiki - if you have any problems or questions, you can contact the technical staff at&lt;br /&gt;
&lt;br /&gt;
[mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu] &lt;br /&gt;
&lt;br /&gt;
Or at the [[HelpDesk|UMIACS Helpdesk]] A.V. Williams room 3142&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HelpDesk&amp;diff=4736</id>
		<title>HelpDesk</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HelpDesk&amp;diff=4736"/>
		<updated>2012-12-05T19:16:54Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you need additional assistance, please contact the UMIACS Technical Staff.&lt;br /&gt;
&lt;br /&gt;
To start a trouble ticket, log into [[Jira]] at https://intranet.umiacs.umd.edu/jira&lt;br /&gt;
&lt;br /&gt;
UMIACS Technical Staff can also be reached by sending email to [mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu].&lt;br /&gt;
&lt;br /&gt;
If you have a problem with your email or a problem that would be better addressed by speaking to directly to a staffer, you can call or visit our Help Desk, &lt;br /&gt;
&lt;br /&gt;
* Monday - Friday&lt;br /&gt;
** 9:00am - 5:00pm&lt;br /&gt;
&lt;br /&gt;
The Help Desk is located in Room [[AVW3142|3142]] of the A.V. Williams Building, and can be reached by phone at 301-405-1775.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4735</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4735"/>
		<updated>2012-12-05T16:53:40Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added Forgotten Passwords header&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
A UMIACS Account is a collection of distinct account credentials, associated with a unique user, that provide access to various UMIACS systems and related resources. &lt;br /&gt;
&lt;br /&gt;
When a UMIACS Account is first created, three sets of credentials (Windows, UNIX, and Jira) are configured based on the username and password requested via the [https://intranet.umiacs.umd.edu/requests/accounts/new/ UMIACS Account Request] (new users: see [[GettingStarted]].) With the exception of Jira, which requires a full email address, the username is identical for all credentials tied to a UMIACS account.&lt;br /&gt;
&lt;br /&gt;
==== [[Windows]] ====&lt;br /&gt;
:Your Windows (aka &amp;quot;PC&amp;quot;) account authenticates against our [[ActiveDirectory]] domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[UNIX]] ====&lt;br /&gt;
:Your UNIX (aka &amp;quot;[[Kerberos]]&amp;quot;) account authenticates against our Kerberos realm and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:Your Jira username is your full email address. By default, the [[Jira]] account associated with your @umiacs email address authenticates against the kerberos realm. However it is possible to set a separate password for this account.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos realm. Changing your Jira password DOES NOT change any other UMIACS passwords.&lt;br /&gt;
&lt;br /&gt;
:Please note that Jira creates a new account for each new email address it sees (including non-UMIACS addresses like @gmail or @umd.edu addresses.) This occasionally causes some confusion for new users. Please see the [[Jira]] page for further details.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;br /&gt;
==== Forgotten Passwords ====&lt;br /&gt;
If you have forgotten your Windows or Unix password(s), you will need to stop by the UMIACS Help Desk or follow the Off-site instructions above.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4731</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4731"/>
		<updated>2012-11-21T18:45:02Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: TG closed notification&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Closed for the Thanksgiving Holiday===&lt;br /&gt;
The UMIACS helpdesk will be closed on Thursday, November 22nd and Friday, November 23rd, in observance of the Thanksgiving holiday and will be open again on Monday, November 26th.&lt;br /&gt;
&lt;br /&gt;
===New Version of Roundcube Webmail Deployed===&lt;br /&gt;
UMIACS users using IMAP have a new version of [[Webmail]] available to them.  The look-and-feel has been improved from the previous version, but all of your settings have been carried over.  New features include a preview pane and the ability to group mail filters together.&lt;br /&gt;
&lt;br /&gt;
===EMET Deployed on all Windows hosts===&lt;br /&gt;
We have recently deployed Microsoft&#039;s [[Enhanced Mitigation Experience Toolkit]] to all of our supported Windows hosts to help prevent successful exploitation of vulnerabilities in both Microsoft and third party softwares. You should notice a new taskbar icon in the bottom right corner of your screen with a picture of a lock to indicate that EMET is actively working to keep your computer secure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4730</id>
		<title>GettingStarted</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4730"/>
		<updated>2012-11-20T20:44:49Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Removed &amp;quot;OpenLAB Account&amp;quot; wording as this is usually an internal reference.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[UMIACS Account]] Introduction ==&lt;br /&gt;
&lt;br /&gt;
UMIACS maintains several different systems and facilities. The basic [[UMIACS Account]] includes access to facilities including:&lt;br /&gt;
&lt;br /&gt;
* [[EMail | E-mail]] (Which is automatically [[BarracudaSpamFirewall | SPAM-Filtered]])&lt;br /&gt;
* Several login machines ([[OpenLAB]])&lt;br /&gt;
* Basic home directory space&lt;br /&gt;
* [[WebSpace|Web]] and [[FileTransferProtocol | FTP]] space&lt;br /&gt;
* The [[OpenLAB]] HPC cluster&lt;br /&gt;
* [[VPN]], Printing ...&lt;br /&gt;
&lt;br /&gt;
Your UMIACS account actually consists of two system accounts, a Unix Account and Windows (also called your PC) Account.  You will use either of these two accounts to access different institute resources, and when you join or are affiliated with different labs, these accounts will be granted access to more lab specific resources.&lt;br /&gt;
&lt;br /&gt;
The goal of the [[OpenLAB]] is to provide a basic computing environment for communications, authoring, file sharing, and general administrative computing.  Use of facilities are subject to the [[OpenLAB]]&#039;s Acceptable Use Policy.&lt;br /&gt;
&lt;br /&gt;
== Getting An Account ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, you will need to fill out the account request form located at https://intranet.umiacs.umd.edu/requests/accounts/new/  Please note that for the PI field you will be entering your PI/Professor/Sponsor&#039;s account name here at UMIACS.  Also indicate any labs you are a member of in the notes field to speed up access to your lab&#039;s resources. &lt;br /&gt;
&lt;br /&gt;
Once the form is submitted, it will return to you your initial password for your accounts, please keep it.  If you forget your password, you can always come to the UMIACS Helpdesk in 3142 AVW with a photo ID to reset it.  Accounts can take anywhere from a few hours to a day for installation, depending on how quickly your PI approves your account.&lt;br /&gt;
&lt;br /&gt;
== Logging into your Account ==&lt;br /&gt;
&lt;br /&gt;
Once your account has been installed, you can use [[SSH]] to login to openlab.umiacs.umd.edu.  You can also login to other [[OpenLAB | OpenLab hosts]] or any machines located in the [[OpenLAB]] workstation room 4462 AVW.  You will also have login access to most department windows machines as well.&lt;br /&gt;
&lt;br /&gt;
== Account Maintenance ==&lt;br /&gt;
&lt;br /&gt;
There are a few web applications for managing your account:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/chinfo Directory Profile] &amp;lt;/b&amp;gt; Change your mail delivery/forward options, change your shells, and setting of office numbers&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/cgi-bin/changepass UMIACS Change Password] &amp;lt;/b&amp;gt; - Change either your [[Kerberos|UMIACS KRB5 Password (UNIX)]] or your Windows [[ActiveDirectory]] Password.&lt;br /&gt;
&lt;br /&gt;
== Where&#039;s my data? ==&lt;br /&gt;
&lt;br /&gt;
Your unix home directory is accessible from most machines from your [[NFShomes]].  You may have different home directories in different locations while using specific labs&#039; machines.  Your local data processing &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; different depending on the operating system of your desktop, please see:&lt;br /&gt;
&lt;br /&gt;
* [[UNIXDataPolicies | Unix/Linux Local Data Policies]]&lt;br /&gt;
* [[WindowsDataPolicies | Windows Local Data Policies]]&lt;br /&gt;
&lt;br /&gt;
Your can find out where your web space and FTP space are from [[NASUsers]].  and your lab may have data stored in a [[Subversion]] repository as well. If you need to access your data remotely, we recommend using [[SFTP]].  Many of our labs have specific network attached storage in addition to the default allocation a user is given.&lt;br /&gt;
&lt;br /&gt;
== Questions? ==&lt;br /&gt;
&lt;br /&gt;
Explore the rest of the wiki - if you have any problems or questions, you can contact the technical staff at&lt;br /&gt;
&lt;br /&gt;
[mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu] &lt;br /&gt;
&lt;br /&gt;
Or at the [[HelpDesk|UMIACS Helpdesk]] A.V. Williams room 3142&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4718</id>
		<title>GettingStarted</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4718"/>
		<updated>2012-11-20T19:49:59Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* UMIACS Account Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [[UMIACS Account]] Introduction ==&lt;br /&gt;
&lt;br /&gt;
UMIACS maintains several different systems and facilities.  The basic [[UMIACS Account]] is called your [[OpenLAB]] Account, which includes access to facilities including:&lt;br /&gt;
&lt;br /&gt;
* [[EMail | E-mail]] (Which is automatically [[BarracudaSpamFirewall | SPAM-Filtered]])&lt;br /&gt;
* [[OpenLAB | Several login machines]]&lt;br /&gt;
* Basic home directory space&lt;br /&gt;
* [[WebSpace|Web]] and [[FileTransferProtocol | FTP]] space&lt;br /&gt;
* The [[OpenLAB]] HPC cluster&lt;br /&gt;
* [[VPN]], Printing ...&lt;br /&gt;
&lt;br /&gt;
Your [[OpenLAB]] account actually consists of two accounts, a Unix Account and Windows (also called your PC) Account.  You will use either of these two accounts to access different institute resources, and when you join or are affiliated with different labs, these accounts will be granted access to more lab specific resources.&lt;br /&gt;
&lt;br /&gt;
The goal of the [[OpenLAB]] is to provide a basic computing environment for communications, authoring, file sharing, and general administrative computing.  Use of facilities are subject to the [[OpenLAB]]&#039;s Acceptable Use Policy.&lt;br /&gt;
&lt;br /&gt;
== Getting An Account ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, you will need to fill out the account request form located at https://intranet.umiacs.umd.edu/requests/accounts/new/  Please note that for the PI field you will be entering your PI/Professor/Sponsor&#039;s account name here at UMIACS.  Also indicate any labs you are a member of in the notes field to speed up access to your lab&#039;s resources. &lt;br /&gt;
&lt;br /&gt;
Once the form is submitted, it will return to you your initial password for your accounts, please keep it.  If you forget your password, you can always come to the UMIACS Helpdesk in 3142 AVW with a photo ID to reset it.  Accounts can take anywhere from a few hours to a day for installation, depending on how quickly your PI approves your account.&lt;br /&gt;
&lt;br /&gt;
== Logging into your Account ==&lt;br /&gt;
&lt;br /&gt;
Once your account has been installed, you can use [[SSH]] to login to openlab.umiacs.umd.edu.  You can also login to other [[OpenLAB | OpenLab hosts]] or any machines located in the [[OpenLAB]] workstation room 4462 AVW.  You will also have login access to most department windows machines as well.&lt;br /&gt;
&lt;br /&gt;
== Account Maintenance ==&lt;br /&gt;
&lt;br /&gt;
There are a few web applications for managing your account:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/chinfo Directory Profile] &amp;lt;/b&amp;gt; Change your mail delivery/forward options, change your shells, and setting of office numbers&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/cgi-bin/changepass UMIACS Change Password] &amp;lt;/b&amp;gt; - Change either your [[Kerberos|UMIACS KRB5 Password (UNIX)]] or your Windows [[ActiveDirectory]] Password.&lt;br /&gt;
&lt;br /&gt;
== Where&#039;s my data? ==&lt;br /&gt;
&lt;br /&gt;
Your unix home directory is accessible from most machines from your [[NFShomes]].  You may have different home directories in different locations while using specific labs&#039; machines.  Your local data processing &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; different depending on the operating system of your desktop, please see:&lt;br /&gt;
&lt;br /&gt;
* [[UNIXDataPolicies | Unix/Linux Local Data Policies]]&lt;br /&gt;
* [[WindowsDataPolicies | Windows Local Data Policies]]&lt;br /&gt;
&lt;br /&gt;
Your can find out where your web space and FTP space are from [[NASUsers]].  and your lab may have data stored in a [[Subversion]] repository as well. If you need to access your data remotely, we recommend using [[SFTP]].  Many of our labs have specific network attached storage in addition to the default allocation a user is given.&lt;br /&gt;
&lt;br /&gt;
== Questions? ==&lt;br /&gt;
&lt;br /&gt;
Explore the rest of the wiki - if you have any problems or questions, you can contact the technical staff at&lt;br /&gt;
&lt;br /&gt;
[mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu] &lt;br /&gt;
&lt;br /&gt;
Or at the [[HelpDesk|UMIACS Helpdesk]] A.V. Williams room 3142&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=4717</id>
		<title>Jira</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Jira&amp;diff=4717"/>
		<updated>2012-11-20T19:45:19Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;JIRA is a request and bug tracker that UMIACS uses to provide our [[HelpDesk]] functionality to our users. It can be accessed [https://intranet.umiacs.umd.edu/jira here. ]&lt;br /&gt;
&lt;br /&gt;
It is a web based ticketing system that allows both users and staff to maintain greater control over their tickets and makes communication and resolution of issues a seamless process.&lt;br /&gt;
&lt;br /&gt;
== Using JIRA ==&lt;br /&gt;
&lt;br /&gt;
JIRA automatically generates an account when it receives an email; &#039;&#039;&#039;by default, you can log in to JIRA with your UMIACS email address (not username!)&#039;&#039;&#039; and UMIACS [[Kerberos]] password.&lt;br /&gt;
&lt;br /&gt;
[[Image:Jira_login.png]]&lt;br /&gt;
&lt;br /&gt;
When you email JIRA, a ticket is created, and the email address your mail was sent from is added as a participant to the ticket -- this means that if you create a ticket using a non-UMIACS email address, you&#039;ll have to login to JIRA using that email address to see the ticket.&lt;br /&gt;
&lt;br /&gt;
* Off site users use their email address and can request a password be emailed to them via this [https://intranet.umiacs.umd.edu/jira/secure/ForgotLoginDetails!default.jspa link]. &#039;&#039;&#039;(For external users only!)&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4716</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4716"/>
		<updated>2012-11-20T19:42:05Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Types of Accounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
A UMIACS Account, sometimes referred to as an OpenLab Account, is a collection of account credentials that provide access to various UMIACS systems and related resources. &lt;br /&gt;
&lt;br /&gt;
When a UMIACS Account is first created, three sets of credentials are configured. All three are initially set to the password chosen in the [https://intranet.umiacs.umd.edu/requests/accounts/new/ UMIACS Account Request] (new users: see [[GettingStarted]].)&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:Your Windows (aka &amp;quot;PC&amp;quot;) account authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:Your UNIX (aka &amp;quot;Kerberos&amp;quot;) account authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:Your Jira username is your full email address. By default, the [[Jira]] account associated with your @umiacs email address authenticates against the kerberos server. However it is possible to set a separate password for this account.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS passwords.&lt;br /&gt;
&lt;br /&gt;
:Please note that Jira creates a new account for each new email address it sees (including non-UMIACS addresses like @gmail or @umd.edu addresses.) This occasionally causes some confusion for new users. Please see the [[Jira]] page for further details.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4715</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4715"/>
		<updated>2012-11-20T19:32:46Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Types of Accounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When a UMIACS Account is first created, three sets of credentials are configured -- all of which are initially set to the password chosen in the [https://intranet.umiacs.umd.edu/requests/accounts/new/ UMIACS Account Request] (new users: see [[GettingStarted]].)&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:Your Windows (aka &amp;quot;PC&amp;quot;) account authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:Your UNIX (aka &amp;quot;Kerberos&amp;quot;) account authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:Your Jira username is your full email address. By default, the [[Jira]] account associated with your @umiacs email address authenticates against the kerberos server. However it is possible to set a separate password for this account.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS passwords.&lt;br /&gt;
&lt;br /&gt;
:Please note that Jira creates a new account for each new email address it sees (such as an @gmail or @cs.umd.edu address.) This occasionally causes some confusion for new users. Please see the [[Jira]] page for further details.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4714</id>
		<title>GettingStarted</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=GettingStarted&amp;diff=4714"/>
		<updated>2012-11-20T19:20:44Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* UMIACS Account Introduction */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== UMIACS Account Introduction ==&lt;br /&gt;
&lt;br /&gt;
UMIACS maintains several different systems and facilities.  The basic [[UMIACS Account]] is called your [[OpenLAB]] Account, which includes access to facilities including:&lt;br /&gt;
&lt;br /&gt;
* [[EMail | E-mail]] (Which is automatically [[BarracudaSpamFirewall | SPAM-Filtered]])&lt;br /&gt;
* [[OpenLAB | Several login machines]]&lt;br /&gt;
* Basic home directory space&lt;br /&gt;
* [[WebSpace|Web]] and [[FileTransferProtocol | FTP]] space&lt;br /&gt;
* The [[OpenLAB]] HPC cluster&lt;br /&gt;
* [[VPN]], Printing ...&lt;br /&gt;
&lt;br /&gt;
Your [[OpenLAB]] account actually consists of two accounts, a Unix Account and Windows (also called your PC) Account.  You will use either of these two accounts to access different institute resources, and when you join or are affiliated with different labs, these accounts will be granted access to more lab specific resources.&lt;br /&gt;
&lt;br /&gt;
The goal of the [[OpenLAB]] is to provide a basic computing environment for communications, authoring, file sharing, and general administrative computing.  Use of facilities are subject to the [[OpenLAB]]&#039;s Acceptable Use Policy.&lt;br /&gt;
&lt;br /&gt;
== Getting An Account ==&lt;br /&gt;
&lt;br /&gt;
If you do not already have an account, you will need to fill out the account request form located at https://intranet.umiacs.umd.edu/requests/accounts/new/  Please note that for the PI field you will be entering your PI/Professor/Sponsor&#039;s account name here at UMIACS.  Also indicate any labs you are a member of in the notes field to speed up access to your lab&#039;s resources. &lt;br /&gt;
&lt;br /&gt;
Once the form is submitted, it will return to you your initial password for your accounts, please keep it.  If you forget your password, you can always come to the UMIACS Helpdesk in 3142 AVW with a photo ID to reset it.  Accounts can take anywhere from a few hours to a day for installation, depending on how quickly your PI approves your account.&lt;br /&gt;
&lt;br /&gt;
== Logging into your Account ==&lt;br /&gt;
&lt;br /&gt;
Once your account has been installed, you can use [[SSH]] to login to openlab.umiacs.umd.edu.  You can also login to other [[OpenLAB | OpenLab hosts]] or any machines located in the [[OpenLAB]] workstation room 4462 AVW.  You will also have login access to most department windows machines as well.&lt;br /&gt;
&lt;br /&gt;
== Account Maintenance ==&lt;br /&gt;
&lt;br /&gt;
There are a few web applications for managing your account:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/chinfo Directory Profile] &amp;lt;/b&amp;gt; Change your mail delivery/forward options, change your shells, and setting of office numbers&lt;br /&gt;
* &amp;lt;b&amp;gt;[https://intranet.umiacs.umd.edu/cgi-bin/changepass UMIACS Change Password] &amp;lt;/b&amp;gt; - Change either your [[Kerberos|UMIACS KRB5 Password (UNIX)]] or your Windows [[ActiveDirectory]] Password.&lt;br /&gt;
&lt;br /&gt;
== Where&#039;s my data? ==&lt;br /&gt;
&lt;br /&gt;
Your unix home directory is accessible from most machines from your [[NFShomes]].  You may have different home directories in different locations while using specific labs&#039; machines.  Your local data processing &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; different depending on the operating system of your desktop, please see:&lt;br /&gt;
&lt;br /&gt;
* [[UNIXDataPolicies | Unix/Linux Local Data Policies]]&lt;br /&gt;
* [[WindowsDataPolicies | Windows Local Data Policies]]&lt;br /&gt;
&lt;br /&gt;
Your can find out where your web space and FTP space are from [[NASUsers]].  and your lab may have data stored in a [[Subversion]] repository as well. If you need to access your data remotely, we recommend using [[SFTP]].  Many of our labs have specific network attached storage in addition to the default allocation a user is given.&lt;br /&gt;
&lt;br /&gt;
== Questions? ==&lt;br /&gt;
&lt;br /&gt;
Explore the rest of the wiki - if you have any problems or questions, you can contact the technical staff at&lt;br /&gt;
&lt;br /&gt;
[mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu] &lt;br /&gt;
&lt;br /&gt;
Or at the [[HelpDesk|UMIACS Helpdesk]] A.V. Williams room 3142&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4713</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4713"/>
		<updated>2012-11-20T19:15:30Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Types of Accounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When a UMIACS Account is first created, three sets of credentials are set up -- all of which are initially set to the password chosen in the [https://intranet.umiacs.umd.edu/requests/accounts/new/ UMIACS Account Request] (new users: see [[GettingStarted]].)&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4712</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4712"/>
		<updated>2012-11-20T19:13:56Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Types of Accounts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When a UMIACS Account is first created, three sets of credentials are set up -- all of which are initially set to the password chosen in the [https://intranet.umiacs.umd.edu/requests/accounts/new/ UMIACS Account Request].&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4706</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4706"/>
		<updated>2012-11-20T18:59:02Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Changing your password */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
==== Approved Methods ====&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4705</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4705"/>
		<updated>2012-11-20T18:57:12Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Removing Acnt sec/comm pending staff revise&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4704</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4704"/>
		<updated>2012-11-20T18:54:14Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Changing your password */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;br /&gt;
&lt;br /&gt;
== Account Security and Communications from Staff ==&lt;br /&gt;
Keeping your account secure is a high priority for UMIACS Staff, and we need your help. In today&#039;s digital environment, it is often challenging to distinguish phishing attempts and scams from legitimate email. Please note that:&lt;br /&gt;
#UMIACS Staff will never ask you for your password and you should never share your username and password with &amp;lt;em&amp;gt;anyone&amp;lt;/em&amp;gt;.&lt;br /&gt;
#You should &#039;&#039;&#039;NEVER&#039;&#039;&#039; transmit &amp;lt;em&amp;gt;ANY&amp;lt;/em&amp;gt; password via email or other insecure medium.&lt;br /&gt;
#If you are ever uncertain about the legitimacy of an email from staff, please do not hesitate to contact the [[HelpDesk]] for verification.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In the event of a compromised account&#039;&#039;&#039; or some other situation where staff might need to contact you via email and instruct you to change your password, the request will not deviate from the instructions provided above -- namely, we will ask you to change your password via the UMIACS Intranet, in person, or via a trusted and authoritative proxy (your PI.)&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4703</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4703"/>
		<updated>2012-11-20T18:53:33Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Some basic tweaks, plus the addition of sections on out-of-state password changes and basic account/comm security.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool on the UMIACS Intranet at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the [[HelpDesk|UMIACS Helpdesk]], in room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;br /&gt;
==== Off-site or out-of-state users ====&lt;br /&gt;
UMIACS Staff requires positive identification before we&#039;ll honor a request to change a password. In the event that you are unable to change your password via the methods above, send an email to staff@umiacs.umd.edu detailing your situation. Typically, we&#039;ll ask you to get in touch with your PI/advisor, as they should be able to visually and aurally identify you. They will work with staff to reset your password on your behalf, and then communicate it to you in a secure manner.&lt;br /&gt;
&lt;br /&gt;
== Account Security and Communications from Staff ==&lt;br /&gt;
Keeping your account secure is a high priority for UMIACS Staff, and we need your help. In today&#039;s digital environment, it is often challenging to distinguish phishing attempts and scams from legitimate email. Please note that:&lt;br /&gt;
#UMIACS Staff will never ask you for your password and you should never share your username and password with &amp;lt;em&amp;gt;anyone&amp;lt;/em&amp;gt;.&lt;br /&gt;
#You should &#039;&#039;&#039;NEVER&#039;&#039;&#039; transmit &amp;lt;em&amp;gt;ANY&amp;lt;/em&amp;gt; password via email or other insecure medium.&lt;br /&gt;
#If you are ever uncertain about the legitimacy of an email from staff, please do not hesitate to contact the [[HelpDesk]] for verification.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;In the event of a compromised account&#039;&#039;&#039; or some other situation where staff might need to contact you via email and instruct you to change your password, the request will not deviate from the instructions provided above -- namely, we will ask you to change your password via the UMIACS Intranet, in person, or via a trusted and authoritative proxy (your PI.)&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4702</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4702"/>
		<updated>2012-11-20T18:06:01Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Jira */ link edits&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== [[Jira]] ====&lt;br /&gt;
:By default [[Jira]] authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the UMIACS Helpdesk room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4701</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4701"/>
		<updated>2012-11-20T17:51:27Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Kerberos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== [[Kerberos]] ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== Jira ====&lt;br /&gt;
:By default Jira authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the UMIACS Helpdesk room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4700</id>
		<title>UMIACS Account</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=UMIACS_Account&amp;diff=4700"/>
		<updated>2012-11-20T17:50:46Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Windows */ link additions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Types of Accounts ==&lt;br /&gt;
When your UMIACS account is first created there are two password that are initially set.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
:This password authenticates against our Windows domain and is set when you first create your UMIACS account.  &lt;br /&gt;
:It control access for the following resources:&lt;br /&gt;
::*Windows computers&lt;br /&gt;
::*[[exchange]] e-mail&lt;br /&gt;
::*[[VPN]] Authentication&lt;br /&gt;
&lt;br /&gt;
==== Kerberos ====&lt;br /&gt;
:This password authenticates against our Kerberos Server and is set when you first create your UMIACS account.&lt;br /&gt;
:It controls access for the following resources:&lt;br /&gt;
::*UNIX/Linux computers&lt;br /&gt;
::*[[UNIXEmail|IMAP]] e-mail&lt;br /&gt;
::*[[ApplicationResource|AR]]-controlled resources (wikis, [[SourceCodeManagement|repositories]], webapps)&lt;br /&gt;
&lt;br /&gt;
==== Jira ====&lt;br /&gt;
:By default Jira authenticates against the kerberos server, however it is possible to set Jira to it&#039;s own separate password.  If you change your password through the Jira web interface it will create a &#039;&#039;&#039;new&#039;&#039;&#039;, &#039;&#039;&#039;separate&#039;&#039;&#039; password, and no longer authenticate against the kerberos server.  Changing your Jira password DOES NOT change any other UMIACS password.&lt;br /&gt;
&lt;br /&gt;
== Changing your password ==&lt;br /&gt;
There are currently two ways to change your UMIACS passwords:&lt;br /&gt;
*Via the web interface tool at:&lt;br /&gt;
:https://intranet.umiacs.umd.edu/cgi-bin/changepass&lt;br /&gt;
*Stop by the UMIACS Helpdesk room 3142 AVW&lt;br /&gt;
::If you plan on stopping by the UMIACS Helpdesk, please make sure to bring photo ID&lt;br /&gt;
==== Password Requirements ====&lt;br /&gt;
#Must be atleast 8 characters in length&lt;br /&gt;
#Must have alteast 3 of the following character classes: lower-case letters, upper-case letters, numbers, punctuation, special characters&lt;br /&gt;
#Cannot be the same as any of your previous 5 passwords&lt;br /&gt;
#Cannot contain a string that is part of your username&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=4412</id>
		<title>SecureShellTunneling</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=4412"/>
		<updated>2012-07-31T17:18:28Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Socks Proxy */ Wording of the performance aside was mangled&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Port Forwarding==&lt;br /&gt;
&lt;br /&gt;
When you want to just forward a specific port locally to a remote port.   &lt;br /&gt;
&lt;br /&gt;
This example will create a local port 9999 that will be forwarded to the remote host webbserver.umiacs.umd.edu and its port 8000 through the host openlab.umiacs.umd.edu.&lt;br /&gt;
&lt;br /&gt;
* ssh -NfL 9999:webserver.umiacs.umd.edu:8000 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
This example will create a local port 13389 that will be forwarded to a remote host that is running a [[RDP]] client like Windows XP or Windows Vista through the host openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
* ssh -L 13389:my-desktop.pc.umiacs.umd.edu:3389 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Socks Proxy==&lt;br /&gt;
&lt;br /&gt;
[[SSH]] can also tunnel all traffic coming into a certain port through a SOCKS v5 proxy.  Many browsers and some operating systems can be setup to then connect to this proxy to allow them again to look like they are coming from the host name you specify in your [[SSH]] command. &lt;br /&gt;
&lt;br /&gt;
* ssh -ND 7777 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
Please note: when you configure proxy settings for a browser (or your whole operating system) all the traffic for that browser (or the OS) will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
==Port Forwarding with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can achieve the same types of tunnels using PuTTY or a similar SSH client. In PuTTY, the port forwarding configuration dialogue can be found under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:PuttyTunnel.png]]&lt;br /&gt;
&lt;br /&gt;
This example will create a local port &#039;&#039;&#039;8889&#039;&#039;&#039; that is attached to the remote host &#039;&#039;&#039;clipsm301.umiacs.umd.edu&#039;&#039;&#039; on its port &#039;&#039;&#039;8000&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Socks Proxy with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can tunnel traffic coming into a certain port through a SOCKS v5 proxy by using PuTTY or a similar SSH client. Many browsers and some operating systems can be setup to connect to this proxy to allow them to look like they are coming from the host name you specify.&lt;br /&gt;
&lt;br /&gt;
In PuTTY under &amp;quot;Sessions&amp;quot; set the Host Name:&lt;br /&gt;
[[Image:Putty1.png]]&lt;br /&gt;
&lt;br /&gt;
Then under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot; enter a port number and set the type of forwarding to &amp;quot;Dynamic&amp;quot; and press add:&lt;br /&gt;
&lt;br /&gt;
[[Image:Putty2.png]]&lt;br /&gt;
&lt;br /&gt;
Click Open and log into the host.&lt;br /&gt;
As long as this PuTTY window is open and you are logged in, you can use the SOCKS proxy.&lt;br /&gt;
&lt;br /&gt;
Please note that when you configure proxy settings for a browser or your whole operating system, all the traffic for that browser or your OS will be sent through the proxy.  This can have performance implications.&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4364</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4364"/>
		<updated>2012-07-03T17:25:29Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Closed for Independence Day&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===UMIACS Help Desk Closed on July 4th, 2012===&lt;br /&gt;
The UMIACS Help Desk (and the University) will be closed on July 4th, 2012 in observance of Independence Day. The Help Desk will reopen on July 5th at 9AM. Have a great 4th!&lt;br /&gt;
&lt;br /&gt;
===EMET Deployed on all Windows hosts===&lt;br /&gt;
We have recently deployed Microsoft&#039;s [[Enhanced Mitigation Experience Toolkit]] to all of our supported Windows hosts to help prevent successful exploitation of vulnerabilities in both Microsoft and third party softwares. You should notice a new taskbar icon in the bottom right corner of your screen with a picture of a lock to indicate that EMET is actively working to keep your computer secure.&lt;br /&gt;
&lt;br /&gt;
===Matlab R2012A now available===&lt;br /&gt;
Matlab R2012A (release 7.14) is now available. Please see [[Matlab]] for information on availability.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Programming&amp;diff=4165</id>
		<title>Programming</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Programming&amp;diff=4165"/>
		<updated>2012-03-12T18:43:46Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added a page about Python modules and environments&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* C/C++&lt;br /&gt;
** [[CCompilers|C/C++ Compilers]]&lt;br /&gt;
** [[CDebuggers|C/C++ Debuggers]]&lt;br /&gt;
** [[COtherTools|C/C++ Other Tools]]&lt;br /&gt;
* Java&lt;br /&gt;
** [[JavaVersions|Java Versions]]&lt;br /&gt;
** [[JavaDevelEnvironment|Java Development Environment]]&lt;br /&gt;
* Perl&lt;br /&gt;
** [[PerlVersions|Perl 5 Versions]]&lt;br /&gt;
** [[PerlDevelEnvironment|Perl Development Environment]]&lt;br /&gt;
** [[PerlModules|Perl Missing Modules]]&lt;br /&gt;
* Python&lt;br /&gt;
** [[PythonVersions | Python Versions]]&lt;br /&gt;
** [[PythonModDev | Python Modules and Development Environment]]&lt;br /&gt;
* VB/VC/.NET&lt;br /&gt;
** [[MSVisualDevelopment|Development Environment]]&lt;br /&gt;
* Others&lt;br /&gt;
** [[ACL|Alegro Common Lisp]]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4160</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4160"/>
		<updated>2012-02-20T17:27:52Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Passwordless SSH with SSH Keys */ clarification. this section contains info on both passwordless and passphrase ssh keys, users were confused by flow.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under Linux and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
All UMIACS Windows hosts are installed with SSH Secure Shell Client. Alternatively, users can install these software on their personal machines:&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under Linux and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-Y&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings, shown below. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==SSH Keys (and Passwordless SSH)==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, you will need to create a ssh [http://en.wikipedia.org/wiki/Key_pair key pair].  It is possible to use a password that you will need to enter at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, particularly our TORQUE/MAUI clusters.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
# To create a &#039;&#039;&#039;&#039;&#039;passwordless&#039;&#039;&#039;&#039;&#039; key, type the following.  &#039;&#039;&#039;NOTE: This is &#039;&#039;REQUIRED&#039;&#039; for our [[ClusterGuide|TORQUE/MAUI]]-based clusters!&#039;&#039;&#039; &amp;lt;pre&amp;gt;  # ssh-keygen -N &amp;quot;&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
#: Alternatively, to create a &#039;&#039;&#039;&#039;&#039;passphrase-protected&#039;&#039;&#039;&#039;&#039; (more-secure) key, type the following.  Do not use this option if you plan to use any of our [[ClusterGuide|TORQUE/MAUI]]-based clusters.&amp;lt;pre&amp;gt;  # ssh-keygen&amp;lt;/pre&amp;gt;&lt;br /&gt;
#This will produce two files, &#039;&#039;&#039;id_rsa&#039;&#039;&#039; and &#039;&#039;&#039;id_rsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows: &lt;br /&gt;
 # mkdir ~/.ssh&lt;br /&gt;
 # chmod 700 ~/.ssh &lt;br /&gt;
 # mv id_rsa ~/.ssh &lt;br /&gt;
 # chmod 600 ~/.ssh/id_rsa &lt;br /&gt;
 # touch ~/.ssh/authorized_keys2&lt;br /&gt;
 # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
 # cat id_rsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
 # rm id_rsa.pub &lt;br /&gt;
&lt;br /&gt;
*It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_rsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=4119</id>
		<title>SecureShellTunneling</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShellTunneling&amp;diff=4119"/>
		<updated>2011-10-21T08:38:59Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Added a little something for Windows users&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Port Forwarding==&lt;br /&gt;
&lt;br /&gt;
When you want to just forward a specific port locally to a remote port.   &lt;br /&gt;
&lt;br /&gt;
This example will create a local port 9999 that will be forwarded to the remote host webbserver.umiacs.umd.edu and its port 8000 through the host openlab.umiacs.umd.edu.&lt;br /&gt;
&lt;br /&gt;
* ssh -NfL 9999:webserver.umiacs.umd.edu:8000 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
This example will create a local port 13389 that will be forwarded to a remote host that is running a [[RDP]] client like Windows XP or Windows Vista through the host openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
* ssh -L 13389:my-desktop.pc.umiacs.umd.edu:3389 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Socks Proxy==&lt;br /&gt;
&lt;br /&gt;
[[SSH]] can also tunnel all traffic coming into a certain port through a SOCKS v5 proxy.  Many browsers and some operating systems can be setup to then connect to this proxy to allow them again to look like they are coming from the host name you specify in your [[SSH]] command. &lt;br /&gt;
&lt;br /&gt;
* ssh -ND 7777 openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
Please note, that when you configure proxy settings for a browser or your whole operating system all the traffic for that browser or in case your OS all your traffic will be sent through the proxy.  This can have performance implications.&lt;br /&gt;
&lt;br /&gt;
==Port Forwarding with PuTTY==&lt;br /&gt;
&lt;br /&gt;
Windows users can achieve the same types of tunnels using PuTTY or a similar SSH client. In PuTTY, the port forwarding configuration dialogue can be found under &amp;quot;Connection&amp;gt;SSH&amp;gt;Tunnels&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:PuttyTunnel.png]]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4117</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4117"/>
		<updated>2011-10-21T08:28:46Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* X11 Forwarding */ removed reference to RHEL versions here too&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under Linux and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under Linux and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-Y&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, you will need to create a ssh key pair.  It is possible to use a password that you will need to enter at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, particularly our TORQUE/MAUI clusters.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passwordless&#039;&#039;&#039;&#039;&#039; key, type the following.  &#039;&#039;&#039;NOTE: This is &#039;&#039;REQUIRED&#039;&#039; for our [[ClusterGuide|TORQUE/MAUI]]-based clusters!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -N &amp;quot;&amp;quot; -t dsa&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passphrase-protected&#039;&#039;&#039;&#039;&#039; (more-secure) key, type the following.  Do not use this option if you plan to use any of our [[ClusterGuide|TORQUE/MAUI]]-based clusters.&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4116</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=4116"/>
		<updated>2011-10-21T08:27:19Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: /* Connecting to an SSH Server */ removed reference to specific versions of RHEL since adding 6 would have made an unnecessary list longer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under Linux and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-Y&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, you will need to create a ssh key pair.  It is possible to use a password that you will need to enter at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, particularly our TORQUE/MAUI clusters.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passwordless&#039;&#039;&#039;&#039;&#039; key, type the following.  &#039;&#039;&#039;NOTE: This is &#039;&#039;REQUIRED&#039;&#039; for our [[ClusterGuide|TORQUE/MAUI]]-based clusters!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -N &amp;quot;&amp;quot; -t dsa&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passphrase-protected&#039;&#039;&#039;&#039;&#039; (more-secure) key, type the following.  Do not use this option if you plan to use any of our [[ClusterGuide|TORQUE/MAUI]]-based clusters.&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=LabFacilities&amp;diff=4093</id>
		<title>LabFacilities</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=LabFacilities&amp;diff=4093"/>
		<updated>2011-08-30T19:56:39Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: updated clip link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[OpenLAB]]&lt;br /&gt;
* [[CBCB|Center for Bioinformatics and Computational Biology]] (CBCB) http://www.cbcb.umd.edu&lt;br /&gt;
* Center for Digital International Government (CDIG) http://www.umiacs.umd.edu/research/CDIG&lt;br /&gt;
* Center for Automation Research (CFAR) http://www.cfar.umd.edu&lt;br /&gt;
* Center for Human Enhanced Secure Systems (CHESS) http://chess.umiacs.umd.edu/&lt;br /&gt;
* Computational Linguistics and Information Processing (CLIP) https://wiki.umiacs.umd.edu/clip/index.php/Main_Page&lt;br /&gt;
* Computer Vision Laboratory (CVL) http://www.cfar.umd.edu/cvl/&lt;br /&gt;
* Distributed Systems Software Laboratory (DSSL) http://www.cs.umd.edu/projects/dssl&lt;br /&gt;
* Fraunhofer Center at Maryland (FCMD) http://fc-md.umd.edu/&lt;br /&gt;
* Global Land Cover Facility (GLCF) http://www.glcf.umiacs.umd.edu&lt;br /&gt;
* Graphics and Visual Informatics Laboratory (GVIL) http://www.cs.umd.edu/gvil/&lt;br /&gt;
* Human Computer Interaction Laboratory (HCIL) http://www.cs.umd.edu/projects/hcil&lt;br /&gt;
* Keck Lab for the Comp. Modeling of Visual Movement (KECK) http://www.umiacs.umd.edu/%7Elsd/kecklab.html&lt;br /&gt;
* Language and Media Processing Laboratory (LAMP) http://lamp.cfar.umd.edu&lt;br /&gt;
* Laboratory for Computational Cultural Dynamics (LCCD) http://www.umiacs.umd.edu/research/LCCD/&lt;br /&gt;
* Laboratory for Parallel and Distributed Computing (LPDC) http://www.umiacs.umd.edu/research/LPDC&lt;br /&gt;
* Maryland Information and Network Dynamics Lab (MIND) http://mindlab.umd.edu/&lt;br /&gt;
* [https://wiki.umiacs.umd.edu/maxwell/index.php/Main_Page MaxWell - WiMaX Forum Applications Laboratory] (MaxWell) http://www.umiacs.umd.edu/research/maxwell/&lt;br /&gt;
* Perceptual Interfaces and Reality Laboratory (PIRL) http://pirl.umd.edu/&lt;br /&gt;
* [[OpenGPU]]&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4011</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=4011"/>
		<updated>2011-07-07T16:16:39Z</updated>

		<summary type="html">&lt;p&gt;Jwebs: Removed Holiday Announcement (holiday has passed)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New UNIX Print System===&lt;br /&gt;
We are pleased to announce the immediately available [[CUPS]] print system for our UNIX (rhel/ubuntu) users.  Please contact staff@umiacs.umd.edu with any issues.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Jwebs</name></author>
	</entry>
</feed>