<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.csclub.uwaterloo.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M2ellis</id>
	<title>CSCWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.csclub.uwaterloo.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=M2ellis"/>
	<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/Special:Contributions/M2ellis"/>
	<updated>2026-04-05T21:28:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=3013</id>
		<title>Ceo</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=3013"/>
		<updated>2011-04-16T13:27:07Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Add Your Key To Mirror */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Ceo.png|thumb|300px|right|&amp;lt;tt&amp;gt;ceo&amp;lt;/tt&amp;gt;&#039;s main menu screen]]&lt;br /&gt;
&lt;br /&gt;
ceo is the CSC member creation and administration interface. It was originally written in perl by persons of mysterious-ness, and was re-written in python by Michael Spang in early 2007. The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git].&lt;br /&gt;
&lt;br /&gt;
= Instructions/Usage =&lt;br /&gt;
ceo can be accessed by running the &amp;quot;ceo&amp;quot; command from a terminal, or terminal emulator.&lt;br /&gt;
By default, a curses-based menu interface is presented. Use the arrow keys to navigate;&lt;br /&gt;
on many screens, pressing a letter will select the next menu item beginning with that letter.&lt;br /&gt;
&lt;br /&gt;
=== Command-line Mode ===&lt;br /&gt;
Run &amp;lt;tt&amp;gt;ceo --help&amp;lt;/tt&amp;gt; to see a list of command-line utilities.&lt;br /&gt;
&lt;br /&gt;
== Adding a New Member ==&lt;br /&gt;
After a new member has paid the membership fee and signed the Machine Usage Policy forms, a new member account is added to the CSC system by selecting &amp;quot;New Member&amp;quot; in ceo and following the on-screen instructions.  The new member&#039;s username is to be identical to their WatIAM username, if applicable.  For WatIAM users, the name and program fields will automatically be filled after a username is provided.&lt;br /&gt;
&lt;br /&gt;
== Renewing/Extending a Membership ==&lt;br /&gt;
A membership can be renewed or extended by selecting &amp;quot;Renew Membership&amp;quot; in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
== Hosted Clubs ==&lt;br /&gt;
Clubs are hosted free of charge.  To create a new club account use the &amp;quot;New Club&amp;quot; option in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
=== Club Representatives ===&lt;br /&gt;
At this time, there is no limit to the number of representatives a club may have, but representative accounts must be registered with the &amp;quot;New Club Rep&amp;quot; option, and renewed with the &amp;quot;Renew Club Rep&amp;quot; option.&lt;br /&gt;
&lt;br /&gt;
=== Other Club Features ===&lt;br /&gt;
For access to features beyond basic hosting (ie, databases), one of the club representatives will need to email the Systems Committee to have this set up.&lt;br /&gt;
&lt;br /&gt;
= Feature Requests and Ideas =&lt;br /&gt;
&lt;br /&gt;
* Create a graphical and/or online version of ceo&lt;br /&gt;
* Add new members to fuse and plugdev groups&lt;br /&gt;
&lt;br /&gt;
= Contributing to CEO =&lt;br /&gt;
&lt;br /&gt;
== Preliminary Steps ==&lt;br /&gt;
=== Generate a GPG Key ===&lt;br /&gt;
In order to sign the ceo packages you will need to generate yourself a GPG key if you do not already have one. Assuming you do not run&lt;br /&gt;
&lt;br /&gt;
 gpg --gen-key&lt;br /&gt;
&lt;br /&gt;
Choose option (2) DSA (sign only). Choose no expiration when prompted and then your full name and email when asked. It will ask you to confirm the information and then for a passphrase.&lt;br /&gt;
&lt;br /&gt;
=== Add Your Key To Mirror ===&lt;br /&gt;
 ssh mirror.csclub.uwaterloo.ca&lt;br /&gt;
 gpg --list-keys&lt;br /&gt;
&lt;br /&gt;
Locate the 8-character id string. For example &amp;quot;16E37635&amp;quot; in&lt;br /&gt;
 /users/m2ellis/.gnupg/pubring.gpg&lt;br /&gt;
 ---------------------------------&lt;br /&gt;
 pub   1024D/&#039;&#039;&#039;16E37635&#039;&#039;&#039; 2010-08-19&lt;br /&gt;
 uid                  Michael Ellis &amp;lt;m2ellis@csclub.uwaterloo.ca&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you must add this id into the file /srv/debian/conf/uploaders on mirror&lt;br /&gt;
 sudo vim /srv/debian/conf/uploaders&lt;br /&gt;
&lt;br /&gt;
Now in another terminal run&lt;br /&gt;
 gpg --export --armor $KEYID&lt;br /&gt;
&lt;br /&gt;
Now on mirror run&lt;br /&gt;
 sudo -s&lt;br /&gt;
 GNUPGHOME=/srv/debian/gpg gpg --import&lt;br /&gt;
&lt;br /&gt;
Then paste the output from gpg --export --armor $KEYID and end with CTRL-D. It should give you a confirmation, example&lt;br /&gt;
 gpg: key 16E37635: public key &amp;quot;Michael Ellis &amp;lt;m2ellis@csclub.uwaterloo.ca&amp;gt;&amp;quot; imported&lt;br /&gt;
 gpg: Total number processed: 1&lt;br /&gt;
 gpg:               imported: 1&lt;br /&gt;
&lt;br /&gt;
== Making Changes ==&lt;br /&gt;
The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git]. To checkout the code run&lt;br /&gt;
&lt;br /&gt;
 git clone ~git/public/pyceo.git&lt;br /&gt;
&lt;br /&gt;
When you are done making your change you need to update the changelog with dch. Assuming this is a minor incremental change run&lt;br /&gt;
&lt;br /&gt;
 dch -i&lt;br /&gt;
&lt;br /&gt;
Add a description of your change and then save and quit. Once you are sure of your changes commit them to the git repository and push them (test them first!). To build the package run debuild&lt;br /&gt;
&lt;br /&gt;
 debuild&lt;br /&gt;
&lt;br /&gt;
This will generate the *.deb files in the parent directory.&lt;br /&gt;
&lt;br /&gt;
=== Uploading Changes to Mirror ===&lt;br /&gt;
&lt;br /&gt;
In the directory containing the *.deb and *.changes files run&lt;br /&gt;
 dupload&lt;br /&gt;
&lt;br /&gt;
Then ssh to mirror and run&lt;br /&gt;
 sudo rrr-incoming&lt;br /&gt;
&lt;br /&gt;
The package should now be uploaded and you can update in the usual way with apt-get/aptitude.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=3012</id>
		<title>Ceo</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=3012"/>
		<updated>2011-04-16T13:26:44Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Add Your Key To Mirror */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Ceo.png|thumb|300px|right|&amp;lt;tt&amp;gt;ceo&amp;lt;/tt&amp;gt;&#039;s main menu screen]]&lt;br /&gt;
&lt;br /&gt;
ceo is the CSC member creation and administration interface. It was originally written in perl by persons of mysterious-ness, and was re-written in python by Michael Spang in early 2007. The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git].&lt;br /&gt;
&lt;br /&gt;
= Instructions/Usage =&lt;br /&gt;
ceo can be accessed by running the &amp;quot;ceo&amp;quot; command from a terminal, or terminal emulator.&lt;br /&gt;
By default, a curses-based menu interface is presented. Use the arrow keys to navigate;&lt;br /&gt;
on many screens, pressing a letter will select the next menu item beginning with that letter.&lt;br /&gt;
&lt;br /&gt;
=== Command-line Mode ===&lt;br /&gt;
Run &amp;lt;tt&amp;gt;ceo --help&amp;lt;/tt&amp;gt; to see a list of command-line utilities.&lt;br /&gt;
&lt;br /&gt;
== Adding a New Member ==&lt;br /&gt;
After a new member has paid the membership fee and signed the Machine Usage Policy forms, a new member account is added to the CSC system by selecting &amp;quot;New Member&amp;quot; in ceo and following the on-screen instructions.  The new member&#039;s username is to be identical to their WatIAM username, if applicable.  For WatIAM users, the name and program fields will automatically be filled after a username is provided.&lt;br /&gt;
&lt;br /&gt;
== Renewing/Extending a Membership ==&lt;br /&gt;
A membership can be renewed or extended by selecting &amp;quot;Renew Membership&amp;quot; in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
== Hosted Clubs ==&lt;br /&gt;
Clubs are hosted free of charge.  To create a new club account use the &amp;quot;New Club&amp;quot; option in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
=== Club Representatives ===&lt;br /&gt;
At this time, there is no limit to the number of representatives a club may have, but representative accounts must be registered with the &amp;quot;New Club Rep&amp;quot; option, and renewed with the &amp;quot;Renew Club Rep&amp;quot; option.&lt;br /&gt;
&lt;br /&gt;
=== Other Club Features ===&lt;br /&gt;
For access to features beyond basic hosting (ie, databases), one of the club representatives will need to email the Systems Committee to have this set up.&lt;br /&gt;
&lt;br /&gt;
= Feature Requests and Ideas =&lt;br /&gt;
&lt;br /&gt;
* Create a graphical and/or online version of ceo&lt;br /&gt;
* Add new members to fuse and plugdev groups&lt;br /&gt;
&lt;br /&gt;
= Contributing to CEO =&lt;br /&gt;
&lt;br /&gt;
== Preliminary Steps ==&lt;br /&gt;
=== Generate a GPG Key ===&lt;br /&gt;
In order to sign the ceo packages you will need to generate yourself a GPG key if you do not already have one. Assuming you do not run&lt;br /&gt;
&lt;br /&gt;
 gpg --gen-key&lt;br /&gt;
&lt;br /&gt;
Choose option (2) DSA (sign only). Choose no expiration when prompted and then your full name and email when asked. It will ask you to confirm the information and then for a passphrase.&lt;br /&gt;
&lt;br /&gt;
=== Add Your Key To Mirror ===&lt;br /&gt;
 ssh mirror.csclub.uwaterloo.ca&lt;br /&gt;
 gpg --list-keys&lt;br /&gt;
&lt;br /&gt;
Locate the 8-character id string. For example &amp;quot;16E37635&amp;quot; in&lt;br /&gt;
 /users/m2ellis/.gnupg/pubring.gpg&lt;br /&gt;
 ---------------------------------&lt;br /&gt;
 pub   1024D/&#039;&#039;&#039;16E37635&#039;&#039;&#039; 2010-08-19&lt;br /&gt;
 uid                  Michael Ellis &amp;lt;me@michaelellis.ca&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you must add this id into the file /srv/debian/conf/uploaders on mirror&lt;br /&gt;
 sudo vim /srv/debian/conf/uploaders&lt;br /&gt;
&lt;br /&gt;
Now in another terminal run&lt;br /&gt;
 gpg --export --armor $KEYID&lt;br /&gt;
&lt;br /&gt;
Now on mirror run&lt;br /&gt;
 sudo -s&lt;br /&gt;
 GNUPGHOME=/srv/debian/gpg gpg --import&lt;br /&gt;
&lt;br /&gt;
Then paste the output from gpg --export --armor $KEYID and end with CTRL-D. It should give you a confirmation, example&lt;br /&gt;
 gpg: key 16E37635: public key &amp;quot;Michael Ellis &amp;lt;m2ellis@csclub.uwaterloo.ca&amp;gt;&amp;quot; imported&lt;br /&gt;
 gpg: Total number processed: 1&lt;br /&gt;
 gpg:               imported: 1&lt;br /&gt;
&lt;br /&gt;
== Making Changes ==&lt;br /&gt;
The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git]. To checkout the code run&lt;br /&gt;
&lt;br /&gt;
 git clone ~git/public/pyceo.git&lt;br /&gt;
&lt;br /&gt;
When you are done making your change you need to update the changelog with dch. Assuming this is a minor incremental change run&lt;br /&gt;
&lt;br /&gt;
 dch -i&lt;br /&gt;
&lt;br /&gt;
Add a description of your change and then save and quit. Once you are sure of your changes commit them to the git repository and push them (test them first!). To build the package run debuild&lt;br /&gt;
&lt;br /&gt;
 debuild&lt;br /&gt;
&lt;br /&gt;
This will generate the *.deb files in the parent directory.&lt;br /&gt;
&lt;br /&gt;
=== Uploading Changes to Mirror ===&lt;br /&gt;
&lt;br /&gt;
In the directory containing the *.deb and *.changes files run&lt;br /&gt;
 dupload&lt;br /&gt;
&lt;br /&gt;
Then ssh to mirror and run&lt;br /&gt;
 sudo rrr-incoming&lt;br /&gt;
&lt;br /&gt;
The package should now be uploaded and you can update in the usual way with apt-get/aptitude.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2959</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2959"/>
		<updated>2011-02-28T02:22:16Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Databases */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed or installed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
==== Shell Access ====&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server (caffeine) is available at csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
==== SFTP File Access ====&lt;br /&gt;
&lt;br /&gt;
You may access files stored on our servers, or upload new ones, via SFTP and SCP. If you are a Windows user you should use [http://winscp.net/ WinSCP] or a similar client with SFTP/SCP abilities. If you are using OS X you can use the sftp or scp Terminal commands, or you can install a graphical client such as [http://cyberduck.ch/ Cyberduck]. Similarly on GNU/Linux you can use the shell commands or a graphical client such as gftp.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL databases are available.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2958</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2958"/>
		<updated>2011-02-28T02:21:37Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* SFTP File Access */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed or installed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
==== Shell Access ====&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server (caffeine) is available at csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
==== SFTP File Access ====&lt;br /&gt;
&lt;br /&gt;
You may access files stored on our servers, or upload new ones, via SFTP and SCP. If you are a Windows user you should use [http://winscp.net/ WinSCP] or a similar client with SFTP/SCP abilities. If you are using OS X you can use the sftp or scp Terminal commands, or you can install a graphical client such as [http://cyberduck.ch/ Cyberduck]. Similarly on GNU/Linux you can use the shell commands or a graphical client such as gftp.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL or PostgreSQL databases are available upon request.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2957</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2957"/>
		<updated>2011-02-28T02:21:10Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Accessing Club Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed or installed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
==== Shell Access ====&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server (caffeine) is available at csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
==== SFTP File Access ====&lt;br /&gt;
&lt;br /&gt;
You may access files stored on our servers, or upload new ones, via SFTP and SCP. If you are a Windows user you should use [http://winscp.net/ WinSCP] or a similar client with SFTP/SCP abilities. If you are using OS X you can use the sftp or scp shell Terminal commands, or you can install a graphical client such as [http://cyberduck.ch/ Cyberduck]. Similarly on GNU/Linux you can use the shell commands or a graphical client such as gftp.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL or PostgreSQL databases are available upon request.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2956</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2956"/>
		<updated>2011-02-28T02:16:50Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Accessing Club Resources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed or installed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server (caffeine) is available at csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL or PostgreSQL databases are available upon request.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2955</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2955"/>
		<updated>2011-02-28T02:15:06Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Hosting Features */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed or installed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server is caffeine.csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL or PostgreSQL databases are available upon request.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2954</id>
		<title>Club Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Club_Hosting&amp;diff=2954"/>
		<updated>2011-02-28T02:14:39Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Hosting Features */ No more postgres&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Computer Science Club provides hosting to other clubs free of charge. We host many club web sites and mailing lists. If you have a question about our hosting service, contact systems-committee@csclub.uwaterloo.ca or visit our office in MC 3036.&lt;br /&gt;
&lt;br /&gt;
=== Hosting Features ===&lt;br /&gt;
&lt;br /&gt;
* 4 GB web space&lt;br /&gt;
* Scripting&lt;br /&gt;
** PHP (mod_fcgid)&lt;br /&gt;
** Perl (mod_fcgid)&lt;br /&gt;
** Python (mod_fcgid)&lt;br /&gt;
** Ruby (mod_fcgid)&lt;br /&gt;
* Databases&lt;br /&gt;
** [[MySQL]]&lt;br /&gt;
&lt;br /&gt;
This is not an exhaustive list. Contact us if you want something not listed.&lt;br /&gt;
&lt;br /&gt;
=== Getting Hosted ===&lt;br /&gt;
&lt;br /&gt;
To get hosted, you need:&lt;br /&gt;
&lt;br /&gt;
# a club account&lt;br /&gt;
# one user account for each person who will be updating the club&#039;s web site or other files&lt;br /&gt;
&lt;br /&gt;
==== Club Account ====&lt;br /&gt;
&lt;br /&gt;
Each club we host has a &amp;quot;club account&amp;quot; that owns and stores club resources. You can request a club account via email or in person. The club account:&lt;br /&gt;
&lt;br /&gt;
* Is named after the club, possibly abbreviated.&lt;br /&gt;
* Has a home directory named /users/clubname, where club files are stored.&lt;br /&gt;
* Is not permitted to login. You must use your own user account to login.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create club accounts using [[ceo]].&lt;br /&gt;
&lt;br /&gt;
==== User Accounts ====&lt;br /&gt;
&lt;br /&gt;
Each user who needs access to the club account must have his/her own user account on our machines. There are two ways to get an account:&lt;br /&gt;
&lt;br /&gt;
* Become a member of the Computer Science Club. Membership is $2.00 per term.&lt;br /&gt;
* Request a free &amp;quot;club representative&amp;quot; account. These accounts are to be used solely for managing the club account, and expire at the end of the term.&lt;br /&gt;
&lt;br /&gt;
In both cases, you must come to MC 3036 in person for initial registration. Club representatives can request renewal of their free accounts if they still need the account in future terms. Renewal can be done in person or via email.&lt;br /&gt;
&lt;br /&gt;
Your user account must also be authorized to change club files. Each club has a &amp;quot;club group&amp;quot; whose members may update the clubs files. We add users to the group upon request, or when we&#039;re setting up the club account.&lt;br /&gt;
&lt;br /&gt;
Anyone with office staff or greater privileges may create both of the above types of accounts using [[ceo]]. Currently, only systems committee may add users to club groups.&lt;br /&gt;
&lt;br /&gt;
=== Accessing Club Resources ===&lt;br /&gt;
&lt;br /&gt;
At this point, you have a user account and a club account, and need to get started with your web site. Before you can do anything, you need to log into our machines somehow. You can:&lt;br /&gt;
&lt;br /&gt;
* Log in using a terminal in the office&lt;br /&gt;
* Log in from anywhere using SSH. Our web server is caffeine.csclub.uwaterloo.ca.&lt;br /&gt;
&lt;br /&gt;
The club&#039;s files are stored in /users/clubname.&lt;br /&gt;
&lt;br /&gt;
If you want, you can become the club user by typing &amp;quot;become_club clubname&amp;quot;. This is not usually necessary, as the permissions usually allow you to make changes as yourself.&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== Web Hosting ====&lt;br /&gt;
&lt;br /&gt;
The /users/clubname/www directory is accessible via the web at http://csclub.uwaterloo.ca/~clubname. This is set up by default and requires no special configuration.&lt;br /&gt;
&lt;br /&gt;
If you want a domain of the form clubname.uwaterloo.ca, you can request this via email. You can also use your own domain (e.g. club.org), if you purchase it yourself.&lt;br /&gt;
&lt;br /&gt;
==== Databases ====&lt;br /&gt;
&lt;br /&gt;
MySQL or PostgreSQL databases are available upon request.&lt;br /&gt;
&lt;br /&gt;
You can create a MySQL database yourself through [[ceo]] by following [[MySQL#Using_ceo|these instructions]].&lt;br /&gt;
&lt;br /&gt;
==== Mailing Lists ====&lt;br /&gt;
&lt;br /&gt;
We can set up [http://www.gnu.org/software/mailman/index.html GNU Mailman] for you upon request.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2908</id>
		<title>Mirror</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2908"/>
		<updated>2010-12-13T01:29:26Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Proposed Archives to Mirror */ Now mirroring MacPorts&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We currently run a public mirror ([http://mirror.csclub.uwaterloo.ca/ mirror.csclub.uwaterloo.ca]) on [[Machine_List#sodium-benzoate|sodium-benzoate]]. We are listed on the ResNet [http://noc.uwaterloo.ca/cn/Stats/resReport &amp;quot;don&#039;t count&amp;quot; list] so downloading from our mirror will not count against one&#039;s ResNet quota. Requests to mirror a particular distribution or archive should be made to syscom@csclub.uwaterloo.ca. We also have a [http://cacti.csclub.uwaterloo.ca/graph_image.php?action=view&amp;amp;local_graph_id=1560&amp;amp;rra_id=1&amp;amp;graph_height=120&amp;amp;graph_width=440 bandwidth graph] you can look at.&lt;br /&gt;
&lt;br /&gt;
== Archives Mirrored ==&lt;br /&gt;
For a list of what is currently mirrored and their respective disk usage see http://mirror.csclub.uwaterloo.ca/&lt;br /&gt;
&lt;br /&gt;
== Proposed Archives to Mirror ==&lt;br /&gt;
&lt;br /&gt;
* Mandriva&lt;br /&gt;
* NetBSD&lt;br /&gt;
* PCLinuxOS&lt;br /&gt;
* OpenSSL&lt;br /&gt;
* RubyForge&lt;br /&gt;
* SourceForge&lt;br /&gt;
* VLC&lt;br /&gt;
&lt;br /&gt;
== Implementation Details ==&lt;br /&gt;
&lt;br /&gt;
The mirroring is done by one of three scripts. The latter two are based on [http://www.debian.org/mirror/anonftpsync anonftpsync]. [[#merlin|merlin]] is used to call one of these scripts. Most of the scripts and such used to maintain the mirror are available in the public [http://git.csclub.uwaterloo.ca/?p=public/mirror.git mirror.git] repository.&lt;br /&gt;
&lt;br /&gt;
=== ftpsync ===&lt;br /&gt;
&lt;br /&gt;
[http://ftp-master.debian.org/ftpsync.tar.gz ftpsync] is the official Debian mirror synchronization tool, and is used to rsync the Debian repository. It&#039;s located in ~mirror/debian. Its invocation takes a few steps (this is more or less how [[#merlin|merlin]] invokes it:&lt;br /&gt;
&lt;br /&gt;
 export BASEDIR=/home/mirror/debian&lt;br /&gt;
 cd $BASEDIR&lt;br /&gt;
 ./bin/ftpsync sync:stage1&lt;br /&gt;
 ./bin/ftpsync sync:stage2&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-debian ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync debian-style repositories. Its usage is:&lt;br /&gt;
 csc-sync-debian local_dir rsync_host rsync_dir [trace_host [trace_dir]]&lt;br /&gt;
&lt;br /&gt;
If trace_host is specified, then $rsync_dir/project/trace/$trace_host is checked to see if it has changed. If it has, a normal debian-style (two-pass) rsync is done.&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-standard ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync a tree in a general way. Like anonftpsync, it supports locking and logging. Its usage is:&lt;br /&gt;
&lt;br /&gt;
 csc-sync-standard local_dir rsync_host rsync_dir&lt;br /&gt;
&lt;br /&gt;
=== merlin ===&lt;br /&gt;
&lt;br /&gt;
The synchronization process is run by a Python script called &amp;quot;merlin&amp;quot;, written by a2brenna, stored in ~mirror/merlin. The repository list, sync time, etc. is maintained in merlin.py.&lt;br /&gt;
&lt;br /&gt;
=== HTTP ===&lt;br /&gt;
&lt;br /&gt;
We use [[Apache]] as our web server. Here&#039;s a snippet of the worker configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule mpm_worker_module&amp;gt;&lt;br /&gt;
     ServerLimit          64&lt;br /&gt;
     ThreadLimit          64&lt;br /&gt;
     StartServers          2&lt;br /&gt;
     MaxClients         4096&lt;br /&gt;
     MinSpareThreads      16&lt;br /&gt;
     MaxSpareThreads      48&lt;br /&gt;
     ThreadsPerChild      64&lt;br /&gt;
     MaxRequestsPerChild   0&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We use the bwbar application to display current bandwidth in the footer of mirror pages.&lt;br /&gt;
&lt;br /&gt;
==== Index ====&lt;br /&gt;
&lt;br /&gt;
An index of the archives we mirror is available at http://mirror.csclub.uwaterloo.ca/.&lt;br /&gt;
As of Winter 2010, it is now generated by a Python script in &amp;lt;tt&amp;gt;~mirror/mirror-index&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;~mirror/mirror-index/make-index.py&amp;lt;/tt&amp;gt; is scheduled in &amp;lt;tt&amp;gt;mirror&amp;lt;/tt&amp;gt;&#039;s crontab to be&lt;br /&gt;
run at 5:40 AM on the 14th and 28th of each month. The script can be run manually when needed&lt;br /&gt;
(for example, when an archive is removed) as follows:&lt;br /&gt;
&lt;br /&gt;
 sudo -u mirror /home/mirror/mirror-index/make-index.py&lt;br /&gt;
&lt;br /&gt;
This causes an instance of &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt; to be run which computes the size of each directory. This&lt;br /&gt;
list is then sorted alphabetically by directory name and returned to the Python script.&lt;br /&gt;
If any errors occur during this process, the script conservatively chooses to exit rather&lt;br /&gt;
than risk generating an index file that is incorrect.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;make-index.py&amp;lt;/tt&amp;gt; is configured by means of a [http://www.yaml.org/ YAML] file,&lt;br /&gt;
&amp;lt;tt&amp;gt;config.yaml&amp;lt;/tt&amp;gt;, in the same directory. Its format is as follows:&lt;br /&gt;
&lt;br /&gt;
 docroot: /mirror/root&lt;br /&gt;
 duflags: --human-readable --max-depth=1&lt;br /&gt;
 output: /mirror/root/index.html&lt;br /&gt;
 &lt;br /&gt;
 directories:&lt;br /&gt;
   apache:&lt;br /&gt;
     site: apache.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.apache.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
   archlinux:&lt;br /&gt;
     site: archlinux.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.archlinux.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 # (...)&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;tt&amp;gt;docroot&amp;lt;/tt&amp;gt; is the directory which is to be scanned; this will probably&lt;br /&gt;
always be the mirror root from which Apache serves. &amp;lt;tt&amp;gt;duflags&amp;lt;/tt&amp;gt; specifies&lt;br /&gt;
the flags to be passed to &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt;. This is here so that it&#039;s easy to find&lt;br /&gt;
and alter. For instance, we could change &amp;lt;tt&amp;gt;--human-readable&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;--si&amp;lt;/tt&amp;gt;&lt;br /&gt;
if we ever decided that, like hard disk manufacturers, we want sizes to appear larger&lt;br /&gt;
than they are. &amp;lt;tt&amp;gt;output&amp;lt;/tt&amp;gt; defines the file to which the generated index will be&lt;br /&gt;
written.&lt;br /&gt;
&lt;br /&gt;
Finally, &amp;lt;tt&amp;gt;directories&amp;lt;/tt&amp;gt; specifies the list of directories to be listed.&lt;br /&gt;
No directories not listed here will be shown. If you add a new archive and it doesn&#039;t&lt;br /&gt;
appear, that&#039;s why. The format is fairly straightforward: simply name the directory&lt;br /&gt;
and provide a site (the display name in the &amp;quot;Project Site&amp;quot; column) and URL.&lt;br /&gt;
&lt;br /&gt;
One caveat here is that YAML does not allow tabs for whitespace. Indent with&lt;br /&gt;
two spaces to remain consistent with the existing file format, please. Also note&lt;br /&gt;
that the directory name is case-sensitive, as is always the case on Unix.&lt;br /&gt;
&lt;br /&gt;
Finally, the HTML index file is generated from &amp;lt;tt&amp;gt;index.mako&amp;lt;/tt&amp;gt;, a&lt;br /&gt;
[http://www.makotemplates.org/ Mako] template (which is mostly HTML anyhow).&lt;br /&gt;
If you really can&#039;t figure out how it works, look up the Mako documentation.&lt;br /&gt;
&lt;br /&gt;
=== FTP ===&lt;br /&gt;
&lt;br /&gt;
We use proftpd (standalone daemon) as our ftp server. To increase performance we disable DNS lookups in proftpd.conf:&lt;br /&gt;
&lt;br /&gt;
 UseReverseDNS           off&lt;br /&gt;
 IdentLookups            off&lt;br /&gt;
&lt;br /&gt;
We also limit the amount of CPU/memory resources used (e.g. to minimize [http://en.wikipedia.org/wiki/Globbing Globbing] resources):&lt;br /&gt;
&lt;br /&gt;
 RLimitCPU               session 10&lt;br /&gt;
 RLimitMemory            session 4096K&lt;br /&gt;
&lt;br /&gt;
We allow a maximum of 200 concurrent ftp sessions:&lt;br /&gt;
&lt;br /&gt;
 MaxInstances            500&lt;br /&gt;
 MaxClients              500&lt;br /&gt;
&lt;br /&gt;
=== rsync ===&lt;br /&gt;
&lt;br /&gt;
We use rsyncd (standalone daemon). We disable compression and checksumming in rsyncd.conf:&lt;br /&gt;
&lt;br /&gt;
 dont compress = *&lt;br /&gt;
 refuse options = c delete&lt;br /&gt;
&lt;br /&gt;
For ftp and rsync, the contents of /mirror/root/include/motd.msg are displayed when users connect.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2903</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2903"/>
		<updated>2010-12-05T19:20:23Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Other */ arm board&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,53,80,81,443,8000,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
* [[DNS]] master&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Hosts 1 TB &amp;lt;tt&amp;gt;/scratch&amp;lt;/tt&amp;gt; and exports via NFS (sec=krb5)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;denardo&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Sun Fire V210&lt;br /&gt;
* TI UltraSparc IIIi (Jalapeño)&lt;br /&gt;
* 2 GB RAM&lt;br /&gt;
* 160 GB RAID array&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
* [[DNS]] slave&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;nullsleep&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
nullsleep is an [http://csclub.uwaterloo.ca/misc/manuals/ASRock_ION_330.pdf ASRock ION 330] machine given to us by CSCF and funded by MEF&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel® Dual Core Atom™ 330&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* NVIDIA® ION™ graphics&lt;br /&gt;
* 320 GB hard drive&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
acek is connected to our TS-7800 ARM board via serial.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ARM board&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
We have a TS-7800 ARM board connected via serial to acek.&lt;br /&gt;
&lt;br /&gt;
For information on the ARM board&#039;s hardware see here:&lt;br /&gt;
http://www.embeddedarm.com/products/board-detail.php?product=ts-7800&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2902</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2902"/>
		<updated>2010-12-05T19:17:46Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* acesulfame-potassium */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,53,80,81,443,8000,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
* [[DNS]] master&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Hosts 1 TB &amp;lt;tt&amp;gt;/scratch&amp;lt;/tt&amp;gt; and exports via NFS (sec=krb5)&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;denardo&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Sun Fire V210&lt;br /&gt;
* TI UltraSparc IIIi (Jalapeño)&lt;br /&gt;
* 2 GB RAM&lt;br /&gt;
* 160 GB RAID array&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
* [[DNS]] slave&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;nullsleep&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
nullsleep is an [http://csclub.uwaterloo.ca/misc/manuals/ASRock_ION_330.pdf ASRock ION 330] machine given to us by CSCF and funded by MEF&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel® Dual Core Atom™ 330&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* NVIDIA® ION™ graphics&lt;br /&gt;
* 320 GB hard drive&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
acek is connected to our TS-7800 ARM board via serial.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Tshirt_Ideas&amp;diff=2863</id>
		<title>Tshirt Ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Tshirt_Ideas&amp;diff=2863"/>
		<updated>2010-09-18T19:08:18Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: Tshirt Ideas moved to Clothing Ideas: Better title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Clothing Ideas]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Clothing_Ideas&amp;diff=2862</id>
		<title>Clothing Ideas</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Clothing_Ideas&amp;diff=2862"/>
		<updated>2010-09-18T19:08:18Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: Tshirt Ideas moved to Clothing Ideas: Better title&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We should make new tshirts.&lt;br /&gt;
&lt;br /&gt;
Our old design is simple and awesome. Ian Goldberg said we suck and CSC used to have cooler tshirts with designs&lt;br /&gt;
&lt;br /&gt;
Note that a lot of people have our current shirt and therefore will not be buying it if we get the same design.&lt;br /&gt;
&lt;br /&gt;
== Old Design == &lt;br /&gt;
* These worked well. &lt;br /&gt;
* People already own them though, so they won&#039;t rebuy.&lt;br /&gt;
* Ian Goldberg said they were boring and that we used to have ones with designs. &lt;br /&gt;
&lt;br /&gt;
== Math is hard ==&lt;br /&gt;
* Front: &amp;quot;Math is hard, let&#039;s do Computer Science\n Computer Science Club&amp;quot; Back: Same as old shirt. Shirt could be pink with black writing&lt;br /&gt;
** ilcharle said he wouldn&#039;t want to wear it because someone might not get the reference and think that he thinks math is hard (see: insecure)&lt;br /&gt;
** ALT: &amp;quot;Computer Science is hard, let&#039;s go shopping!\n Computer Science Club&amp;quot;.  More direct reference to the barbie thing, the more thorough sarcasm should protect the egos of the insecure. &lt;br /&gt;
* A pink shirt would be awesome regardless.&lt;br /&gt;
&lt;br /&gt;
== CSC is the status quo ==&lt;br /&gt;
* An Uncle Sam-esque character saying &amp;quot;I&#039;ve payed my CSC membership, have &#039;&#039;you&#039;&#039;?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Themed designs ==&lt;br /&gt;
* A keyboard/laptop/computer gear toting figure battling with Cthulhu Mythos monsters (e.g. http://blog.jonnay.net/uploads/DONOTFUCKWITHCTHULHU.jpg)&lt;br /&gt;
* Something like the MathNEWS cover pages from Fall 2006&lt;br /&gt;
* A more artsy version of the CSC logo, with some nerdy joke &amp;lt;pre&amp;gt;:(){ :|:&amp;amp; };:&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Seasonal wear ==&lt;br /&gt;
* rjputins mentioned this, I&#039;ll let her fill this in.&lt;br /&gt;
&lt;br /&gt;
== Underwear == &lt;br /&gt;
* Again, something that rjputins mentioned. Useful for resurrecting no pants day?&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=2790</id>
		<title>Ceo</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=2790"/>
		<updated>2010-08-19T18:39:59Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Uploading Changes to Mirror */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ceo is the CSC member creation and administration interface. It was originally written in perl by persons of mysterious-ness, and was re-written in python by Michael Spang in early 2007. The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git].&lt;br /&gt;
&lt;br /&gt;
= Instructions/Usage =&lt;br /&gt;
ceo can be accessed by running the &amp;quot;ceo&amp;quot; command from a terminal, or terminal emulator.&lt;br /&gt;
By default, a curses-based menu interface is presented. Use the arrow keys to navigate;&lt;br /&gt;
on many screens, pressing a letter will select the next menu item beginning with that letter.&lt;br /&gt;
&lt;br /&gt;
=== Command-line Mode ===&lt;br /&gt;
Run ceo --help to see a list of command-line utilities.&lt;br /&gt;
&lt;br /&gt;
== Adding a New Member ==&lt;br /&gt;
After a new member has paid the membership fee and signed the Machine Usage Policy forms, a new member account is added to the CSC system by selecing &amp;quot;New Member&amp;quot; in ceo and following the on-screen instructions.  The new member&#039;s username is to be identical to their NEXUS username, if applicable.  For NEXUS users, the name and program fields will automatically be filled after a username is provided.&lt;br /&gt;
&lt;br /&gt;
== Renewing/Extending a Membership ==&lt;br /&gt;
A membership can be renewed or extended by selecting &amp;quot;Renew Membership&amp;quot; in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
== Hosted Clubs ==&lt;br /&gt;
Clubs are hosted free of charge.  To create a new club account use the &amp;quot;New Club&amp;quot; option in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
=== Club Representatives ===&lt;br /&gt;
At this time, there is no limit to the number of representatives a club may have, but representative accounts must be registered with the &amp;quot;New Club Rep&amp;quot; option, and renewed with the &amp;quot;Renew Club Rep&amp;quot; option.&lt;br /&gt;
&lt;br /&gt;
=== Other Club Features ===&lt;br /&gt;
For access to features beyond basic hosting (ie, databases), one of the club representatives will need to email the Systems Committee to have this set up.&lt;br /&gt;
&lt;br /&gt;
= Feature Requests and Ideas =&lt;br /&gt;
&lt;br /&gt;
* Create a graphical and/or online version of ceo&lt;br /&gt;
* Add new members to fuse and plugdev groups&lt;br /&gt;
&lt;br /&gt;
= Contributing to CEO =&lt;br /&gt;
&lt;br /&gt;
== Preliminary Steps ==&lt;br /&gt;
=== Generate a GPG Key ===&lt;br /&gt;
In order to sign the ceo packages you will need to generate yourself a GPG key if you do not already have one. Assuming you do not run&lt;br /&gt;
&lt;br /&gt;
 gpg --gen-key&lt;br /&gt;
&lt;br /&gt;
Choose option (2) DSA (sign only). Choose no expiration when prompted and then your full name and email when asked. It will ask you to confirm the information and then for a passphrase.&lt;br /&gt;
&lt;br /&gt;
=== Add Your Key To Mirror ===&lt;br /&gt;
 ssh mirror.csclub.uwaterloo.ca&lt;br /&gt;
 gpg --list-keys&lt;br /&gt;
&lt;br /&gt;
Locate the 8-character id string. For example &amp;quot;16E37635&amp;quot; in&lt;br /&gt;
 /users/m2ellis/.gnupg/pubring.gpg&lt;br /&gt;
 ---------------------------------&lt;br /&gt;
 pub   1024D/&#039;&#039;&#039;16E37635&#039;&#039;&#039; 2010-08-19&lt;br /&gt;
 uid                  Michael Ellis &amp;lt;me@michaelellis.ca&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you must add this id into the file /srv/debian/conf/uploaders on mirror&lt;br /&gt;
 sudo vim /srv/debian/conf/uploaders&lt;br /&gt;
&lt;br /&gt;
Now in another terminal run&lt;br /&gt;
 gpg --export --armor $KEYID&lt;br /&gt;
&lt;br /&gt;
Now on mirror run&lt;br /&gt;
 sudo -s&lt;br /&gt;
 GNUPGHOME=/srv/debian/gpg gpg --import&lt;br /&gt;
&lt;br /&gt;
Then paste the output from gpg --export --armor $KEYID and end with CTRL-D. It should give you a confirmation, example&lt;br /&gt;
 gpg: key 16E37635: public key &amp;quot;Michael Ellis &amp;lt;me@michaelellis.ca&amp;gt;&amp;quot; imported&lt;br /&gt;
 gpg: Total number processed: 1&lt;br /&gt;
 gpg:               imported: 1&lt;br /&gt;
&lt;br /&gt;
== Making Changes ==&lt;br /&gt;
The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git]. To checkout the code run&lt;br /&gt;
&lt;br /&gt;
 git clone ~git/public/pyceo.git&lt;br /&gt;
&lt;br /&gt;
When you are done making your change you need to update the changelog with dch. Assuming this is a minor incremental change run&lt;br /&gt;
&lt;br /&gt;
 dch -i&lt;br /&gt;
&lt;br /&gt;
Add a description of your change and then save and quit. Once you are sure of your changes commit them to the git repository and push them (test them first!). To build the package run debuild&lt;br /&gt;
&lt;br /&gt;
 debuild&lt;br /&gt;
&lt;br /&gt;
This will generate the *.deb files in the parent directory.&lt;br /&gt;
&lt;br /&gt;
=== Uploading Changes to Mirror ===&lt;br /&gt;
&lt;br /&gt;
In the directory containing the *.deb and *.changes files run&lt;br /&gt;
 dupload&lt;br /&gt;
&lt;br /&gt;
Then ssh to mirror and run&lt;br /&gt;
 sudo rrr-incoming&lt;br /&gt;
&lt;br /&gt;
The package should now be uploaded and you can update in the usual way with apt-get/aptitude.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=2789</id>
		<title>Ceo</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Ceo&amp;diff=2789"/>
		<updated>2010-08-19T18:21:10Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: More info about developing for ceo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;ceo is the CSC member creation and administration interface. It was originally written in perl by persons of mysterious-ness, and was re-written in python by Michael Spang in early 2007. The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git].&lt;br /&gt;
&lt;br /&gt;
= Instructions/Usage =&lt;br /&gt;
ceo can be accessed by running the &amp;quot;ceo&amp;quot; command from a terminal, or terminal emulator.&lt;br /&gt;
By default, a curses-based menu interface is presented. Use the arrow keys to navigate;&lt;br /&gt;
on many screens, pressing a letter will select the next menu item beginning with that letter.&lt;br /&gt;
&lt;br /&gt;
=== Command-line Mode ===&lt;br /&gt;
Run ceo --help to see a list of command-line utilities.&lt;br /&gt;
&lt;br /&gt;
== Adding a New Member ==&lt;br /&gt;
After a new member has paid the membership fee and signed the Machine Usage Policy forms, a new member account is added to the CSC system by selecing &amp;quot;New Member&amp;quot; in ceo and following the on-screen instructions.  The new member&#039;s username is to be identical to their NEXUS username, if applicable.  For NEXUS users, the name and program fields will automatically be filled after a username is provided.&lt;br /&gt;
&lt;br /&gt;
== Renewing/Extending a Membership ==&lt;br /&gt;
A membership can be renewed or extended by selecting &amp;quot;Renew Membership&amp;quot; in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
== Hosted Clubs ==&lt;br /&gt;
Clubs are hosted free of charge.  To create a new club account use the &amp;quot;New Club&amp;quot; option in the ceo interface.&lt;br /&gt;
&lt;br /&gt;
=== Club Representatives ===&lt;br /&gt;
At this time, there is no limit to the number of representatives a club may have, but representative accounts must be registered with the &amp;quot;New Club Rep&amp;quot; option, and renewed with the &amp;quot;Renew Club Rep&amp;quot; option.&lt;br /&gt;
&lt;br /&gt;
=== Other Club Features ===&lt;br /&gt;
For access to features beyond basic hosting (ie, databases), one of the club representatives will need to email the Systems Committee to have this set up.&lt;br /&gt;
&lt;br /&gt;
= Feature Requests and Ideas =&lt;br /&gt;
&lt;br /&gt;
* Create a graphical and/or online version of ceo&lt;br /&gt;
* Add new members to fuse and plugdev groups&lt;br /&gt;
&lt;br /&gt;
= Contributing to CEO =&lt;br /&gt;
&lt;br /&gt;
== Preliminary Steps ==&lt;br /&gt;
=== Generate a GPG Key ===&lt;br /&gt;
In order to sign the ceo packages you will need to generate yourself a GPG key if you do not already have one. Assuming you do not run&lt;br /&gt;
&lt;br /&gt;
 gpg --gen-key&lt;br /&gt;
&lt;br /&gt;
Choose option (2) DSA (sign only). Choose no expiration when prompted and then your full name and email when asked. It will ask you to confirm the information and then for a passphrase.&lt;br /&gt;
&lt;br /&gt;
=== Add Your Key To Mirror ===&lt;br /&gt;
 ssh mirror.csclub.uwaterloo.ca&lt;br /&gt;
 gpg --list-keys&lt;br /&gt;
&lt;br /&gt;
Locate the 8-character id string. For example &amp;quot;16E37635&amp;quot; in&lt;br /&gt;
 /users/m2ellis/.gnupg/pubring.gpg&lt;br /&gt;
 ---------------------------------&lt;br /&gt;
 pub   1024D/&#039;&#039;&#039;16E37635&#039;&#039;&#039; 2010-08-19&lt;br /&gt;
 uid                  Michael Ellis &amp;lt;me@michaelellis.ca&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you must add this id into the file /srv/debian/conf/uploaders on mirror&lt;br /&gt;
 sudo vim /srv/debian/conf/uploaders&lt;br /&gt;
&lt;br /&gt;
Now in another terminal run&lt;br /&gt;
 gpg --export --armor $KEYID&lt;br /&gt;
&lt;br /&gt;
Now on mirror run&lt;br /&gt;
 sudo -s&lt;br /&gt;
 GNUPGHOME=/srv/debian/gpg gpg --import&lt;br /&gt;
&lt;br /&gt;
Then paste the output from gpg --export --armor $KEYID and end with CTRL-D. It should give you a confirmation, example&lt;br /&gt;
 gpg: key 16E37635: public key &amp;quot;Michael Ellis &amp;lt;me@michaelellis.ca&amp;gt;&amp;quot; imported&lt;br /&gt;
 gpg: Total number processed: 1&lt;br /&gt;
 gpg:               imported: 1&lt;br /&gt;
&lt;br /&gt;
== Making Changes ==&lt;br /&gt;
The source-code for ceo can be found in git: [http://git.csclub.uwaterloo.ca/?p=public/pyceo.git;a=summary csclub:/users/git/public/pyceo.git]. To checkout the code run&lt;br /&gt;
&lt;br /&gt;
 git clone ~git/public/pyceo.git&lt;br /&gt;
&lt;br /&gt;
When you are done making your change you need to update the changelog with dch. Assuming this is a minor incremental change run&lt;br /&gt;
&lt;br /&gt;
 dch -i&lt;br /&gt;
&lt;br /&gt;
Add a description of your change and then save and quit. Once you are sure of your changes commit them to the git repository and push them (test them first!). To build the package run debuild&lt;br /&gt;
&lt;br /&gt;
 debuild&lt;br /&gt;
&lt;br /&gt;
This will generate the *.deb files in the parent directory.&lt;br /&gt;
&lt;br /&gt;
=== Uploading Changes to Mirror ===&lt;br /&gt;
&lt;br /&gt;
In the directory containing the *.deb and *.changes files run&lt;br /&gt;
 dupload&lt;br /&gt;
&lt;br /&gt;
Then ssh to mirror and run&lt;br /&gt;
 sudo rrr-incoming&lt;br /&gt;
&lt;br /&gt;
The package should not be uploaded and you can update in the usual way with apt-get/aptitude.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Past_Executive&amp;diff=2738</id>
		<title>Past Executive</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Past_Executive&amp;diff=2738"/>
		<updated>2010-08-16T19:26:40Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* W 10 */  correction to SA additions to office staff with keys&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definitions ==&lt;br /&gt;
 #define PR President&lt;br /&gt;
 #define VP Vice-president&lt;br /&gt;
 #define TR Treasurer&lt;br /&gt;
 #define SE Secretary&lt;br /&gt;
 #define SA Sysadmin&lt;br /&gt;
 #define OF Office Manager&lt;br /&gt;
&lt;br /&gt;
==W 97==&lt;br /&gt;
 PR:Dima Brodsky &lt;br /&gt;
 VP: Nikita Borisov &lt;br /&gt;
 TR: Stephen Mills&lt;br /&gt;
 SE: ejones&lt;br /&gt;
 SA: Alex Brodsky&lt;br /&gt;
 OF: Chris Doherty&lt;br /&gt;
 Librarian: Matt Corks &lt;br /&gt;
 Flasher: Paul Prescod &lt;br /&gt;
&lt;br /&gt;
==F 03==&lt;br /&gt;
 PR: sjdutoit&lt;br /&gt;
 VP: m3darrag&lt;br /&gt;
 TR: tmyklebu&lt;br /&gt;
 SE: jeperry&lt;br /&gt;
 SA: sfllaw&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==W 05==&lt;br /&gt;
&lt;br /&gt;
 PR: mtsay&lt;br /&gt;
 VP: lanortha&lt;br /&gt;
 TR: hkarau&lt;br /&gt;
 SE: domorton&lt;br /&gt;
 SA: tmyklebu&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==S 05==&lt;br /&gt;
&lt;br /&gt;
 PR: msherry&lt;br /&gt;
 VP: mdkess&lt;br /&gt;
 TR: apiccon&lt;br /&gt;
 SE: mbiggs&lt;br /&gt;
 SA: tmyklebu&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==F 05==&lt;br /&gt;
&lt;br /&gt;
 PR: &lt;br /&gt;
 VP: &lt;br /&gt;
 TR: &lt;br /&gt;
 SE: &lt;br /&gt;
 SA: hkarau&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==W 06==&lt;br /&gt;
&lt;br /&gt;
 PR: tmyklebu&lt;br /&gt;
 VP: mdruker&lt;br /&gt;
 TR: &lt;br /&gt;
 SE: &lt;br /&gt;
 SA:&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==S 07==&lt;br /&gt;
 PR: &lt;br /&gt;
 VP: kmlarose&lt;br /&gt;
 TR: kspaans&lt;br /&gt;
 SE: &lt;br /&gt;
 SA: mspang, daltenty (both)&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==F 07==&lt;br /&gt;
 PR: hkarau&lt;br /&gt;
 VP: amccausl&lt;br /&gt;
 TR: dchlobow &lt;br /&gt;
 SE: sgcummin&lt;br /&gt;
 SA: &lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==W 08==&lt;br /&gt;
 PR: sgcummin&lt;br /&gt;
 VP: m3lawren&lt;br /&gt;
 TR: mtarkows&lt;br /&gt;
 SE: ebering&lt;br /&gt;
 SA: jmsaunde&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==S 08==&lt;br /&gt;
 PR: b4taylor&lt;br /&gt;
 VP: qxi&lt;br /&gt;
 TR:&lt;br /&gt;
 SE:&lt;br /&gt;
 SA:&lt;br /&gt;
 OF:&lt;br /&gt;
   &lt;br /&gt;
==F 08 ==&lt;br /&gt;
 PR: m3lawren&lt;br /&gt;
 VP: ebering&lt;br /&gt;
 TR: mgregson&lt;br /&gt;
 SE: j2simpso / dchlobo (medical reasons.)&lt;br /&gt;
 SA: kspaans&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==W 09==&lt;br /&gt;
 PR: mgregson&lt;br /&gt;
 VP: ebering&lt;br /&gt;
 TR: b4taylor&lt;br /&gt;
 SE: j2simpso / nobody (quit for &amp;quot;business&amp;quot; reasons.)&lt;br /&gt;
 SA: j3parker &lt;br /&gt;
 OF: x23yang / sagervai (both)&lt;br /&gt;
&lt;br /&gt;
==S 09 ==&lt;br /&gt;
 PR: mspang&lt;br /&gt;
 VP: j3parker &lt;br /&gt;
 TR: sagervai&lt;br /&gt;
 SE: mimcpher&lt;br /&gt;
 SA: a2brenna&lt;br /&gt;
 OF:&lt;br /&gt;
&lt;br /&gt;
==F 09==&lt;br /&gt;
 PR: j3parker&lt;br /&gt;
 VP: ebering &lt;br /&gt;
 TR: mspang&lt;br /&gt;
 SE: b4taylor&lt;br /&gt;
 SA: m2ellis&lt;br /&gt;
 OF: rputinski&lt;br /&gt;
&lt;br /&gt;
==W 10==&lt;br /&gt;
 PR: Kyle Spaans (kspaans)&lt;br /&gt;
 VP: Edgar Bering (ebering)&lt;br /&gt;
 TR: Sapphyre Gervais (sagervai)&lt;br /&gt;
 SE: Ajnu Jacob (ajacob)&lt;br /&gt;
 SA: Matthew Thiffault (mthiffau)&lt;br /&gt;
 OF: Jacob Parker (j3parker)&lt;br /&gt;
&lt;br /&gt;
 Keyed office staffers: j3camero,jdonland,m2ellis,mimcpher,nsasherr&lt;br /&gt;
&lt;br /&gt;
==S 10==&lt;br /&gt;
 PR: Jeff Cameron (j3camero)&lt;br /&gt;
 VP: Brennan Taylor (b4taylor)&lt;br /&gt;
 TR: Vardhan Mudunuru (vmudunur)&lt;br /&gt;
 SE: Matthew Lawrence (m3lawren)&lt;br /&gt;
 SA: Michael Ellis (m2ellis)&lt;br /&gt;
 OF: Edgar Bering (ebering)&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2716</id>
		<title>Mirror</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2716"/>
		<updated>2010-08-10T21:04:41Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Proposed Archives to Mirror */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We currently run a public mirror ([http://mirror.csclub.uwaterloo.ca/ mirror.csclub.uwaterloo.ca]) on [[Machine_List#sodium-benzoate|sodium-benzoate]]. We are listed on the ResNet [http://noc.uwaterloo.ca/cn/Stats/resReport &amp;quot;don&#039;t count&amp;quot; list] so downloading from our mirror will not count against one&#039;s ResNet quota. Requests to mirror a particular distribution or archive should be made to syscom@csclub.uwaterloo.ca. We also have a [http://cacti.csclub.uwaterloo.ca/graph_image.php?action=view&amp;amp;local_graph_id=1560&amp;amp;rra_id=1&amp;amp;graph_height=120&amp;amp;graph_width=440 bandwidth graph] you can look at.&lt;br /&gt;
&lt;br /&gt;
== Archives Mirrored ==&lt;br /&gt;
For a list of what is currently mirrored and their respective disk usage see http://mirror.csclub.uwaterloo.ca/&lt;br /&gt;
&lt;br /&gt;
== Proposed Archives to Mirror ==&lt;br /&gt;
&lt;br /&gt;
* Mandriva&lt;br /&gt;
* NetBSD&lt;br /&gt;
* PCLinuxOS&lt;br /&gt;
* OpenSSL&lt;br /&gt;
* RubyForge&lt;br /&gt;
* SourceForge&lt;br /&gt;
* MacPorts&lt;br /&gt;
* VLC&lt;br /&gt;
&lt;br /&gt;
== Implementation Details ==&lt;br /&gt;
&lt;br /&gt;
The mirroring is done by one of three scripts. The latter two are based on [http://www.debian.org/mirror/anonftpsync anonftpsync]. [[#merlin|merlin]] is used to call one of these scripts. Most of the scripts and such used to maintain the mirror are available in the public [http://git.csclub.uwaterloo.ca/?p=public/mirror.git mirror.git] repository.&lt;br /&gt;
&lt;br /&gt;
=== ftpsync ===&lt;br /&gt;
&lt;br /&gt;
[http://ftp-master.debian.org/ftpsync.tar.gz ftpsync] is the official Debian mirror synchronization tool, and is used to rsync the Debian repository. It&#039;s located in ~mirror/debian. Its invocation takes a few steps (this is more or less how [[#merlin|merlin]] invokes it:&lt;br /&gt;
&lt;br /&gt;
 export BASEDIR=/home/mirror/debian&lt;br /&gt;
 cd $BASEDIR&lt;br /&gt;
 ./bin/ftpsync sync:stage1&lt;br /&gt;
 ./bin/ftpsync sync:stage2&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-debian ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync debian-style repositories. Its usage is:&lt;br /&gt;
 csc-sync-debian local_dir rsync_host rsync_dir [trace_host [trace_dir]]&lt;br /&gt;
&lt;br /&gt;
If trace_host is specified, then $rsync_dir/project/trace/$trace_host is checked to see if it has changed. If it has, a normal debian-style (two-pass) rsync is done.&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-standard ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync a tree in a general way. Like anonftpsync, it supports locking and logging. Its usage is:&lt;br /&gt;
&lt;br /&gt;
 csc-sync-standard local_dir rsync_host rsync_dir&lt;br /&gt;
&lt;br /&gt;
=== merlin ===&lt;br /&gt;
&lt;br /&gt;
The synchronization process is run by a Python script called &amp;quot;merlin&amp;quot;, written by a2brenna, stored in ~mirror/merlin. The repository list, sync time, etc. is maintained in merlin.py.&lt;br /&gt;
&lt;br /&gt;
=== HTTP ===&lt;br /&gt;
&lt;br /&gt;
We use [[Apache]] as our web server. Here&#039;s a snippet of the worker configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule mpm_worker_module&amp;gt;&lt;br /&gt;
     ServerLimit          64&lt;br /&gt;
     ThreadLimit          64&lt;br /&gt;
     StartServers          2&lt;br /&gt;
     MaxClients         4096&lt;br /&gt;
     MinSpareThreads      16&lt;br /&gt;
     MaxSpareThreads      48&lt;br /&gt;
     ThreadsPerChild      64&lt;br /&gt;
     MaxRequestsPerChild   0&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We use the bwbar application to display current bandwidth in the footer of mirror pages.&lt;br /&gt;
&lt;br /&gt;
==== Index ====&lt;br /&gt;
&lt;br /&gt;
An index of the archives we mirror is available at http://mirror.csclub.uwaterloo.ca/.&lt;br /&gt;
As of Winter 2010, it is now generated by a Python script in &amp;lt;tt&amp;gt;~mirror/mirror-index&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;~mirror/mirror-index/make-index.py&amp;lt;/tt&amp;gt; is scheduled in &amp;lt;tt&amp;gt;mirror&amp;lt;/tt&amp;gt;&#039;s crontab to be&lt;br /&gt;
run at 5:40 AM on the 14th and 28th of each month. The script can be run manually when needed&lt;br /&gt;
(for example, when an archive is removed) as follows:&lt;br /&gt;
&lt;br /&gt;
 sudo -u mirror /home/mirror/mirror-index/make-index.py&lt;br /&gt;
&lt;br /&gt;
This causes an instance of &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt; to be run which computes the size of each directory. This&lt;br /&gt;
list is then sorted alphabetically by directory name and returned to the Python script.&lt;br /&gt;
If any errors occur during this process, the script conservatively chooses to exit rather&lt;br /&gt;
than risk generating an index file that is incorrect.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;make-index.py&amp;lt;/tt&amp;gt; is configured by means of a [http://www.yaml.org/ YAML] file,&lt;br /&gt;
&amp;lt;tt&amp;gt;config.yaml&amp;lt;/tt&amp;gt;, in the same directory. Its format is as follows:&lt;br /&gt;
&lt;br /&gt;
 docroot: /mirror/root&lt;br /&gt;
 duflags: --human-readable --max-depth=1&lt;br /&gt;
 output: /mirror/root/index.html&lt;br /&gt;
 &lt;br /&gt;
 directories:&lt;br /&gt;
   apache:&lt;br /&gt;
     site: apache.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.apache.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
   archlinux:&lt;br /&gt;
     site: archlinux.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.archlinux.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 # (...)&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;tt&amp;gt;docroot&amp;lt;/tt&amp;gt; is the directory which is to be scanned; this will probably&lt;br /&gt;
always be the mirror root from which Apache serves. &amp;lt;tt&amp;gt;duflags&amp;lt;/tt&amp;gt; specifies&lt;br /&gt;
the flags to be passed to &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt;. This is here so that it&#039;s easy to find&lt;br /&gt;
and alter. For instance, we could change &amp;lt;tt&amp;gt;--human-readable&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;--si&amp;lt;/tt&amp;gt;&lt;br /&gt;
if we ever decided that, like hard disk manufacturers, we want sizes to appear larger&lt;br /&gt;
than they are. &amp;lt;tt&amp;gt;output&amp;lt;/tt&amp;gt; defines the file to which the generated index will be&lt;br /&gt;
written.&lt;br /&gt;
&lt;br /&gt;
Finally, &amp;lt;tt&amp;gt;directories&amp;lt;/tt&amp;gt; specifies the list of directories to be listed.&lt;br /&gt;
No directories not listed here will be shown. If you add a new archive and it doesn&#039;t&lt;br /&gt;
appear, that&#039;s why. The format is fairly straightforward: simply name the directory&lt;br /&gt;
and provide a site (the display name in the &amp;quot;Project Site&amp;quot; column) and URL.&lt;br /&gt;
&lt;br /&gt;
One caveat here is that YAML does not allow tabs for whitespace. Indent with&lt;br /&gt;
two spaces to remain consistent with the existing file format, please. Also note&lt;br /&gt;
that the directory name is case-sensitive, as is always the case on Unix.&lt;br /&gt;
&lt;br /&gt;
Finally, the HTML index file is generated from &amp;lt;tt&amp;gt;index.mako&amp;lt;/tt&amp;gt;, a&lt;br /&gt;
[http://www.makotemplates.org/ Mako] template (which is mostly HTML anyhow).&lt;br /&gt;
If you really can&#039;t figure out how it works, look up the Mako documentation.&lt;br /&gt;
&lt;br /&gt;
=== FTP ===&lt;br /&gt;
&lt;br /&gt;
We use proftpd (standalone daemon) as our ftp server. To increase performance we disable DNS lookups in proftpd.conf:&lt;br /&gt;
&lt;br /&gt;
 UseReverseDNS           off&lt;br /&gt;
 IdentLookups            off&lt;br /&gt;
&lt;br /&gt;
We also limit the amount of CPU/memory resources used (e.g. to minimize [http://en.wikipedia.org/wiki/Globbing Globbing] resources):&lt;br /&gt;
&lt;br /&gt;
 RLimitCPU               session 10&lt;br /&gt;
 RLimitMemory            session 4096K&lt;br /&gt;
&lt;br /&gt;
We allow a maximum of 200 concurrent ftp sessions:&lt;br /&gt;
&lt;br /&gt;
 MaxInstances            500&lt;br /&gt;
 MaxClients              500&lt;br /&gt;
&lt;br /&gt;
=== rsync ===&lt;br /&gt;
&lt;br /&gt;
We use rsyncd (standalone daemon). We disable compression and checksumming in rsyncd.conf:&lt;br /&gt;
&lt;br /&gt;
 dont compress = *&lt;br /&gt;
 refuse options = c delete&lt;br /&gt;
&lt;br /&gt;
For ftp and rsync, the contents of /mirror/root/include/motd.msg are displayed when users connect.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2715</id>
		<title>Mirror</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2715"/>
		<updated>2010-08-10T18:54:37Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Proposed Archives to Mirror */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We currently run a public mirror ([http://mirror.csclub.uwaterloo.ca/ mirror.csclub.uwaterloo.ca]) on [[Machine_List#sodium-benzoate|sodium-benzoate]]. We are listed on the ResNet [http://noc.uwaterloo.ca/cn/Stats/resReport &amp;quot;don&#039;t count&amp;quot; list] so downloading from our mirror will not count against one&#039;s ResNet quota. Requests to mirror a particular distribution or archive should be made to syscom@csclub.uwaterloo.ca. We also have a [http://cacti.csclub.uwaterloo.ca/graph_image.php?action=view&amp;amp;local_graph_id=1560&amp;amp;rra_id=1&amp;amp;graph_height=120&amp;amp;graph_width=440 bandwidth graph] you can look at.&lt;br /&gt;
&lt;br /&gt;
== Archives Mirrored ==&lt;br /&gt;
For a list of what is currently mirrored and their respective disk usage see http://mirror.csclub.uwaterloo.ca/&lt;br /&gt;
&lt;br /&gt;
== Proposed Archives to Mirror ==&lt;br /&gt;
&lt;br /&gt;
* Mandriva&lt;br /&gt;
* NetBSD&lt;br /&gt;
* PCLinuxOS&lt;br /&gt;
* OpenSSL&lt;br /&gt;
* RubyForge&lt;br /&gt;
* SourceForge&lt;br /&gt;
* MacPorts&lt;br /&gt;
* PLT Scheme (they don&#039;t ask for mirrors, but they currently offer download from half a dozen or so sites)&lt;br /&gt;
* VLC&lt;br /&gt;
&lt;br /&gt;
== Implementation Details ==&lt;br /&gt;
&lt;br /&gt;
The mirroring is done by one of three scripts. The latter two are based on [http://www.debian.org/mirror/anonftpsync anonftpsync]. [[#merlin|merlin]] is used to call one of these scripts. Most of the scripts and such used to maintain the mirror are available in the public [http://git.csclub.uwaterloo.ca/?p=public/mirror.git mirror.git] repository.&lt;br /&gt;
&lt;br /&gt;
=== ftpsync ===&lt;br /&gt;
&lt;br /&gt;
[http://ftp-master.debian.org/ftpsync.tar.gz ftpsync] is the official Debian mirror synchronization tool, and is used to rsync the Debian repository. It&#039;s located in ~mirror/debian. Its invocation takes a few steps (this is more or less how [[#merlin|merlin]] invokes it:&lt;br /&gt;
&lt;br /&gt;
 export BASEDIR=/home/mirror/debian&lt;br /&gt;
 cd $BASEDIR&lt;br /&gt;
 ./bin/ftpsync sync:stage1&lt;br /&gt;
 ./bin/ftpsync sync:stage2&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-debian ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync debian-style repositories. Its usage is:&lt;br /&gt;
 csc-sync-debian local_dir rsync_host rsync_dir [trace_host [trace_dir]]&lt;br /&gt;
&lt;br /&gt;
If trace_host is specified, then $rsync_dir/project/trace/$trace_host is checked to see if it has changed. If it has, a normal debian-style (two-pass) rsync is done.&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-standard ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync a tree in a general way. Like anonftpsync, it supports locking and logging. Its usage is:&lt;br /&gt;
&lt;br /&gt;
 csc-sync-standard local_dir rsync_host rsync_dir&lt;br /&gt;
&lt;br /&gt;
=== merlin ===&lt;br /&gt;
&lt;br /&gt;
The synchronization process is run by a Python script called &amp;quot;merlin&amp;quot;, written by a2brenna, stored in ~mirror/merlin. The repository list, sync time, etc. is maintained in merlin.py.&lt;br /&gt;
&lt;br /&gt;
=== HTTP ===&lt;br /&gt;
&lt;br /&gt;
We use [[Apache]] as our web server. Here&#039;s a snippet of the worker configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule mpm_worker_module&amp;gt;&lt;br /&gt;
     ServerLimit          64&lt;br /&gt;
     ThreadLimit          64&lt;br /&gt;
     StartServers          2&lt;br /&gt;
     MaxClients         4096&lt;br /&gt;
     MinSpareThreads      16&lt;br /&gt;
     MaxSpareThreads      48&lt;br /&gt;
     ThreadsPerChild      64&lt;br /&gt;
     MaxRequestsPerChild   0&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We use the bwbar application to display current bandwidth in the footer of mirror pages.&lt;br /&gt;
&lt;br /&gt;
==== Index ====&lt;br /&gt;
&lt;br /&gt;
An index of the archives we mirror is available at http://mirror.csclub.uwaterloo.ca/.&lt;br /&gt;
As of Winter 2010, it is now generated by a Python script in &amp;lt;tt&amp;gt;~mirror/mirror-index&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;~mirror/mirror-index/make-index.py&amp;lt;/tt&amp;gt; is scheduled in &amp;lt;tt&amp;gt;mirror&amp;lt;/tt&amp;gt;&#039;s crontab to be&lt;br /&gt;
run at 5:40 AM on the 14th and 28th of each month. The script can be run manually when needed&lt;br /&gt;
(for example, when an archive is removed) as follows:&lt;br /&gt;
&lt;br /&gt;
 sudo -u mirror /home/mirror/mirror-index/make-index.py&lt;br /&gt;
&lt;br /&gt;
This causes an instance of &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt; to be run which computes the size of each directory. This&lt;br /&gt;
list is then sorted alphabetically by directory name and returned to the Python script.&lt;br /&gt;
If any errors occur during this process, the script conservatively chooses to exit rather&lt;br /&gt;
than risk generating an index file that is incorrect.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;make-index.py&amp;lt;/tt&amp;gt; is configured by means of a [http://www.yaml.org/ YAML] file,&lt;br /&gt;
&amp;lt;tt&amp;gt;config.yaml&amp;lt;/tt&amp;gt;, in the same directory. Its format is as follows:&lt;br /&gt;
&lt;br /&gt;
 docroot: /mirror/root&lt;br /&gt;
 duflags: --human-readable --max-depth=1&lt;br /&gt;
 output: /mirror/root/index.html&lt;br /&gt;
 &lt;br /&gt;
 directories:&lt;br /&gt;
   apache:&lt;br /&gt;
     site: apache.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.apache.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
   archlinux:&lt;br /&gt;
     site: archlinux.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.archlinux.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 # (...)&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;tt&amp;gt;docroot&amp;lt;/tt&amp;gt; is the directory which is to be scanned; this will probably&lt;br /&gt;
always be the mirror root from which Apache serves. &amp;lt;tt&amp;gt;duflags&amp;lt;/tt&amp;gt; specifies&lt;br /&gt;
the flags to be passed to &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt;. This is here so that it&#039;s easy to find&lt;br /&gt;
and alter. For instance, we could change &amp;lt;tt&amp;gt;--human-readable&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;--si&amp;lt;/tt&amp;gt;&lt;br /&gt;
if we ever decided that, like hard disk manufacturers, we want sizes to appear larger&lt;br /&gt;
than they are. &amp;lt;tt&amp;gt;output&amp;lt;/tt&amp;gt; defines the file to which the generated index will be&lt;br /&gt;
written.&lt;br /&gt;
&lt;br /&gt;
Finally, &amp;lt;tt&amp;gt;directories&amp;lt;/tt&amp;gt; specifies the list of directories to be listed.&lt;br /&gt;
No directories not listed here will be shown. If you add a new archive and it doesn&#039;t&lt;br /&gt;
appear, that&#039;s why. The format is fairly straightforward: simply name the directory&lt;br /&gt;
and provide a site (the display name in the &amp;quot;Project Site&amp;quot; column) and URL.&lt;br /&gt;
&lt;br /&gt;
One caveat here is that YAML does not allow tabs for whitespace. Indent with&lt;br /&gt;
two spaces to remain consistent with the existing file format, please. Also note&lt;br /&gt;
that the directory name is case-sensitive, as is always the case on Unix.&lt;br /&gt;
&lt;br /&gt;
Finally, the HTML index file is generated from &amp;lt;tt&amp;gt;index.mako&amp;lt;/tt&amp;gt;, a&lt;br /&gt;
[http://www.makotemplates.org/ Mako] template (which is mostly HTML anyhow).&lt;br /&gt;
If you really can&#039;t figure out how it works, look up the Mako documentation.&lt;br /&gt;
&lt;br /&gt;
=== FTP ===&lt;br /&gt;
&lt;br /&gt;
We use proftpd (standalone daemon) as our ftp server. To increase performance we disable DNS lookups in proftpd.conf:&lt;br /&gt;
&lt;br /&gt;
 UseReverseDNS           off&lt;br /&gt;
 IdentLookups            off&lt;br /&gt;
&lt;br /&gt;
We also limit the amount of CPU/memory resources used (e.g. to minimize [http://en.wikipedia.org/wiki/Globbing Globbing] resources):&lt;br /&gt;
&lt;br /&gt;
 RLimitCPU               session 10&lt;br /&gt;
 RLimitMemory            session 4096K&lt;br /&gt;
&lt;br /&gt;
We allow a maximum of 200 concurrent ftp sessions:&lt;br /&gt;
&lt;br /&gt;
 MaxInstances            500&lt;br /&gt;
 MaxClients              500&lt;br /&gt;
&lt;br /&gt;
=== rsync ===&lt;br /&gt;
&lt;br /&gt;
We use rsyncd (standalone daemon). We disable compression and checksumming in rsyncd.conf:&lt;br /&gt;
&lt;br /&gt;
 dont compress = *&lt;br /&gt;
 refuse options = c delete&lt;br /&gt;
&lt;br /&gt;
For ftp and rsync, the contents of /mirror/root/include/motd.msg are displayed when users connect.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2714</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2714"/>
		<updated>2010-08-06T19:56:07Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;nullsleep&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
nullsleep is an [http://csclub.uwaterloo.ca/misc/manuals/ASRock_ION_330.pdf ASRock ION 330] machine given to us by CSCF and funded by MEF&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel® Dual Core Atom™ 330&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* NVIDIA® ION™ graphics&lt;br /&gt;
* 320 GB hard drive&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2713</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2713"/>
		<updated>2010-08-06T19:55:46Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Office Terminals */ added nullsleep&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;nullsleep&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
nullsleep is an [http://csclub.uwaterloo.ca/misc/manuals/ASRock_ION_330.pdf ASRock ION 330] machine given to us by CSCF and funded by MEF&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel® Dual Core Atom™ 330&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* NVIDIA® ION™ graphics&lt;br /&gt;
* 320 GB hard drive&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2712</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2712"/>
		<updated>2010-07-24T19:29:41Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2711</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2711"/>
		<updated>2010-07-24T19:27:52Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* dextroamphetamine-saccharate (Decommissioned) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2710</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2710"/>
		<updated>2010-07-24T19:26:51Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2709</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2709"/>
		<updated>2010-07-24T19:26:40Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2708</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2708"/>
		<updated>2010-07-24T19:25:53Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Retired. Currently on loan to PMC to be returned to CMC&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2707</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2707"/>
		<updated>2010-07-24T19:25:28Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Speakers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2706</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2706"/>
		<updated>2010-07-24T19:25:16Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Speakers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 5.1 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2705</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2705"/>
		<updated>2010-07-24T19:24:42Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* nVidea GeForce GT 240&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2704</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2704"/>
		<updated>2010-07-24T19:24:05Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* bit-shifter */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel(R) Core(TM)2 Quad CPU    Q8300&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/motherboard_manual_ga-ep45-ud3l.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* 1x 750GB Segate SATA drive&lt;br /&gt;
* 1x 80GB IDE Drive (part of a striped LVM volume for /video)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2703</id>
		<title>Mirror</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mirror&amp;diff=2703"/>
		<updated>2010-07-21T02:49:38Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Archives Mirrored */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We currently run a public mirror ([http://mirror.csclub.uwaterloo.ca/ mirror.csclub.uwaterloo.ca]) on [[Machine_List#sodium-benzoate|sodium-benzoate]]. We are listed on the ResNet [http://noc.uwaterloo.ca/cn/Stats/resReport &amp;quot;don&#039;t count&amp;quot; list] so downloading from our mirror will not count against one&#039;s ResNet quota. Requests to mirror a particular distribution or archive should be made to syscom@csclub.uwaterloo.ca. We also have a [http://cacti.csclub.uwaterloo.ca/graph_image.php?action=view&amp;amp;local_graph_id=1560&amp;amp;rra_id=1&amp;amp;graph_height=120&amp;amp;graph_width=440 bandwidth graph] you can look at.&lt;br /&gt;
&lt;br /&gt;
== Archives Mirrored ==&lt;br /&gt;
For a list of what is currently mirrored and their respective disk usage see http://mirror.csclub.uwaterloo.ca/&lt;br /&gt;
&lt;br /&gt;
== Proposed Archives to Mirror ==&lt;br /&gt;
&lt;br /&gt;
* Mandriva&lt;br /&gt;
* OpenBSD (inc. OpenSSH)&lt;br /&gt;
* NetBSD&lt;br /&gt;
* PCLinuxOS&lt;br /&gt;
* OpenSSL&lt;br /&gt;
* RubyForge&lt;br /&gt;
* SourceForge&lt;br /&gt;
* MacPorts&lt;br /&gt;
* PLT Scheme (they don&#039;t ask for mirrors, but they currently offer download from half a dozen or so sites)&lt;br /&gt;
* VLC&lt;br /&gt;
&lt;br /&gt;
== Implementation Details ==&lt;br /&gt;
&lt;br /&gt;
The mirroring is done by one of three scripts. The latter two are based on [http://www.debian.org/mirror/anonftpsync anonftpsync]. [[#merlin|merlin]] is used to call one of these scripts. Most of the scripts and such used to maintain the mirror are available in the public [http://git.csclub.uwaterloo.ca/?p=public/mirror.git mirror.git] repository.&lt;br /&gt;
&lt;br /&gt;
=== ftpsync ===&lt;br /&gt;
&lt;br /&gt;
[http://ftp-master.debian.org/ftpsync.tar.gz ftpsync] is the official Debian mirror synchronization tool, and is used to rsync the Debian repository. It&#039;s located in ~mirror/debian. Its invocation takes a few steps (this is more or less how [[#merlin|merlin]] invokes it:&lt;br /&gt;
&lt;br /&gt;
 export BASEDIR=/home/mirror/debian&lt;br /&gt;
 cd $BASEDIR&lt;br /&gt;
 ./bin/ftpsync sync:stage1&lt;br /&gt;
 ./bin/ftpsync sync:stage2&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-debian ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync debian-style repositories. Its usage is:&lt;br /&gt;
 csc-sync-debian local_dir rsync_host rsync_dir [trace_host [trace_dir]]&lt;br /&gt;
&lt;br /&gt;
If trace_host is specified, then $rsync_dir/project/trace/$trace_host is checked to see if it has changed. If it has, a normal debian-style (two-pass) rsync is done.&lt;br /&gt;
&lt;br /&gt;
=== csc-sync-standard ===&lt;br /&gt;
&lt;br /&gt;
This is used to sync a tree in a general way. Like anonftpsync, it supports locking and logging. Its usage is:&lt;br /&gt;
&lt;br /&gt;
 csc-sync-standard local_dir rsync_host rsync_dir&lt;br /&gt;
&lt;br /&gt;
=== merlin ===&lt;br /&gt;
&lt;br /&gt;
The synchronization process is run by a Python script called &amp;quot;merlin&amp;quot;, written by a2brenna, stored in ~mirror/merlin. The repository list, sync time, etc. is maintained in merlin.py.&lt;br /&gt;
&lt;br /&gt;
=== HTTP ===&lt;br /&gt;
&lt;br /&gt;
We use [[Apache]] as our web server. Here&#039;s a snippet of the worker configuration:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;IfModule mpm_worker_module&amp;gt;&lt;br /&gt;
     ServerLimit          64&lt;br /&gt;
     ThreadLimit          64&lt;br /&gt;
     StartServers          2&lt;br /&gt;
     MaxClients         4096&lt;br /&gt;
     MinSpareThreads      16&lt;br /&gt;
     MaxSpareThreads      48&lt;br /&gt;
     ThreadsPerChild      64&lt;br /&gt;
     MaxRequestsPerChild   0&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We use the bwbar application to display current bandwidth in the footer of mirror pages.&lt;br /&gt;
&lt;br /&gt;
==== Index ====&lt;br /&gt;
&lt;br /&gt;
An index of the archives we mirror is available at http://mirror.csclub.uwaterloo.ca/.&lt;br /&gt;
As of Winter 2010, it is now generated by a Python script in &amp;lt;tt&amp;gt;~mirror/mirror-index&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;~mirror/mirror-index/make-index.py&amp;lt;/tt&amp;gt; is scheduled in &amp;lt;tt&amp;gt;mirror&amp;lt;/tt&amp;gt;&#039;s crontab to be&lt;br /&gt;
run at 5:40 AM on the 14th and 28th of each month. The script can be run manually when needed&lt;br /&gt;
(for example, when an archive is removed) as follows:&lt;br /&gt;
&lt;br /&gt;
 sudo -u mirror /home/mirror/mirror-index/make-index.py&lt;br /&gt;
&lt;br /&gt;
This causes an instance of &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt; to be run which computes the size of each directory. This&lt;br /&gt;
list is then sorted alphabetically by directory name and returned to the Python script.&lt;br /&gt;
If any errors occur during this process, the script conservatively chooses to exit rather&lt;br /&gt;
than risk generating an index file that is incorrect.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;make-index.py&amp;lt;/tt&amp;gt; is configured by means of a [http://www.yaml.org/ YAML] file,&lt;br /&gt;
&amp;lt;tt&amp;gt;config.yaml&amp;lt;/tt&amp;gt;, in the same directory. Its format is as follows:&lt;br /&gt;
&lt;br /&gt;
 docroot: /mirror/root&lt;br /&gt;
 duflags: --human-readable --max-depth=1&lt;br /&gt;
 output: /mirror/root/index.html&lt;br /&gt;
 &lt;br /&gt;
 directories:&lt;br /&gt;
   apache:&lt;br /&gt;
     site: apache.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.apache.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
   archlinux:&lt;br /&gt;
     site: archlinux.org&lt;br /&gt;
     url: &amp;lt;nowiki&amp;gt;http://www.archlinux.org/&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
 # (...)&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;tt&amp;gt;docroot&amp;lt;/tt&amp;gt; is the directory which is to be scanned; this will probably&lt;br /&gt;
always be the mirror root from which Apache serves. &amp;lt;tt&amp;gt;duflags&amp;lt;/tt&amp;gt; specifies&lt;br /&gt;
the flags to be passed to &amp;lt;tt&amp;gt;du&amp;lt;/tt&amp;gt;. This is here so that it&#039;s easy to find&lt;br /&gt;
and alter. For instance, we could change &amp;lt;tt&amp;gt;--human-readable&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;--si&amp;lt;/tt&amp;gt;&lt;br /&gt;
if we ever decided that, like hard disk manufacturers, we want sizes to appear larger&lt;br /&gt;
than they are. &amp;lt;tt&amp;gt;output&amp;lt;/tt&amp;gt; defines the file to which the generated index will be&lt;br /&gt;
written.&lt;br /&gt;
&lt;br /&gt;
Finally, &amp;lt;tt&amp;gt;directories&amp;lt;/tt&amp;gt; specifies the list of directories to be listed.&lt;br /&gt;
No directories not listed here will be shown. If you add a new archive and it doesn&#039;t&lt;br /&gt;
appear, that&#039;s why. The format is fairly straightforward: simply name the directory&lt;br /&gt;
and provide a site (the display name in the &amp;quot;Project Site&amp;quot; column) and URL.&lt;br /&gt;
&lt;br /&gt;
One caveat here is that YAML does not allow tabs for whitespace. Indent with&lt;br /&gt;
two spaces to remain consistent with the existing file format, please. Also note&lt;br /&gt;
that the directory name is case-sensitive, as is always the case on Unix.&lt;br /&gt;
&lt;br /&gt;
Finally, the HTML index file is generated from &amp;lt;tt&amp;gt;index.mako&amp;lt;/tt&amp;gt;, a&lt;br /&gt;
[http://www.makotemplates.org/ Mako] template (which is mostly HTML anyhow).&lt;br /&gt;
If you really can&#039;t figure out how it works, look up the Mako documentation.&lt;br /&gt;
&lt;br /&gt;
=== FTP ===&lt;br /&gt;
&lt;br /&gt;
We use proftpd (standalone daemon) as our ftp server. To increase performance we disable DNS lookups in proftpd.conf:&lt;br /&gt;
&lt;br /&gt;
 UseReverseDNS           off&lt;br /&gt;
 IdentLookups            off&lt;br /&gt;
&lt;br /&gt;
We also limit the amount of CPU/memory resources used (e.g. to minimize [http://en.wikipedia.org/wiki/Globbing Globbing] resources):&lt;br /&gt;
&lt;br /&gt;
 RLimitCPU               session 10&lt;br /&gt;
 RLimitMemory            session 4096K&lt;br /&gt;
&lt;br /&gt;
We allow a maximum of 200 concurrent ftp sessions:&lt;br /&gt;
&lt;br /&gt;
 MaxInstances            500&lt;br /&gt;
 MaxClients              500&lt;br /&gt;
&lt;br /&gt;
=== rsync ===&lt;br /&gt;
&lt;br /&gt;
We use rsyncd (standalone daemon). We disable compression and checksumming in rsyncd.conf:&lt;br /&gt;
&lt;br /&gt;
 dont compress = *&lt;br /&gt;
 refuse options = c delete&lt;br /&gt;
&lt;br /&gt;
For ftp and rsync, the contents of /mirror/root/include/motd.msg are displayed when users connect.&lt;br /&gt;
&lt;br /&gt;
[[Category:Services]]&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2702</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2702"/>
		<updated>2010-07-21T02:47:39Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Specs */ mirror new drives&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is [[#caffeine|caffeine]]&#039;s old body, reincarnated as an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* 2 &amp;amp;times; Seagate Barracuda 80GB ATA (150 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* mirror: ~14 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 2 TB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Kerberos&amp;diff=2691</id>
		<title>Kerberos</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Kerberos&amp;diff=2691"/>
		<updated>2010-07-03T19:13:50Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Password Resets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We use [http://web.mit.edu/Kerberos/ MIT Kerberos 5] for authentication. Our kerberos realm is CSCLUB.UWATERLOO.CA. KDCs run on [[Machine_List#ginseng|ginseng]] and [[Machine_List#artificial-flavours|artificial-flavours]].&lt;br /&gt;
&lt;br /&gt;
=== Password Resets ===&lt;br /&gt;
To change your own password you can run passwd on any of the club&#039;s machines.&lt;br /&gt;
&lt;br /&gt;
Changing other users&#039; passwords&lt;br /&gt;
* ssh ginseng&lt;br /&gt;
* sudo kadmin.local&lt;br /&gt;
* cpw username&lt;br /&gt;
* Enter new password and confirm&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Kerberos&amp;diff=2690</id>
		<title>Kerberos</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Kerberos&amp;diff=2690"/>
		<updated>2010-07-03T19:12:17Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: changed password change instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We use [http://web.mit.edu/Kerberos/ MIT Kerberos 5] for authentication. Our kerberos realm is CSCLUB.UWATERLOO.CA. KDCs run on [[Machine_List#ginseng|ginseng]] and [[Machine_List#artificial-flavours|artificial-flavours]].&lt;br /&gt;
&lt;br /&gt;
=== Password Resets ===&lt;br /&gt;
&lt;br /&gt;
* ssh ginseng&lt;br /&gt;
* sudo kadmin.local&lt;br /&gt;
* cpw username&lt;br /&gt;
* Enter new password and confirm&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Virtualization_(LXC_Containers)&amp;diff=2683</id>
		<title>Virtualization (LXC Containers)</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Virtualization_(LXC_Containers)&amp;diff=2683"/>
		<updated>2010-06-22T02:23:19Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Linux Containers =&lt;br /&gt;
&lt;br /&gt;
As of Fall 2009, we use [http://lxc.sourceforge.net/ Linux containers] to maintain a few virtual machines, most notably [[Machine_List#caffeine|caffeine]], which is hosted on [[Machine_List#glomag|glomag]]. The various commands to manipulate Linux containers are prefixed with &amp;quot;lxc-&amp;quot;; see their individual manpages for usage. To start caffeine, run the following command as root on glomag:&lt;br /&gt;
&lt;br /&gt;
 lxc-start -d -n caffeine&lt;br /&gt;
&lt;br /&gt;
Containers are stored on the host filesystem in /var/lib/lxc (root filesystems are symlinked to the appropriate directory on /vm). mspang originally set this up, so he probably knows more about it than anyone else.&lt;br /&gt;
&lt;br /&gt;
= VServer =&lt;br /&gt;
&lt;br /&gt;
[http://linux-vserver.org/ Linux-VServer Homepage]&lt;br /&gt;
&lt;br /&gt;
 vserver $NAME build -m debootstrap --hostname magic --interface $IFACE:$IP/24 -- -d lenny&lt;br /&gt;
&lt;br /&gt;
To have a vserver autostart, create a file called /etc/vservers/$VSERVER/apps/init/mark with content:&lt;br /&gt;
 default&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2667</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2667"/>
		<updated>2010-05-29T23:40:34Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* taurine */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* BitlBee IRC instant messaging gateway (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is [[#caffeine|caffeine]]&#039;s old body, reincarnated as an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* 2 &amp;amp;times; Seagate Barracuda 80GB ATA (150 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* vg1: 4.77 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 750 GB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2666</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2666"/>
		<updated>2010-05-29T23:36:55Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Services */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* bitlbee (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is [[#caffeine|caffeine]]&#039;s old body, reincarnated as an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* 2 &amp;amp;times; Seagate Barracuda 80GB ATA (150 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music on the office terminals&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* vg1: 4.77 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 750 GB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2665</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2665"/>
		<updated>2010-05-29T23:35:26Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* taurine */ bitlbee&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
* 2 &amp;amp;times; 20 GB Seagate hard drive, configured as a 34 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, and a large amount of other services. It is a [[Virtualization#Linux_Containers|Linux container]] at present.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* [[MySQL]] databases&lt;br /&gt;
* [[Mail]] services&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
* 3 &amp;amp;times; Western-Digital 160GB SATA hard drive (445 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
* 36 GB Seagate SCSI hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* 136 GB LVM volume group&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
* bitlbee (localhost only)&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is [[#caffeine|caffeine]]&#039;s old body, reincarnated as an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* 2 &amp;amp;times; Seagate Barracuda 80GB ATA (150 GB software RAID0 array)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
* Seagate Barracuda 400 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/office/webcam Office webcam]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* 320 GB Seagate Barracuda hard drive&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
* 2 &amp;amp;times; 2 GB hard drive&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
* Western-Digital Caviar Blue 160 GB SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
Music is located in /music, a large local volume reserved for this purpose.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services for the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
* Western-Digital 80 GB ATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
* 4 &amp;amp;times; 640 GB Western-Digital Caviar Blue in [http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 RAID 10] behind a [http://www.3ware.com/products/serial_ata2-9650.asp 3ware 9650SE RAID card].&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* [[ceo]] daemon&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
* vg0: 931 GB software RAID0 (contains root partition):&lt;br /&gt;
** 2 &amp;amp;times; 500 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg1: 596 GB software RAID1 (contains caffeine):&lt;br /&gt;
** 2 &amp;amp;times; 640 GB Western-Digital Caviar Blue SATA hard drive&lt;br /&gt;
* vg2: 750 GB Seagate Barracuda SATA hard drive&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Virtualization#Linux_Container|Linux containers]]; see [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405 @ 2.00 GHz&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* vg0: 228 GB block device behind DELL PERC 6/i (contains root partition)&lt;br /&gt;
* vg1: 4.77 TB block device behind DELL PERC 6/i (contains mirror)&lt;br /&gt;
** 8 &amp;amp;times; 750 GB hard drive (RAID-5)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]]&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2326</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2326"/>
		<updated>2009-12-25T08:18:57Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* taurine */ no longer newest system&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, authentication and a large amount of other services. It is a virtual machine.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* currently hosted on [[#glomag|glomag]]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon E5405 @ 2.00 GHz&lt;br /&gt;
* 12 GB RAM&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory, which needs to be investigated.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Virtual machines&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;bit-shifter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
bit-shifter is [[#caffeine|caffeine]] (the old main server)&#039;s old body, reincarnated as an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200 @ 2.53 GHz&lt;br /&gt;
* 2x2GB+1x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300 @ 1.86 GHz&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
* Jacob Parker&#039;s Firewire Card&lt;br /&gt;
* DVD Burner&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Has a large amount of space allocated to /video for ripping and editing video, primarily used in conjunction with our recording and archival of talks.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* SGI O2 MIPS processor&lt;br /&gt;
* 423 MB (?) RAM&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
Strombola runs MPD for playing music. Control of MPD is available only to users in the &amp;quot;audio&amp;quot; group.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
==== Speakers ====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glucose-fructose&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
Glucose-fructose is an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 3800+&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_M2V-MX.pdf ASUS M2V-MX] Motherboard&lt;br /&gt;
* ATI Radeon X300SE&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;guarana&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
A Mac Mini donated by a member. We plan to use it with our new digital cutter.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; (Decommissioned) ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
= Syscom Only =&lt;br /&gt;
&lt;br /&gt;
The following systems may only be accessible to members of the [[Systems Committee]] for a variety of reasons; the most common of which being that some of these machines host [[Kerberos]] authentication services the the CSC.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherboard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup [[Kerberos|authentication]] and [[OpenLDAP|directory services]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glomag&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glomag is a newish server (as of Fall 2009) which hosts [[#caffeine|caffeine]]. Only syscom are allowed to SSH in here directly, though SSH to caffeine is permitted to all members.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon X3450 @ 2.67 GHz&lt;br /&gt;
* 6 GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* See [[#caffeine|caffeine]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* 4TB RAID-5 array (8 * 750GB)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Debian_Repository|CSClub packages repository]]&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine. dseagrav [at] lunar-tokyo.net wants us to drop him an email if we ever get it running, or anybody ever dumps the ROM images from it.&lt;br /&gt;
&lt;br /&gt;
http://www.globalnerdy.com/2008/12/03/symbolics-xl1200-lisp-machine-free-to-a-good-home/ for some history on this hardware.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2179</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2179"/>
		<updated>2009-09-06T19:46:08Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* Services */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* 4TB RAID-5 array (8 * 750GB)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherbard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup authentication and directory services&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, authentication and a large amount of other services. It is located in MC 3015.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* QLogic fibre-channel card (connected to an array of NetApp disk shelfs) [planned]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* CSClub packages repository&lt;br /&gt;
* [[Puppet]]master&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Taurine is the CSC&#039;s newest system as of Spring 2007. It runs multiple virtualized systems. It is located in DC 3558.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* Virtual machines&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory?  Needs to be looked into.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Stratum 1 NTP server (planned)&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
===== Speakers =====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
Strombola runs MPD using a unix socket for connections. You need to set your MPD_HOST environment variable to /var/run/mpd/sock. The socket is only accessible by users in the audio&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
===== Speakers =====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glucose-fructose&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glucose-fructose is an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 3800+&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_M2V-MX.pdf ASUS M2V-MX] Motherboard&lt;br /&gt;
* ATI Radeon X300SE&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200&lt;br /&gt;
* 2x2GB+1x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours&#039; is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;guarana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A Mac Mini donated by a member. We plan to use it with our new digital cutter.&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2178</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2178"/>
		<updated>2009-09-06T19:45:15Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: /* strombola */  Added mpd info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* 4TB RAID-5 array (8 * 750GB)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via NFS&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherbard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup authentication and directory services&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, authentication and a large amount of other services. It is located in MC 3015.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* QLogic fibre-channel card (connected to an array of NetApp disk shelfs) [planned]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* CSClub packages repository&lt;br /&gt;
* [[Puppet]]master&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Taurine is the CSC&#039;s newest system as of Spring 2007. It runs multiple virtualized systems. It is located in DC 3558.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* Virtual machines&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.  Might have bad memory?  Needs to be looked into.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Stratum 1 NTP server (planned)&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;strombola&#039;&#039;==&lt;br /&gt;
Strombola is our newest, shiniest office terminal and has a decent videocard suitable for work with graphics and rendering&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
* Intel Core2 Quad Q8200 @ 2.33GHz&lt;br /&gt;
* 4 GB RAM&lt;br /&gt;
* nVidia GeForce 8600 GTS&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/strombola.pdf Gigabyte GA-EP45-UD3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
===== Speakers =====&lt;br /&gt;
Strombola has integrated 6 channel sound and the office speakers are currently connected to it.&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
Strombola runs MPD using a unix socket for connections. You need to set your MPD_HOST environment variable to /var/run/mpd/sock&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
===== Speakers =====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, but no speakers. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glucose-fructose&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glucose-fructose is an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 3800+&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_M2V-MX.pdf ASUS M2V-MX] Motherboard&lt;br /&gt;
* ATI Radeon X300SE&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;maltodextrin&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Maltodextrin is an office terminal; it used to be Bartle&#039;s Box of doom.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E7200&lt;br /&gt;
* 2x2GB+1x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf Gigabyte GA-EP35-DS3L] Motherboard&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours&#039; is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300&lt;br /&gt;
* 2x1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ga-ep35_s3l_e.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;guarana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A Mac Mini donated by a member. We plan to use it with our new digital cutter.&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2061</id>
		<title>Machine List</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Machine_List&amp;diff=2061"/>
		<updated>2009-06-25T00:59:19Z</updated>

		<summary type="html">&lt;p&gt;M2ellis: moved ssh madness from taurine to ascorbic-acid&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Servers =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-benzoate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-benzoate is our mirror server, funded by MEF.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Xeon Quad Core E5405&lt;br /&gt;
* 16GB RAM&lt;br /&gt;
* 4TB RAID-5 array (8 * 750GB)&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Mirror]]&lt;br /&gt;
* [[BNBT]] BitTorrent tracker&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ginseng&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ginseng is our file server, running Solaris Express Community Edition b91.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Pentium Dual Core E2180&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/s3000ah_tps_1_1.pdf Intel S3000AHV Motherboard]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[User-data|/users]] via ZFS and NFSv4&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;artificial-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Artificial-flavours is our backup server. It used to be an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* Intel Celeron 3.2GHz&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/Biostar_P4M80-M4.pdf Biostar P4M80-M4] Motherbard&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* [[Cacti]]&lt;br /&gt;
* Backup authentication and directory services&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;caffeine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Caffeine is the Computer Science Club&#039;s primary server. It servers mail, websites, authentication and a large amount of other services. It is located in MC 3015.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 4200+&lt;br /&gt;
* 4GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_A8V-E_SE.pdf ASUS A8V-E SE] Motherboard&lt;br /&gt;
* QLogic fibre-channel card (connected to an array of NetApp disk shelfs) [planned]&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
&lt;br /&gt;
* Directory services with [[OpenLDAP]]&lt;br /&gt;
* Authentication with [[Kerberos]]&lt;br /&gt;
* Club and member web sites with [[Apache]]&lt;br /&gt;
* CSClub packages repository&lt;br /&gt;
* [[Puppet]]master&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;citric-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Citric-acid is a large blue DEC AlphaServer. It is located in MC 3015.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/alpha/ AlphaServer 4100] (4 600MHz EV56 CPUs)&lt;br /&gt;
* 6GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* [[Mirror#Ubuntu-releases|Ubuntu ISO mirror]]&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;corn-syrup&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* eth0 (&amp;quot;Gb0&amp;quot;) mac addr 00:24:e8:52:41:27&lt;br /&gt;
* eth1 (&amp;quot;Gb1&amp;quot;) mac addr 00:24:e8:52:41:29&lt;br /&gt;
* IPMI mac addr 00:24:e8:52:41:2b&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
&lt;br /&gt;
* Use eth0/Gb0 for the mathstudentorgsnet connection&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;taurine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Taurine is the CSC&#039;s newest system as of Spring 2007. It runs multiple virtualized systems. It is located in DC 3558.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* 2 AMD Opteron 2218 CPUs&lt;br /&gt;
* 8GB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* [[Talks]] mirror&lt;br /&gt;
* Virtual machines&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;potassium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Potassium-citrate is a dual-processor Alpha machine. It is on extended loan from one of our members. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Alphaserver CS20 (2 833MHz EV68al CPUs)&lt;br /&gt;
* 512MB RAM&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;ascorbic-acid&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Ascorbic-acid is Sun Netra T1. Needs &#039;rootdelay=15&#039; kernel argument to boot.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
* Sun Netra T1&lt;br /&gt;
* 256MB RAM&lt;br /&gt;
&lt;br /&gt;
==== Services ====&lt;br /&gt;
* Stratum 1 NTP server (planned)&lt;br /&gt;
* Runs ssh on ports 21,22,80,442,443,8080 for user&#039;s convenience.&lt;br /&gt;
&lt;br /&gt;
= Office Terminals =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;acesulfame-potassium&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium is the newest office terminal&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
* Intel Pentium 4 2.67GHz&lt;br /&gt;
* 1GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ABIT_VT7.pdf ABIT VT7] Motherboard&lt;br /&gt;
* ATI Radeon 7000&lt;br /&gt;
&lt;br /&gt;
===== Speakers =====&lt;br /&gt;
&lt;br /&gt;
Acesulfame-potassium has 6 channel sound, so the speakers are hooked up to it. The colors do not all match, though. Green is correct, but orange and black need to be swapped.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;glucose-fructose&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Glucose-fructose is an office terminal.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* AMD Athlon 64 X2 3800+&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_M2V-MX.pdf ASUS M2V-MX] Motherboard&lt;br /&gt;
* ATI Radeon X300SE&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;natural-flavours&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Natural-flavours&#039; is an office terminal; it used to be our mirror.&lt;br /&gt;
&lt;br /&gt;
==== Specs ====&lt;br /&gt;
&lt;br /&gt;
* Intel Core 2 Duo E6300&lt;br /&gt;
* 2GB RAM&lt;br /&gt;
* [http://csclub.uwaterloo.ca/misc/manuals/ASUS_P5L-MX.pdf ASUS P5L-MX] Motherboard&lt;br /&gt;
&lt;br /&gt;
===== Services =====&lt;br /&gt;
* Office webcam&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;romana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Romana is a BeBox that has been in the CSC&#039;s possession since long before BeOS became defunct.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
* 2 PowerPC based procccessors&lt;br /&gt;
* Stylish Blinken processor-load lights&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;sodium-citrate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
Sodium-citrate is an SGI O2 machine.&lt;br /&gt;
&lt;br /&gt;
In order to net boot you need to set /proc/sys/net/ipv4/ip_no_pmtu_disc to 1. When the O2 boots, hit F5 at the boot menu and type bootp():.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;dextroamphetamine-saccharate&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A laptop office terminal, that was purchased in Winter 2008 for $20 at the UW Surplus sale.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Power cable is broken, otherwise working.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;guarana&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A Mac Mini donated by a member. We plan to use it with our new digital cutter.&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;digital cutter&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
See [[Digital Cutter|here]].&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;Lisp machine&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
A recently acquired Symbolics XL1200 Lisp machine.&lt;br /&gt;
&lt;br /&gt;
===== Specs =====&lt;br /&gt;
&lt;br /&gt;
Currently inoperable due to (at least) a missing console cable.&lt;/div&gt;</summary>
		<author><name>M2ellis</name></author>
	</entry>
</feed>