<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://csml-wiki.northwestern.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Teirm</id>
	<title>csml-wiki.northwestern.edu - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://csml-wiki.northwestern.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Teirm"/>
	<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php/Special:Contributions/Teirm"/>
	<updated>2026-04-09T02:59:37Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.2</generator>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=General_Usage_of_Quest&amp;diff=537</id>
		<title>General Usage of Quest</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=General_Usage_of_Quest&amp;diff=537"/>
		<updated>2015-03-25T18:38:10Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Login&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh [netid]@quest.it.northwestern.edu    &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where &amp;lt;tt&amp;gt;[netid]&amp;lt;/tt&amp;gt; is your NETID. The first time you login, it will ask you to enter file in which to save the key and then to enter passphrase twice. Just press &amp;quot;enter&amp;quot; for these three questions and you should be able to login successfully.&lt;br /&gt;
&lt;br /&gt;
Our group folder is located in /projects/b1011/luijten-group&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Example of job.mbs file&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ### AUTOMATICALLY GENERATED BATCH FILE&lt;br /&gt;
#MOAB -q [queue_name]&lt;br /&gt;
#MOAB -A b1011&lt;br /&gt;
#MOAB -l walltime=[dd:hh:mm:ss]&lt;br /&gt;
&lt;br /&gt;
# ###name of job&lt;br /&gt;
#MOAB -N [name_of_job]&lt;br /&gt;
&lt;br /&gt;
# ### mail for begin/end/abort&lt;br /&gt;
#MOAB -m ea&lt;br /&gt;
#MOAB -M [email_address]                                                                                                      &lt;br /&gt;
&lt;br /&gt;
# ### number of nodes and processors per node&lt;br /&gt;
#MOAB -l nodes=2:ppn=6&lt;br /&gt;
&lt;br /&gt;
# ### indicates that job should not rerun if it fails&lt;br /&gt;
#MOAB -r n&lt;br /&gt;
&lt;br /&gt;
# ### stdout and stderr merged as stderr&lt;br /&gt;
#MOAB -j eo&lt;br /&gt;
&lt;br /&gt;
# ### write stderr to file&lt;br /&gt;
#MOAB -e log.err&lt;br /&gt;
&lt;br /&gt;
# ### the shell that interprets the job script&lt;br /&gt;
#MOAB -S /bin/bash&lt;br /&gt;
&lt;br /&gt;
module load [module]&lt;br /&gt;
cd /projects/b1011/luijten-group/[job_location]&lt;br /&gt;
time mpirun -np 12  [directory_name]/[lammps_version] -in input.dat&lt;br /&gt;
&lt;br /&gt;
if [ $? -eq 0 ] ; then&lt;br /&gt;
touch COMPLETED&lt;br /&gt;
fi   &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;[queue_name]&amp;lt;/tt&amp;gt;&lt;br /&gt;
There are two options for queue name: collab or collab-preempt. Both of them have startup priority of 5000. Collab has maximum cores of 262 and maximum walltime of 7 days. There is no resource restrictions for collab-preempt, but note that queues ending in ‘-preempt’ contain jobs that can be interrupted and re-queued by jobs from a higher priority queue.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[dd:hh:mm:ss]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the maximum allowed running time for your job. dd: days; hh: hours; mm: minutes; ss: seconds.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[name_of_job]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the name of your job that will be showed in the queue.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[email_address]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the email address you used to receive the system notice when job begins, aborted or ended.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[module]&amp;lt;/tt&amp;gt;&lt;br /&gt;
Load a module. For mpirun this would be the module mpi.  For full list of available modules run &amp;lt;i&amp;gt;module available&amp;lt;/i&amp;gt; from the command line.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[job_location]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the address of the folder where your input file is located.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[directory_name]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the address of the lammps executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[lammps_version]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the build of lammps you want to run.  Must be in [directory_name].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Submit jobs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
msub job.mbs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Cancel jobs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
canceljob [job_number]&lt;br /&gt;
canceljob `seq [first_job_number] [last_job_number]`&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Check job status&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show all jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show running jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -i&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show idle jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -w user=[netid]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where [netid] is your NETID. This command will show only jobs belonging to user specified.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
qstat &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show your own jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
checkjob [job_ID] &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command displays detailed information about a submitted job’s status and diagnostic information that can be useful for troubleshooting submission issues. It can also be used to obtain useful information about completed jobs such as the allocated nodes, resources used, and exit codes. NUIT recommends using the flag ‘-vvv’ or ‘-v –v –v’ to gather additional diagnostic information. &lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=General_Usage_of_Quest&amp;diff=536</id>
		<title>General Usage of Quest</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=General_Usage_of_Quest&amp;diff=536"/>
		<updated>2015-03-25T17:24:22Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Login&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh [netid]@quest.it.northwestern.edu    &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where &amp;lt;tt&amp;gt;[netid]&amp;lt;/tt&amp;gt; is your NETID. The first time you login, it will ask you to enter file in which to save the key and then to enter passphrase twice. Just press &amp;quot;enter&amp;quot; for these three questions and you should be able to login successfully.&lt;br /&gt;
&lt;br /&gt;
Our group folder is located in /projects/b1011/luijten-group&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Example of job.mbs file&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ### AUTOMATICALLY GENERATED BATCH FILE&lt;br /&gt;
#MOAB -q [queue_name]&lt;br /&gt;
#MOAB -A b1011&lt;br /&gt;
#MOAB -l walltime=[dd:hh:mm:ss]&lt;br /&gt;
&lt;br /&gt;
# ###name of job&lt;br /&gt;
#MOAB -N [name_of_job]&lt;br /&gt;
&lt;br /&gt;
# ### mail for begin/end/abort&lt;br /&gt;
#MOAB -m ea&lt;br /&gt;
#MOAB -M [email_address]                                                                                                      &lt;br /&gt;
&lt;br /&gt;
# ### number of nodes and processors per node&lt;br /&gt;
#MOAB -l nodes=2:ppn=6&lt;br /&gt;
&lt;br /&gt;
# ### indicates that job should not rerun if it fails&lt;br /&gt;
#MOAB -r n&lt;br /&gt;
&lt;br /&gt;
# ### stdout and stderr merged as stderr&lt;br /&gt;
#MOAB -j eo&lt;br /&gt;
&lt;br /&gt;
# ### write stderr to file&lt;br /&gt;
#MOAB -e log.err&lt;br /&gt;
&lt;br /&gt;
# ### the shell that interprets the job script&lt;br /&gt;
#MOAB -S /bin/bash&lt;br /&gt;
&lt;br /&gt;
module load [module]&lt;br /&gt;
cd /projects/b1011/luijten-group/[job_location]&lt;br /&gt;
time mpirun -np 12  [directory_name]/[lammps_version] -in input.dat&lt;br /&gt;
&lt;br /&gt;
if [ $? -eq 0 ] ; then&lt;br /&gt;
touch COMPLETED&lt;br /&gt;
fi   &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;[queue_name]&amp;lt;/tt&amp;gt;&lt;br /&gt;
There are two options for queue name: collab or collab-preempt. Both of them have startup priority of 5000. Collab has maximum cores of 262 and maximum walltime of 7 days. There is no resource restrictions for collab-preempt, but note that queues ending in ‘-preempt’ contain jobs that can be interrupted and re-queued by jobs from a higher priority queue.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[dd:hh:mm:ss]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the maximum allowed running time for your job. dd: days; hh: hours; mm: minutes; ss: seconds.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[name_of_job]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the name of your job that will be showed in the queue.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[email_address]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the email address you used to receive the system notice when job begins, aborted or ended.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[module]&amp;lt;/tt&amp;gt;&lt;br /&gt;
Load a module. For mpirun this would be the module mpi.  For full list of available modules run &amp;lt;i&amp;gt;module available&amp;lt;/i&amp;gt; from the command line.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[job_location]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the address of the folder where your input file is located.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[directory_name]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the address of lammps executable.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[lammps_version]&amp;lt;/tt&amp;gt;&lt;br /&gt;
This is the build of lammps you want to run.  Must be in [directory_name]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Submit jobs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
msub job.mbs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Cancel jobs&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
canceljob [job_number]&lt;br /&gt;
canceljob `seq [first_job_number] [last_job_number]`&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;Check job status&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show all jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show running jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -i&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show idle jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
showq -w user=[netid]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
where [netid] is your NETID. This command will show only jobs belonging to user specified.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
qstat &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
show your own jobs &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
checkjob [job_ID] &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This command displays detailed information about a submitted job’s status and diagnostic information that can be useful for troubleshooting submission issues. It can also be used to obtain useful information about completed jobs such as the allocated nodes, resources used, and exit codes. NUIT recommends using the flag ‘-vvv’ or ‘-v –v –v’ to gather additional diagnostic information. &lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=495</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=495"/>
		<updated>2015-02-05T20:20:50Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Creating a Dropbox Folder on Your Machine===&lt;br /&gt;
It is easy to link your home folder with your Dropbox.  By default, the Dropbox will be accessible as &amp;lt;tt&amp;gt;~/Dropbox&amp;lt;/tt&amp;gt;. Before doing so, there are two important considerations:&lt;br /&gt;
&lt;br /&gt;
* If you have a large Dropbox, you may wish to make sure that the Dropbox contents are not actually stored in your $HOME folder (where they would count against your quota).  The easiest way to do this is to create a folder in your scratch partition (e.g., ~/Scratch/Dropbox) and then create a symbolic link to this folder, via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ln -s /scratch/Dropbox ~/Dropbox&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The only drawback is that your scratch partition is typically only available on a few machines (e.g., not on ariadne itself).&lt;br /&gt;
&lt;br /&gt;
* Clearly, if you store your Dropbox on scratch it will be ignored in the daily backup. However, even if you keep it actually in your home folder, the backup script will skip the Dropbox.&lt;br /&gt;
&lt;br /&gt;
===Installing Dropbox===&lt;br /&gt;
* To install the dropbox daemon on your machine, run the following command from your terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd ~ &amp;amp;&amp;amp; wget -O - &amp;quot;https://www.dropbox.com/download?plat=lnx.x86_64&amp;quot; | tar xzf -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Next, run the Dropbox daemon from the newly created .dropbox-dist folder, using the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
~/.dropbox-dist/dropboxd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Notes===&lt;br /&gt;
&lt;br /&gt;
* The Dropbox daemon (which synchronizes your ~/Dropbox folder with the actual Dropbox) starts automatically when you log in to the graphical desktop.  However, if your machine is restarted (so that the daemon is killed) and you log in remotely (before logging in to the graphical desktop), the Dropbox daemon will have to be started manually. This is done via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dropbox start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;It is important to do this &#039;&#039;only&#039;&#039; on your home machine.&#039;&#039;&#039;  If you do it on multiple machines (or even by accident, by putting the &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt; command in your &amp;lt;tt&amp;gt;~/.bashrc&amp;lt;/tt&amp;gt; script --- &#039;&#039;clearly, do NOT do this!&#039;&#039;), you will end up with conflicts, since multiple independent daemons will all start to synchronize the same folder.&lt;br /&gt;
&lt;br /&gt;
* If you have NOT put your Dropbox on scratch and wish to change this, proceed as follows:&lt;br /&gt;
** On your home machine, stop the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox stop&amp;lt;/tt&amp;gt;&lt;br /&gt;
** Create the Dropbox folder on scratch&lt;br /&gt;
** Move the contents from ~/Dropbox to this new scratch folder&lt;br /&gt;
** Remove the (now empty) folder ~/Dropbox&lt;br /&gt;
** Create a symbolic link ~/Dropbox to the Dropbox folder on scratch (as described near the top of this page)&lt;br /&gt;
** Restart the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Dropbox gets stuck &amp;quot;Connecting&amp;quot;==&lt;br /&gt;
Remove ~/.dropbox and ~/.dropbox-dist and reinstall.  This results from stopping dropbox during the synch process or trying to selectively synch without first pausing.&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=494</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=494"/>
		<updated>2015-02-05T20:20:23Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Creating a Dropbox Folder on Your Machine===&lt;br /&gt;
It is easy to link your home folder with your Dropbox.  By default, the Dropbox will be accessible as &amp;lt;tt&amp;gt;~/Dropbox&amp;lt;/tt&amp;gt;. Before doing so, there are two important considerations:&lt;br /&gt;
&lt;br /&gt;
* If you have a large Dropbox, you may wish to make sure that the Dropbox contents are not actually stored in your $HOME folder (where they would count against your quota).  The easiest way to do this is to create a folder in your scratch partition (e.g., ~/Scratch/Dropbox) and then create a symbolic link to this folder, via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ln -s /scratch/Dropbox ~/Dropbox&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The only drawback is that your scratch partition is typically only available on a few machines (e.g., not on ariadne itself).&lt;br /&gt;
&lt;br /&gt;
* Clearly, if you store your Dropbox on scratch it will be ignored in the daily backup. However, even if you keep it actually in your home folder, the backup script will skip the Dropbox.&lt;br /&gt;
&lt;br /&gt;
===Installing Dropbox===&lt;br /&gt;
* To install the dropbox daemon on your machine, run the following command from your terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd ~ &amp;amp;&amp;amp; wget -O - &amp;quot;https://www.dropbox.com/download?plat=lnx.x86_64&amp;quot; | tar xzf -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Next, run the Dropbox daemon from the newly created .dropbox-dist folder, using the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
~/.dropbox-dist/dropboxd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Notes===&lt;br /&gt;
&lt;br /&gt;
* The Dropbox daemon (which synchronizes your ~/Dropbox folder with the actual Dropbox) starts automatically when you log in to the graphical desktop.  However, if your machine is restarted (so that the daemon is killed) and you log in remotely (before logging in to the graphical desktop), the Dropbox daemon will have to be started manually. This is done via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dropbox start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;It is important to do this &#039;&#039;only&#039;&#039; on your home machine.&#039;&#039;&#039;  If you do it on multiple machines (or even by accident, by putting the &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt; command in your &amp;lt;tt&amp;gt;~/.bashrc&amp;lt;/tt&amp;gt; script --- &#039;&#039;clearly, do NOT do this!&#039;&#039;), you will end up with conflicts, since multiple independent daemons will all start to synchronize the same folder.&lt;br /&gt;
&lt;br /&gt;
* If you have NOT put your Dropbox on scratch and wish to change this, proceed as follows:&lt;br /&gt;
** On your home machine, stop the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox stop&amp;lt;/tt&amp;gt;&lt;br /&gt;
** Create the Dropbox folder on scratch&lt;br /&gt;
** Move the contents from ~/Dropbox to this new scratch folder&lt;br /&gt;
** Remove the (now empty) folder ~/Dropbox&lt;br /&gt;
** Create a symbolic link ~/Dropbox to the Dropbox folder on scratch (as described near the top of this page)&lt;br /&gt;
** Restart the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Dropbox gets stuck &amp;quot;Connecting&amp;quot;&lt;br /&gt;
Remove ~/.dropbox and ~/.dropbox-dist and reinstall.  This results from stopping dropbox during the synch process or trying to selectively synch without first pausing.&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=493</id>
		<title>Dropbox</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=Dropbox&amp;diff=493"/>
		<updated>2015-02-05T20:20:01Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Creating a Dropbox Folder on Your Machine===&lt;br /&gt;
It is easy to link your home folder with your Dropbox.  By default, the Dropbox will be accessible as &amp;lt;tt&amp;gt;~/Dropbox&amp;lt;/tt&amp;gt;. Before doing so, there are two important considerations:&lt;br /&gt;
&lt;br /&gt;
* If you have a large Dropbox, you may wish to make sure that the Dropbox contents are not actually stored in your $HOME folder (where they would count against your quota).  The easiest way to do this is to create a folder in your scratch partition (e.g., ~/Scratch/Dropbox) and then create a symbolic link to this folder, via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ln -s /scratch/Dropbox ~/Dropbox&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
The only drawback is that your scratch partition is typically only available on a few machines (e.g., not on ariadne itself).&lt;br /&gt;
&lt;br /&gt;
* Clearly, if you store your Dropbox on scratch it will be ignored in the daily backup. However, even if you keep it actually in your home folder, the backup script will skip the Dropbox.&lt;br /&gt;
&lt;br /&gt;
===Installing Dropbox===&lt;br /&gt;
* To install the dropbox daemon on your machine, run the following command from your terminal:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ cd ~ &amp;amp;&amp;amp; wget -O - &amp;quot;https://www.dropbox.com/download?plat=lnx.x86_64&amp;quot; | tar xzf -&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Next, run the Dropbox daemon from the newly created .dropbox-dist folder, using the following command:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
~/.dropbox-dist/dropboxd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Additional Notes===&lt;br /&gt;
&lt;br /&gt;
* The Dropbox daemon (which synchronizes your ~/Dropbox folder with the actual Dropbox) starts automatically when you log in to the graphical desktop.  However, if your machine is restarted (so that the daemon is killed) and you log in remotely (before logging in to the graphical desktop), the Dropbox daemon will have to be started manually. This is done via&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
dropbox start&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;It is important to do this &#039;&#039;only&#039;&#039; on your home machine.&#039;&#039;&#039;  If you do it on multiple machines (or even by accident, by putting the &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt; command in your &amp;lt;tt&amp;gt;~/.bashrc&amp;lt;/tt&amp;gt; script --- &#039;&#039;clearly, do NOT do this!&#039;&#039;), you will end up with conflicts, since multiple independent daemons will all start to synchronize the same folder.&lt;br /&gt;
&lt;br /&gt;
* If you have NOT put your Dropbox on scratch and wish to change this, proceed as follows:&lt;br /&gt;
** On your home machine, stop the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox stop&amp;lt;/tt&amp;gt;&lt;br /&gt;
** Create the Dropbox folder on scratch&lt;br /&gt;
** Move the contents from ~/Dropbox to this new scratch folder&lt;br /&gt;
** Remove the (now empty) folder ~/Dropbox&lt;br /&gt;
** Create a symbolic link ~/Dropbox to the Dropbox folder on scratch (as described near the top of this page)&lt;br /&gt;
** Restart the Dropbox daemon via &amp;lt;tt&amp;gt;dropbox start&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*  Dropbox gets stuck &amp;quot;Connecting&amp;quot;&lt;br /&gt;
Remove ~/.dropbox and ~/.dropbox-dist and reinstall.  This results from stopping dropbox during the synch process or trying to selectively synch without first pausing.&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
	<entry>
		<id>https://csml-wiki.northwestern.edu/index.php?title=Password-less_login_via_ssh&amp;diff=474</id>
		<title>Password-less login via ssh</title>
		<link rel="alternate" type="text/html" href="https://csml-wiki.northwestern.edu/index.php?title=Password-less_login_via_ssh&amp;diff=474"/>
		<updated>2014-12-30T04:06:58Z</updated>

		<summary type="html">&lt;p&gt;Teirm: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.linuxproblem.org/art_9.html Password-less login via ssh]&lt;/div&gt;</summary>
		<author><name>Teirm</name></author>
	</entry>
</feed>