<?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=Jwhiteis</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=Jwhiteis"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php/Special:Contributions/Jwhiteis"/>
	<updated>2026-04-17T18:07:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=FilesystemDataStorage&amp;diff=10319</id>
		<title>FilesystemDataStorage</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=FilesystemDataStorage&amp;diff=10319"/>
		<updated>2022-03-10T15:15:46Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Added mention of automated cleanups for scratch directories&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 C drives. Supported, UMIACS-managed hosts automatically back up user data on the C drive nightly using the Institute&#039;s backup system. If you have a supported, UMIACS-managed host that has other internal or external hard drives attached to it, or partitions other than C on its primary hard drive, please be aware that these drives/partitions &#039;&#039;&#039;are not&#039;&#039;&#039; backed up. Laptops and non-standard hosts are not automatically backed up and should 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.  This volume has [[Snapshots]] enabled for easy user restores.&lt;br /&gt;
&lt;br /&gt;
Users are given a 20 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. Additionally, these volumes may have an automated cleanup routine that will delete unmodified data after some number of days. You can check the page for the specific cluster you are using for more information.&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;br /&gt;
&lt;br /&gt;
==UNIX Storage Commands==&lt;br /&gt;
Below are a few different CLI commands that may prove useful for monitoring your storage usage and performance. For additional information, run &amp;lt;code&amp;gt;[command] --help&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;man [command]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
df - Shows descriptive file system information&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Usage: df [OPTION]... [FILE]...&lt;br /&gt;
Show information about the file system on which each FILE resides,&lt;br /&gt;
or all file systems by default.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
du - Shows disk usage of specific files. Use the -d flag for better depth control.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Usage: du [OPTION]... [FILE]...&lt;br /&gt;
  or:  du [OPTION]... --files0-from=F&lt;br /&gt;
Summarize disk usage of each FILE, recursively for directories.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
free - Shows current memory(RAM) usage. Use the -h flag for a human readable format.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Usage:&lt;br /&gt;
 free [options]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
quota - Shows quota information, this is useful for viewing per filesystem limits in places such as a home directory. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
quota: Usage: quota [-guqvswim] [-l | [-Q | -A]] [-F quotaformat]&lt;br /&gt;
	quota [-qvswim] [-l | [-Q | -A]] [-F quotaformat] -u username ...&lt;br /&gt;
	quota [-qvswim] [-l | [-Q | -A]] [-F quotaformat] -g groupname ...&lt;br /&gt;
	quota [-qvswugQm] [-F quotaformat] -f filesystem ...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
iostat - Shows drive utilization, as well as other utilizations. Pair this with the &amp;lt;code&amp;gt;watch&amp;lt;/code&amp;gt; command for regular updates. &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Usage: iostat [ options ] [ &amp;lt;interval&amp;gt; [ &amp;lt;count&amp;gt; ] ]&lt;br /&gt;
Options are:&lt;br /&gt;
[ -c ] [ -d ] [ -h ] [ -k | -m ] [ -N ] [ -t ] [ -V ] [ -x ] [ -y ] [ -z ]&lt;br /&gt;
[ -j { ID | LABEL | PATH | UUID | ... } ]&lt;br /&gt;
[ [ -T ] -g &amp;lt;group_name&amp;gt; ] [ -p [ &amp;lt;device&amp;gt; [,...] | ALL ] ]&lt;br /&gt;
[ &amp;lt;device&amp;gt; [...] | ALL ]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Accounts&amp;diff=10183</id>
		<title>Accounts</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Accounts&amp;diff=10183"/>
		<updated>2022-01-24T21:33:31Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Added section that describes the new account management page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page outlines the various account types at UMIACS and their management methods.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not share any UMIACS-affiliated account for any purpose. Action may be taken against your account if you do so.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==UMIACS Account==&lt;br /&gt;
A traditional UMIACS account consists of the following components:&lt;br /&gt;
; [[ActiveDirectory | Active Directory Account]]&lt;br /&gt;
: Provides access to UMIACS-supported computers, email, [[SecGroups | secgroup]] controlled resources, web services, and the [[VPN]].&lt;br /&gt;
; [[Jira | Jira Account]]&lt;br /&gt;
: Provides access to the JIRA Request Tracker. Please note that it is possible to set a separate password for this account, at which point it will no longer be synced from your Active Directory Account. Changing your Jira password DOES NOT change your Active Directory Account password.&lt;br /&gt;
&lt;br /&gt;
==Guest / Collaborator Account==&lt;br /&gt;
; [[Accounts/Collaborator | Collaborator Accounts]]&lt;br /&gt;
: Sponsored account to provide temporary access to UMIACS Web Services for non-UMIACS collaborators.&lt;br /&gt;
&lt;br /&gt;
==Request a UMIACS account==&lt;br /&gt;
Fill out the account request form located at the [https://intranet.umiacs.umd.edu/requests/accounts/new UMIACS Account Request webapp].  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 send an email with a link to verify your email address.  You must click this link to verify your email address before the system will send email to your PI to review the account request.  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;
==Password Requirements==&lt;br /&gt;
We have the following policies in regards to our [[ActiveDirectory]] passwords:&lt;br /&gt;
* Minimum Password Length : 8 Characters (more is allowed)&lt;br /&gt;
* Minimum Character Classes : 3 Character Classes&lt;br /&gt;
** English uppercase characters (A - Z)&lt;br /&gt;
** English lowercase characters (a - z)&lt;br /&gt;
** Base 10 digits (0 - 9)&lt;br /&gt;
** Non-alphanumeric (For example: !, $, #, or %)&lt;br /&gt;
** Unicode characters&lt;br /&gt;
* Password cannot contain (or match a substring of 3+ sequential characters) of your username or any part of your first or last name.&lt;br /&gt;
* Password was not previously used in last 5 passwords.&lt;br /&gt;
* Password has not been [[CompromisedPasswordFiltering | compromised]] in a known data breach.&lt;br /&gt;
&lt;br /&gt;
It is your responsibility to secure your password. Please try to choose a strong password and use secure protocols.&lt;br /&gt;
&lt;br /&gt;
==Changing account password==&lt;br /&gt;
===If you know your current password===&lt;br /&gt;
# You can use the [https://intranet.umiacs.umd.edu/password UMIACS Password Web Application] to change your password.&lt;br /&gt;
&lt;br /&gt;
===If you do not know your current password===&lt;br /&gt;
# You can [https://intranet.umiacs.umd.edu/password/forgot reset your password yourself] if you have already registered a mobile phone number and alternate E-mail address in our [https://intranet.umiacs.umd.edu/directory/directory/info/ Directory Application].&lt;br /&gt;
# If your account was a UMIACS Collaborator Account, your password can be reset by your sponsor via our [https://intranet.umiacs.umd.edu/requests/accounts/collaborators/ Requests Application].&lt;br /&gt;
# &amp;lt;s&amp;gt;You can stop by the UMIACS Help Desk in room 3109 Iribe Center with a photo ID.&amp;lt;/s&amp;gt; (not currently applicable)&lt;br /&gt;
#* &amp;lt;s&amp;gt;If you are unable to physically stop by the UMIACS Help Desk, you can have your Account sponsor (PI) stop by the UMIACS Help Desk to reset the password on your behalf.  The account sponsor will then be responsible to conveying the password to you in a secure manner. (i.e. Telephone, where they could identify you by voice)&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Sponsored Accounts==&lt;br /&gt;
You can view a list of the accounts you sponsor in the [https://intranet.umiacs.umd.edu/requests/accounts/sponsored/ UMIACS Account Management Web Application]. Clicking on an account&#039;s display name will bring you to a management page where you can see details such as the installation date or email forward. From here you can edit your relationship to the account.&lt;br /&gt;
&lt;br /&gt;
You can also request to remove your sponsorship or modify the expiration date, but these require staff action and are not immediate. &lt;br /&gt;
&lt;br /&gt;
==All Accounts Related Pages==&lt;br /&gt;
{{Special:PrefixIndex/Accounts/}}&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Gurobi&amp;diff=10167</id>
		<title>Gurobi</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Gurobi&amp;diff=10167"/>
		<updated>2022-01-10T17:51:28Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Added Gurobi page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Gurobi Optimizer is a suite of solvers for mathematical programming. It can be accessed through our module tree with the command &amp;lt;code&amp;gt;module add gurobi&amp;lt;/code&amp;gt;. More information on our [[Modules | Modules page]]&lt;br /&gt;
&lt;br /&gt;
Documentation can be found at https://www.gurobi.com/documentation/&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Accounts/Collaborator&amp;diff=10166</id>
		<title>Accounts/Collaborator</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Accounts/Collaborator&amp;diff=10166"/>
		<updated>2022-01-10T16:59:26Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Added self service collaborator updates&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A Collaborator account is a sponsored provisional account for non-UMIACS members that provides access to UMIACS applications such as [[GitLab]], [[OBJ | Object Storage]], and MediaWiki instances. Collaborator accounts do not provide login access to UMIACS computers or access to networked file storage. Any access to [[GitLab]] repositories, [[OBJ | ObjectStore]] buckets, etc. fall under their account sponsor and/or the PI.  Access to your group&#039;s resources is mediated through Security Groups, which can be managed in our [https://intranet.umiacs.umd.edu/directory/secgroup/ UMIACS Directory Application].&lt;br /&gt;
&lt;br /&gt;
==How do I create a Collaborator Account?==&lt;br /&gt;
A UMIACS Account holder has to sponsor the Collaborator Account.   This is done in our [https://intranet.umiacs.umd.edu/requests/accounts/collaborators/new UMIACS Requests Application].  This will send an email to the Collaborator to set their details (including a username and password).  Once the Collaborator has created their account, an email will be sent to both the account sponsor and the Collaborator that the account is ready to use.&lt;br /&gt;
&lt;br /&gt;
==How do I manage my Collaborator Accounts?==&lt;br /&gt;
This can be done in the [https://intranet.umiacs.umd.edu/requests/accounts/collaborators UMIACS Requests Application]. You can view a list of Collaborators that you directly sponsor. The following management actions are available:&lt;br /&gt;
* Send Password Reset: The account sponsor will generate a token and send email to the Collaborator with a link to reset their password.&lt;br /&gt;
* Remove Sponsorship: Staff will be notified to remove the selected accounts from your sponsorship.&lt;br /&gt;
You can also view Collaborators who are sponsored by users that you sponsor. Actions include:&lt;br /&gt;
* Take Over Sponsorship: Staff will be notified to transfer sponsorship to you, and the original sponsor of the Collaborator will be notified.&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MongoDB&amp;diff=9923</id>
		<title>MongoDB</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MongoDB&amp;diff=9923"/>
		<updated>2021-08-02T15:05:08Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Created page with &amp;quot;==Installation== This page outlines the steps required to install MongoDB on a supported workstation.  We are no longer supporting MongoDB due to changes in their licensing a...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installation==&lt;br /&gt;
This page outlines the steps required to install MongoDB on a supported workstation.&lt;br /&gt;
&lt;br /&gt;
We are no longer supporting MongoDB due to changes in their licensing a few years ago, but you can install MongoDB as a tarball using the following links:&lt;br /&gt;
* https://docs.mongodb.com/manual/tutorial/install-mongodb-on-red-hat-tarball/&lt;br /&gt;
* https://docs.mongodb.com/manual/administration/configuration/#std-label-base-config&lt;br /&gt;
&lt;br /&gt;
==Steps==&lt;br /&gt;
# Download the right Community Server file from the [https://www.mongodb.com/try/download/community MongoDB Community download page] and place it in a directory you own. For most people this file will be:&lt;br /&gt;
#* Version: Current&lt;br /&gt;
#* Platform: RedHat / CentOS 7.0&lt;br /&gt;
#* Package: tgz&lt;br /&gt;
# You will need to create a custom mongod.conf configuration file, using the second link above as a guide. The important thing is to set a custom path for &amp;lt;code&amp;gt;systemPath&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;dbPath&amp;lt;/code&amp;gt;. These must be directories that you own. Other than that, they can be anything you choose.&lt;br /&gt;
# Start the mongo server: &amp;quot;/path/to/bin/mongod --config /path/to/mongod.conf&amp;quot;. Since you are using a custom .conf file you will need to specify this when starting/stopping the server.&lt;br /&gt;
# Start the mongo client: &amp;quot;/path/to/bin/mongo&amp;quot;.&lt;br /&gt;
# Once you are done, you can stop the server with &amp;quot;/path/to/bin/mongod --config /path/to/mongod.conf --shutdown&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MacOSPrinting&amp;diff=9856</id>
		<title>MacOSPrinting</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MacOSPrinting&amp;diff=9856"/>
		<updated>2021-05-24T20:23:58Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Emphasized needing to be on our network to print.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
We support printing from user managed macOS 10.8 or later machines. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note: You must be on a UMIACS network directly or connected to the [[VPN]] in order to print.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Image:BigSur_Print00.png|right|100px]]&lt;br /&gt;
=System Preferences=&lt;br /&gt;
To start, open your System Preferences from the Dock or Applications folder.  Once you have opened it, click &#039;&#039;&#039;Printers &amp;amp; Scanners&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Image:BigSur_Print01.png|right|100px]]&lt;br /&gt;
&lt;br /&gt;
=Print &amp;amp; Fax=&lt;br /&gt;
When the &#039;&#039;&#039;Printers &amp;amp; Scanners&#039;&#039;&#039; window appears, create a new local printer by clicking the &#039;&#039;&#039;+&#039;&#039;&#039; icon in the lower left corner of the first pane in the window.&lt;br /&gt;
&lt;br /&gt;
=Add Printer=&lt;br /&gt;
This will bring up a Add Printer dialog.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you just want basic printing, use the steps below. If you would like to enable all the advanced options for the printer, jump over this section to &#039;&#039;&#039;&amp;quot;Enabling Advanced Printer Options&amp;quot;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Jump over to the &#039;&#039;&#039;IP&#039;&#039;&#039; tab&lt;br /&gt;
* Set Protocol to &#039;&#039;&#039;Internet Printing Protocol - IPP&#039;&#039;&#039;&lt;br /&gt;
* Set Address to &#039;&#039;&#039;print.umiacs.umd.edu&#039;&#039;&#039;&lt;br /&gt;
* Set the Queue to printers/queue; in this example for cps432-3208 it would be &#039;&#039;&#039;printers/cps432-3208&#039;&#039;&#039;.  You have to make sure the queue is prefixed by &#039;&#039;&#039;printers/&#039;&#039;&#039;. For clarification, the queue is typically the printer name.&lt;br /&gt;
* Set Name to the name of the printer you are trying to use. This makes it easily Identifiable in your list of printers.&lt;br /&gt;
* It will always select &#039;&#039;&#039;Generic Postscript Printer&#039;&#039;&#039;.  If you need to access the more advanced features of a queue/printer or you were &#039;&#039;&#039;not able to print by choosing Generic Postscript Printer&#039;&#039;&#039;, you will need to take extra steps, please see the Advanced section at the bottom of this page.&lt;br /&gt;
* Select Add&lt;br /&gt;
* You will be asked about enabling duplex. If you know the printer has the option, which is true for most of our printers, go ahead and enable it. Then hit OK. If you&#039;re not sure, just leave it disabled. You can always enable it after the queue is added.&lt;br /&gt;
&lt;br /&gt;
[[Image:AddPrinter_BigSur.png]]&lt;br /&gt;
&lt;br /&gt;
You should now be able to print to this printer/queue from any macOS print menu.&lt;br /&gt;
&lt;br /&gt;
=Enabling Advanced Printer Features=&lt;br /&gt;
Some printers may have features not accessible with the default drivers provided above. If this is the case, follow the guide below to identify, and install your print drivers from their manufacturer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you already installed the printer with generic drivers, you will need to highlight the printer and click &#039;&#039;&#039;-&#039;&#039;&#039;, before attempting to add it again. You may also need a system update to get the latest drivers from Apple, if your printer does not have software drivers listed in the next steps.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1:&#039;&#039;&#039;  Locate your printers name and search for its Make and Model here: http://print.umiacs.umd.edu/printers/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2:&#039;&#039;&#039;  Follow the &#039;&#039;&#039;Add Printer&#039;&#039;&#039; steps above until you get to &#039;&#039;&#039;Generic Postscript Printer&#039;&#039;&#039;. Select &#039;&#039;&#039;Software&#039;&#039;&#039;, then &#039;&#039;&#039;Add&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:SelectSoftware_BigSur.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3:&#039;&#039;&#039;  A window labeled &amp;quot;Printer Software&amp;quot; will now pop up. Scroll thru the list to find your specific make and model of printer. Click on it, and hit Ok.&lt;br /&gt;
&lt;br /&gt;
[[Image:PrinterSoftware_BigSur.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 4:&#039;&#039;&#039;  Click Add on the next window and it should install your printers software suite. You should have a list of options (if they are available) that looks similar this:&lt;br /&gt;
&lt;br /&gt;
[[Image:InstallOptions_BigSur.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Final Step:&#039;&#039;&#039; Enable the Options you wish to use, Click &#039;&#039;&#039;OK&#039;&#039;&#039;.  You should now be able to print to this printer/queue from any macOS print menu.&lt;br /&gt;
&lt;br /&gt;
=Printing With Stapler=&lt;br /&gt;
For print jobs using the stapler, follow the guide below.  Printers with staplers are located in Iribe, in rooms 3149, 3208, 4149, 4208, and 5208.&lt;br /&gt;
&lt;br /&gt;
To add/ connect to a printer with stapling capabilities:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1:&#039;&#039;&#039; Follow the &amp;quot;Enabling Advanced Printer Features&amp;quot; guide until you reach Step 4.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2:&#039;&#039;&#039; In the window that appears labeled &amp;quot;Setting up [your printer name]&amp;quot; set &amp;quot;HP 3-Bin Stapler/Stacker&amp;quot; to &amp;quot;Mailbox Mode&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Mailbox_Mode.png|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3:&#039;&#039;&#039; Select &amp;quot;OK&amp;quot; in the bottom right corner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To Print:&#039;&#039;&#039; To complete the print job using the stapler once the printer has been added:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 1:&#039;&#039;&#039; In Preview, when trying to print, select the &amp;quot;Show Details&amp;quot; button in the bottom left corner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Show_Settings.png|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 2:&#039;&#039;&#039; In the middle right, where it says &amp;quot;Preview,&amp;quot; select &amp;quot;Printer Features&amp;quot; instead of &amp;quot;Preview&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Printer_Features.png|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 3:&#039;&#039;&#039; Set &amp;quot;Feature Sets&amp;quot; to &amp;quot;Finishing&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Finishing.png|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 4:&#039;&#039;&#039; A &amp;quot;Staple&amp;quot; dropdown list will appear at the bottom of the window.  Select your preferred staple option.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Staple.png|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Step 5:&#039;&#039;&#039; Press &amp;quot;Print&amp;quot; in the bottom right corner.&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/Linux&amp;diff=9855</id>
		<title>Network/VPN/Linux</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/Linux&amp;diff=9855"/>
		<updated>2021-05-24T18:57:10Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Removed suggestion that connecting through a web browser is possible on Ubuntu.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Please note that this tutorial assumes you already have a network connection established.&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;If you have a UMIACS account, you already have access.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The UMIACS VPN is accessible through the Pulse Secure Client.&lt;br /&gt;
&lt;br /&gt;
== Connecting through the Pulse Secure client ==&lt;br /&gt;
#&#039;&#039;&#039;Download the client:&#039;&#039;&#039;&lt;br /&gt;
#:[[Media:Pulsesecure_9.1.R11.4_amd64.deb|Ubuntu 64 bit Pulse Secure Client]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#:[[Media:PulseSecure9.1R8.2i386.deb|Ubuntu 32 bit Pulse Secure Client]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Navigate to the download location in terminal. e.g.: &#039;&#039;&#039; &amp;lt;tt&amp;gt;cd ~/Downloads&amp;lt;/tt&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Install the package with dependencies, providing your password for sudo when requested.&#039;&#039;&#039;&lt;br /&gt;
#:&amp;lt;code&amp;gt;sudo dpkg -i &amp;lt;insert_filename_here&amp;gt;.deb &amp;amp;&amp;amp; /usr/local/pulse/PulseClient_x86_64.sh install_dependency_packages&amp;lt;/code&amp;gt;&lt;br /&gt;
#:[[Image:UbuntuPulseInstall.png|thumb|center|500px|]]&lt;br /&gt;
#&#039;&#039;&#039;Start the client.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:UbuntuPulseDesktop.png|thumb|center|500px|]]&lt;br /&gt;
#&#039;&#039;&#039;and click &#039;Add&#039; (+) under the connection section.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:UbuntuPulseInterface3.png|thumb|center|500px|Click the &#039;Add&#039; (+) button to create a new connection.]]&lt;br /&gt;
#&#039;&#039;&#039;Enter a name for your VPN connection and the server URL &#039;vpn.umiacs.umd.edu&#039;&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:UbuntuPulseInterface1.png|thumb|center|500px|Enter the name of the VPN server.]]&lt;br /&gt;
#&#039;&#039;&#039;Enter your UMIACS credentials and hit connect.&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:UbuntuPulseInterface2.png|thumb|center|500px|Enter UMIACS credentials.]]&lt;br /&gt;
#&#039;&#039;&#039;When prompted for a secondary password, enter one of three options below (push, phone, or &amp;lt;press YubiKey&amp;gt;).  For example, if you wish to push a notification to your device, type the word &amp;quot;push&amp;quot; into the secondary password box. &#039;&#039;&#039;&lt;br /&gt;
::{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Second Credential Password Value:&lt;br /&gt;
! Result&lt;br /&gt;
|-&lt;br /&gt;
| push&lt;br /&gt;
| Send a push verification to your Duo connected device&lt;br /&gt;
|-&lt;br /&gt;
| phone&lt;br /&gt;
| Send a call verification to your Duo connected device.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;press YubiKey&amp;gt;&lt;br /&gt;
| If you have a physical token then you would press the YubiKey for the one time password.&lt;br /&gt;
|}&lt;br /&gt;
::Please note that registering a YubiKey for use with the VPN requires interaction with UMIACS Tech Staff. Please [[HelpDesk | contact us]] if you would like to register a YubiKey for this purpose.&lt;br /&gt;
{{Note|&amp;lt;b&amp;gt;Pro-tip:&amp;lt;/b&amp;gt; Select ‘Save Settings’ on the secondary authentication prompt to have Duo automatically use your preferred method.}}&lt;br /&gt;
&lt;br /&gt;
You should now be connected to the UMIACS VPN. You can close the window and the VPN will remain connected.&lt;br /&gt;
&lt;br /&gt;
==Checking VPN Status==&lt;br /&gt;
# Launch the Pulse Client GUI&lt;br /&gt;
#:[[Image:UbuntuPulseDesktop.png|thumb|center|280px|]]&lt;br /&gt;
# Select the down arrow to show connection status.&lt;br /&gt;
#:[[Image:UbuntuPulseInterface4.png|thumb|center|280px|]]&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/macOS&amp;diff=9854</id>
		<title>Network/VPN/macOS</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/macOS&amp;diff=9854"/>
		<updated>2021-05-24T18:53:40Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Clarified process for connecting through a web browser.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Please note that this tutorial assumes you already have a network connection established.&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;If you have a UMIACS account, you already have access.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The UMIACS VPN is accessible through the Pulse Secure Client.  Alternatively, you can establish a connection through a [https://vpn.umiacs.umd.edu/ web browser], but this may fail if you have an outdated version of Pulse Secure already installed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As of May 10th 2019, MFA Authentication is mandatory.&#039;&#039;&#039;&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
* Device enrolled with [[Duo | UMIACS Duo]]&lt;br /&gt;
* macOS 10.11 or higher as of the current version of the Pulse Secure Client&lt;br /&gt;
&lt;br /&gt;
== Connecting through the Pulse Secure client ==&lt;br /&gt;
#&#039;&#039;&#039;Download the client:&#039;&#039;&#039;&lt;br /&gt;
#:[[Media:PulseSecure9.1R11.4.dmg|macOS Pulse Secure Client]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#:&#039;&#039;Upon starting the client for the first time it may ask to upgrade the client.  This will pull an up-to-date version of the client with the most recent configuration.&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Open the client and click &#039;Add&#039; (+) under the connection section.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:JunosOSX.png|thumb|left|510px|[macOS] Click the &#039;Add&#039; (+) button to create a new connection]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;In the &#039;Name&#039; field, enter a descriptive name for this vpn Connection.&#039;&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;In the &#039;Server URL&#039; enter &#039;vpn.umiacs.umd.edu&#039;&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:JunosOSXSettings.png|thumb|left|510px|[macOS] Enter the name of the vpn server]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Enter your UMIACS credentials and hit connect.&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:JunosOSXLogin.png|thumb|left|510px|[macOS] Enter UMIACS Credentials]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#&#039;&#039;&#039;Complete the [[Network/VPN/MFA | MFA]] Verification Step. For example, if you wish to push a notification to your device, type the word &amp;quot;push&amp;quot; into the secondary password box.&lt;br /&gt;
#:[[Image:mac_mfa_step.png|thumb|left|510px|[macOS] Enter a secondary password.]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
::The Pulse VPN multi-factor authentication implementation relies on a secondary authentication source to fulfill the [[Network/VPN/MFA | MFA]] requirement.  As a result, you will be prompted for credentials twice.&lt;br /&gt;
&lt;br /&gt;
::{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Second Credential Password Value:&lt;br /&gt;
! Result&lt;br /&gt;
|-&lt;br /&gt;
| push&lt;br /&gt;
| Send a push verification to your Duo connected device&lt;br /&gt;
|-&lt;br /&gt;
| phone&lt;br /&gt;
| Send a call verification to your Duo connected device.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;press YubiKey&amp;gt;&lt;br /&gt;
| If you have a physical token then you would press the YubiKey for the one time password.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
::Please note that registering a YubiKey for use with the VPN requires interaction with UMIACS Tech Staff. Please [[HelpDesk | contact us]] if you would like to register a YubiKey for this purpose.&lt;br /&gt;
{{Note|&amp;lt;b&amp;gt;Pro-tip:&amp;lt;/b&amp;gt; Select ‘Save Settings’ on the secondary authentication prompt to have Duo automatically use your preferred method.}}&lt;br /&gt;
&lt;br /&gt;
You should now be connected to the UMIACS VPN. You can close the window and the VPN will remain connected.&lt;br /&gt;
&lt;br /&gt;
If you encounter an error, please refer to the &amp;quot;Setup Security Requirement&amp;quot; section bellow.&lt;br /&gt;
&lt;br /&gt;
==Checking VPN Status==&lt;br /&gt;
# In the top right hand corner, on your status bar, you should see an S icon in a black circle. If there&#039;s a green arrow, that means you are connected! If there is nothing, that means you are not. &lt;br /&gt;
#: [[Image:Check the Status of your ConnectionOSX1.png|thumb|left|610px|[macOS] The top image is connected, the bottom image is not.]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# You can click this icon, as well, and it will show you the status of your connection.&lt;br /&gt;
#:[[Image:AreYouConnected2.png|thumb|left|610px|[macOS] The Pulse drop down menu.]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# If the icon is not in the status bar, you can find Pulse Secure in your Applications folder. There you will see a list of connections.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Setup Security Requirement (Follow these steps if you encounter an error while connecting through the Pulse Secure client) ==&lt;br /&gt;
&lt;br /&gt;
# &#039;&#039;&#039;Click the Apple logo at the top left of your desktop&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:ClickApple.png|thumb|left|510px|[macOS] Click the apple logo to show menu]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;Click &amp;quot;System Preferences&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:SystemPreferences.png|thumb|left|510px|[macOS] Enter the system preferences]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;Click &amp;quot;Security &amp;amp; Privacy&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:SecurityPrivacy.png|thumb|left|510px|[macOS] Enter the security and privacy settings]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;Click the &amp;quot;lock&amp;quot; icon at the bottom left and Enter your credentials to enable changes.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:EnterCredentials.png|thumb|left|510px|[macOS] Enter credentials to allow changes]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;In the &amp;quot;General&amp;quot; tab, under &amp;quot;Allow Apps Downloaded From&amp;quot;, select &amp;quot;Mac Apps Store and Identified developers&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:AppStoreIdentifier.png|thumb|left|510px|[macOS] Select Mac Apps Store and Identified developers]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;Click &amp;quot;Next&amp;quot; to the message &amp;quot;System Software From Developers &amp;quot;Pulse Secure LLC&amp;quot; was blocked from loading&amp;quot; if prompted.&#039;&#039;&#039;&lt;br /&gt;
# &#039;&#039;&#039;Click &amp;quot;Allow&amp;quot; to enable the extension.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:Allow.png|thumb|left|510px|[macOS] Click Allow]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
# &#039;&#039;&#039;Close the &amp;quot;Security &amp;amp; Privacy&amp;quot; window.&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/Windows&amp;diff=9853</id>
		<title>Network/VPN/Windows</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Network/VPN/Windows&amp;diff=9853"/>
		<updated>2021-05-24T18:52:02Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Clarified process for connecting through a web browser.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Please note that this tutorial assumes you already have a network connection established.&#039;&#039;&#039;&lt;br /&gt;
&#039;&#039;&#039;If you have a UMIACS account, you already have access.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The UMIACS VPN is accessible through the Pulse Secure Client.  Alternatively, you can establish a connection through a [https://vpn.umiacs.umd.edu/ web browser], but this may fail if you have an outdated version of Pulse Secure already installed.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;As of May 10th 2019, MFA Authentication is mandatory.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: If your computer has an ARM-based processor, you will need to proceed differently from the standard Windows instructions. Please refer to the [[#Connecting through the Pulse Secure client (for computers WITH ARM processors)|instructions here]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Prerequisites==&lt;br /&gt;
* Device enrolled with [[Duo | UMIACS Duo]]&lt;br /&gt;
&lt;br /&gt;
== Connecting through the Pulse Secure client (for computers WITHOUT ARM processors) ==&lt;br /&gt;
#&#039;&#039;&#039;Download the client:&#039;&#039;&#039;&lt;br /&gt;
#:[[Media:PulseSecure9.1R11.4.x64-4.msi|Windows 64 bit Pulse Secure Client]] (preferred)&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#:[[Media:PulseSecure9.1.R11.4.x86.msi|Windows 32 bit Pulse Secure Client]]&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
#:&#039;&#039;Upon starting the client for the first time it may ask to upgrade the client.  This will pull an up to date version of the client with the most recent configuration.&#039;&#039;&lt;br /&gt;
#&#039;&#039;&#039;Start the client if it is not already running - it usually starts by default on bootup.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:Pulse Secure Desktop App.jpg|thumb|center|280px|[Windows] Start the client from the Start Menu.]]&lt;br /&gt;
#&#039;&#039;&#039;If the client is already running, double click its icon from the status bar.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:Pulse Icon.jpg|thumb|center|280px|[Windows] Double click its status icon to open.]]&lt;br /&gt;
#&#039;&#039;&#039;and click &#039;Add&#039; (+) under the connection section.&#039;&#039;&#039;&lt;br /&gt;
#:[[Image:Pulse Secure1.jpg|thumb|center|280px|[Windows] Click the &#039;Add&#039; (+) button to create a new connection.]]&lt;br /&gt;
#&#039;&#039;&#039;Enter a name for your VPN connection and the server URL &#039;vpn.umiacs.umd.edu&#039;&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:Pulse Connection.jpg|thumb|center|280px|[Windows] Enter the name of the VPN server.]]&lt;br /&gt;
#&#039;&#039;&#039;Enter your UMIACS credentials and hit connect.&#039;&#039;&#039; &lt;br /&gt;
#:[[Image:Pulse UserPass.jpg|thumb|center|280px|[Windows] Enter UMIACS credentials.]]&lt;br /&gt;
#&#039;&#039;&#039;Enter Secondary Password for [[Network/VPN/MFA | MFA]]. For example, if you wish to push a notification to your device, type the word &amp;quot;push&amp;quot; into the secondary password box.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
:::[[Image:Vpnmfa6.png|thumb|center|280px|[Windows] Enter Secondary Password.]]&lt;br /&gt;
&lt;br /&gt;
::The Pulse VPN multi-factor authentication implementation relies on a secondary authentication source to fulfill the MFA requirement.  As a result, you will be prompted for credentials twice.&lt;br /&gt;
&lt;br /&gt;
::{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!Second Credential Password Value:&lt;br /&gt;
! Result&lt;br /&gt;
|-&lt;br /&gt;
| push&lt;br /&gt;
| Send a push verification to your Duo connected device&lt;br /&gt;
|-&lt;br /&gt;
| phone&lt;br /&gt;
| Send a call verification to your Duo connected device.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;press YubiKey&amp;gt;&lt;br /&gt;
| If you have a physical token then you would press the YubiKey for the one time password.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
::Please note that registering a YubiKey for use with the VPN requires interaction with UMIACS Tech Staff. Please [[HelpDesk | contact us]] if you would like to register a YubiKey for this purpose.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Note|&amp;lt;b&amp;gt;Pro-tip:&amp;lt;/b&amp;gt; Select ‘Save Settings’ on the secondary authentication prompt to have Duo automatically use your preferred method.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You should now be connected to the UMIACS VPN.&lt;br /&gt;
&lt;br /&gt;
==Checking VPN Status==&lt;br /&gt;
# In the bottom right hand corner, in your status bar, you should see an S icon. If there&#039;s a green arrow, that means you are connected! If there is nothing, that means you are not. &lt;br /&gt;
#:[[Image:Pulseicon2.png|thumb|center|500px|]]&lt;br /&gt;
# You can hover over this icon and it will show you the status of your connection.&lt;br /&gt;
#:[[Image:PulseStatus2.png|thumb|center|500px|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Connecting through the Pulse Secure client (for computers WITH ARM processors) ==&lt;br /&gt;
ARM processors cannot natively run x64 or x86 programs without special emulation. Microsoft Surface laptops do not have x64 emulation yet, but they do have x86 emulation. However, not all x86 programs run smoothly even with emulation. As such, the best course of action for these sorts of machines is using the version of Pulse Secure that is specifically made for ARM processors, which is offered on the Microsoft Store.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Installation Instructions:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
#[https://www.microsoft.com/en-us/p/pulse-secure/9nblggh3b0bp Go to the Pulse Secure page on the Microsoft Store.]&lt;br /&gt;
#Click the &amp;quot;Get&amp;quot; button and wait for it to finish downloading. Once it&#039;s finished downloading, the Get button should now say &amp;quot;Install&amp;quot;. Click &amp;quot;Install&amp;quot;.&lt;br /&gt;
#Once Pulse Secure is installed, continue to the Configuration Instructions.&lt;br /&gt;
(will finish installation instructions at a later time)&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Configuration Instructions:&#039;&#039;&#039;&lt;br /&gt;
#Open Pulse Secure. It should have a green- and black-colored icon in the shape of an S.&lt;br /&gt;
#You should now see a gray window. Click on the &amp;quot;VPN Settings...&amp;quot; button in that window.&lt;br /&gt;
#You should now see the VPN page in Windows Settings. Click &amp;quot;Add a VPN connection&amp;quot;.&lt;br /&gt;
#The VPN provider should be Pulse Secure. You will now need to enter the following information:&lt;br /&gt;
##Connection name: UMIACS&lt;br /&gt;
##Server name or address: vpn.umiacs.umd.edu&lt;br /&gt;
##Username: You can put in your UMIACS username if you&#039;d like, or you can leave it blank.&lt;br /&gt;
##password: Leave it blank for security reasons.&lt;br /&gt;
##Choose to remember sign-in info ONLY if the password field is blank, for security reasons.&lt;br /&gt;
##You should now be finished with adding the VPN connection.&lt;br /&gt;
#Now under &amp;quot;VPN&amp;quot; and &amp;quot;Add a VPN connection&amp;quot; at the top, you should see a button that says &amp;quot;UMIACS&amp;quot;. Click on that button.&lt;br /&gt;
#You will now be prompted for your username (if you did not fill it out when adding the connection) and password. Enter your UMIACS credentials, then click the &amp;quot;OK&amp;quot; button.&lt;br /&gt;
#You will now be prompted for a &amp;quot;secondary password&amp;quot;. This refers to the method of multi-factor authentication you would like to use. Typing in &amp;quot;push&amp;quot; into this field will send a notification to the Duo app on your smart device, whereas &amp;quot;phone&amp;quot; will send a call to your registered phone number. Enter your choice of authentication, then click the &amp;quot;Next&amp;quot; button.&lt;br /&gt;
#After completing the multi-factor authentication via push notification or call, you should now be connected to the UMIACS VPN!&lt;br /&gt;
&lt;br /&gt;
In case you would like to manually disconnect from the VPN, go to the same &amp;quot;VPN Settings...&amp;quot;/VPN page in Windows settings, click on the UMIACS connection, and click the &amp;quot;Disconnect&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=PrinterQueueNaming&amp;diff=9852</id>
		<title>PrinterQueueNaming</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=PrinterQueueNaming&amp;diff=9852"/>
		<updated>2021-05-21T18:59:57Z</updated>

		<summary type="html">&lt;p&gt;Jwhiteis: Updated naming standard for printers.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Printer Queues==&lt;br /&gt;
&lt;br /&gt;
UMIACS uses a centralized print server to manage all of the printers in the Institute.  See [[Printing]] for more details specific to your OS.  We have developed a naming scheme for our printer queues based on the colors the printer can produce, the type of queue, the building number, and the room number.&lt;br /&gt;
&lt;br /&gt;
The naming scheme is as follows:&lt;br /&gt;
&lt;br /&gt;
* All color printers begin with a &amp;quot;c&amp;quot;.  Black &amp;amp; white is the default so nothing extra is needed.&lt;br /&gt;
* Then either &amp;quot;ps&amp;quot; for a PostScript-enabled queue or &amp;quot;pcl&amp;quot; for a Printer Command Language-enabled queue will appear.  PostScript and PCL are types of printer drivers.  If you are unsure what this means, use &amp;quot;ps&amp;quot; for PostScript.&lt;br /&gt;
* Then add the building number and a dash (&amp;quot;-&amp;quot;). E.g. add &amp;quot;432-&amp;quot; for IRB, or &amp;quot;115-&amp;quot; for AVW.&lt;br /&gt;
* Then add the room number. E.g. If the printer is in room 3208, add &amp;quot;3208&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Printerqueueformat.JPG|600px|left]]&lt;br /&gt;
&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some examples:&lt;br /&gt;
&lt;br /&gt;
* ps432-3208 is a black &amp;amp; white printer in Iribe 3208.&lt;br /&gt;
* cps115-4430a is a color printer in A.V. Williams 4430.&lt;/div&gt;</summary>
		<author><name>Jwhiteis</name></author>
	</entry>
</feed>