<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://bionmr.unl.edu/mediawiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eriekeberg</id>
	<title>Powers Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://bionmr.unl.edu/mediawiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Eriekeberg"/>
	<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php/Special:Contributions/Eriekeberg"/>
	<updated>2026-06-05T08:00:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.38.2</generator>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Adding_user_accounts&amp;diff=691</id>
		<title>Adding user accounts</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Adding_user_accounts&amp;diff=691"/>
		<updated>2019-08-02T20:38:28Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Setting up basic credentials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When new group members join, they&#039;ll need access to our file and program server on both Windows and Linux, and a few odds and ends. Here&#039;s how to get that done the right way.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST:&#039;&#039;&#039; Have the user decide on a username and password that they will re-enter continuously during this process. They will be denoted as &#039;&#039;new_username&#039;&#039; and &#039;&#039;new_password&#039;&#039; throughout this set of instructions.&lt;br /&gt;
&lt;br /&gt;
= Linux =&lt;br /&gt;
== Setting up basic credentials ==&lt;br /&gt;
* Log in &#039;&#039;&#039;as root&#039;&#039;&#039; to the cluster head node, either &#039;&#039;via&#039;&#039; SSH or at the machine.&lt;br /&gt;
* Add the user account:&lt;br /&gt;
&lt;br /&gt;
 useradd -g powers -m -s /bin/bash &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add a password to the new account:&lt;br /&gt;
&lt;br /&gt;
 passwd &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add a Samba password to the new account:&lt;br /&gt;
&lt;br /&gt;
 smbpasswd -c /etc/samba/smb.conf -a &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add an Apache password to the new account:&lt;br /&gt;
&lt;br /&gt;
 htpasswd /etc/apache2/htpasswd &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Allow the user to log in &#039;&#039;via&#039;&#039; secure shell:&lt;br /&gt;
&lt;br /&gt;
 sed -e &#039;s,^\(AllowUsers\),\1 &#039;&#039;new_username&#039;&#039;,&#039; -i /etc/ssh/sshd_config&lt;br /&gt;
&lt;br /&gt;
* Add a couple lines to the bash config:&lt;br /&gt;
&lt;br /&gt;
 echo &#039;source /opt/bashrc&#039; &amp;gt;&amp;gt; /home/&#039;&#039;new_username&#039;&#039;/.bashrc&lt;br /&gt;
 echo &#039;source /opt/bashrc&#039; &amp;gt;&amp;gt; /home/&#039;&#039;new_username&#039;&#039;/.bash_profile&lt;br /&gt;
&lt;br /&gt;
* Now create a secure shell asymmetric key pair for the user:&lt;br /&gt;
&lt;br /&gt;
 su -l &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
 ssh-keygen -t rsa -b 4096&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
(Use the default file in which to save the key)&lt;br /&gt;
&lt;br /&gt;
== Archiving the credentials ==&lt;br /&gt;
* Log in &#039;&#039;&#039;as root&#039;&#039;&#039; to the cluster head node, either &#039;&#039;via&#039;&#039; SSH or at the machine.&lt;br /&gt;
* Physically plug the sysadmin flash drive into the cluster head node.&lt;br /&gt;
* Mount the sysadmin flash drive:&lt;br /&gt;
&lt;br /&gt;
 mount /dev/sdc1 /mnt/flash&lt;br /&gt;
&lt;br /&gt;
* Navigate into the flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd /mnt/flash/admin-tools/linux/workstations&lt;br /&gt;
&lt;br /&gt;
* Add the user into the sub-scripts:&lt;br /&gt;
&lt;br /&gt;
 echo &#039;&#039;new_username&#039;&#039; &amp;gt;&amp;gt; bashrc/users.lst&lt;br /&gt;
 echo &#039;&#039;new_username&#039;&#039; &amp;gt;&amp;gt; passwd/users.lst&lt;br /&gt;
&lt;br /&gt;
* Copy the passwd/shadow information:&lt;br /&gt;
&lt;br /&gt;
 grep ^&#039;&#039;new_username&#039;&#039; /etc/passwd &amp;gt;&amp;gt; passwd/etc_passwd&lt;br /&gt;
 grep ^&#039;&#039;new_username&#039;&#039; /etc/shadow &amp;gt;&amp;gt; passwd/etc_shadow&lt;br /&gt;
&lt;br /&gt;
* Copy the secure shell key pair:&lt;br /&gt;
&lt;br /&gt;
 mkdir ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr&lt;br /&gt;
 cp /home/&#039;&#039;new_username&#039;&#039;/.ssh/id_rsa* ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/&lt;br /&gt;
&lt;br /&gt;
* Unmount the sysadmin flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd&lt;br /&gt;
 umount /mnt/flash&lt;br /&gt;
&lt;br /&gt;
= Windows =&lt;br /&gt;
== Creating the account ==&lt;br /&gt;
* Log in to the user&#039;s workstation on an existing account, and use the Control Panel to create a new &#039;&#039;&#039;Administrator account&#039;&#039;&#039;.&lt;br /&gt;
* Add a password to the newly created account. Make sure the user can remember their password.&lt;br /&gt;
* Log out and back into the new account.&lt;br /&gt;
&lt;br /&gt;
== Setting up the network drive ==&lt;br /&gt;
* Open Windows Explorer (&#039;&#039;not&#039;&#039; Internet Explorer) and click on &#039;&#039;&#039;Computer&#039;&#039;&#039;&lt;br /&gt;
* Click on &#039;&#039;&#039;Map Network Drive&#039;&#039;&#039;&lt;br /&gt;
* Type &#039;&#039;\\bionmr\DATA&#039;&#039; into the &#039;&#039;&#039;Folder:&#039;&#039;&#039; entry&lt;br /&gt;
* Click on &#039;&#039;&#039;Finish&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Setting up the PuTTY key ==&lt;br /&gt;
Using PuTTY to log into the secure linux shell from a Windows workstation requires a PuTTY-format private key (&#039;&#039;*.PPK&#039;&#039;) to be made. If the key has been made already and saved to the sysadmin flash drive, then you can skip the generation step. If not, proceed in order.&lt;br /&gt;
&lt;br /&gt;
=== Creating the PuTTY key for the first time ===&lt;br /&gt;
* Insert the sysadmin flash drive into the user&#039;s computer, in Windows&lt;br /&gt;
* &#039;&#039;&#039;DO NOT CLEAN OR REPAIR OR FIX OR FORMAT THE FLASH DRIVE&#039;&#039;&#039;&lt;br /&gt;
* Open then PuTTYgen program and click on &#039;&#039;&#039;Conversions&#039;&#039;&#039;, then &#039;&#039;&#039;Import key&#039;&#039;&#039;&lt;br /&gt;
* Open the following file from the flash drive:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa&lt;br /&gt;
&lt;br /&gt;
* Type the user&#039;s password to unlock the key file&lt;br /&gt;
* Click on &#039;&#039;&#039;Save private key&#039;&#039;&#039; and save to the following file:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa.ppk&lt;br /&gt;
&lt;br /&gt;
* All done here!&lt;br /&gt;
&lt;br /&gt;
=== Installing the PuTTY key ===&lt;br /&gt;
* Insert the sysadmin flash drive into the user&#039;s computer, in Windows&lt;br /&gt;
* &#039;&#039;&#039;DO NOT CLEAN OR REPAIR OR FIX OR FORMAT THE FLASH DRIVE&#039;&#039;&#039;&lt;br /&gt;
* Copy the following file from the flash drive:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa.ppk&lt;br /&gt;
&lt;br /&gt;
* ... and save it to:&lt;br /&gt;
&lt;br /&gt;
 C:\Users\&#039;&#039;new_username&#039;&#039;\&lt;br /&gt;
&lt;br /&gt;
* Open PuTTY and type&#039;&#039;new_username&#039;&#039;@bionmr.unl.edu in the &#039;&#039;&#039;Host Name&#039;&#039;&#039; entry&lt;br /&gt;
* Type &#039;&#039;new_username&#039;&#039;@bionmr.unl.edu inthe &#039;&#039;&#039;Saved Sessions&#039;&#039;&#039; entry&lt;br /&gt;
* In the left pane, expand &#039;&#039;&#039;SSH&#039;&#039;&#039; and click on &#039;&#039;&#039;Auth&#039;&#039;&#039;&lt;br /&gt;
* Click &#039;&#039;&#039;Browse...&#039;&#039;&#039; and open the PuTTY private key you just copied from the flash drive&lt;br /&gt;
* In the left pane, click on &#039;&#039;&#039;Session&#039;&#039;&#039;&lt;br /&gt;
* Click on &#039;&#039;&#039;Save&#039;&#039;&#039; to save the session information&lt;br /&gt;
* All done here!&lt;br /&gt;
&lt;br /&gt;
=Wiki=&lt;br /&gt;
== Adding New Users ==&lt;br /&gt;
*New Users can be added using the administrator account &amp;quot;wiki administrator&amp;quot;. The SysAdmin has the password.&lt;br /&gt;
*There will an &amp;quot;add new user&amp;quot; button at the top of the page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=690</id>
		<title>Installing workstations</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=690"/>
		<updated>2019-08-01T15:39:51Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Workstations in the group are 64-bit (a.k.a. &#039;&#039;x86_64&#039;&#039; or &#039;&#039;amd64&#039;&#039;) machines set up to run both Windows 7 and one of the many various flavors of Linux. When you came into the group, odds are a preconfigured workstation was placed in front of you, ready to rock. But how was it configured, you ask? Read on...&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST&#039;&#039;&#039;, I recommend that you read this like a book, a manual of steps that you will follow in linear order. Failure to do so will make things difficult, if not impossible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Second&#039;&#039;&#039;, please understand that this process never goes the same way on any two workstations. I can&#039;t prepare you for every tiny little problem you may run into, but only set the most important, critical steps before you as a skeletal framework. Good luck, starfighter.&lt;br /&gt;
&lt;br /&gt;
-Eli&lt;br /&gt;
&lt;br /&gt;
= Beginning =&lt;br /&gt;
It should be fairly obvious that you&#039;ll need an assembled PC to work with. Not so obvious is the software you&#039;ll need:&lt;br /&gt;
&lt;br /&gt;
* Windows 10 x64&lt;br /&gt;
* Opensuse Tumbleweed x86_64 (or another distro if you are feeling dangerous)&lt;br /&gt;
&lt;br /&gt;
Other than operating system discs/ISOs, you&#039;ll need the following Windows software:&lt;br /&gt;
&lt;br /&gt;
* Microsoft Office 32-bit (can be downloaded by users after setup through their husker email)&lt;br /&gt;
* CorelDRAW Graphics Suite X4&lt;br /&gt;
* EndNote X8 (These have machine-specific license keys! Ask the sysadmin if you need access to one.)&lt;br /&gt;
&lt;br /&gt;
Finally, you&#039;ll need the administrator flash drive. You know the drive of which I speak. Keep it secret. Keep it safe. It is precious and holds the key to vast untold riches. And possibly, graduation. &lt;br /&gt;
&lt;br /&gt;
= Windows =&lt;br /&gt;
This section details installing the Windows 7 OS and software.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Place the Windows 7 DVD into the drive and reboot the system. This will require the BIOS to be configured to boot optical discs before the hard drive. Once the prompt comes up, choose &#039;Install now&#039;. Accept the license agreement and choose &#039;Custom&#039; on the next screen.&lt;br /&gt;
&lt;br /&gt;
You should now arrive at a screen that shows the [[:Wikipedia:Disk_partitioning|current partition state]] of the drive. First, click on &#039;Drive options (advanced)&#039;. If partitions exist, delete them by selecting the partition in the list and then clicking &#039;Delete&#039;. Now, click &#039;New&#039; and enter a partition size (in MB) that equals about half the total drive space. It doesn&#039;t have to be exact; the partitioner will round to the nearest sector anyways. The installer will give you some garbage about creating extra special partitions for Windows system files, and that&#039;s fine. Once the Windows partition was made, proceed.&lt;br /&gt;
&lt;br /&gt;
All the other options (time zone, language, etc.) will be self-explanatory. For automatic updates, choose &#039;Use recommended settings&#039;. The installer will at some point ask for a user account and password; make this your cluster username and password, or the cluster username and password of whoever will use the system most.&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
Once you&#039;ve logged into your account, don&#039;t think that Windows is installed. It will need at least two hours of babysitting while it installs the largest pile of updates you&#039;ve ever witnessed. You will repeat the following process until no more updates exist:&lt;br /&gt;
&lt;br /&gt;
# Click on the Windows icon (for old-timers, that&#039;s the &#039;Start&#039; button)&lt;br /&gt;
# Click on &#039;Control Panel&#039;&lt;br /&gt;
# Click on &#039;System and Security&#039;&lt;br /&gt;
# Click on &#039;Check for Updates&#039; under the &#039;Windows Update&#039; heading&lt;br /&gt;
# Click on &#039;Check for Updates&#039; in the left-hand pane&lt;br /&gt;
# Install all available updates&lt;br /&gt;
# Restart the computer after updates install&lt;br /&gt;
# Go back to Step 1.&lt;br /&gt;
&lt;br /&gt;
Patience, grasshopper.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure a few things in Windows.&lt;br /&gt;
&lt;br /&gt;
=== Power management ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; Power Options&#039;&#039;, select &#039;&#039;&#039;High performance&#039;&#039;&#039; from the list. You may have to click &#039;Show additional plans&#039; to see this option.&lt;br /&gt;
&lt;br /&gt;
=== Remote desktop access ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; System&#039;&#039;, select &#039;&#039;Remote settings&#039;&#039; in the left-hand pane. Under &#039;Remote Desktop&#039;, select &#039;&#039;Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure)&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
Typical members of this group need a plentiful plethora of packages installed onto their Windows systems in order to function as researchers. Here&#039;s what you&#039;ll need to install:&lt;br /&gt;
&lt;br /&gt;
* Google Chrome&lt;br /&gt;
* Anti-virus&lt;br /&gt;
* Adobe Reader&lt;br /&gt;
* Microsoft Office&lt;br /&gt;
* EndNote X4&lt;br /&gt;
* CorelDRAW X4&lt;br /&gt;
* ChemDraw&lt;br /&gt;
* ACD/NMR 12&lt;br /&gt;
* Java&lt;br /&gt;
* NMRViewJ&lt;br /&gt;
* PuTTY&lt;br /&gt;
* Brother LaserJet drivers&lt;br /&gt;
* Brother Color Laser drivers&lt;br /&gt;
&lt;br /&gt;
=== Chrome ===&lt;br /&gt;
Open Internet Explorer. Click the Stop button about a billion times until IE actually stops loading the page. Navigate to [http://www.google.com Google]. Take Google up on its recommendation to download Chrome. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Anti-virus ===&lt;br /&gt;
Open Chrome and navigate to [http://is.unl.edu is.unl.edu]. Under &#039;Quick Picks&#039;, click on &#039;Anti-virus&#039;. Click on &#039;DOWNLOAD HERE&#039;. Click on &#039;WINDOWS 64bit Version&#039;. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Adobe Reader ===&lt;br /&gt;
Open Chrome and navigate to [http://get.adobe.com/reader get.adobe.com/reader]. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Microsoft Office ===&lt;br /&gt;
Insert the Office DVD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== EndNote X4 ===&lt;br /&gt;
Make sure any Microsoft Office programs are &#039;&#039;closed&#039;&#039;. Insert the EndNote X4 CD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake. Now, restart Windows and log back in. Then, open Microsoft Word. Click on &#039;EndNote X4&#039; in the top bar. Then click on &#039;Go to EndNote&#039;. If you get the message, &#039;&#039;Invalid Class String&#039;&#039;, then go [http://help.thomson.com/default.asp?portalid=tsc&amp;amp;refid=TS_ENCWYWFAQ13 here] to find the solution.&lt;br /&gt;
&lt;br /&gt;
=== CorelDRAW X4 ===&lt;br /&gt;
Insert the CorelDRAW DVD and follow the steps. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Chemdraw ===&lt;br /&gt;
Point your web browser to sitelicense.cambridgesoft.com. When the page loads, go to the link for University of Nebraska, Lincoln and enter your huskers email address. You should then be able to download the software. The activation key should be sent to your email almost immediately.&lt;br /&gt;
&lt;br /&gt;
=== ACD/NMR 12 ===&lt;br /&gt;
ACD Labs offers a free version of their 1D and 2D NMR processor software for academics. Open Chrome and navigate to [http://www.acdlabs.com/resources/freeware/nmr_proc/index.php this address], then click &#039;Download&#039;. You&#039;ll need to set up a user account to download the software. Once you&#039;ve got the installer downloaded, just run it and follow the steps. Yep, the rest is cake.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you should be able to run &#039;&#039;&#039;nmrproc_academia12.exe&#039;&#039;&#039; from &#039;&#039;&#039;Z:\bworley\admin\software&#039;&#039;&#039; without having to download anything or make any accounts.&lt;br /&gt;
&lt;br /&gt;
=== Java ===&lt;br /&gt;
Open Chrome and navigate to [http://www.java.com/en/download/index.jsp this address]. Click on &#039;Free Java Download&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== NMRViewJ ===&lt;br /&gt;
This software is now non-free, but we have the last/latest available free version on the cluster. Run &#039;&#039;&#039;nvjinstall8_0_3.exe&#039;&#039;&#039; in &#039;&#039;&#039;Z:\bworley\admin\software\nmrviewj&#039;&#039;&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== PuTTY ===&lt;br /&gt;
Best for last! Open Chrome and navigate to [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html this address]. Click on &#039;&#039;&#039;putty-0.62-installer.exe&#039;&#039;&#039; to download the installer. Run the installer; all the default options are fine.&lt;br /&gt;
&lt;br /&gt;
Once PuTTY is installed, you&#039;ll need to insert the administrator flash drive. In the flash drive, go to &#039;&#039;&#039;ssh-rsa\clients\myusername&#039;&#039;&#039;, where &#039;&#039;myusername&#039;&#039; is the cluster username that you&#039;re setting the computer up for. In that directory, there is an &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file. Copy that file somewhere that only the current user has read access to, such as &#039;&#039;&#039;C:\Users\myusername&#039;&#039;&#039;. Now, open PuTTY and type &#039;&#039;myusername@bionmr-c1.unl.edu&#039;&#039; into both the &#039;Host Name&#039; and &#039;Saved Sessions&#039; text boxes. In the left-hand pane, click the plus sign next to &#039;SSH&#039; and click on &#039;Auth&#039;. Click &#039;Browse&#039; and open the &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file in the location you copied it to. Finally, click back to &#039;Session&#039; in the left-hand pane and click &#039;Save&#039; under &#039;Saved Sessions&#039;.&lt;br /&gt;
&lt;br /&gt;
You&#039;re ready to rock. Return the administrator flash drive to its sacred resting place.&lt;br /&gt;
&lt;br /&gt;
=== Brother printer drivers ===&lt;br /&gt;
The Brother printer driver CDs are available in the lab office. Use those CDs to install drivers (only drivers, no software suites) for the two Brother printers outside the office. The IP addresses of the printers will be requested by the installer software; you can get those addresses by printing off the &#039;&#039;printer status&#039;&#039; information from each printer via their front panel buttons.&lt;br /&gt;
NOTE: If you try to discover the printers over the network and none are found, try temporarily disabling your firewalls. After the printer is installed, you should be able to bring the firewall back up without affecting the printer.&lt;br /&gt;
&lt;br /&gt;
= Linux =&lt;br /&gt;
This section details installing and configuring the Linux OS.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Insert the Debian DVD and reboot the computer. When the Debian boot prompt comes up, press the Tab key, type &#039;&#039;&#039;desktop=xfce&#039;&#039;&#039;, and hit enter. Most of the options will be self-explanatory until you get to the partitioning. You will select &#039;&#039;Use custom layout&#039;&#039; and click next.&lt;br /&gt;
&lt;br /&gt;
The partitioning of linux systems in the group is done as follows:&lt;br /&gt;
&lt;br /&gt;
* 128 MB of ext2 mounted on /boot (made at the beginning of the free space)&lt;br /&gt;
* All remaining space allocated as ext4 and mounted on &#039;&#039;&#039;/&#039;&#039;&#039;&lt;br /&gt;
* 2048 MB of swap (made at the end of the free space)&lt;br /&gt;
&lt;br /&gt;
Make the partitions in the above order. After making the boot partition, subtract 2048 MB from the remaining free space to get the size of the &#039;&#039;&#039;/&#039;&#039;&#039; partition. Then use the rest of the free space (about 2048 MB, but it will rarely be exact) as swap.&lt;br /&gt;
&lt;br /&gt;
You should now have a partitioning scheme that spans the entire disk that looks something like this:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;sda1:&#039;&#039;&#039; Windows system files (few hundred MB)&lt;br /&gt;
* &#039;&#039;&#039;sda2:&#039;&#039;&#039; Windows partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda3:&#039;&#039;&#039; Linux boot partition (128 MB)&lt;br /&gt;
* &#039;&#039;&#039;sda4:&#039;&#039;&#039; Extended partition&lt;br /&gt;
* &#039;&#039;&#039;sda5:&#039;&#039;&#039; Linux root partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda6:&#039;&#039;&#039; Linux swap partition (roughly 2048 MB)&lt;br /&gt;
&lt;br /&gt;
Everything else will be much more self-explanatory, and the defaults are A-OK for almost all the other options.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure the system a bit more to get it talking with the cluster and running properly. Once the system boots up, use &#039;&#039;&#039;Ctrl&#039;&#039;&#039;+&#039;&#039;&#039;Alt&#039;&#039;&#039;+&#039;&#039;&#039;F1&#039;&#039;&#039; to navigate to the terminal and log in as root. Once you&#039;re logged in, insert and mount the system administrator flash drive, like so:&lt;br /&gt;
&lt;br /&gt;
 mkdir /mnt/flash&lt;br /&gt;
 mount /dev/sdb1 /mnt/flash&lt;br /&gt;
&lt;br /&gt;
Where the above example assumes that &#039;&#039;/dev/sdb1&#039;&#039; is the flash drive device node. Once mounted, run the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd /mnt/flash/admin-scripts/linux/workstations&lt;br /&gt;
 ./run&lt;br /&gt;
&lt;br /&gt;
The script will ask if you&#039;re ready to proceed. As long as everything above went OK, it&#039;s safe to say &#039;yes&#039; here. Hopefully, the script will complete without errors and your linux workstation will be properly configured. Unmount the flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd&lt;br /&gt;
 umount /mnt/flash&lt;br /&gt;
 reboot&lt;br /&gt;
&lt;br /&gt;
[[category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Cluster_Maintenance&amp;diff=680</id>
		<title>Cluster Maintenance</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Cluster_Maintenance&amp;diff=680"/>
		<updated>2019-07-23T17:39:10Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Hardware =&lt;br /&gt;
The cluster was built from parts ordered from [http://www.newegg.com Newegg]. The important components of the system are as follows:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;PSU:&#039;&#039;&#039; &#039;&#039;(1x)&#039;&#039; Corsair RM850 850W 92% Efficiency Active-PFC&lt;br /&gt;
* &#039;&#039;&#039;Mobo:&#039;&#039;&#039; &#039;&#039;(1x)&#039;&#039; Gigabyte GA-EP45-UD3P (rev 1.1)&lt;br /&gt;
* &#039;&#039;&#039;CPU:&#039;&#039;&#039; &#039;&#039;(1x)&#039;&#039; Intel Core 2 Quad Q8300 2.5GHz&lt;br /&gt;
* &#039;&#039;&#039;RAM:&#039;&#039;&#039; &#039;&#039;(4x)&#039;&#039; Corsair XMS2 DDR2 800 (PC2 6400) 2GB&lt;br /&gt;
* &#039;&#039;&#039;Gfx:&#039;&#039;&#039; &#039;&#039;(1x)&#039;&#039; NVIDIA GeForce 9500 GT PCI-E 2.0 x8&lt;br /&gt;
* &#039;&#039;&#039;RAID:&#039;&#039;&#039; &#039;&#039;(1x)&#039;&#039; 3ware 9650SE-4LMPL PCI-E 2.0 x1&lt;br /&gt;
* &#039;&#039;&#039;RAID:&#039;&#039;&#039; &#039;&#039;(4x)&#039;&#039; WD 1TB 7200RPM SATA-II HDD&lt;br /&gt;
&lt;br /&gt;
= Operating System =&lt;br /&gt;
The cluster currently runs Debian 8.0 &#039;&#039;amd64&#039;&#039;. The recommended method of installing the base operating system is to download the &#039;&#039;Small CD&#039;&#039; ISO from [http://www.debian.org/distrib/netinst Debian] and burn it to a CD/DVD.&lt;br /&gt;
&lt;br /&gt;
The (MBR) partitioning of the main 1TB disk should be:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
| Num. || Size   || Filesystem || Mount point&lt;br /&gt;
|-&lt;br /&gt;
| 1    || 256 MB || ext2       || /boot&lt;br /&gt;
|-&lt;br /&gt;
| 2    || 317 GB || ext4       || /&lt;br /&gt;
|-&lt;br /&gt;
| 3    || 2.5 GB || swap       || swap&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The 2.7TB RAID5 array should &#039;&#039;already be partitioned&#039;&#039; (GPT). &#039;&#039;&#039;At all costs, maintain the integrity of the data already contained on the RAID5 array.&#039;&#039;&#039; Keep frequent backups of the array to at least one external source.&lt;br /&gt;
&lt;br /&gt;
Other important settings to choose during the installation are summarized below:&lt;br /&gt;
FIXME&lt;br /&gt;
&lt;br /&gt;
= Software =&lt;br /&gt;
The software on the cluster consists of packages installed through the Debian repositories and third-party software installed into &#039;&#039;&#039;/opt&#039;&#039;&#039;. It is highly recommended that the software in this section be installed in the order it is listed here, if possible.&lt;br /&gt;
&lt;br /&gt;
== Debian Packages ==&lt;br /&gt;
Install Debian packages before third-party software, if at all possible. Many of these commands will require mounting the administrator flash drive, in which case this documentation assumes it will be mounted to &#039;&#039;&#039;/mnt/flash&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
=== Initial configuration ===&lt;br /&gt;
We don&#039;t want all the ports on our precious cluster to be out there flapping in the breeze. Install some files that loosely restrict which daemons can provide services to which addresses:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/hosts.allow /etc/&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/hosts.deny /etc/&lt;br /&gt;
&lt;br /&gt;
Install a file that defines WAN and LAN IP-hostname mappings:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/hosts /etc/&lt;br /&gt;
&lt;br /&gt;
Add support for hosting both 32-bit and 64-bit packages on this 64-bit system:&lt;br /&gt;
&lt;br /&gt;
 dpkg --add-architecture i386&lt;br /&gt;
 apt-get update&lt;br /&gt;
&lt;br /&gt;
Now install the the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* libc6-i686&lt;br /&gt;
* libx11-6:i386&lt;br /&gt;
* libxext6:i386&lt;br /&gt;
&lt;br /&gt;
=== The groundwork ===&lt;br /&gt;
Some miscellaneous software packages need to be installed as boilerplate. Install the following packages using &#039;&#039;apt-get&#039;&#039;...&lt;br /&gt;
&lt;br /&gt;
First, install some required shells:&lt;br /&gt;
&lt;br /&gt;
* tcsh&lt;br /&gt;
* bash-completion&lt;br /&gt;
&lt;br /&gt;
Lay down a decent text editor:&lt;br /&gt;
&lt;br /&gt;
* vim&lt;br /&gt;
&lt;br /&gt;
Add a few extra utilities:&lt;br /&gt;
&lt;br /&gt;
* zip&lt;br /&gt;
* nmap&lt;br /&gt;
* links&lt;br /&gt;
* rsync&lt;br /&gt;
* screen&lt;br /&gt;
* gnuplot&lt;br /&gt;
* imagemagick&lt;br /&gt;
&lt;br /&gt;
Now install some more language support:&lt;br /&gt;
&lt;br /&gt;
* pkg-config&lt;br /&gt;
* build-essential&lt;br /&gt;
* libtool&lt;br /&gt;
* texlive&lt;br /&gt;
* texi2html&lt;br /&gt;
* ruby&lt;br /&gt;
* gfortran&lt;br /&gt;
* perl&lt;br /&gt;
&lt;br /&gt;
=== Python ===&lt;br /&gt;
A few Python packages are standard fare for programmers in the group. Install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* python3&lt;br /&gt;
* python2.7&lt;br /&gt;
* python3.2&lt;br /&gt;
* python-numpy&lt;br /&gt;
* python-sklearn&lt;br /&gt;
* python-matplotlib&lt;br /&gt;
&lt;br /&gt;
=== R ===&lt;br /&gt;
The R language is useful to some people, I guess.&lt;br /&gt;
&lt;br /&gt;
* r-base&lt;br /&gt;
* r-recommended&lt;br /&gt;
&lt;br /&gt;
=== Sudo ===&lt;br /&gt;
Install the &#039;&#039;sudo&#039;&#039; package using &#039;&#039;apt-get&#039;&#039;. Then add the following line to the &#039;&#039;&#039;/etc/sudoers&#039;&#039;&#039; file:&lt;br /&gt;
&lt;br /&gt;
 %bionmr ALL=(ALL:ALL) ALL&lt;br /&gt;
&lt;br /&gt;
=== OpenSSH ===&lt;br /&gt;
The OpenSSH daemon allows users to log into the cluster from anywhere in the world using their RSA private key. First, install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* openssh-client&lt;br /&gt;
* openssh-server&lt;br /&gt;
&lt;br /&gt;
Then install the &#039;&#039;&#039;/etc/ssh/sshd_config&#039;&#039;&#039; file from the administrator flash drive and restart the SSH daemon:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/ssh/sshd_config /etc/ssh/&lt;br /&gt;
 service ssh restart&lt;br /&gt;
&lt;br /&gt;
=== NFS ===&lt;br /&gt;
The NFS server allows users to access their files on campus from Debian Linux workstations. First, install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* nfs-kernel-server&lt;br /&gt;
* portmap&lt;br /&gt;
&lt;br /&gt;
Then install the &#039;&#039;&#039;/etc/exports&#039;&#039;&#039; file from the administrator flash drive and restart the NFS daemon:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/exports /etc/&lt;br /&gt;
 service nfs-kernel-server restart&lt;br /&gt;
&lt;br /&gt;
=== Samba ===&lt;br /&gt;
The Samba server allows users to access their files on campus from Windows workstations. First, install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* cifs-utils&lt;br /&gt;
* samba&lt;br /&gt;
&lt;br /&gt;
Then install the Samba configuration and password files and restart the Samba daemon:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/samba/smb.conf /etc/samba/&lt;br /&gt;
 install -v -m 600 -o root -g root /mnt/flash/admin-tools/linux/cluster/var/lib/samba/passdb.tdb /var/lib/samba/&lt;br /&gt;
 service samba restart&lt;br /&gt;
&lt;br /&gt;
=== MTA ===&lt;br /&gt;
The exim4 package allows the server to send emails out to users about various things emails need to be sent for, and such. Mail transfer agent. You get the idea. Install the following package using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* exim4&lt;br /&gt;
&lt;br /&gt;
Next, reconfigure the package using the following commands:&lt;br /&gt;
&lt;br /&gt;
 dpkg-reconfigure exim4&lt;br /&gt;
 chmod +x /usr/sbin/exim4&lt;br /&gt;
 rm -f /var/log/exim4/paniclog&lt;br /&gt;
 touch /var/log/exim4/paniclog&lt;br /&gt;
 service start exim4&lt;br /&gt;
&lt;br /&gt;
You&#039;ll want to use the default values for every option during the configuration. Once that&#039;s done, you can test that the MTA is working by running the following command:&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== MySQL ===&lt;br /&gt;
FIXME&lt;br /&gt;
&lt;br /&gt;
* mysql-client&lt;br /&gt;
* mysql-server&lt;br /&gt;
&lt;br /&gt;
=== Apache ===&lt;br /&gt;
The Apache server hosts the group website, plain and simple. Install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* apache2&lt;br /&gt;
* apache2-doc&lt;br /&gt;
&lt;br /&gt;
Then install the password file and an updated site configuration file and restart the Apache daemon:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/apache2/htpasswd /etc/apache2/&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/apache2/sites-available/default /etc/apache2/sites-available&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
&lt;br /&gt;
=== PHP ===&lt;br /&gt;
The PHP interpreter is required to host the website using the UNL university style templates. Install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* php5&lt;br /&gt;
* php5-mysql&lt;br /&gt;
* php5-sqlite&lt;br /&gt;
* libapache-mod-php5&lt;br /&gt;
&lt;br /&gt;
Then download and install Pyrus (PEAR2) using the following commands:&lt;br /&gt;
&lt;br /&gt;
 wget http://pear2.php.net/pyrus.phar&lt;br /&gt;
 install -v -m 644 -o root -g root pyrus.phar /usr/bin/&lt;br /&gt;
 rm pyrus.phar&lt;br /&gt;
&lt;br /&gt;
Open a new file in &#039;&#039;vi&#039;&#039; called &#039;&#039;&#039;/usr/bin/pyrus&#039;&#039;&#039; and add the following text:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 /usr/bin/php -dphar.readonly=0 /usr/bin/pyrus.phar $*&lt;br /&gt;
&lt;br /&gt;
Save the file and make it executable:&lt;br /&gt;
&lt;br /&gt;
 chmod 755 /usr/bin/pyrus&lt;br /&gt;
&lt;br /&gt;
Now run &#039;&#039;pyrus&#039;&#039; for the first time. Tell it &#039;&#039;yes&#039;&#039; to initialize the configuration. Tell it to install packages to &#039;&#039;&#039;/usr/share/pear&#039;&#039;&#039; by default, when it asks. Now install the UNL template package:&lt;br /&gt;
&lt;br /&gt;
 pyrus channel-discover pear.unl.edu&lt;br /&gt;
 pyrus install -o pear.unl.edu/UNL_Templates-beta&lt;br /&gt;
&lt;br /&gt;
Finally, install updated configuration files for PHP, restart the Apache server and remove the placeholder html page:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/php5/apache2/php.ini /etc/php5/apache2/&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/php5/cli/php.ini /etc/php5/cli/&lt;br /&gt;
 service apache2 restart&lt;br /&gt;
 rm /var/www/index.html&lt;br /&gt;
&lt;br /&gt;
=== DHCP ===&lt;br /&gt;
The cluster LAN is managed by a DHCP server on the second Ethernet port. Install the following package using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* isc-dhcp-server&lt;br /&gt;
* bridge-utils&lt;br /&gt;
* dnsmasq&lt;br /&gt;
&lt;br /&gt;
Install the configuration files for the DHCP server:&lt;br /&gt;
&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/dhcp/dhcpd.conf /etc/dhcp/&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/default/isc-dhcp-server /etc/default/&lt;br /&gt;
 install -v -m 644 -o root -g root /mnt/flash/admin-tools/linux/cluster/etc/network/interfaces /etc/network/&lt;br /&gt;
&lt;br /&gt;
Bring up the second Ethernet interface and restart the DHCP server:&lt;br /&gt;
&lt;br /&gt;
 ifup eth1&lt;br /&gt;
 service isc-dhcp-server restart&lt;br /&gt;
&lt;br /&gt;
Run the following commands:&lt;br /&gt;
&lt;br /&gt;
 brctl addbr br0&lt;br /&gt;
 brctl addif br0 eth0 eth1&lt;br /&gt;
 ifup br0&lt;br /&gt;
&lt;br /&gt;
=== Octave ===&lt;br /&gt;
The Octave programming environment provides users with mathematical routines that simplify data handling. Install the following packages using &#039;&#039;apt-get&#039;&#039;:&lt;br /&gt;
&lt;br /&gt;
* octave&lt;br /&gt;
* liboctave-dev&lt;br /&gt;
* octave-audio&lt;br /&gt;
* octave-control&lt;br /&gt;
* octave-data-smoothing&lt;br /&gt;
* octave-fixed&lt;br /&gt;
* octave-fpl&lt;br /&gt;
* octave-general&lt;br /&gt;
* octave-geometry&lt;br /&gt;
* octave-image&lt;br /&gt;
* octave-io&lt;br /&gt;
* octave-linear-algebra&lt;br /&gt;
* octave-odepkg&lt;br /&gt;
* octave-optim&lt;br /&gt;
* octave-optiminterp&lt;br /&gt;
* octave-pkg-dev&lt;br /&gt;
* octave-plot&lt;br /&gt;
* octave-quaternion&lt;br /&gt;
* octave-signal&lt;br /&gt;
* octave-specfun&lt;br /&gt;
* octave-statistics&lt;br /&gt;
* octave-strings&lt;br /&gt;
&lt;br /&gt;
== Third-party Software ==&lt;br /&gt;
FIXME&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=679</id>
		<title>Category:Protocols</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=679"/>
		<updated>2019-07-23T17:37:18Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;General Maintenance&#039;&#039;&lt;br /&gt;
*[[Changing the high pressure dewar]]&lt;br /&gt;
*[[Filling a Magnet with Nitrogen]]&lt;br /&gt;
*[[Autoclaving Laboratory Glassware and Media]]&lt;br /&gt;
*[[Chemical Disinfection of Glassware]]&lt;br /&gt;
*[[Requesting Balance Calibration]]&lt;br /&gt;
*[[Requesting Pipette Calibration]]&lt;br /&gt;
*[[Using the UV-Vis]]&lt;br /&gt;
*[[Using/Maintaining pH Meter]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Protein Preparation&#039;&#039;&lt;br /&gt;
*[[Buffer Exchange and Solution Concentration]]&lt;br /&gt;
*[[Finding a Protein Target on the NESG website]]&lt;br /&gt;
*[[Choosing a Plasmid]]&lt;br /&gt;
*[[Plasmid Purification and Transformation Protocol]]&lt;br /&gt;
*[[Creating Stock Cultures of Bacteria]]&lt;br /&gt;
*[[Luria-Bertani Media]]&lt;br /&gt;
*[[M9 Minimal Media]]&lt;br /&gt;
*[[Protein Overexpression and Extraction]]&lt;br /&gt;
*[[SDS-PAGE Protocol]]&lt;br /&gt;
*[[Running a Cobalt Affinity Column]]&lt;br /&gt;
*[[Dialysis]]&lt;br /&gt;
*[[Centrifugal Protein Concentration and Buffer Exchange]]&lt;br /&gt;
*[[Using the Stirred Cell Concentrator]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Collection&#039;&#039;&lt;br /&gt;
*[[Gap Sampling]]&lt;br /&gt;
*[[Water Suppression with presaturation pulses (zgpr/zgcppr]]&lt;br /&gt;
*[[Non-uniform Sampling]]&lt;br /&gt;
*[[Collecting a 15N Edited HSQC]]&lt;br /&gt;
*[[Collecting CEST Data]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Processing and Analysis&#039;&#039;&lt;br /&gt;
*[[Analysis of 1D Line-Broadening Screen]]&lt;br /&gt;
*[[FastModelFree]]&lt;br /&gt;
*[[2D NMR Analysis (CCPNMR)]]&lt;br /&gt;
*[[1H NMR Analysis (SIMCA)]]&lt;br /&gt;
*[[1H NMR Analysis (ACDLab)]]&lt;br /&gt;
*[[Processing CEST Data]]&lt;br /&gt;
*[[Titration Data Analysis in nmrPipe]]&lt;br /&gt;
*[[Non-Uniform Sampling]]&lt;br /&gt;
*[[NMRFAM-SPARKY Guide]]&lt;br /&gt;
*[[NMRFAM-SPARKY: Automated Peak Assignment]]&lt;br /&gt;
*[[NMR Processing in Linux and Windows]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Miscellaneous&#039;&#039;&lt;br /&gt;
*[[Agarose Gel]]&lt;br /&gt;
*[[700 MHz NMR checklist]]&lt;br /&gt;
*[[500 MHz NMR checklist]]&lt;br /&gt;
*[[1D Macro]]&lt;br /&gt;
*[[Setting Up a Virtual Screen with AutoDock]]&lt;br /&gt;
*[[Simple Protein Crosslinking]]&lt;br /&gt;
*[[1D NMR Titrations]]&lt;br /&gt;
&lt;br /&gt;
Cell Culturing&lt;br /&gt;
*[[Cell Culturing Dr. Franco Lab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Metabolomics&#039;&#039;&lt;br /&gt;
*[[MetPa for metabolomics]]&lt;br /&gt;
*[[Making Heatmaps]]&lt;br /&gt;
*[[Metabolite Extraction]]&lt;br /&gt;
*[[One way ANOVA in R]]&lt;br /&gt;
*[[P-Value adjustment for multiple comparisons]]&lt;br /&gt;
*[[PCA-Utils]]&lt;br /&gt;
*[[NMR Tube Deep Cleaning]]&lt;br /&gt;
*[[Noise Removal for PCA]]&lt;br /&gt;
*[[Weighted Linear Least Squares]]&lt;br /&gt;
*[[Serum Preparation for 1D NMR]]&lt;br /&gt;
*[[Urine Preparation for 1D NMR]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Safety and Inspections&#039;&#039;&lt;br /&gt;
*[[Lab Responsibilities]]&lt;br /&gt;
*[[Inspection Checklist]]&lt;br /&gt;
*[[Safety Contacts, Resources]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Demos&#039;&#039;&lt;br /&gt;
*[[Peroxide Clock]]&lt;br /&gt;
*[[Traffic Light Reaction]]&lt;br /&gt;
*[[Orange Juice Clock]]&lt;br /&gt;
*[[Gummy Bear Freeze]]&lt;br /&gt;
*[[Batteries]]&lt;br /&gt;
*[[Rocket Launcher]]&lt;br /&gt;
*[[Women in Science: Checklist]]&lt;br /&gt;
*[[Maxey Day: Checklist]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=678</id>
		<title>Category:Protocols</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=678"/>
		<updated>2019-07-23T17:35:43Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;General Maintenance&#039;&#039;&lt;br /&gt;
*[[Changing the high pressure dewar]]&lt;br /&gt;
*[[Filling a Magnet with Nitrogen]]&lt;br /&gt;
*[[Autoclaving Laboratory Glassware and Media]]&lt;br /&gt;
*[[Chemical Disinfection of Glassware]]&lt;br /&gt;
*[[Requesting Balance Calibration]]&lt;br /&gt;
*[[Requesting Pipette Calibration]]&lt;br /&gt;
*[[Using the UV-Vis]]&lt;br /&gt;
*[[Using/Maintaining pH Meter]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Protein Preparation&#039;&#039;&lt;br /&gt;
*[[Buffer Exchange and Solution Concentration]]&lt;br /&gt;
*[[Finding a Protein Target on the NESG website]]&lt;br /&gt;
*[[Choosing a Plasmid]]&lt;br /&gt;
*[[Plasmid Purification and Transformation Protocol]]&lt;br /&gt;
*[[Creating Stock Cultures of Bacteria]]&lt;br /&gt;
*[[Luria-Bertani Media]]&lt;br /&gt;
*[[M9 Minimal Media]]&lt;br /&gt;
*[[Protein Overexpression and Extraction]]&lt;br /&gt;
*[[SDS-PAGE Protocol]]&lt;br /&gt;
*[[Running a Cobalt Affinity Column]]&lt;br /&gt;
*[[Dialysis]]&lt;br /&gt;
*[[Centrifugal Protein Concentration and Buffer Exchange]]&lt;br /&gt;
*[[Using the Stirred Cell Concentrator]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Collection&#039;&#039;&lt;br /&gt;
*[[Gap Sampling]]&lt;br /&gt;
*[[Water Suppression with presaturation pulses (zgpr/zgcppr]]&lt;br /&gt;
*[[Non-uniform Sampling]&lt;br /&gt;
*[[Collecting a 15N Edited HSQC]]&lt;br /&gt;
*[[Collecting CEST Data]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Processing and Analysis&#039;&#039;&lt;br /&gt;
*[[Analysis of 1D Line-Broadening Screen]]&lt;br /&gt;
*[[FastModelFree]]&lt;br /&gt;
*[[2D NMR Analysis (CCPNMR)]]&lt;br /&gt;
*[[1H NMR Analysis (SIMCA)]]&lt;br /&gt;
*[[1H NMR Analysis (ACDLab)]]&lt;br /&gt;
*[[Processing CEST Data]]&lt;br /&gt;
*[[Titration Data Analysis in nmrPipe]]&lt;br /&gt;
*[[Non-Uniform Sampling]]&lt;br /&gt;
*[[NMRFAM-SPARKY Guide]]&lt;br /&gt;
*[[NMRFAM-SPARKY: Automated Peak Assignment]]&lt;br /&gt;
*[[NMR Processing in Linux and Windows]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Miscellaneous&#039;&#039;&lt;br /&gt;
*[[Agarose Gel]]&lt;br /&gt;
*[[700 MHz NMR checklist]]&lt;br /&gt;
*[[500 MHz NMR checklist]]&lt;br /&gt;
*[[1D Macro]]&lt;br /&gt;
*[[Setting Up a Virtual Screen with AutoDock]]&lt;br /&gt;
*[[Simple Protein Crosslinking]]&lt;br /&gt;
*[[1D NMR Titrations]]&lt;br /&gt;
&lt;br /&gt;
Cell Culturing&lt;br /&gt;
*[[Cell Culturing Dr. Franco Lab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Metabolomics&#039;&#039;&lt;br /&gt;
*[[MetPa for metabolomics]]&lt;br /&gt;
*[[Making Heatmaps]]&lt;br /&gt;
*[[Metabolite Extraction]]&lt;br /&gt;
*[[One way ANOVA in R]]&lt;br /&gt;
*[[P-Value adjustment for multiple comparisons]]&lt;br /&gt;
*[[PCA-Utils]]&lt;br /&gt;
*[[NMR Tube Deep Cleaning]]&lt;br /&gt;
*[[Noise Removal for PCA]]&lt;br /&gt;
*[[Weighted Linear Least Squares]]&lt;br /&gt;
*[[Serum Preparation for 1D NMR]]&lt;br /&gt;
*[[Urine Preparation for 1D NMR]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Safety and Inspections&#039;&#039;&lt;br /&gt;
*[[Lab Responsibilities]]&lt;br /&gt;
*[[Inspection Checklist]]&lt;br /&gt;
*[[Safety Contacts, Resources]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Demos&#039;&#039;&lt;br /&gt;
*[[Peroxide Clock]]&lt;br /&gt;
*[[Traffic Light Reaction]]&lt;br /&gt;
*[[Orange Juice Clock]]&lt;br /&gt;
*[[Gummy Bear Freeze]]&lt;br /&gt;
*[[Batteries]]&lt;br /&gt;
*[[Rocket Launcher]]&lt;br /&gt;
*[[Women in Science: Checklist]]&lt;br /&gt;
*[[Maxey Day: Checklist]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=677</id>
		<title>Category:Protocols</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=677"/>
		<updated>2019-07-23T17:35:17Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;General Maintenance&#039;&#039;&lt;br /&gt;
*[[Changing the high pressure dewar]]&lt;br /&gt;
*[[Filling a Magnet with Nitrogen]]&lt;br /&gt;
*[[Autoclaving Laboratory Glassware and Media]]&lt;br /&gt;
*[[Chemical Disinfection of Glassware]]&lt;br /&gt;
*[[Requesting Balance Calibration]]&lt;br /&gt;
*[[Requesting Pipette Calibration]]&lt;br /&gt;
*[[Using the UV-Vis]]&lt;br /&gt;
*[[Using/Maintaining pH Meter]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Protein Preparation&#039;&#039;&lt;br /&gt;
*[[Buffer Exchange and Solution Concentration]]&lt;br /&gt;
*[[Finding a Protein Target on the NESG website]]&lt;br /&gt;
*[[Choosing a Plasmid]]&lt;br /&gt;
*[[Plasmid Purification and Transformation Protocol]]&lt;br /&gt;
*[[Creating Stock Cultures of Bacteria]]&lt;br /&gt;
*[[Luria-Bertani Media]]&lt;br /&gt;
*[[M9 Minimal Media]]&lt;br /&gt;
*[[Protein Overexpression and Extraction]]&lt;br /&gt;
*[[SDS-PAGE Protocol]]&lt;br /&gt;
*[[Running a Cobalt Affinity Column]]&lt;br /&gt;
*[[Dialysis]]&lt;br /&gt;
*[[Centrifugal Protein Concentration and Buffer Exchange]]&lt;br /&gt;
*[[Using the Stirred Cell Concentrator]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Collection&#039;&#039;&lt;br /&gt;
*[[Gap Sampling]]&lt;br /&gt;
*[[Water Suppression with presaturation pulses (zgpr/zgcppr]]&lt;br /&gt;
*[[Non-uniform Sampling]&lt;br /&gt;
*[[Collecting a 15N Edited HSQC]]&lt;br /&gt;
*[[Collecting CEST Data]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Data Processing and Analysis&#039;&#039;&lt;br /&gt;
*[[Analysis of 1D Line-Broadening Screen]]&lt;br /&gt;
*[[FastModelFree]]&lt;br /&gt;
*[[2D NMR Analysis (CCPNMR)]]&lt;br /&gt;
*[[1H NMR Analysis (SIMCA)]]&lt;br /&gt;
*[[1H NMR Analysis (ACDLab)]]&lt;br /&gt;
*[[Processing CEST Data]]&lt;br /&gt;
*[[Titration Data Analysis in nmrPipe]]&lt;br /&gt;
*[[Non-Uniform Sampling]]&lt;br /&gt;
*[NMRFAM-SPARKY Guide]]&lt;br /&gt;
*[[NMRFAM-SPARKY: Automated Peak Assignment]]&lt;br /&gt;
*[[NMR Processing in Linux and Windows]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Miscellaneous&#039;&#039;&lt;br /&gt;
*[[Agarose Gel]]&lt;br /&gt;
*[[700 MHz NMR checklist]]&lt;br /&gt;
*[[500 MHz NMR checklist]]&lt;br /&gt;
*[[1D Macro]]&lt;br /&gt;
*[[Setting Up a Virtual Screen with AutoDock]]&lt;br /&gt;
*[[Simple Protein Crosslinking]]&lt;br /&gt;
*[[1D NMR Titrations]]&lt;br /&gt;
&lt;br /&gt;
Cell Culturing&lt;br /&gt;
*[[Cell Culturing Dr. Franco Lab]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Metabolomics&#039;&#039;&lt;br /&gt;
*[[MetPa for metabolomics]]&lt;br /&gt;
*[[Making Heatmaps]]&lt;br /&gt;
*[[Metabolite Extraction]]&lt;br /&gt;
*[[One way ANOVA in R]]&lt;br /&gt;
*[[P-Value adjustment for multiple comparisons]]&lt;br /&gt;
*[[PCA-Utils]]&lt;br /&gt;
*[[NMR Tube Deep Cleaning]]&lt;br /&gt;
*[[Noise Removal for PCA]]&lt;br /&gt;
*[[Weighted Linear Least Squares]]&lt;br /&gt;
*[[Serum Preparation for 1D NMR]]&lt;br /&gt;
*[[Urine Preparation for 1D NMR]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Safety and Inspections&#039;&#039;&lt;br /&gt;
*[[Lab Responsibilities]]&lt;br /&gt;
*[[Inspection Checklist]]&lt;br /&gt;
*[[Safety Contacts, Resources]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Demos&#039;&#039;&lt;br /&gt;
*[[Peroxide Clock]]&lt;br /&gt;
*[[Traffic Light Reaction]]&lt;br /&gt;
*[[Orange Juice Clock]]&lt;br /&gt;
*[[Gummy Bear Freeze]]&lt;br /&gt;
*[[Batteries]]&lt;br /&gt;
*[[Rocket Launcher]]&lt;br /&gt;
*[[Women in Science: Checklist]]&lt;br /&gt;
*[[Maxey Day: Checklist]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=676</id>
		<title>Category:Protocols</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Category:Protocols&amp;diff=676"/>
		<updated>2019-07-23T17:23:57Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;General Maintenance&#039;&#039;&lt;br /&gt;
*[[Changing the high pressure dewar]]&lt;br /&gt;
*[[Filling a Magnet with Nitrogen]]&lt;br /&gt;
*[[Autoclaving Laboratory Glassware and Media]]&lt;br /&gt;
*[[Chemical Disinfection of Glassware]]&lt;br /&gt;
*[[Requesting Balance Calibration]]&lt;br /&gt;
*[[Requesting Pipette Calibration]]&lt;br /&gt;
*[[Using the UV-Vis]]&lt;br /&gt;
*[[Using/Maintaining pH Meter]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Protein Preparation&#039;&#039;&lt;br /&gt;
*[[Buffer Exchange and Solution Concentration]]&lt;br /&gt;
*[[Finding a Protein Target on the NESG website]]&lt;br /&gt;
*[[Choosing a Plasmid]]&lt;br /&gt;
*[[Plasmid Purification and Transformation Protocol]]&lt;br /&gt;
*[[Creating Stock Cultures of Bacteria]]&lt;br /&gt;
*[[Luria-Bertani Media]]&lt;br /&gt;
*[[M9 Minimal Media]]&lt;br /&gt;
*[[Protein Overexpression and Extraction]]&lt;br /&gt;
*[[SDS-PAGE Protocol]]&lt;br /&gt;
*[[Running a Cobalt Affinity Column]]&lt;br /&gt;
*[[Dialysis]]&lt;br /&gt;
*[[Centrifugal Protein Concentration and Buffer Exchange]]&lt;br /&gt;
*[[Using the Stirred Cell Concentrator]]&lt;br /&gt;
&#039;&#039;Data Collection&#039;&#039;&lt;br /&gt;
*[[Collecting a 15N Edited HSQC]]&lt;br /&gt;
*[[Collecting CEST Data]]&lt;br /&gt;
&#039;&#039;Data Processing and Analysis&#039;&#039;&lt;br /&gt;
*[[Analysis of 1D Line-Broadening Screen]]&lt;br /&gt;
*[[FastModelFree]]&lt;br /&gt;
*[[2D NMR Analysis (CCPNMR)]]&lt;br /&gt;
*[[1H NMR Analysis (SIMCA)]]&lt;br /&gt;
*[[1H NMR Analysis (ACDLab)]]&lt;br /&gt;
*[[Processing CEST Data]]&lt;br /&gt;
*[[Titration Data Analysis in nmrPipe]]&lt;br /&gt;
&#039;&#039;Miscellaneous&#039;&#039;&lt;br /&gt;
*[[Agarose Gel]]&lt;br /&gt;
*[[700 MHz NMR checklist]]&lt;br /&gt;
*[[500 MHz NMR checklist]]&lt;br /&gt;
*[[1D Macro]]&lt;br /&gt;
*[[Setting Up a Virtual Screen with AutoDock]]&lt;br /&gt;
*[[Simple Protein Crosslinking]]&lt;br /&gt;
*[[1D NMR Titrations]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Test&amp;diff=635</id>
		<title>Test</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Test&amp;diff=635"/>
		<updated>2017-03-15T00:03:09Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just a test page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-Eli&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=554</id>
		<title>Running SDS-PAGE</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Running_SDS-PAGE&amp;diff=554"/>
		<updated>2017-03-08T17:20:19Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
&lt;br /&gt;
[[File:SDS_PAGE.pdf]]&lt;br /&gt;
==Running SDS-PAGE==&lt;br /&gt;
&lt;br /&gt;
#Make ready the samples to run&lt;br /&gt;
#Make ready the sample running buffer&lt;br /&gt;
#Make ready the gel&lt;br /&gt;
#Have the SDS-PAGE apparatus&lt;br /&gt;
#Place the the gel in the SDS-PAGE stand&lt;br /&gt;
#Place the stand with the gel in the SDS-PAGE apparatus bath&lt;br /&gt;
#fill the space between the gels with running buffer&lt;br /&gt;
#Take off the combs of the gel (take it out gently)&lt;br /&gt;
#Load the sample to each well&lt;br /&gt;
#Do not use the wells at the left and right end of the gel &lt;br /&gt;
#fill the SDS-PAGE apparatus bath with running buffer to the bottom of the gel&lt;br /&gt;
#Place the cover of the SDS-PAGE &lt;br /&gt;
## &#039;&#039;&#039;N.B&#039;&#039;&#039; Make sure the correct plug is connected to the correct electrode (red goes to red and black goes to black)&lt;br /&gt;
#Plug the cables to the SDS-PAGE apparatus power source&lt;br /&gt;
#Turn of the SDS-PAGE power source&lt;br /&gt;
#Set to constant voltage&lt;br /&gt;
#Use 200 V &lt;br /&gt;
#Press the Run button to start the electrophoresis&lt;br /&gt;
## The voltage increases to 200 V from 0 V&lt;br /&gt;
##For 4% staking gel and 12.5 % separating gel the current reaches 50-60 mA and the power 10 -12 W&lt;br /&gt;
##The current the the power decreases in time but not reach zero (if it reaches zero see the troubleshoot)&lt;br /&gt;
##For the state type of gel it takes 35 - 40 min&lt;br /&gt;
&lt;br /&gt;
===Troubleshoot===&lt;br /&gt;
#The power drops to zero&lt;br /&gt;
* really old buffer&lt;br /&gt;
* the space in between the gels is not filled with  buffer to the top&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=File:SDS_PAGE.pdf&amp;diff=553</id>
		<title>File:SDS PAGE.pdf</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=File:SDS_PAGE.pdf&amp;diff=553"/>
		<updated>2017-03-08T17:17:18Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: SDS Gel Preparation Protocol from Provost and Wallert. 
Original Webpage Now Defunct; File Hosted Here until original link can be found.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SDS Gel Preparation Protocol from Provost and Wallert. &lt;br /&gt;
Original Webpage Now Defunct; File Hosted Here until original link can be found.&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=99p&amp;diff=542</id>
		<title>99p</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=99p&amp;diff=542"/>
		<updated>2016-08-16T16:21:27Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Created page with &amp;quot;There a lot of problems that arise whenever you start relying on computers for your work.  Here are 99 random problems you&amp;#039;ll probably never run into. When you do though, you&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There a lot of problems that arise whenever you start relying on computers for your work.&lt;br /&gt;
&lt;br /&gt;
Here are 99 random problems you&#039;ll probably never run into. When you do though, you&#039;ll be glad you have this list.&lt;br /&gt;
Solutions to various problems will be kept here until a more permanent resting place is found.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
nmrDraw Troubleshooting:&lt;br /&gt;
Having problems with a &amp;quot;segmentation fault&amp;quot; error? Especially if you&#039;re on one of the newer workstations?&lt;br /&gt;
Try checking your memory limits.&lt;br /&gt;
Type &amp;quot;ulimit -a&amp;quot; for information. The number of open files should be set to 1024. You can do this by typing  &amp;quot;ulimit -n 1024&amp;quot;.&lt;br /&gt;
If it is higher, you&#039;ll almost always get a segmentation fault. This was first discovered on macs, but it also holds true for linux based systems.&lt;br /&gt;
EDIT: &amp;quot;ulimit -n 1024&amp;quot; only works for the currently open terminal window. It will reset as soon as you open a new terminal.&lt;br /&gt;
If you want to set this limit permanently, you can add the function to your .bashrc file in your home directory. This will set the limit in every new terminal window you open.&lt;br /&gt;
&lt;br /&gt;
Source: https://beta.groups.yahoo.com/neo/groups/nmrpipe/conversations/messages/2603&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Troubleshooting&amp;diff=532</id>
		<title>Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Troubleshooting&amp;diff=532"/>
		<updated>2016-08-03T16:53:01Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There a number of problems that you might encounter on your workstation. This page is an attempt to catalog the most commonly encountered problems, and fixes as they are found.&lt;br /&gt;
&lt;br /&gt;
This list is by no means exhaustive, and may not contain a solution for every problem. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Windows&lt;br /&gt;
-Mouse and Keyboard Not Working?&lt;br /&gt;
--This can happen pretty frequently, especially if you start building new workstations. Most of us use wireless USB keyboards, and newer motherboards have options in their BIOS to enable/disable drivers for USB 3.0 ports. If these options exist, you&#039;ll generally want XHCI Hand-off enabled, and EHCI hand-off DISABLED. This is particularly relevant if the keyboard and mouse work in the BIOS and GRUB but not in Windows.&lt;br /&gt;
Link: http://superuser.com/questions/770198/should-i-enabled-or-disable-xhci-hand-off-in-bios-setup-when-running-windows-7&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Linux&lt;br /&gt;
&lt;br /&gt;
Updates not working Correctly? Check your sources list. Some of us are running Debian 7 (wheezy) and some are on Debian 8 (Jessie). If you notice that updates are not working, or dependencies can&#039;t be resolved because of broken packages, it could very likely be your sources list. An excellent discussion can be found on the debian website.&lt;br /&gt;
Link: https://wiki.debian.org/SourcesList&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Troubleshooting&amp;diff=531</id>
		<title>Troubleshooting</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Troubleshooting&amp;diff=531"/>
		<updated>2016-08-03T16:50:49Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Created page with &amp;quot;There a number of problems that you might encounter on your workstation. This page is an attempt to catalog the most commonly encountered problems, and fixes as they are found...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There a number of problems that you might encounter on your workstation. This page is an attempt to catalog the most commonly encountered problems, and fixes as they are found.&lt;br /&gt;
&lt;br /&gt;
This list is by no means exhaustive, and may not contain a solution for every problem. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Windows&lt;br /&gt;
-Mouse and Keyboard Not Working?&lt;br /&gt;
--This can happen pretty frequently, especially if you start building new workstations. Most of us use wireless USB keyboards, and newer motherboards have options in their BIOS to enable/disable drivers for USB 3.0 ports. If these options exist, you&#039;ll generally want XHCI Hand-off enabled, and EHCI hand-off DISABLED. This is particularly relevant if the keyboard and mouse work in the BIOS and GRUB but not in Windows.&lt;br /&gt;
Link: http://superuser.com/questions/770198/should-i-enabled-or-disable-xhci-hand-off-in-bios-setup-when-running-windows-7&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=530</id>
		<title>Installing workstations</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=530"/>
		<updated>2016-06-16T20:23:03Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Workstations in the group are 64-bit (a.k.a. &#039;&#039;x86_64&#039;&#039; or &#039;&#039;amd64&#039;&#039;) machines set up to run both Windows 7 and Debian Linux. When you came into the group, odds are a preconfigured workstation was placed in front of you, ready to rock. But how was it configured, you ask? Read on...&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST&#039;&#039;&#039;, I recommend that you read this like a book, a manual of steps that you will follow in linear order. Failure to do so will make things difficult, if not impossible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Second&#039;&#039;&#039;, please understand that this process never goes the same way on any two workstations. I can&#039;t prepare you for every tiny little problem you may run into, but only set the most important, critical steps before you as a skeletal framework. Good luck, starfighter.&lt;br /&gt;
&lt;br /&gt;
= Beginning =&lt;br /&gt;
It should be fairly obvious that you&#039;ll need an assembled PC to work with. Not so obvious is the software you&#039;ll need:&lt;br /&gt;
&lt;br /&gt;
* Windows 7 x64&lt;br /&gt;
* Debian 7 x86_64&lt;br /&gt;
&lt;br /&gt;
Other than operating system discs, you&#039;ll need the following Windows software discs:&lt;br /&gt;
&lt;br /&gt;
* Microsoft Office 2010 32-bit&lt;br /&gt;
* CorelDRAW Graphics Suite X4&lt;br /&gt;
* EndNote X4 Media - Windows (These have machine-specific license keys!)&lt;br /&gt;
&lt;br /&gt;
Finally, you&#039;ll need the administrator flash drive. You know the drive of which I speak. Keep it secret. Keep it safe.&lt;br /&gt;
&lt;br /&gt;
= Windows =&lt;br /&gt;
This section details installing the Windows 7 OS and software.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Place the Windows 7 DVD into the drive and reboot the system. This will require the BIOS to be configured to boot optical discs before the hard drive. Once the prompt comes up, choose &#039;Install now&#039;. Accept the license agreement and choose &#039;Custom&#039; on the next screen.&lt;br /&gt;
&lt;br /&gt;
You should now arrive at a screen that shows the [[:Wikipedia:Disk_partitioning|current partition state]] of the drive. First, click on &#039;Drive options (advanced)&#039;. If partitions exist, delete them by selecting the partition in the list and then clicking &#039;Delete&#039;. Now, click &#039;New&#039; and enter a partition size (in MB) that equals about half the total drive space. It doesn&#039;t have to be exact; the partitioner will round to the nearest sector anyways. The installer will give you some garbage about creating extra special partitions for Windows system files, and that&#039;s fine. Once the Windows partition was made, proceed.&lt;br /&gt;
&lt;br /&gt;
All the other options (time zone, language, etc.) will be self-explanatory. For automatic updates, choose &#039;Use recommended settings&#039;. The installer will at some point ask for a user account and password; make this your cluster username and password, or the cluster username and password of whoever will use the system most.&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
Once you&#039;ve logged into your account, don&#039;t think that Windows is installed. It will need at least two hours of babysitting while it installs the largest pile of updates you&#039;ve ever witnessed. You will repeat the following process until no more updates exist:&lt;br /&gt;
&lt;br /&gt;
# Click on the Windows icon (for old-timers, that&#039;s the &#039;Start&#039; button)&lt;br /&gt;
# Click on &#039;Control Panel&#039;&lt;br /&gt;
# Click on &#039;System and Security&#039;&lt;br /&gt;
# Click on &#039;Check for Updates&#039; under the &#039;Windows Update&#039; heading&lt;br /&gt;
# Click on &#039;Check for Updates&#039; in the left-hand pane&lt;br /&gt;
# Install all available updates&lt;br /&gt;
# Restart the computer after updates install&lt;br /&gt;
# Go back to Step 1.&lt;br /&gt;
&lt;br /&gt;
Patience, grasshopper.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure a few things in Windows.&lt;br /&gt;
&lt;br /&gt;
=== Power management ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; Power Options&#039;&#039;, select &#039;&#039;&#039;High performance&#039;&#039;&#039; from the list. You may have to click &#039;Show additional plans&#039; to see this option.&lt;br /&gt;
&lt;br /&gt;
=== Remote desktop access ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; System&#039;&#039;, select &#039;&#039;Remote settings&#039;&#039; in the left-hand pane. Under &#039;Remote Desktop&#039;, select &#039;&#039;Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure)&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
Typical members of this group need a plentiful plethora of packages installed onto their Windows systems in order to function as researchers. Here&#039;s what you&#039;ll need to install:&lt;br /&gt;
&lt;br /&gt;
* Google Chrome&lt;br /&gt;
* Anti-virus&lt;br /&gt;
* Adobe Reader&lt;br /&gt;
* Microsoft Office&lt;br /&gt;
* EndNote X4&lt;br /&gt;
* CorelDRAW X4&lt;br /&gt;
* ChemDraw&lt;br /&gt;
* ACD/NMR 12&lt;br /&gt;
* Java&lt;br /&gt;
* NMRViewJ&lt;br /&gt;
* PuTTY&lt;br /&gt;
* HP LaserJet drivers&lt;br /&gt;
* Dell Color Laser drivers&lt;br /&gt;
&lt;br /&gt;
=== Chrome ===&lt;br /&gt;
Open Internet Explorer. Click the Stop button about a billion times until IE actually stops loading the page. Navigate to [http://www.google.com Google]. Take Google up on its recommendation to download Chrome. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Anti-virus ===&lt;br /&gt;
Open Chrome and navigate to [http://is.unl.edu is.unl.edu]. Under &#039;Quick Picks&#039;, click on &#039;Anti-virus&#039;. Click on &#039;DOWNLOAD HERE&#039;. Click on &#039;WINDOWS 64bit Version&#039;. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Adobe Reader ===&lt;br /&gt;
Open Chrome and navigate to [http://get.adobe.com/reader get.adobe.com/reader]. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Microsoft Office ===&lt;br /&gt;
Insert the Office DVD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== EndNote X4 ===&lt;br /&gt;
Make sure any Microsoft Office programs are &#039;&#039;closed&#039;&#039;. Insert the EndNote X4 CD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake. Now, restart Windows and log back in. Then, open Microsoft Word. Click on &#039;EndNote X4&#039; in the top bar. Then click on &#039;Go to EndNote&#039;. If you get the message, &#039;&#039;Invalid Class String&#039;&#039;, then go [http://help.thomson.com/default.asp?portalid=tsc&amp;amp;refid=TS_ENCWYWFAQ13 here] to find the solution.&lt;br /&gt;
&lt;br /&gt;
=== CorelDRAW X4 ===&lt;br /&gt;
Insert the CorelDRAW DVD and follow the steps. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Chemdraw ===&lt;br /&gt;
Point your web browser to sitelicense.cambridgesoft.com. When the page loads, go to the link for University of Nebraska, Lincoln and enter your huskers email address. You should then be able to download the software. The activation key should be sent to your email almost immediately.&lt;br /&gt;
&lt;br /&gt;
=== ACD/NMR 12 ===&lt;br /&gt;
ACD Labs offers a free version of their 1D and 2D NMR processor software for academics. Open Chrome and navigate to [http://www.acdlabs.com/resources/freeware/nmr_proc/index.php this address], then click &#039;Download&#039;. You&#039;ll need to set up a user account to download the software. Once you&#039;ve got the installer downloaded, just run it and follow the steps. Yep, the rest is cake.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you should be able to run &#039;&#039;&#039;nmrproc_academia12.exe&#039;&#039;&#039; from &#039;&#039;&#039;Z:\bworley\admin\software&#039;&#039;&#039; without having to download anything or make any accounts.&lt;br /&gt;
&lt;br /&gt;
=== Java ===&lt;br /&gt;
Open Chrome and navigate to [http://www.java.com/en/download/index.jsp this address]. Click on &#039;Free Java Download&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== NMRViewJ ===&lt;br /&gt;
This software is now non-free, but we have the last/latest available free version on the cluster. Run &#039;&#039;&#039;nvjinstall8_0_3.exe&#039;&#039;&#039; in &#039;&#039;&#039;Z:\bworley\admin\software\nmrviewj&#039;&#039;&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== PuTTY ===&lt;br /&gt;
Best for last! Open Chrome and navigate to [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html this address]. Click on &#039;&#039;&#039;putty-0.62-installer.exe&#039;&#039;&#039; to download the installer. Run the installer; all the default options are fine.&lt;br /&gt;
&lt;br /&gt;
Once PuTTY is installed, you&#039;ll need to insert the administrator flash drive. In the flash drive, go to &#039;&#039;&#039;ssh-rsa\clients\myusername&#039;&#039;&#039;, where &#039;&#039;myusername&#039;&#039; is the cluster username that you&#039;re setting the computer up for. In that directory, there is an &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file. Copy that file somewhere that only the current user has read access to, such as &#039;&#039;&#039;C:\Users\myusername&#039;&#039;&#039;. Now, open PuTTY and type &#039;&#039;myusername@bionmr-c1.unl.edu&#039;&#039; into both the &#039;Host Name&#039; and &#039;Saved Sessions&#039; text boxes. In the left-hand pane, click the plus sign next to &#039;SSH&#039; and click on &#039;Auth&#039;. Click &#039;Browse&#039; and open the &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file in the location you copied it to. Finally, click back to &#039;Session&#039; in the left-hand pane and click &#039;Save&#039; under &#039;Saved Sessions&#039;.&lt;br /&gt;
&lt;br /&gt;
You&#039;re ready to rock. Return the administrator flash drive to its sacred resting place.&lt;br /&gt;
&lt;br /&gt;
=== Brother printer drivers ===&lt;br /&gt;
The Brother printer driver CDs are available in the lab office. Use those CDs to install drivers (only drivers, no software suites) for the two Brother printers outside the office. The IP addresses of the printers will be requested by the installer software; you can get those addresses by printing off the &#039;&#039;printer status&#039;&#039; information from each printer via their front panel buttons.&lt;br /&gt;
NOTE: If you try to discover the printers over the network and none are found, try temporarily disabling your firewalls. After the printer is installed, you should be able to bring the firewall back up without affecting the printer.&lt;br /&gt;
&lt;br /&gt;
= Linux =&lt;br /&gt;
This section details installing and configuring the Linux OS.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Insert the Debian DVD and reboot the computer. When the Debian boot prompt comes up, press the Tab key, type &#039;&#039;&#039;desktop=xfce&#039;&#039;&#039;, and hit enter. Most of the options will be self-explanatory until you get to the partitioning. You will select &#039;&#039;Use custom layout&#039;&#039; and click next.&lt;br /&gt;
&lt;br /&gt;
The partitioning of linux systems in the group is done as follows:&lt;br /&gt;
&lt;br /&gt;
* 128 MB of ext2 mounted on /boot (made at the beginning of the free space)&lt;br /&gt;
* All remaining space allocated as ext4 and mounted on &#039;&#039;&#039;/&#039;&#039;&#039;&lt;br /&gt;
* 2048 MB of swap (made at the end of the free space)&lt;br /&gt;
&lt;br /&gt;
Make the partitions in the above order. After making the boot partition, subtract 2048 MB from the remaining free space to get the size of the &#039;&#039;&#039;/&#039;&#039;&#039; partition. Then use the rest of the free space (about 2048 MB, but it will rarely be exact) as swap.&lt;br /&gt;
&lt;br /&gt;
You should now have a partitioning scheme that spans the entire disk that looks something like this:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;sda1:&#039;&#039;&#039; Windows system files (few hundred MB)&lt;br /&gt;
* &#039;&#039;&#039;sda2:&#039;&#039;&#039; Windows partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda3:&#039;&#039;&#039; Linux boot partition (128 MB)&lt;br /&gt;
* &#039;&#039;&#039;sda4:&#039;&#039;&#039; Extended partition&lt;br /&gt;
* &#039;&#039;&#039;sda5:&#039;&#039;&#039; Linux root partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda6:&#039;&#039;&#039; Linux swap partition (roughly 2048 MB)&lt;br /&gt;
&lt;br /&gt;
Everything else will be much more self-explanatory, and the defaults are A-OK for almost all the other options.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure the system a bit more to get it talking with the cluster and running properly. Once the system boots up, use &#039;&#039;&#039;Ctrl&#039;&#039;&#039;+&#039;&#039;&#039;Alt&#039;&#039;&#039;+&#039;&#039;&#039;F1&#039;&#039;&#039; to navigate to the terminal and log in as root. Once you&#039;re logged in, insert and mount the system administrator flash drive, like so:&lt;br /&gt;
&lt;br /&gt;
 mkdir /mnt/flash&lt;br /&gt;
 mount /dev/sdb1 /mnt/flash&lt;br /&gt;
&lt;br /&gt;
Where the above example assumes that &#039;&#039;/dev/sdb1&#039;&#039; is the flash drive device node. Once mounted, run the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd /mnt/flash/admin-scripts/linux/workstations&lt;br /&gt;
 ./run&lt;br /&gt;
&lt;br /&gt;
The script will ask if you&#039;re ready to proceed. As long as everything above went OK, it&#039;s safe to say &#039;yes&#039; here. Hopefully, the script will complete without errors and your linux workstation will be properly configured. Unmount the flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd&lt;br /&gt;
 umount /mnt/flash&lt;br /&gt;
 reboot&lt;br /&gt;
&lt;br /&gt;
[[category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=529</id>
		<title>Computer station</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=529"/>
		<updated>2016-05-25T17:30:04Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Preparation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;At the computer station, students will graph the data points they collected from the Spec20 station and draw three molecular structures. The handout to be given to students is available here: [[File:Maxey_-_Computer_Station_Handout.docx]].&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This should be ready the day before)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Six to eight laptops should be provided and they are all set in a classroom in the Maxey elementary school.&lt;br /&gt;
*Laptops can be checked out from the 501 building; they are general use student laptops. E-mail Wade Felker (Collaboration Technologies Associate with ITS; wfelker2@unl.edu), a week in advance to reserve as many laptops as you need.&lt;br /&gt;
* If the laptops don&#039;t give you admin access to install software: (Set up an account for Maxey demo for each laptop.)&lt;br /&gt;
* Install ChemBioDraw and KaleidaGraph software on each laptop. (We have licenses for both pieces of software; ask Eli.)&lt;br /&gt;
* Set up wireless printer/router for each laptop. (You can also set them up as a wired system if all else fails)&lt;br /&gt;
&lt;br /&gt;
== Experiment A - KaleidaGraph ==&lt;br /&gt;
&lt;br /&gt;
KaleidaGraph is used for processing the Spec20 Data. &#039;&#039;(Make sure the students finish the Spec20 experiment before they come to this station.)&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
# Click the first white box in the toolbar and you can open an empty spreadsheet with three columns. &lt;br /&gt;
# Input the data of concentration and absorbance in column A and B. (Do not input the percentage symbol or the unknown sample absorbance.) &lt;br /&gt;
# Go to “Gallery&amp;quot; from the menu, click “linear” then “scattering”, then there is a window popping up. Choose the A column to be the X-axis, B column to be the y-axis and click “new plot” icon down below. &lt;br /&gt;
# After you have the plot, change the title to be &amp;quot;Absorbance vs. concentration&amp;quot; &lt;br /&gt;
# Go to “file” and click “print graphics”.&lt;br /&gt;
# After the students print out their graph, you may want to help them draw a trendline manually using a ruler. Then you can demonstrate determining the concentration of their unknown using this trendline.&lt;br /&gt;
&lt;br /&gt;
== Experiment B - ChemDraw ==&lt;br /&gt;
&lt;br /&gt;
*NOTE: You usually don&#039;t have time to get to this station. Use your best judgement, and go on if the students have extra time.&lt;br /&gt;
&lt;br /&gt;
Three molecules will be drawn by using ChemBioDraw: Acetic acid is the main component of vinegar. Acetylsalicylic acid is the active reagent of aspirin. Glucose is the major energy source in our body. &lt;br /&gt;
&lt;br /&gt;
On the left side of the working window, a toolbar contains all the tools that are handy for drawing those molecules, such as single bonds, double bonds, benzene, texting and eraser. &lt;br /&gt;
&lt;br /&gt;
# Find an empty place and draw the first bond by dragging the icon of a bond from the toolbar to that place and loose your mouse.&lt;br /&gt;
# Move the mouse to the end of that bond where you want to start another bond or a word (for example, &amp;quot;H&amp;quot; is for proton or hydrogen. &amp;quot;C&amp;quot; is for carbon and &amp;quot;O&amp;quot; is for oxygen). &lt;br /&gt;
# After drawing the molecule, use the “lasso” from the toolbar to select the whole molecule, and then go to the menu and select “convert structure to name”. Find out if you do the right thing by comparing the name that the computer tells you with the name you are supposed to draw.&lt;br /&gt;
&lt;br /&gt;
[[Category:Maxey Demos]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=528</id>
		<title>Computer station</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=528"/>
		<updated>2016-05-23T15:55:03Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Experiment A - KaleidaGraph */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;At the computer station, students will graph the data points they collected from the Spec20 station and draw three molecular structures. The handout to be given to students is available here: [[File:Maxey_-_Computer_Station_Handout.docx]].&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This should be ready the day before)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Six to eight laptops should be provided and they are all set in a classroom in the Maxey elementary school.&lt;br /&gt;
*Laptops can be checked out from the 501 building; they are general use student laptops. E-mail Wade Felker (wfelker2@unl.edu), a week in advance to reserve as many laptops as you need.&lt;br /&gt;
* If the laptops don&#039;t give you admin access to install software: (Set up an account for Maxey demo for each laptop.)&lt;br /&gt;
* Install ChemBioDraw and KaleidaGraph software on each laptop. (We have licenses for both pieces of software; ask Eli.)&lt;br /&gt;
* Set up wireless printer/router for each laptop. (You can also set them up as a wired system if all else fails)&lt;br /&gt;
&lt;br /&gt;
== Experiment A - KaleidaGraph ==&lt;br /&gt;
&lt;br /&gt;
KaleidaGraph is used for processing the Spec20 Data. &#039;&#039;(Make sure the students finish the Spec20 experiment before they come to this station.)&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
# Click the first white box in the toolbar and you can open an empty spreadsheet with three columns. &lt;br /&gt;
# Input the data of concentration and absorbance in column A and B. (Do not input the percentage symbol or the unknown sample absorbance.) &lt;br /&gt;
# Go to “Gallery&amp;quot; from the menu, click “linear” then “scattering”, then there is a window popping up. Choose the A column to be the X-axis, B column to be the y-axis and click “new plot” icon down below. &lt;br /&gt;
# After you have the plot, change the title to be &amp;quot;Absorbance vs. concentration&amp;quot; &lt;br /&gt;
# Go to “file” and click “print graphics”.&lt;br /&gt;
# After the students print out their graph, you may want to help them draw a trendline manually using a ruler. Then you can demonstrate determining the concentration of their unknown using this trendline.&lt;br /&gt;
&lt;br /&gt;
== Experiment B - ChemDraw ==&lt;br /&gt;
&lt;br /&gt;
*NOTE: You usually don&#039;t have time to get to this station. Use your best judgement, and go on if the students have extra time.&lt;br /&gt;
&lt;br /&gt;
Three molecules will be drawn by using ChemBioDraw: Acetic acid is the main component of vinegar. Acetylsalicylic acid is the active reagent of aspirin. Glucose is the major energy source in our body. &lt;br /&gt;
&lt;br /&gt;
On the left side of the working window, a toolbar contains all the tools that are handy for drawing those molecules, such as single bonds, double bonds, benzene, texting and eraser. &lt;br /&gt;
&lt;br /&gt;
# Find an empty place and draw the first bond by dragging the icon of a bond from the toolbar to that place and loose your mouse.&lt;br /&gt;
# Move the mouse to the end of that bond where you want to start another bond or a word (for example, &amp;quot;H&amp;quot; is for proton or hydrogen. &amp;quot;C&amp;quot; is for carbon and &amp;quot;O&amp;quot; is for oxygen). &lt;br /&gt;
# After drawing the molecule, use the “lasso” from the toolbar to select the whole molecule, and then go to the menu and select “convert structure to name”. Find out if you do the right thing by comparing the name that the computer tells you with the name you are supposed to draw.&lt;br /&gt;
&lt;br /&gt;
[[Category:Maxey Demos]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=527</id>
		<title>Computer station</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=527"/>
		<updated>2016-05-23T15:53:59Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Experiment B - ChemDraw */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;At the computer station, students will graph the data points they collected from the Spec20 station and draw three molecular structures. The handout to be given to students is available here: [[File:Maxey_-_Computer_Station_Handout.docx]].&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This should be ready the day before)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Six to eight laptops should be provided and they are all set in a classroom in the Maxey elementary school.&lt;br /&gt;
*Laptops can be checked out from the 501 building; they are general use student laptops. E-mail Wade Felker (wfelker2@unl.edu), a week in advance to reserve as many laptops as you need.&lt;br /&gt;
* If the laptops don&#039;t give you admin access to install software: (Set up an account for Maxey demo for each laptop.)&lt;br /&gt;
* Install ChemBioDraw and KaleidaGraph software on each laptop. (We have licenses for both pieces of software; ask Eli.)&lt;br /&gt;
* Set up wireless printer/router for each laptop. (You can also set them up as a wired system if all else fails)&lt;br /&gt;
&lt;br /&gt;
== Experiment A - KaleidaGraph ==&lt;br /&gt;
&lt;br /&gt;
KaleidaGraph is used for processing the Spec20 Data. &#039;&#039;(Make sure the students finish the Spec20 experiment before they come to this station.)&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
# Click the first white box in the toolbar and you can open an empty spreadsheet with three columns. &lt;br /&gt;
# Input the data of concentration and absorbance in column A and B. (Do not input the percentage symbol or the unknown sample absorbance.) &lt;br /&gt;
# Go to “Gallery&amp;quot; from the menu, click “linear” then “scattering”, then there is a window popping up. Choose the A column to be the X-axis, B column to be the y-axis and click “new plot” icon down below. &lt;br /&gt;
# After you have the plot, change the title to be &amp;quot;Absorbance vs. concentration&amp;quot; &lt;br /&gt;
# Go to “file” and click “print graphics”.  &lt;br /&gt;
&lt;br /&gt;
== Experiment B - ChemDraw ==&lt;br /&gt;
&lt;br /&gt;
*NOTE: You usually don&#039;t have time to get to this station. Use your best judgement, and go on if the students have extra time.&lt;br /&gt;
&lt;br /&gt;
Three molecules will be drawn by using ChemBioDraw: Acetic acid is the main component of vinegar. Acetylsalicylic acid is the active reagent of aspirin. Glucose is the major energy source in our body. &lt;br /&gt;
&lt;br /&gt;
On the left side of the working window, a toolbar contains all the tools that are handy for drawing those molecules, such as single bonds, double bonds, benzene, texting and eraser. &lt;br /&gt;
&lt;br /&gt;
# Find an empty place and draw the first bond by dragging the icon of a bond from the toolbar to that place and loose your mouse.&lt;br /&gt;
# Move the mouse to the end of that bond where you want to start another bond or a word (for example, &amp;quot;H&amp;quot; is for proton or hydrogen. &amp;quot;C&amp;quot; is for carbon and &amp;quot;O&amp;quot; is for oxygen). &lt;br /&gt;
# After drawing the molecule, use the “lasso” from the toolbar to select the whole molecule, and then go to the menu and select “convert structure to name”. Find out if you do the right thing by comparing the name that the computer tells you with the name you are supposed to draw.&lt;br /&gt;
&lt;br /&gt;
[[Category:Maxey Demos]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=526</id>
		<title>Computer station</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Computer_station&amp;diff=526"/>
		<updated>2016-05-23T15:52:38Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Preparation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;At the computer station, students will graph the data points they collected from the Spec20 station and draw three molecular structures. The handout to be given to students is available here: [[File:Maxey_-_Computer_Station_Handout.docx]].&lt;br /&gt;
&lt;br /&gt;
== Preparation ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This should be ready the day before)&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Six to eight laptops should be provided and they are all set in a classroom in the Maxey elementary school.&lt;br /&gt;
*Laptops can be checked out from the 501 building; they are general use student laptops. E-mail Wade Felker (wfelker2@unl.edu), a week in advance to reserve as many laptops as you need.&lt;br /&gt;
* If the laptops don&#039;t give you admin access to install software: (Set up an account for Maxey demo for each laptop.)&lt;br /&gt;
* Install ChemBioDraw and KaleidaGraph software on each laptop. (We have licenses for both pieces of software; ask Eli.)&lt;br /&gt;
* Set up wireless printer/router for each laptop. (You can also set them up as a wired system if all else fails)&lt;br /&gt;
&lt;br /&gt;
== Experiment A - KaleidaGraph ==&lt;br /&gt;
&lt;br /&gt;
KaleidaGraph is used for processing the Spec20 Data. &#039;&#039;(Make sure the students finish the Spec20 experiment before they come to this station.)&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
# Click the first white box in the toolbar and you can open an empty spreadsheet with three columns. &lt;br /&gt;
# Input the data of concentration and absorbance in column A and B. (Do not input the percentage symbol or the unknown sample absorbance.) &lt;br /&gt;
# Go to “Gallery&amp;quot; from the menu, click “linear” then “scattering”, then there is a window popping up. Choose the A column to be the X-axis, B column to be the y-axis and click “new plot” icon down below. &lt;br /&gt;
# After you have the plot, change the title to be &amp;quot;Absorbance vs. concentration&amp;quot; &lt;br /&gt;
# Go to “file” and click “print graphics”.  &lt;br /&gt;
&lt;br /&gt;
== Experiment B - ChemDraw ==&lt;br /&gt;
&lt;br /&gt;
Three molecules will be drawn by using ChemBioDraw: Acetic acid is the main component of vinegar. Acetylsalicylic acid is the active reagent of aspirin. Glucose is the major energy source in our body. &lt;br /&gt;
&lt;br /&gt;
On the left side of the working window, a toolbar contains all the tools that are handy for drawing those molecules, such as single bonds, double bonds, benzene, texting and eraser. &lt;br /&gt;
&lt;br /&gt;
# Find an empty place and draw the first bond by dragging the icon of a bond from the toolbar to that place and loose your mouse.&lt;br /&gt;
# Move the mouse to the end of that bond where you want to start another bond or a word (for example, &amp;quot;H&amp;quot; is for proton or hydrogen. &amp;quot;C&amp;quot; is for carbon and &amp;quot;O&amp;quot; is for oxygen). &lt;br /&gt;
# After drawing the molecule, use the “lasso” from the toolbar to select the whole molecule, and then go to the menu and select “convert structure to name”. Find out if you do the right thing by comparing the name that the computer tells you with the name you are supposed to draw.&lt;br /&gt;
&lt;br /&gt;
[[Category:Maxey Demos]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Access_Gambrinus&amp;diff=525</id>
		<title>Access Gambrinus</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Access_Gambrinus&amp;diff=525"/>
		<updated>2016-04-13T15:36:15Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Created page with &amp;quot;In order to access Gambrinus from your computer, open the file explorer. Then, right click on Computer in the left-hand sidebar. Click on add a network location, and keep hitt...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In order to access Gambrinus from your computer, open the file explorer.&lt;br /&gt;
Then, right click on Computer in the left-hand sidebar. Click on add a network location, and keep hitting next until you reach a textbox.&lt;br /&gt;
&lt;br /&gt;
Type in your access credentials, which are &amp;quot;ftp://rpowers@gambrinus.unl.edu/&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
See the network administrator if you have any problems.&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Remote_Access&amp;diff=524</id>
		<title>Remote Access</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Remote_Access&amp;diff=524"/>
		<updated>2016-02-12T20:49:31Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a number of options available to access computing resources for the group.&lt;br /&gt;
&lt;br /&gt;
On-Campus:&lt;br /&gt;
Cluster Access&lt;br /&gt;
-Your personal workstation is given a name such as &amp;quot;Bionmr-##&amp;quot;. Occasionally, you will need more computing power than is available on your workstation.&lt;br /&gt;
You can access the cluster (denoted &amp;quot;Bionmr&amp;quot; without any numbers) using the SSH utility on linux or an SSH client for Windows (such as  PUTTY).&lt;br /&gt;
Ask the system administrator for details.&lt;br /&gt;
&lt;br /&gt;
Off-Campus:&lt;br /&gt;
NOTE: The university is working to make connections to on-campus resources more secure. If you are unable to connect, you may need to download and install the University VPN client [http://its.unl.edu/vpn]&lt;br /&gt;
Try connecting to the vpn client first, and then reattempt your connection.&lt;br /&gt;
&lt;br /&gt;
Access to the cluster is only available through SSH or SSH clients.&lt;br /&gt;
&lt;br /&gt;
If you want to be able to connect to your personal workstation remotely, you can do so with any client you want to use. Ask for recommendations.&lt;br /&gt;
BEWARE: Many remote desktop clients are shut off upon reboot. If your computer restarts to apply updates, you won&#039;t be able to connect until you open the client again on the host machine.&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Remote_Access&amp;diff=523</id>
		<title>Remote Access</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Remote_Access&amp;diff=523"/>
		<updated>2016-02-12T20:48:40Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Created page with &amp;quot;There are a number of options available to access computing resources for the group.  On-Campus: Cluster Access -Your personal workstation is given a name such as &amp;quot;Bionmr-##&amp;quot;....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are a number of options available to access computing resources for the group.&lt;br /&gt;
&lt;br /&gt;
On-Campus:&lt;br /&gt;
Cluster Access&lt;br /&gt;
-Your personal workstation is given a name such as &amp;quot;Bionmr-##&amp;quot;. Occasionally, you will need more computing power than is available on your workstation.&lt;br /&gt;
You can access the cluster (denoted &amp;quot;Bionmr&amp;quot; without any numbers) using the SSH utility on linux or an SSH client for Windows (such as  PUTTY).&lt;br /&gt;
Ask the system administrator for details.&lt;br /&gt;
&lt;br /&gt;
Off-Campus:&lt;br /&gt;
NOTE: The university is working to make connections to on-campus resources more secure. If you are unable to connect, you may need to download and install the University VPN client [http://its.unl.edu/vpn]&lt;br /&gt;
Try connecting to the vpn client first, and then reattempt your connection.&lt;br /&gt;
&lt;br /&gt;
Access to the cluster is only available through SSH or SSH clients.&lt;br /&gt;
&lt;br /&gt;
If you want to be able to connect to your personal workstation remotely, you can do so with any client you want to use. Ask for recommendations.&lt;br /&gt;
BEWARE: Many remote desktop clients are shut off upon reboot. If your computer restarts to apply updates, you won&#039;t be able to connect until you open the client again on the host machine.&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Mvapack_stats&amp;diff=505</id>
		<title>Mvapack stats</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Mvapack_stats&amp;diff=505"/>
		<updated>2015-08-21T20:17:13Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Created page with &amp;quot;To obtain stats on the number of registered users and downloads by these users of MVAPACK, perform the following:  On the cluster, go to /home/bworley/research/mvapack/misc/do...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;To obtain stats on the number of registered users and downloads by these users of MVAPACK, perform the following:&lt;br /&gt;
&lt;br /&gt;
On the cluster, go to /home/bworley/research/mvapack/misc/downloads.&lt;br /&gt;
&lt;br /&gt;
Within this folder, execute the pull.sh script. (./pull.sh)&lt;br /&gt;
&lt;br /&gt;
This will display the following text:&lt;br /&gt;
Users to date: xxx&lt;br /&gt;
Downloads to date: xxx&lt;br /&gt;
&lt;br /&gt;
NOTE: Some users are registered multiple times, and some users have multiple downloads.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=504</id>
		<title>Installing workstations</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Installing_workstations&amp;diff=504"/>
		<updated>2015-08-17T21:54:55Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: /* Brother printer drivers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Workstations in the group are 64-bit (a.k.a. &#039;&#039;x86_64&#039;&#039; or &#039;&#039;amd64&#039;&#039;) machines set up to run both Windows 7 and Debian Linux. When you came into the group, odds are a preconfigured workstation was placed in front of you, ready to rock. But how was it configured, you ask? Read on...&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST&#039;&#039;&#039;, I recommend that you read this like a book, a manual of steps that you will follow in linear order. Failure to do so will make things difficult, if not impossible.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Second&#039;&#039;&#039;, please understand that this process never goes the same way on any two workstations. I can&#039;t prepare you for every tiny little problem you may run into, but only set the most important, critical steps before you as a skeletal framework. Good luck, starfighter.&lt;br /&gt;
&lt;br /&gt;
= Beginning =&lt;br /&gt;
It should be fairly obvious that you&#039;ll need an assembled PC to work with. Not so obvious is the software you&#039;ll need:&lt;br /&gt;
&lt;br /&gt;
* Windows 7 x64&lt;br /&gt;
* Debian 7 x86_64&lt;br /&gt;
&lt;br /&gt;
Other than operating system discs, you&#039;ll need the following Windows software discs:&lt;br /&gt;
&lt;br /&gt;
* Microsoft Office 2010 32-bit&lt;br /&gt;
* CorelDRAW Graphics Suite X4&lt;br /&gt;
* EndNote X4 Media - Windows (These have machine-specific license keys!)&lt;br /&gt;
&lt;br /&gt;
Finally, you&#039;ll need the administrator flash drive. You know the drive of which I speak. Keep it secret. Keep it safe.&lt;br /&gt;
&lt;br /&gt;
= Windows =&lt;br /&gt;
This section details installing the Windows 7 OS and software.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Place the Windows 7 DVD into the drive and reboot the system. This will require the BIOS to be configured to boot optical discs before the hard drive. Once the prompt comes up, choose &#039;Install now&#039;. Accept the license agreement and choose &#039;Custom&#039; on the next screen.&lt;br /&gt;
&lt;br /&gt;
You should now arrive at a screen that shows the [[:Wikipedia:Disk_partitioning|current partition state]] of the drive. First, click on &#039;Drive options (advanced)&#039;. If partitions exist, delete them by selecting the partition in the list and then clicking &#039;Delete&#039;. Now, click &#039;New&#039; and enter a partition size (in MB) that equals about half the total drive space. It doesn&#039;t have to be exact; the partitioner will round to the nearest sector anyways. The installer will give you some garbage about creating extra special partitions for Windows system files, and that&#039;s fine. Once the Windows partition was made, proceed.&lt;br /&gt;
&lt;br /&gt;
All the other options (time zone, language, etc.) will be self-explanatory. For automatic updates, choose &#039;Use recommended settings&#039;. The installer will at some point ask for a user account and password; make this your cluster username and password, or the cluster username and password of whoever will use the system most.&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
Once you&#039;ve logged into your account, don&#039;t think that Windows is installed. It will need at least two hours of babysitting while it installs the largest pile of updates you&#039;ve ever witnessed. You will repeat the following process until no more updates exist:&lt;br /&gt;
&lt;br /&gt;
# Click on the Windows icon (for old-timers, that&#039;s the &#039;Start&#039; button)&lt;br /&gt;
# Click on &#039;Control Panel&#039;&lt;br /&gt;
# Click on &#039;System and Security&#039;&lt;br /&gt;
# Click on &#039;Check for Updates&#039; under the &#039;Windows Update&#039; heading&lt;br /&gt;
# Click on &#039;Check for Updates&#039; in the left-hand pane&lt;br /&gt;
# Install all available updates&lt;br /&gt;
# Restart the computer after updates install&lt;br /&gt;
# Go back to Step 1.&lt;br /&gt;
&lt;br /&gt;
Patience, grasshopper.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure a few things in Windows.&lt;br /&gt;
&lt;br /&gt;
=== Power management ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; Power Options&#039;&#039;, select &#039;&#039;&#039;High performance&#039;&#039;&#039; from the list. You may have to click &#039;Show additional plans&#039; to see this option.&lt;br /&gt;
&lt;br /&gt;
=== Remote desktop access ===&lt;br /&gt;
In &#039;&#039;Control Panel =&amp;gt; System and Security =&amp;gt; System&#039;&#039;, select &#039;&#039;Remote settings&#039;&#039; in the left-hand pane. Under &#039;Remote Desktop&#039;, select &#039;&#039;Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure)&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== Software ==&lt;br /&gt;
Typical members of this group need a plentiful plethora of packages installed onto their Windows systems in order to function as researchers. Here&#039;s what you&#039;ll need to install:&lt;br /&gt;
&lt;br /&gt;
* Google Chrome&lt;br /&gt;
* Anti-virus&lt;br /&gt;
* Adobe Reader&lt;br /&gt;
* Microsoft Office&lt;br /&gt;
* EndNote X4&lt;br /&gt;
* CorelDRAW X4&lt;br /&gt;
* ACD/NMR 12&lt;br /&gt;
* Java&lt;br /&gt;
* NMRViewJ&lt;br /&gt;
* PuTTY&lt;br /&gt;
* HP LaserJet drivers&lt;br /&gt;
* Dell Color Laser drivers&lt;br /&gt;
&lt;br /&gt;
=== Chrome ===&lt;br /&gt;
Open Internet Explorer. Click the Stop button about a billion times until IE actually stops loading the page. Navigate to [http://www.google.com Google]. Take Google up on its recommendation to download Chrome. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Anti-virus ===&lt;br /&gt;
Open Chrome and navigate to [http://is.unl.edu is.unl.edu]. Under &#039;Quick Picks&#039;, click on &#039;Anti-virus&#039;. Click on &#039;DOWNLOAD HERE&#039;. Click on &#039;WINDOWS 64bit Version&#039;. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Adobe Reader ===&lt;br /&gt;
Open Chrome and navigate to [http://get.adobe.com/reader get.adobe.com/reader]. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== Microsoft Office ===&lt;br /&gt;
Insert the Office DVD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== EndNote X4 ===&lt;br /&gt;
Make sure any Microsoft Office programs are &#039;&#039;closed&#039;&#039;. Insert the EndNote X4 CD and select &#039;Run autorun.exe&#039; when the popup comes up. The rest is cake. Now, restart Windows and log back in. Then, open Microsoft Word. Click on &#039;EndNote X4&#039; in the top bar. Then click on &#039;Go to EndNote&#039;. If you get the message, &#039;&#039;Invalid Class String&#039;&#039;, then go [http://help.thomson.com/default.asp?portalid=tsc&amp;amp;refid=TS_ENCWYWFAQ13 here] to find the solution.&lt;br /&gt;
&lt;br /&gt;
=== CorelDRAW X4 ===&lt;br /&gt;
Insert the CorelDRAW DVD and follow the steps. The rest is cake.&lt;br /&gt;
&lt;br /&gt;
=== ACD/NMR 12 ===&lt;br /&gt;
ACD Labs offers a free version of their 1D and 2D NMR processor software for academics. Open Chrome and navigate to [http://www.acdlabs.com/resources/freeware/nmr_proc/index.php this address], then click &#039;Download&#039;. You&#039;ll need to set up a user account to download the software. Once you&#039;ve got the installer downloaded, just run it and follow the steps. Yep, the rest is cake.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you should be able to run &#039;&#039;&#039;nmrproc_academia12.exe&#039;&#039;&#039; from &#039;&#039;&#039;Z:\bworley\admin\software&#039;&#039;&#039; without having to download anything or make any accounts.&lt;br /&gt;
&lt;br /&gt;
=== Java ===&lt;br /&gt;
Open Chrome and navigate to [http://www.java.com/en/download/index.jsp this address]. Click on &#039;Free Java Download&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== NMRViewJ ===&lt;br /&gt;
This software is now non-free, but we have the last/latest available free version on the cluster. Run &#039;&#039;&#039;nvjinstall8_0_3.exe&#039;&#039;&#039; in &#039;&#039;&#039;Z:\bworley\admin\software\nmrviewj&#039;&#039;&#039; and follow the steps. Cake.&lt;br /&gt;
&lt;br /&gt;
=== PuTTY ===&lt;br /&gt;
Best for last! Open Chrome and navigate to [http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html this address]. Click on &#039;&#039;&#039;putty-0.62-installer.exe&#039;&#039;&#039; to download the installer. Run the installer; all the default options are fine.&lt;br /&gt;
&lt;br /&gt;
Once PuTTY is installed, you&#039;ll need to insert the administrator flash drive. In the flash drive, go to &#039;&#039;&#039;ssh-rsa\clients\myusername&#039;&#039;&#039;, where &#039;&#039;myusername&#039;&#039; is the cluster username that you&#039;re setting the computer up for. In that directory, there is an &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file. Copy that file somewhere that only the current user has read access to, such as &#039;&#039;&#039;C:\Users\myusername&#039;&#039;&#039;. Now, open PuTTY and type &#039;&#039;myusername@bionmr-c1.unl.edu&#039;&#039; into both the &#039;Host Name&#039; and &#039;Saved Sessions&#039; text boxes. In the left-hand pane, click the plus sign next to &#039;SSH&#039; and click on &#039;Auth&#039;. Click &#039;Browse&#039; and open the &#039;&#039;&#039;id_rsa.ppk&#039;&#039;&#039; file in the location you copied it to. Finally, click back to &#039;Session&#039; in the left-hand pane and click &#039;Save&#039; under &#039;Saved Sessions&#039;.&lt;br /&gt;
&lt;br /&gt;
You&#039;re ready to rock. Return the administrator flash drive to its sacred resting place.&lt;br /&gt;
&lt;br /&gt;
=== Brother printer drivers ===&lt;br /&gt;
The Brother printer driver CDs are available in the lab office. Use those CDs to install drivers (only drivers, no software suites) for the two Brother printers outside the office. The IP addresses of the printers will be requested by the installer software; you can get those addresses by printing off the &#039;&#039;printer status&#039;&#039; information from each printer via their front panel buttons.&lt;br /&gt;
NOTE: If you try to discover the printers over the network and none are found, try temporarily disabling your firewalls. After the printer is installed, you should be able to bring the firewall back up without affecting the printer.&lt;br /&gt;
&lt;br /&gt;
= Linux =&lt;br /&gt;
This section details installing and configuring the Linux OS.&lt;br /&gt;
&lt;br /&gt;
== OS ==&lt;br /&gt;
Insert the Debian DVD and reboot the computer. When the Debian boot prompt comes up, press the Tab key, type &#039;&#039;&#039;desktop=xfce&#039;&#039;&#039;, and hit enter. Most of the options will be self-explanatory until you get to the partitioning. You will select &#039;&#039;Use custom layout&#039;&#039; and click next.&lt;br /&gt;
&lt;br /&gt;
The partitioning of linux systems in the group is done as follows:&lt;br /&gt;
&lt;br /&gt;
* 128 MB of ext2 mounted on /boot (made at the beginning of the free space)&lt;br /&gt;
* All remaining space allocated as ext4 and mounted on &#039;&#039;&#039;/&#039;&#039;&#039;&lt;br /&gt;
* 2048 MB of swap (made at the end of the free space)&lt;br /&gt;
&lt;br /&gt;
Make the partitions in the above order. After making the boot partition, subtract 2048 MB from the remaining free space to get the size of the &#039;&#039;&#039;/&#039;&#039;&#039; partition. Then use the rest of the free space (about 2048 MB, but it will rarely be exact) as swap.&lt;br /&gt;
&lt;br /&gt;
You should now have a partitioning scheme that spans the entire disk that looks something like this:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;sda1:&#039;&#039;&#039; Windows system files (few hundred MB)&lt;br /&gt;
* &#039;&#039;&#039;sda2:&#039;&#039;&#039; Windows partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda3:&#039;&#039;&#039; Linux boot partition (128 MB)&lt;br /&gt;
* &#039;&#039;&#039;sda4:&#039;&#039;&#039; Extended partition&lt;br /&gt;
* &#039;&#039;&#039;sda5:&#039;&#039;&#039; Linux root partition (few hundred GB, about half the drive)&lt;br /&gt;
* &#039;&#039;&#039;sda6:&#039;&#039;&#039; Linux swap partition (roughly 2048 MB)&lt;br /&gt;
&lt;br /&gt;
Everything else will be much more self-explanatory, and the defaults are A-OK for almost all the other options.&lt;br /&gt;
&lt;br /&gt;
== Configuration ==&lt;br /&gt;
You will have to configure the system a bit more to get it talking with the cluster and running properly. Once the system boots up, use &#039;&#039;&#039;Ctrl&#039;&#039;&#039;+&#039;&#039;&#039;Alt&#039;&#039;&#039;+&#039;&#039;&#039;F1&#039;&#039;&#039; to navigate to the terminal and log in as root. Once you&#039;re logged in, insert and mount the system administrator flash drive, like so:&lt;br /&gt;
&lt;br /&gt;
 mkdir /mnt/flash&lt;br /&gt;
 mount /dev/sdb1 /mnt/flash&lt;br /&gt;
&lt;br /&gt;
Where the above example assumes that &#039;&#039;/dev/sdb1&#039;&#039; is the flash drive device node. Once mounted, run the following commands:&lt;br /&gt;
&lt;br /&gt;
 cd /mnt/flash/admin-scripts/linux/workstations&lt;br /&gt;
 ./run&lt;br /&gt;
&lt;br /&gt;
The script will ask if you&#039;re ready to proceed. As long as everything above went OK, it&#039;s safe to say &#039;yes&#039; here. Hopefully, the script will complete without errors and your linux workstation will be properly configured. Unmount the flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd&lt;br /&gt;
 umount /mnt/flash&lt;br /&gt;
 reboot&lt;br /&gt;
&lt;br /&gt;
[[category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Adding_user_accounts&amp;diff=500</id>
		<title>Adding user accounts</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Adding_user_accounts&amp;diff=500"/>
		<updated>2015-08-11T20:51:07Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When new group members join, they&#039;ll need access to our file and program server on both Windows and Linux, and a few odds and ends. Here&#039;s how to get that done the right way.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;FIRST:&#039;&#039;&#039; Have the user decide on a username and password that they will re-enter continuously during this process. They will be denoted as &#039;&#039;new_username&#039;&#039; and &#039;&#039;new_password&#039;&#039; throughout this set of instructions.&lt;br /&gt;
&lt;br /&gt;
= Linux =&lt;br /&gt;
== Setting up basic credentials ==&lt;br /&gt;
* Log in &#039;&#039;&#039;as root&#039;&#039;&#039; to the cluster head node, either &#039;&#039;via&#039;&#039; SSH or at the machine.&lt;br /&gt;
* Add the user account:&lt;br /&gt;
&lt;br /&gt;
 useradd -g bionmr -m -s /bin/bash &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add a password to the new account:&lt;br /&gt;
&lt;br /&gt;
 passwd &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add a Samba password to the new account:&lt;br /&gt;
&lt;br /&gt;
 smbpasswd -c /etc/samba/smb.conf -a &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add an Apache password to the new account:&lt;br /&gt;
&lt;br /&gt;
 htpasswd /etc/apache2/htpasswd &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Allow the user to log in &#039;&#039;via&#039;&#039; secure shell:&lt;br /&gt;
&lt;br /&gt;
 sed -e &#039;s,^\(AllowUsers\),\1 &#039;&#039;new_username&#039;&#039;,&#039; -i /etc/ssh/sshd_config&lt;br /&gt;
&lt;br /&gt;
* Add a couple lines to the bash config:&lt;br /&gt;
&lt;br /&gt;
 echo &#039;source /opt/bashrc&#039; &amp;gt;&amp;gt; /home/&#039;&#039;new_username&#039;&#039;/.bashrc&lt;br /&gt;
 echo &#039;source /opt/bashrc&#039; &amp;gt;&amp;gt; /home/&#039;&#039;new_username&#039;&#039;/.bash_profile&lt;br /&gt;
&lt;br /&gt;
* Now create a secure shell asymmetric key pair for the user:&lt;br /&gt;
&lt;br /&gt;
 su -l &#039;&#039;new_username&#039;&#039;&lt;br /&gt;
 ssh-keygen -t rsa -b 4096&lt;br /&gt;
 exit&lt;br /&gt;
&lt;br /&gt;
(Use the default file in which to save the key)&lt;br /&gt;
&lt;br /&gt;
== Archiving the credentials ==&lt;br /&gt;
* Log in &#039;&#039;&#039;as root&#039;&#039;&#039; to the cluster head node, either &#039;&#039;via&#039;&#039; SSH or at the machine.&lt;br /&gt;
* Physically plug the sysadmin flash drive into the cluster head node.&lt;br /&gt;
* Mount the sysadmin flash drive:&lt;br /&gt;
&lt;br /&gt;
 mount /dev/sdc1 /mnt/flash&lt;br /&gt;
&lt;br /&gt;
* Navigate into the flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd /mnt/flash/admin-tools/linux/workstations&lt;br /&gt;
&lt;br /&gt;
* Add the user into the sub-scripts:&lt;br /&gt;
&lt;br /&gt;
 echo &#039;&#039;new_username&#039;&#039; &amp;gt;&amp;gt; bashrc/users.lst&lt;br /&gt;
 echo &#039;&#039;new_username&#039;&#039; &amp;gt;&amp;gt; passwd/users.lst&lt;br /&gt;
&lt;br /&gt;
* Copy the passwd/shadow information:&lt;br /&gt;
&lt;br /&gt;
 grep ^&#039;&#039;new_username&#039;&#039; /etc/passwd &amp;gt;&amp;gt; passwd/etc_passwd&lt;br /&gt;
 grep ^&#039;&#039;new_username&#039;&#039; /etc/shadow &amp;gt;&amp;gt; passwd/etc_shadow&lt;br /&gt;
&lt;br /&gt;
* Copy the secure shell key pair:&lt;br /&gt;
&lt;br /&gt;
 mkdir ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr&lt;br /&gt;
 cp /home/&#039;&#039;new_username&#039;&#039;/.ssh/id_rsa* ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/&lt;br /&gt;
&lt;br /&gt;
* Unmount the sysadmin flash drive:&lt;br /&gt;
&lt;br /&gt;
 cd&lt;br /&gt;
 umount /mnt/flash&lt;br /&gt;
&lt;br /&gt;
= Windows =&lt;br /&gt;
== Creating the account ==&lt;br /&gt;
* Log in to the user&#039;s workstation on an existing account, and use the Control Panel to create a new &#039;&#039;&#039;Administrator account&#039;&#039;&#039;.&lt;br /&gt;
* Add a password to the newly created account. Make sure the user can remember their password.&lt;br /&gt;
* Log out and back into the new account.&lt;br /&gt;
&lt;br /&gt;
== Setting up the network drive ==&lt;br /&gt;
* Open Windows Explorer (&#039;&#039;not&#039;&#039; Internet Explorer) and click on &#039;&#039;&#039;Computer&#039;&#039;&#039;&lt;br /&gt;
* Click on &#039;&#039;&#039;Map Network Drive&#039;&#039;&#039;&lt;br /&gt;
* Type &#039;&#039;\\bionmr\DATA&#039;&#039; into the &#039;&#039;&#039;Folder:&#039;&#039;&#039; entry&lt;br /&gt;
* Click on &#039;&#039;&#039;Finish&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Setting up the PuTTY key ==&lt;br /&gt;
Using PuTTY to log into the secure linux shell from a Windows workstation requires a PuTTY-format private key (&#039;&#039;*.PPK&#039;&#039;) to be made. If the key has been made already and saved to the sysadmin flash drive, then you can skip the generation step. If not, proceed in order.&lt;br /&gt;
&lt;br /&gt;
=== Creating the PuTTY key for the first time ===&lt;br /&gt;
* Insert the sysadmin flash drive into the user&#039;s computer, in Windows&lt;br /&gt;
* &#039;&#039;&#039;DO NOT CLEAN OR REPAIR OR FIX OR FORMAT THE FLASH DRIVE&#039;&#039;&#039;&lt;br /&gt;
* Open then PuTTYgen program and click on &#039;&#039;&#039;Conversions&#039;&#039;&#039;, then &#039;&#039;&#039;Import key&#039;&#039;&#039;&lt;br /&gt;
* Open the following file from the flash drive:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa&lt;br /&gt;
&lt;br /&gt;
* Type the user&#039;s password to unlock the key file&lt;br /&gt;
* Click on &#039;&#039;&#039;Save private key&#039;&#039;&#039; and save to the following file:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa.ppk&lt;br /&gt;
&lt;br /&gt;
* All done here!&lt;br /&gt;
&lt;br /&gt;
=== Installing the PuTTY key ===&lt;br /&gt;
* Insert the sysadmin flash drive into the user&#039;s computer, in Windows&lt;br /&gt;
* &#039;&#039;&#039;DO NOT CLEAN OR REPAIR OR FIX OR FORMAT THE FLASH DRIVE&#039;&#039;&#039;&lt;br /&gt;
* Copy the following file from the flash drive:&lt;br /&gt;
&lt;br /&gt;
 admin-tools/linux/workstations/ssh-rsa/clients/&#039;&#039;new_username&#039;&#039;_bionmr/id_rsa.ppk&lt;br /&gt;
&lt;br /&gt;
* ... and save it to:&lt;br /&gt;
&lt;br /&gt;
 C:\Users\&#039;&#039;new_username&#039;&#039;\&lt;br /&gt;
&lt;br /&gt;
* Open PuTTY and type&#039;&#039;new_username&#039;&#039;@bionmr.unl.edu in the &#039;&#039;&#039;Host Name&#039;&#039;&#039; entry&lt;br /&gt;
* Type &#039;&#039;new_username&#039;&#039;@bionmr.unl.edu inthe &#039;&#039;&#039;Saved Sessions&#039;&#039;&#039; entry&lt;br /&gt;
* In the left pane, expand &#039;&#039;&#039;SSH&#039;&#039;&#039; and click on &#039;&#039;&#039;Auth&#039;&#039;&#039;&lt;br /&gt;
* Click &#039;&#039;&#039;Browse...&#039;&#039;&#039; and open the PuTTY private key you just copied from the flash drive&lt;br /&gt;
* In the left pane, click on &#039;&#039;&#039;Session&#039;&#039;&#039;&lt;br /&gt;
* Click on &#039;&#039;&#039;Save&#039;&#039;&#039; to save the session information&lt;br /&gt;
* All done here!&lt;br /&gt;
&lt;br /&gt;
=Wiki=&lt;br /&gt;
== Adding New Users ==&lt;br /&gt;
*New Users can be added using the administrator account &amp;quot;wiki administrator&amp;quot;. The SysAdmin has the password.&lt;br /&gt;
*There will an &amp;quot;add new user&amp;quot; button at the top of the page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Sysadmin]]&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
	<entry>
		<id>https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Media_preparation&amp;diff=468</id>
		<title>Media preparation</title>
		<link rel="alternate" type="text/html" href="https://bionmr.unl.edu/mediawiki/mediawiki/index.php?title=Media_preparation&amp;diff=468"/>
		<updated>2015-07-15T14:23:07Z</updated>

		<summary type="html">&lt;p&gt;Eriekeberg: Formatting Only&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Protocols]]&lt;br /&gt;
[[Category:Protein expression]]&lt;br /&gt;
===1. General Protocols For Minimal Media Protein Expression===&lt;br /&gt;
&lt;br /&gt;
Preparing M9 minimal media begins with preparing a 5x stock solution of M9 salts. Generally, M9 salts contain a nitrogen source in the form of NH4Cl. Since we want to add a labeled nitrogen source, our 5x salts are prepared minus NH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;Cl. Standard 5 X M9 Minimal Media salts minus nitrogen source for 1L 5xM9 salts: &lt;br /&gt;
&lt;br /&gt;
64 g Na&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;HPO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;-7H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O&lt;br /&gt;
&lt;br /&gt;
15 g KH&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;PO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2.5 g NaCl&lt;br /&gt;
&lt;br /&gt;
H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O to final 1L volume and autoclave&lt;br /&gt;
To prepare 500 mL M9 minimal media:&lt;br /&gt;
&lt;br /&gt;
100mL of 5xM9 salts:&lt;br /&gt;
&lt;br /&gt;
1 mL 1 M MgSO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
50 uL 1 M CaCl&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5 mL 100x Basal Medium Eagle Vitamin Solution (Gibco)&lt;br /&gt;
&lt;br /&gt;
2.5 mL filter sterilized NH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;Cl (0.2 g/mL) or 0.5 g dry 10 mL 20% d-glucose or 2 g dry&lt;br /&gt;
&lt;br /&gt;
Glass distilled &amp;amp; autoclaved H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O to final volume of 500 mL pH solution to 7.3 and filter sterilize (0.2 um filter).&lt;br /&gt;
&lt;br /&gt;
Introduce media to a pre-autoclaved, wide-bottom (baffled) 2 L flask and add ampicillin to a final concentration of 70-100 ug/mL (or any antibiotics used to select the strains).&lt;br /&gt;
&lt;br /&gt;
Grow 5mL overnight culture in same media to inoculate 500mL M9.&lt;br /&gt;
Shake culture at 37 &amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C until an OD&amp;lt;sub&amp;gt;600&amp;lt;/sub&amp;gt; of 0.7&lt;br /&gt;
± 0.2 then induce protein expression with the addition of IPTG (0.01-0.1 mM final concentration).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===2. General Protocols For LB Media===&lt;br /&gt;
&lt;br /&gt;
For 1 L media preparation&lt;br /&gt;
&lt;br /&gt;
10 g Bacto-tryptone&lt;br /&gt;
&lt;br /&gt;
5 g yeast extract&lt;br /&gt;
&lt;br /&gt;
10 g NaCl &lt;br /&gt;
&lt;br /&gt;
Sterilized by autoclave&lt;br /&gt;
&lt;br /&gt;
Add any antibiotics used to select the strains properly after the medium temperature is blew 37 &amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;C. &lt;br /&gt;
&lt;br /&gt;
===3. General Protocols For High-Cell-Density Media===&lt;br /&gt;
&lt;br /&gt;
For 1 L media preparation&lt;br /&gt;
&lt;br /&gt;
50 mM Na&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;HPO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;.7H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;O&lt;br /&gt;
&lt;br /&gt;
25 mM KH&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;PO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt; (pH 8.0-8.2)&lt;br /&gt;
&lt;br /&gt;
10 mM NaCl&lt;br /&gt;
&lt;br /&gt;
5 mM MgSO&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
0.2 mM CaCl&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;&lt;br /&gt;
&lt;br /&gt;
0.1% NH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;Cl or &amp;lt;sup&amp;gt;15&amp;lt;/sup&amp;gt;NH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;Cl&lt;br /&gt;
&lt;br /&gt;
1.0% Glucose or &amp;lt;sup&amp;gt;13&amp;lt;/sup&amp;gt;C-Glucose&lt;br /&gt;
&lt;br /&gt;
To prepare the media, glucose and metal solution are filtered to sterilize. The salt solution is autoclaved and the cooled solution is added by metal solution and glucose.&lt;/div&gt;</summary>
		<author><name>Eriekeberg</name></author>
	</entry>
</feed>