<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://vtluug.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Echarlie</id>
	<title>Linux and Unix Users Group at Virginia Teck Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://vtluug.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Echarlie"/>
	<link rel="alternate" type="text/html" href="https://vtluug.org/wiki/Special:Contributions/Echarlie"/>
	<updated>2026-04-27T03:02:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Mutt&amp;diff=7739</id>
		<title>Mutt</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Mutt&amp;diff=7739"/>
		<updated>2020-06-02T16:02:47Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;''All mail clients suck. This one just sucks less.''&amp;quot;&amp;lt;ref&amp;gt;http://www.mutt.org/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Mutt''' is a [[w:text user interface|text-based]] [[w:email client|email client]] for [[w:Unix-like|Unix-like]] systems. It was originally written by Michael Elkins in 1995 and released under the [[w:GNU General Public License|GPL]] version 2 or any later version.&amp;lt;ref&amp;gt;&lt;br /&gt;
https://en.wikipedia.org/wiki/Mutt_%28email_client%29&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mutt was originally designed as a [[w:Mail User Agent|Mail User Agent]] (MUA) and relied on locally accessible mailbox and [[w:sendmail|sendmail]] infrastructure. According to the Mutt homepage &amp;quot;though written from scratch, Mutt's initial interface was based largely on the [[w:Elm (email client)|ELM mail client]]&amp;quot;. New to Mutt were message scoring and threading capabilities. Support for fetching and sending email via various protocols such as [[w:POP3|POP3]], [[w:IMAP|IMAP]] and [[w:Simple Mail Transfer Protocol|SMTP]] was added later. Mutt relies on external tools for composing and filtering messages.&lt;br /&gt;
&lt;br /&gt;
== Mutt VT/Google Mail Setup ==&lt;br /&gt;
&lt;br /&gt;
VT email lives in Google GSuite (i.e. gmail). Because GSuite is deprecating &amp;quot;less secure devices/app-passwords&amp;quot;,&lt;br /&gt;
you will need to use IMAP and SMTP with the XOAUTH2 authentication method.&lt;br /&gt;
&lt;br /&gt;
Most mutt users use [[isync|isync/mbsync]] or [[offlineimap]] as imap reader tools. mbsync is better;&lt;br /&gt;
offlineimap has longstanding bugs with conflicting message IDs that can cause messages to be deleted, &lt;br /&gt;
and it is much easier to configure mbsync with multiple imap accounts, however mbsync's auth plugin&lt;br /&gt;
support is fragile, while offlineimap has built-in XOAUTH2 support.&lt;br /&gt;
&lt;br /&gt;
Mutt has some [http://www.mutt.org/doc/manual/#oauth internal] OAUTH support that can be used. Alternately,&lt;br /&gt;
use an external tool like [https://github.com/cscorley/send.py send.py] as your sendmail drop-in.&lt;br /&gt;
&lt;br /&gt;
The caveat of setting up [[OAUTH2]] is that Google has disabled trial credential creation in billed&lt;br /&gt;
accounts (i.e. GSuite), so you *cannot* use your VT account to create them. Further, to reduce abuse,&lt;br /&gt;
Google must approve all public apps; a warning pops up if it is not approved, which can only&lt;br /&gt;
be bypassed if you are the owner of the application. In short, you must create OAUTH credentials&lt;br /&gt;
with a non-GSuite google account, add your @vt.edu account to the project, and then use it to&lt;br /&gt;
log in.&lt;br /&gt;
&lt;br /&gt;
== LUUGmail ==&lt;br /&gt;
&lt;br /&gt;
Acidburn currently has functional postfix/dovecot. This is how to use it with mutt.&lt;br /&gt;
&lt;br /&gt;
=== IMAP/SMTP for acidburn ===&lt;br /&gt;
&lt;br /&gt;
This is a sample configuration for imap/smtp in mutt for acidburn, provided by [[User:echarlie|echarlie]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set realname = 'Wadsworth Luugbot'  #your display name here&lt;br /&gt;
set imap_user=wadsworth             #this should be your LDAP account name&lt;br /&gt;
set imap_pass=$my_luug_pass         #Whatever your LUUG password is. Here we used a personal variable.&lt;br /&gt;
set ssl_force_tls=yes&lt;br /&gt;
set ssl_starttls=yes&lt;br /&gt;
&lt;br /&gt;
set folder = &amp;quot;imap://$imap_user@acidburn.vtluug.org:143/&amp;quot;&lt;br /&gt;
set spoolfile = +INBOX&lt;br /&gt;
set postponed = +Drafts&lt;br /&gt;
set record = +sent&lt;br /&gt;
set imap_check_subscribed&lt;br /&gt;
&lt;br /&gt;
set pgp_sign_as = &amp;quot;wadsworth@vtluug.org&amp;quot;  # If you like pgp-signing things&lt;br /&gt;
&lt;br /&gt;
set from = &amp;quot;wadsworth@vtluug.org&amp;quot;    #### THIS IS IMPORTANT ####&lt;br /&gt;
set use_from = yes&lt;br /&gt;
set smtp_url=smtp://$imap_user:$imap_pass@acidburn.vtluug.org:587&lt;br /&gt;
&lt;br /&gt;
# this is for if you use multiple accounts. The ssl settings are necessary since we don't have a&lt;br /&gt;
# certified tls key right now&lt;br /&gt;
account-hook $folder &amp;quot;set imap_user=$imap_user imap_pass=$imap_pass ssl_verify_dates=no ssl_verify_host=no&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This section assumes you are using mutt with multiple accounts. For that, we reccomend putting the following into &amp;lt;code&amp;gt;.muttrc/vtluug&amp;lt;/code&amp;gt; or something similar, and having this in your &amp;lt;code&amp;gt;.mutt/muttrc&amp;lt;/code&amp;gt; :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
source &amp;quot;~/.mutt/vtluug&amp;quot;&lt;br /&gt;
folder-hook $folder 'source ~/.mutt/vtluug'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Local Mail on acidburn ==&lt;br /&gt;
&lt;br /&gt;
This is how one would read and send local mail on acidburn. This is a fully functional &amp;lt;code&amp;gt;.muttrc&amp;lt;/code&amp;gt;, however we&lt;br /&gt;
would suggest setting your mutt editor, setting your encoding preference (UTF-8), and changing keybindings to preference.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set mbox_type=Maildir           #acidburn uses maildirs&lt;br /&gt;
set folder=$HOME/Maildir&lt;br /&gt;
set spoolfile=+/&lt;br /&gt;
set header_cache=~/.cache/mutt  #optional; header caching speeds things up&lt;br /&gt;
&lt;br /&gt;
set my_user=wadsworth&lt;br /&gt;
&lt;br /&gt;
set realname = &amp;quot;Wadsworth Luugbot&amp;quot;&lt;br /&gt;
set from = wadsworth@vtluug.org&lt;br /&gt;
set use_from = yes&lt;br /&gt;
&lt;br /&gt;
# This is needed if you want to send from another ldapified server&lt;br /&gt;
#set smtp_url=smtps://$my_user:$my_pass@acidburn.vtluug.org:587&lt;br /&gt;
#set ssl_force_tls = yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Howtos]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Mail clients]]&lt;br /&gt;
[[Category:Needs restoration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Infrastructure:Sysadmin_Handbook&amp;diff=7738</id>
		<title>Infrastructure:Sysadmin Handbook</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Infrastructure:Sysadmin_Handbook&amp;diff=7738"/>
		<updated>2020-06-02T16:02:31Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page describes how to manage the infra. See [https://vtluug.github.io/rtfm.txt rtfm.txt] for a guide to build it from scratch.&lt;br /&gt;
&lt;br /&gt;
This covers setup of a VM on [[Infrastructure:Meltdown|meltdown]] or [[Infrastructure:Spectre|spectre]] depending on if the service is critical or not.&lt;br /&gt;
&lt;br /&gt;
== Networks ==&lt;br /&gt;
''Further information: [[Infrastructure:Network|Network]]&lt;br /&gt;
&lt;br /&gt;
We ''should'' have the following networks in place:&lt;br /&gt;
&lt;br /&gt;
* [[Infrastructure:Meltdown|meltdown]] and [[Infrastructure:Spectre|spectre]] br0 on eno1 &amp;lt;--&amp;gt; enp4s0 on [[Infrastructure:Joey|joey]]. This is the main LUUG network.&lt;br /&gt;
** 10.98.0.0/16 for VTLUUG NAT&lt;br /&gt;
** IPv6 via prefix delegation on 607:b400:6:cc80/64&lt;br /&gt;
** Global IPv4s via ARP proxying (See https://github.com/vtluug/scripts). Gateway is 128.173.88.1/22.&lt;br /&gt;
* Static hosts are on 10.98.0.0/24, and DHCP is enabled on 10.98.1.0/24. This is mainly just useful for organization and quickly finding new hosts or other hosts on the network.&lt;br /&gt;
** Static host IPs are assigned via static DHCP leases for IPv4.&lt;br /&gt;
** Since we can't do this with IPv6, physical host IPs are determined upon first boot and VMs are assigned a specific MAC to pre-determine the SLAAC IP.&lt;br /&gt;
* &amp;quot;Internet&amp;quot; (a CNS portal) &amp;lt;--&amp;gt; enp2s0 on [[Infrastructure:Joey|joey]]. LUUG only has one of these, and port security is probably enabled.&lt;br /&gt;
&lt;br /&gt;
'''DNS/DHCP:'''&lt;br /&gt;
* All DNS entries for services run by VTLUUG are hosted on [https://gandi.net Gandi]. Ask an officer if you want to change something.&lt;br /&gt;
* jkh and Roddy own ece.vt.edu. DNS updates don't happen. echarlie can add IPv6-only records if needed to wuvt.vt.edu so we have PTRs.&lt;br /&gt;
* [[Infrastructure:Joey|joey]] runs DHCP via dnsmasq on enp4s0 (that is, 10.98.0.0/16). To change anything, modify it on https://github.com/vtluug/scripts first then pull that into root's homedir on [[Infrastructure:Joey|joey]]. Please don't just update it on a machine without pushing your updates.&lt;br /&gt;
* By default, hosts are accessible via SSH on ports 22 and 2222.&lt;br /&gt;
&lt;br /&gt;
== Adding a VTLUUG Service VM ==&lt;br /&gt;
''VMs in this category are deployed to [[Infrastructure:Meltdown|meltdown]]''&lt;br /&gt;
&lt;br /&gt;
Prerequisites:&lt;br /&gt;
* Clone &amp;lt;code&amp;gt;https://github.com/vtluug/scripts&amp;lt;/code&amp;gt;. This is referred to as 'SCRIPTS' in this guide.&lt;br /&gt;
* Clone &amp;lt;code&amp;gt;https://github.com/vtluug/ansible&amp;lt;/code&amp;gt; and install ansible. This repo is referred to as 'ANSIBLE' in this guide.&lt;br /&gt;
* Have access to the vtluug-admin repo on gitolite.&lt;br /&gt;
* Understand the [[Infrastructure:Network|Network]] and [[Infrastructure]].&lt;br /&gt;
* Put your SSH key on [[Infrastructure:Meltdown|meltdown]]&lt;br /&gt;
&lt;br /&gt;
=== Configure the network ===&lt;br /&gt;
* Decide on a MAC address for the host and add it to &amp;lt;code&amp;gt;SCRIPTS/router/lan/local_hosts&amp;lt;/code&amp;gt;&lt;br /&gt;
* Add an entry to &amp;lt;code&amp;gt;SCRIPTS/router/lan/dnsmasq.conf&amp;lt;/code&amp;gt; for static DHCP leases.&lt;br /&gt;
* If a new IP in 128.173.88.1/22 is being added, also add it to &amp;lt;code&amp;gt;SCRIPTS/router/proxy/arp_proxy.sh&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note:''' It is '''not''' recommended that you do the following steps if nobody is on campus in case something breaks.&lt;br /&gt;
&lt;br /&gt;
Pull the latest changes to &amp;lt;code&amp;gt;/root/scripts&amp;lt;/code&amp;gt;, update the configuration files, and restart the services:&lt;br /&gt;
* Dnsmasq configuration is at &amp;lt;code&amp;gt;/etc/dnsmasq.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
* ARP Proxy configuration is in &amp;lt;code&amp;gt;/usr/local/bin&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Add the VM configuration to ansible ===&lt;br /&gt;
Edit &amp;lt;code&amp;gt;ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml&amp;lt;/code&amp;gt; and add a new entry, following the existing format.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' if there are any entries in this file that are '''not''' present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;code&amp;gt;ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K -e @VTLUUG_ADMIN_REPO/accounts.yml&amp;lt;/code&amp;gt;, using the correct vtluug-admin repo path.&lt;br /&gt;
&lt;br /&gt;
=== Testing ===&lt;br /&gt;
The new host should be accessible by papatux on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.&lt;br /&gt;
&lt;br /&gt;
== Adding a User VM ==&lt;br /&gt;
''VMs in this category are deployed to [[Infrastructure:Spectre|spectre]]''&lt;br /&gt;
&lt;br /&gt;
Prerequisites:&lt;br /&gt;
* Clone &amp;lt;code&amp;gt;https://github.com/vtluug/scripts&amp;lt;/code&amp;gt;. This is referred to as 'SCRIPTS' in this guide.&lt;br /&gt;
* Clone &amp;lt;code&amp;gt;https://github.com/vtluug/ansible&amp;lt;/code&amp;gt; and install ansible. This repo is referred to as 'ANSIBLE' in this guide.&lt;br /&gt;
* Understand the [[Infrastructure:Network|Network]] and [[Infrastructure]].&lt;br /&gt;
* Have root on [[Infrastructure:Spectre|spectre]]&lt;br /&gt;
* Put your SSH key on [[Infrastructure:Spectre|spectre]]&lt;br /&gt;
&lt;br /&gt;
=== Configure the network ===&lt;br /&gt;
* Decide on a MAC address for the host and add it to &amp;lt;code&amp;gt;SCRIPTS/router/lan/local_hosts&amp;lt;/code&amp;gt;&lt;br /&gt;
* Add an entry to &amp;lt;code&amp;gt;SCRIPTS/router/lan/dnsmasq.conf&amp;lt;/code&amp;gt; for static DHCP leases. (If applicable; you might not care for a test/temp VM).&lt;br /&gt;
&lt;br /&gt;
'''Note:''' It is '''not''' recommended that you do the following steps if nobody is on campus in case something breaks.&lt;br /&gt;
&lt;br /&gt;
Pull the latest changes to &amp;lt;code&amp;gt;/root/scripts&amp;lt;/code&amp;gt;, update the configuration files, and restart the services:&lt;br /&gt;
* Dnsmasq configuration is at &amp;lt;code&amp;gt;/etc/dnsmasq.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Add the VM configuration to ansible ===&lt;br /&gt;
Edit &amp;lt;code&amp;gt;ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml&amp;lt;/code&amp;gt; and add a new entry under &amp;lt;code&amp;gt;new_vms_spectre&amp;lt;/code&amp;gt;, following the existing format.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' if there are any entries in this file that are '''not''' present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.&lt;br /&gt;
&lt;br /&gt;
Run &amp;lt;code&amp;gt;ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K&amp;lt;/code&amp;gt;, using the correct vtluug-admin repo path.&lt;br /&gt;
&lt;br /&gt;
'''Important:''' A random root password is set during VM creation and printed to stdout. Record this!&lt;br /&gt;
&lt;br /&gt;
=== Testing ===&lt;br /&gt;
The new host should be accessible by root on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:Howtos]]&lt;br /&gt;
[[Category:Needs restoration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Mutt&amp;diff=7737</id>
		<title>Mutt</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Mutt&amp;diff=7737"/>
		<updated>2020-06-02T16:01:27Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: /* Local Mail on acidburn */  why did we put a password here? it was not necessary at all&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;''All mail clients suck. This one just sucks less.''&amp;quot;&amp;lt;ref&amp;gt;http://www.mutt.org/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Mutt''' is a [[w:text user interface|text-based]] [[w:email client|email client]] for [[w:Unix-like|Unix-like]] systems. It was originally written by Michael Elkins in 1995 and released under the [[w:GNU General Public License|GPL]] version 2 or any later version.&amp;lt;ref&amp;gt;&lt;br /&gt;
https://en.wikipedia.org/wiki/Mutt_%28email_client%29&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mutt was originally designed as a [[w:Mail User Agent|Mail User Agent]] (MUA) and relied on locally accessible mailbox and [[w:sendmail|sendmail]] infrastructure. According to the Mutt homepage &amp;quot;though written from scratch, Mutt's initial interface was based largely on the [[w:Elm (email client)|ELM mail client]]&amp;quot;. New to Mutt were message scoring and threading capabilities. Support for fetching and sending email via various protocols such as [[w:POP3|POP3]], [[w:IMAP|IMAP]] and [[w:Simple Mail Transfer Protocol|SMTP]] was added later. Mutt relies on external tools for composing and filtering messages.&lt;br /&gt;
&lt;br /&gt;
== Mutt VT/Google Mail Setup ==&lt;br /&gt;
&lt;br /&gt;
VT email lives in Google GSuite (i.e. gmail). Because GSuite is deprecating &amp;quot;less secure devices/app-passwords&amp;quot;,&lt;br /&gt;
you will need to use IMAP and SMTP with the XOAUTH2 authentication method.&lt;br /&gt;
&lt;br /&gt;
Most mutt users use [[isync|isync/mbsync]] or [[offlineimap]] as imap reader tools. mbsync is better;&lt;br /&gt;
offlineimap has longstanding bugs with conflicting message IDs that can cause messages to be deleted, &lt;br /&gt;
and it is much easier to configure mbsync with multiple imap accounts, however mbsync's auth plugin&lt;br /&gt;
support is fragile, while offlineimap has built-in XOAUTH2 support.&lt;br /&gt;
&lt;br /&gt;
Mutt has some [http://www.mutt.org/doc/manual/#oauth internal] OAUTH support that can be used. Alternately,&lt;br /&gt;
use an external tool like [https://github.com/cscorley/send.py send.py] as your sendmail drop-in.&lt;br /&gt;
&lt;br /&gt;
The caveat of setting up [[OAUTH2]] is that Google has disabled trial credential creation in billed&lt;br /&gt;
accounts (i.e. GSuite), so you *cannot* use your VT account to create them. Further, to reduce abuse,&lt;br /&gt;
Google must approve all public apps; a warning pops up if it is not approved, which can only&lt;br /&gt;
be bypassed if you are the owner of the application. In short, you must create OAUTH credentials&lt;br /&gt;
with a non-GSuite google account, add your @vt.edu account to the project, and then use it to&lt;br /&gt;
log in.&lt;br /&gt;
&lt;br /&gt;
== LUUGmail ==&lt;br /&gt;
&lt;br /&gt;
Acidburn currently has functional postfix/dovecot. This is how to use it with mutt.&lt;br /&gt;
&lt;br /&gt;
=== IMAP/SMTP for acidburn ===&lt;br /&gt;
&lt;br /&gt;
This is a sample configuration for imap/smtp in mutt for acidburn, provided by [[User:echarlie|echarlie]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set realname = 'Wadsworth Luugbot'  #your display name here&lt;br /&gt;
set imap_user=wadsworth             #this should be your LDAP account name&lt;br /&gt;
set imap_pass=$my_luug_pass         #Whatever your LUUG password is. Here we used a personal variable.&lt;br /&gt;
set ssl_force_tls=yes&lt;br /&gt;
set ssl_starttls=yes&lt;br /&gt;
&lt;br /&gt;
set folder = &amp;quot;imap://$imap_user@acidburn.vtluug.org:143/&amp;quot;&lt;br /&gt;
set spoolfile = +INBOX&lt;br /&gt;
set postponed = +Drafts&lt;br /&gt;
set record = +sent&lt;br /&gt;
set imap_check_subscribed&lt;br /&gt;
&lt;br /&gt;
set pgp_sign_as = &amp;quot;wadsworth@vtluug.org&amp;quot;  # If you like pgp-signing things&lt;br /&gt;
&lt;br /&gt;
set from = &amp;quot;wadsworth@vtluug.org&amp;quot;    #### THIS IS IMPORTANT ####&lt;br /&gt;
set use_from = yes&lt;br /&gt;
set smtp_url=smtp://$imap_user:$imap_pass@acidburn.vtluug.org:587&lt;br /&gt;
&lt;br /&gt;
# this is for if you use multiple accounts. The ssl settings are necessary since we don't have a&lt;br /&gt;
# certified tls key right now&lt;br /&gt;
account-hook $folder &amp;quot;set imap_user=$imap_user imap_pass=$imap_pass ssl_verify_dates=no ssl_verify_host=no&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This section assumes you are using mutt with multiple accounts. For that, we reccomend putting the following into &amp;lt;code&amp;gt;.muttrc/vtluug&amp;lt;/code&amp;gt; or something similar, and having this in your &amp;lt;code&amp;gt;.mutt/muttrc&amp;lt;/code&amp;gt; :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
source &amp;quot;~/.mutt/vtluug&amp;quot;&lt;br /&gt;
folder-hook $folder 'source ~/.mutt/vtluug'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Local Mail on acidburn ==&lt;br /&gt;
&lt;br /&gt;
This is how one would read and send local mail on acidburn. This is a fully functional &amp;lt;code&amp;gt;.muttrc&amp;lt;/code&amp;gt;, however we&lt;br /&gt;
would suggest setting your mutt editor, setting your encoding preference (UTF-8), and changing keybindings to preference.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set mbox_type=Maildir           #acidburn uses maildirs&lt;br /&gt;
set folder=$HOME/Maildir&lt;br /&gt;
set spoolfile=+/&lt;br /&gt;
set header_cache=~/.cache/mutt  #optional; header caching speeds things up&lt;br /&gt;
&lt;br /&gt;
set my_user=wadsworth&lt;br /&gt;
&lt;br /&gt;
set realname = &amp;quot;Wadsworth Luugbot&amp;quot;&lt;br /&gt;
set from = wadsworth@vtluug.org&lt;br /&gt;
set use_from = yes&lt;br /&gt;
&lt;br /&gt;
# This is needed if you want to send from another ldapified server&lt;br /&gt;
#set smtp_url=smtps://$my_user:$my_pass@acidburn.vtluug.org:587&lt;br /&gt;
#set ssl_force_tls = yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Howtos]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Mail clients]]&lt;br /&gt;
[[Cagetory:Needs restoration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Mutt&amp;diff=7736</id>
		<title>Mutt</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Mutt&amp;diff=7736"/>
		<updated>2020-06-02T15:59:17Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: /* Mutt VT/Google Mail Setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;quot;''All mail clients suck. This one just sucks less.''&amp;quot;&amp;lt;ref&amp;gt;http://www.mutt.org/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Mutt''' is a [[w:text user interface|text-based]] [[w:email client|email client]] for [[w:Unix-like|Unix-like]] systems. It was originally written by Michael Elkins in 1995 and released under the [[w:GNU General Public License|GPL]] version 2 or any later version.&amp;lt;ref&amp;gt;&lt;br /&gt;
https://en.wikipedia.org/wiki/Mutt_%28email_client%29&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mutt was originally designed as a [[w:Mail User Agent|Mail User Agent]] (MUA) and relied on locally accessible mailbox and [[w:sendmail|sendmail]] infrastructure. According to the Mutt homepage &amp;quot;though written from scratch, Mutt's initial interface was based largely on the [[w:Elm (email client)|ELM mail client]]&amp;quot;. New to Mutt were message scoring and threading capabilities. Support for fetching and sending email via various protocols such as [[w:POP3|POP3]], [[w:IMAP|IMAP]] and [[w:Simple Mail Transfer Protocol|SMTP]] was added later. Mutt relies on external tools for composing and filtering messages.&lt;br /&gt;
&lt;br /&gt;
== Mutt VT/Google Mail Setup ==&lt;br /&gt;
&lt;br /&gt;
VT email lives in Google GSuite (i.e. gmail). Because GSuite is deprecating &amp;quot;less secure devices/app-passwords&amp;quot;,&lt;br /&gt;
you will need to use IMAP and SMTP with the XOAUTH2 authentication method.&lt;br /&gt;
&lt;br /&gt;
Most mutt users use [[isync|isync/mbsync]] or [[offlineimap]] as imap reader tools. mbsync is better;&lt;br /&gt;
offlineimap has longstanding bugs with conflicting message IDs that can cause messages to be deleted, &lt;br /&gt;
and it is much easier to configure mbsync with multiple imap accounts, however mbsync's auth plugin&lt;br /&gt;
support is fragile, while offlineimap has built-in XOAUTH2 support.&lt;br /&gt;
&lt;br /&gt;
Mutt has some [http://www.mutt.org/doc/manual/#oauth internal] OAUTH support that can be used. Alternately,&lt;br /&gt;
use an external tool like [https://github.com/cscorley/send.py send.py] as your sendmail drop-in.&lt;br /&gt;
&lt;br /&gt;
The caveat of setting up [[OAUTH2]] is that Google has disabled trial credential creation in billed&lt;br /&gt;
accounts (i.e. GSuite), so you *cannot* use your VT account to create them. Further, to reduce abuse,&lt;br /&gt;
Google must approve all public apps; a warning pops up if it is not approved, which can only&lt;br /&gt;
be bypassed if you are the owner of the application. In short, you must create OAUTH credentials&lt;br /&gt;
with a non-GSuite google account, add your @vt.edu account to the project, and then use it to&lt;br /&gt;
log in.&lt;br /&gt;
&lt;br /&gt;
== LUUGmail ==&lt;br /&gt;
&lt;br /&gt;
Acidburn currently has functional postfix/dovecot. This is how to use it with mutt.&lt;br /&gt;
&lt;br /&gt;
=== IMAP/SMTP for acidburn ===&lt;br /&gt;
&lt;br /&gt;
This is a sample configuration for imap/smtp in mutt for acidburn, provided by [[User:echarlie|echarlie]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set realname = 'Wadsworth Luugbot'  #your display name here&lt;br /&gt;
set imap_user=wadsworth             #this should be your LDAP account name&lt;br /&gt;
set imap_pass=$my_luug_pass         #Whatever your LUUG password is. Here we used a personal variable.&lt;br /&gt;
set ssl_force_tls=yes&lt;br /&gt;
set ssl_starttls=yes&lt;br /&gt;
&lt;br /&gt;
set folder = &amp;quot;imap://$imap_user@acidburn.vtluug.org:143/&amp;quot;&lt;br /&gt;
set spoolfile = +INBOX&lt;br /&gt;
set postponed = +Drafts&lt;br /&gt;
set record = +sent&lt;br /&gt;
set imap_check_subscribed&lt;br /&gt;
&lt;br /&gt;
set pgp_sign_as = &amp;quot;wadsworth@vtluug.org&amp;quot;  # If you like pgp-signing things&lt;br /&gt;
&lt;br /&gt;
set from = &amp;quot;wadsworth@vtluug.org&amp;quot;    #### THIS IS IMPORTANT ####&lt;br /&gt;
set use_from = yes&lt;br /&gt;
set smtp_url=smtp://$imap_user:$imap_pass@acidburn.vtluug.org:587&lt;br /&gt;
&lt;br /&gt;
# this is for if you use multiple accounts. The ssl settings are necessary since we don't have a&lt;br /&gt;
# certified tls key right now&lt;br /&gt;
account-hook $folder &amp;quot;set imap_user=$imap_user imap_pass=$imap_pass ssl_verify_dates=no ssl_verify_host=no&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This section assumes you are using mutt with multiple accounts. For that, we reccomend putting the following into &amp;lt;code&amp;gt;.muttrc/vtluug&amp;lt;/code&amp;gt; or something similar, and having this in your &amp;lt;code&amp;gt;.mutt/muttrc&amp;lt;/code&amp;gt; :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
source &amp;quot;~/.mutt/vtluug&amp;quot;&lt;br /&gt;
folder-hook $folder 'source ~/.mutt/vtluug'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Local Mail on acidburn ==&lt;br /&gt;
&lt;br /&gt;
This is how one would read and send local mail on acidburn. This is a fully functional &amp;lt;code&amp;gt;.muttrc&amp;lt;/code&amp;gt;, however we&lt;br /&gt;
would suggest setting your mutt editor, setting your encoding preference (UTF-8), and changing keybindings to preference.&lt;br /&gt;
&lt;br /&gt;
'''NOTE: storing passwords in cleartext on acidburn is not recommended, nor is storing your pgp key on acidburn so you can decrypt it'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
set mbox_type=Maildir           #acidburn uses maildirs&lt;br /&gt;
set folder=$HOME/Maildir&lt;br /&gt;
set spoolfile=+/&lt;br /&gt;
set header_cache=~/.cache/mutt  #optional; header caching speeds things up&lt;br /&gt;
&lt;br /&gt;
set my_pass= &amp;lt;your password here&amp;gt;&lt;br /&gt;
set my_user=wadsworth&lt;br /&gt;
&lt;br /&gt;
set realname = &amp;quot;Wadsworth Luugbot&amp;quot;&lt;br /&gt;
set from = wadsworth@vtluug.org&lt;br /&gt;
set use_from = yes&lt;br /&gt;
&lt;br /&gt;
# This is needed if you want to send from another ldapified server&lt;br /&gt;
#set smtp_url=smtps://$my_user:$my_pass@acidburn.vtluug.org:587&lt;br /&gt;
#set ssl_force_tls = yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Howtos]]&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
[[Category:Mail clients]]&lt;br /&gt;
[[Cagetory:Needs restoration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Category:2019&amp;diff=7735</id>
		<title>Category:2019</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Category:2019&amp;diff=7735"/>
		<updated>2020-06-02T15:27:35Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[category:Roadmap]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Category:2018&amp;diff=7734</id>
		<title>Category:2018</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Category:2018&amp;diff=7734"/>
		<updated>2020-06-02T15:26:48Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[category:roadmap]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Deprecated_Inventory&amp;diff=7733</id>
		<title>Deprecated Inventory</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Deprecated_Inventory&amp;diff=7733"/>
		<updated>2020-06-01T23:03:07Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Type&lt;br /&gt;
! Hostname&lt;br /&gt;
! Room&lt;br /&gt;
! Location&lt;br /&gt;
! Circuit&lt;br /&gt;
! Owner&lt;br /&gt;
! Use&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:theplague|theplague.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Syslog&lt;br /&gt;
| Unkerberized&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| tardis.vtluug.org&lt;br /&gt;
| unknown&lt;br /&gt;
| R1U01&lt;br /&gt;
| &lt;br /&gt;
| [[User:Timelord|Timelord]]&lt;br /&gt;
| IRC server&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| vilnius&lt;br /&gt;
| TORG 1300&lt;br /&gt;
| wopr&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
| PXEboot&lt;br /&gt;
| For installfests&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| mirror2&lt;br /&gt;
| unknown&lt;br /&gt;
| R1U00&lt;br /&gt;
| &lt;br /&gt;
| [[User:via|via]]/ECE&lt;br /&gt;
| Arch/OpenBSD mirror&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Sunway|Sunway]] (19 nodes)&lt;br /&gt;
| Squires 350A&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG/ECE&lt;br /&gt;
| Cluster&lt;br /&gt;
| Now WUVT's&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Blade|blade.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| LDAP/Kerberos&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Cerealkiller|cerealkiller.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Tor relay&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Lordnikon|lordnikon.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| DNS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| Squires 350A&lt;br /&gt;
| R1U10-11&lt;br /&gt;
| &lt;br /&gt;
| via?&lt;br /&gt;
| ??&lt;br /&gt;
| Supermicro box --  Now WUVT's&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| mirror.ece.vt.edu&lt;br /&gt;
| WHIT 355&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| [[User:Timelord|jpo]]&lt;br /&gt;
| Arch/OpenBSD mirror&lt;br /&gt;
| Running OpenBSD&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| 32-bit Penguin Computing box&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| No drives&lt;br /&gt;
| Dell server&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| No RAM, VGA broken&lt;br /&gt;
| Penguin Computing box&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| dog.ece.vt.edu&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| ECE (tagged)&lt;br /&gt;
| PXE server&lt;br /&gt;
| OpenBSD, Dvorak keyboard&lt;br /&gt;
|-&lt;br /&gt;
| 8-port Switch&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Patch panel&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
|&lt;br /&gt;
| Mostly cat5 cable (100mbit/s)&lt;br /&gt;
|-&lt;br /&gt;
| KVM switch&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| KVM switch&lt;br /&gt;
| Used for wood, mirror, temp88191&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Sczi_(2nd_generation)|scziold.vtluug.org]]&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Web server&lt;br /&gt;
| Hosted on [[Infrastructure:Cyberdelia]]&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Razor|razor.vtluug.org]]&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| LDAP&lt;br /&gt;
| Hosted on [[Infrastructure:Cyberdelia]]&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Crashoverride|crashoverride.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Tahoe-LAFS&lt;br /&gt;
| Currently Down&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:temp88191|temp88191.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG/ECE&lt;br /&gt;
| Router&lt;br /&gt;
| Ubuntu 14.04&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Wood|wood.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| HPC&lt;br /&gt;
| 4U, conviently high enough to fit gpus&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Phantomphreak|phantomphreak.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
|&lt;br /&gt;
| Given to [[User:toocrazzzzy]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Deprecated_Inventory&amp;diff=7732</id>
		<title>Deprecated Inventory</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Deprecated_Inventory&amp;diff=7732"/>
		<updated>2020-06-01T23:01:15Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Type&lt;br /&gt;
! Hostname&lt;br /&gt;
! Room&lt;br /&gt;
! Location&lt;br /&gt;
! Circuit&lt;br /&gt;
! Owner&lt;br /&gt;
! Use&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:theplague|theplague.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Syslog&lt;br /&gt;
| Unkerberized&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| tardis.vtluug.org&lt;br /&gt;
| unknown&lt;br /&gt;
| R1U01&lt;br /&gt;
| &lt;br /&gt;
| [[User:Timelord|Timelord]]&lt;br /&gt;
| IRC server&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| vilnius&lt;br /&gt;
| TORG 1300&lt;br /&gt;
| wopr&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
| PXEboot&lt;br /&gt;
| For installfests&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| mirror2&lt;br /&gt;
| unknown&lt;br /&gt;
| R1U00&lt;br /&gt;
| &lt;br /&gt;
| [[User:via|via]]/ECE&lt;br /&gt;
| Arch/OpenBSD mirror&lt;br /&gt;
|&lt;br /&gt;
|- &lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Sunway|Sunway]] (19 nodes)&lt;br /&gt;
| Squires 350A&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG/ECE&lt;br /&gt;
| Cluster&lt;br /&gt;
| Now WUVT's&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Blade|blade.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| LDAP/Kerberos&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Cerealkiller|cerealkiller.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Tor relay&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Lordnikon|lordnikon.vtluug.org]]&lt;br /&gt;
| WHIT 432&lt;br /&gt;
| R1U15-16*&lt;br /&gt;
| LV4G-7&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| DNS&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| Squires 350A&lt;br /&gt;
| R1U10-11&lt;br /&gt;
| &lt;br /&gt;
| via?&lt;br /&gt;
| ??&lt;br /&gt;
| Supermicro box --  Now WUVT's&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| mirror.ece.vt.edu&lt;br /&gt;
| WHIT 355&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| [[User:Timelord|jpo]]&lt;br /&gt;
| Arch/OpenBSD mirror&lt;br /&gt;
| Running OpenBSD&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| 32-bit Penguin Computing box&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| No drives&lt;br /&gt;
| Dell server&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| N/A&lt;br /&gt;
| [[user:uncurlhalo]]&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| No RAM, VGA broken&lt;br /&gt;
| Penguin Computing box&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| dog.ece.vt.edu&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| ECE (tagged)&lt;br /&gt;
| PXE server&lt;br /&gt;
| OpenBSD, Dvorak keyboard&lt;br /&gt;
|-&lt;br /&gt;
| 8-port Switch&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Patch panel&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
|&lt;br /&gt;
| Mostly cat5 cable (100mbit/s)&lt;br /&gt;
|-&lt;br /&gt;
| KVM switch&lt;br /&gt;
| N/A&lt;br /&gt;
| [[User:uncurlhalo]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| KVM switch&lt;br /&gt;
| Used for wood, mirror, temp88191&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Sczi_(2nd_generation)|scziold.vtluug.org]]&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Web server&lt;br /&gt;
| Hosted on [[Infrastructure:Cyberdelia]]&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Razor|razor.vtluug.org]]&lt;br /&gt;
| Whit 7xx&lt;br /&gt;
| &lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| LDAP&lt;br /&gt;
| Hosted on [[Infrastructure:Cyberdelia]]&lt;br /&gt;
|-&lt;br /&gt;
| VM&lt;br /&gt;
| [[Infrastructure:Crashoverride|crashoverride.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| Tahoe-LAFS&lt;br /&gt;
| Currently Down&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:temp88191|temp88191.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG/ECE&lt;br /&gt;
| Router&lt;br /&gt;
| Ubuntu 14.04&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Wood|wood.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
| VTLUUG&lt;br /&gt;
| HPC&lt;br /&gt;
| 4U, conviently high enough to fit gpus&lt;br /&gt;
|-&lt;br /&gt;
| Server&lt;br /&gt;
| [[Infrastructure:Phantomphreak|phantomphreak.vtluug.org]]&lt;br /&gt;
| WHIT 7xx&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| VTLUUG&lt;br /&gt;
|&lt;br /&gt;
| Given to [[User:toocrazzzzy]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Project_list&amp;diff=7731</id>
		<title>Project list</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Project_list&amp;diff=7731"/>
		<updated>2020-06-01T22:50:49Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of the various infrastructure/funding/etc projects that need to be done. Priority should range between 0 and 10 (inclusive), where higher is more imporant. Also check out [[dead projects]] and [[finished projects]].&lt;br /&gt;
&lt;br /&gt;
{| class='wikitable' id='sortMe'&lt;br /&gt;
!Priority&lt;br /&gt;
!Project&lt;br /&gt;
!Description&lt;br /&gt;
!Leader&lt;br /&gt;
!Progress&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|[[Infrastructure]]&lt;br /&gt;
|Infrastructure Maintenance&lt;br /&gt;
|[[user:echarlie|echarlie]], [[user:pew|pew]], current sysadmin???&lt;br /&gt;
|Ongoing&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|[[Funding]]&lt;br /&gt;
|Get SEC/SBB funding&lt;br /&gt;
|&lt;br /&gt;
|An officer needs to attend SBB orientation, after that, $current_treasurer needs to know what exactly is needed, as we can only request funding for specific items and not general club money.&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|[[T-shirts]]&lt;br /&gt;
|Decide on a t-shirt design, do a group order&lt;br /&gt;
|[[user:marcus|marcusw]]&lt;br /&gt;
|Need new candidate designs&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|[[Wiki expansion]]&lt;br /&gt;
|Update existing content, import content into Gobblerpedia&lt;br /&gt;
|[[user:echarlie|echarlie]], $current_secretary&lt;br /&gt;
|Evaluating current state of pages&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|[[Project Bringing Sexy Back|Club automation]]&lt;br /&gt;
|Configuration management, etc&lt;br /&gt;
|$sysadmin&lt;br /&gt;
|Need automation stuff setup to enable rapid re-deployment of infrastructure&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|[[VTLUUG:Inventory|Inventory]]&lt;br /&gt;
|Go through the offline equipment stored with [[user:marcus|marcusw]] and update information on [[VTLUUG:Inventory|Inventory]]&lt;br /&gt;
|[[user:echarlie|echarlie]]&lt;br /&gt;
|Done???&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|Develop Backup Solution&lt;br /&gt;
|Needs to be proposed and then agreed to by officers&lt;br /&gt;
|[[user:pew|pew]]&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VTLUUG:Projects]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Project_list&amp;diff=7730</id>
		<title>Project list</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Project_list&amp;diff=7730"/>
		<updated>2020-06-01T22:50:19Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is a list of the various infrastructure/funding/etc projects that need to be done. Priority should range between 0 and 10 (inclusive), where higher is more imporant. Also check out [[dead projects]] and [[finished projects]].&lt;br /&gt;
&lt;br /&gt;
{| class='wikitable' id='sortMe'&lt;br /&gt;
!Priority&lt;br /&gt;
!Project&lt;br /&gt;
!Description&lt;br /&gt;
!Leader&lt;br /&gt;
!Progress&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|[[Infrastructure]]&lt;br /&gt;
|Infrastructure Maintenance&lt;br /&gt;
|[[user:echarlie|echarlie]], [[user:pew|pew]], current sysadmin???&lt;br /&gt;
|Ongoing&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|[[Funding]]&lt;br /&gt;
|Get SEC/SBB funding&lt;br /&gt;
|&lt;br /&gt;
|An officer needs to attend SBB orientation, after that, $current_treasurer needs to know what exactly is needed, as we can only request funding for specific items and not general club money.&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|[[T-shirts]]&lt;br /&gt;
|Decide on a t-shirt design, do a group order&lt;br /&gt;
|[[user:marcus|marcusw]]&lt;br /&gt;
|Need new candidate designs&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|[[Wiki expansion]]&lt;br /&gt;
|Update existing content, import content into Gobblerpedia&lt;br /&gt;
|[[user:echarlie|echarlie]]&lt;br /&gt;
|Evaluating current state of pages&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|[[Project bringing sexy back|Club automation]]&lt;br /&gt;
|Configuration management, etc&lt;br /&gt;
|$sysadmin&lt;br /&gt;
|Need automation stuff setup to enable rapid re-deployment of infrastructure&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|[[VTLUUG:Inventory|Inventory]]&lt;br /&gt;
|Go through the offline equipment stored with [[user:marcus|marcusw]] and update information on [[VTLUUG:Inventory|Inventory]]&lt;br /&gt;
|[[user:echarlie|echarlie]]&lt;br /&gt;
|Done???&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|Develop Backup Solution&lt;br /&gt;
|Needs to be proposed and then agreed to by officers&lt;br /&gt;
|[[user:pew|pew]]&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:VTLUUG:Projects]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=VTLUUG:History&amp;diff=7725</id>
		<title>VTLUUG:History</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=VTLUUG:History&amp;diff=7725"/>
		<updated>2020-05-13T21:09:20Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: /* Fall 2020 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Linux and Unix Users Group was founded in October of 1997 as the Virginia Tech Linux Users Group (VTLUG). After realizing the name clash with the Vermont Linux Users Group, the organization changed its name to the Virginia Tech Linux and Unix Users Group (VTLUUG). In the fall of 2009, the name was again changed, this time to comply with registered student organization regulations. Virginia Tech was moved to the end of the organization's full name, but the acronym has been kept, in part because changing domain names would be a hassle. &lt;br /&gt;
&lt;br /&gt;
== Fall 1997 ==&lt;br /&gt;
* Founded in October 1997 as the Linux Users Group of Virginia Tech&lt;br /&gt;
* Eventually became L/UUG to encompass Unix&lt;br /&gt;
&lt;br /&gt;
== Fall 1998 ==&lt;br /&gt;
* Rob Nelson&lt;br /&gt;
* Clemmitt Sigler&lt;br /&gt;
* [http://search.luky.org/cola.1998/msg01361.html Announcement of first meeting]&lt;br /&gt;
* [http://www.debian.org/events/1998/1205-vatech-installfest Installfest] held&lt;br /&gt;
&lt;br /&gt;
== Spring 1999 ==&lt;br /&gt;
* [http://web.archive.org/web/19990219122456/http://corvette.me.vt.edu/~vtlug/ Old website]&lt;br /&gt;
* Server was corvette.me.vt.edu, a Pentium 133 which hosted the LUUG website, as well as Linux distributions over FTP and NFS&lt;br /&gt;
* Early February, 1999: Members of the L/UUG at VT officially begin planning a [[VTLUUG:Beowulf Cluster|Beowulf Cluster]] project.&lt;br /&gt;
&lt;br /&gt;
== Fall 1999 ==&lt;br /&gt;
* Beowulf cluster completed?&lt;br /&gt;
&lt;br /&gt;
== Spring 2001 ==&lt;br /&gt;
;President              :H. Lally Singh&lt;br /&gt;
;Vice President         :Josh Baugher&lt;br /&gt;
;Treasurer              :George Morgan &lt;br /&gt;
;Secretary              :Wes Kurdziolek&lt;br /&gt;
;Steering Committee&lt;br /&gt;
: Clemmitt Sigler&lt;br /&gt;
: Josh Baugher&lt;br /&gt;
: Bucky LaDieu&lt;br /&gt;
: H. Lally Singh&lt;br /&gt;
: Nick Maniscalco&lt;br /&gt;
;Worker Peons&lt;br /&gt;
: Clemmitt Sigler (sysadmin)&lt;br /&gt;
: Rob Nelson (sysadmin)&lt;br /&gt;
: Logan Hanks (webmaster)&lt;br /&gt;
: Rob Hunter (webmaster)&lt;br /&gt;
;Donors&lt;br /&gt;
: Vincent Rivellino&lt;br /&gt;
: Adam Kendall&lt;br /&gt;
: Lyle Evans&lt;br /&gt;
: Kermit Duncan&lt;br /&gt;
: Austin Graves&lt;br /&gt;
: Ethan James&lt;br /&gt;
&lt;br /&gt;
== Fall 2001 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2002 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Fall 2002 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2003 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Fall 2003 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2004 ==&lt;br /&gt;
Club did not exist&lt;br /&gt;
&lt;br /&gt;
== Fall 2004 ==&lt;br /&gt;
;President              :H. Lally Singh&lt;br /&gt;
;Vice President         :Jerome Holman&lt;br /&gt;
&lt;br /&gt;
== Spring 2005 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
&lt;br /&gt;
* Installfests started&lt;br /&gt;
* Crash courses started&lt;br /&gt;
* BoFs restarted&lt;br /&gt;
&lt;br /&gt;
== Fall 2005 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
&lt;br /&gt;
== Spring 2006 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
* Registered as non-profit with IRS in June&lt;br /&gt;
&lt;br /&gt;
== Fall 2006 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
;Treasurer              :Dan Caughran&lt;br /&gt;
&lt;br /&gt;
== Spring 2007 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
;Treasurer              :Dan Caughran&lt;br /&gt;
&lt;br /&gt;
== Fall 2007 ==&lt;br /&gt;
;President              :Sean Elble&lt;br /&gt;
;Vice-President         :Dan Caughran&lt;br /&gt;
;Treasurer              :Dan Cohn&lt;br /&gt;
;Secretary              :Ben Hilburn&lt;br /&gt;
;Programs Manager       :Casey Link&lt;br /&gt;
;Systems Administrator  :Dave Vogt&lt;br /&gt;
;Graduate Liaison       :Chris Lasher&lt;br /&gt;
&lt;br /&gt;
== Spring 2008 ==&lt;br /&gt;
;President              :Sean Elble&lt;br /&gt;
;Vice President         :Dan Caughran&lt;br /&gt;
;Secretary              :Ben Hilburn&lt;br /&gt;
&lt;br /&gt;
== Fall 2008 ==&lt;br /&gt;
;President              :Casey Link&lt;br /&gt;
;Activities Coordinator :[[User:Cov|Christopher Covington]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2009 ==&lt;br /&gt;
;Benevolent Dictator    :Christopher Covington&lt;br /&gt;
;Graduate Liaison       :Chris Lasher&lt;br /&gt;
&lt;br /&gt;
== Fall 2009 ==&lt;br /&gt;
;President              :Christopher Covington&lt;br /&gt;
;Vice President         :Paul Galiatsatos&lt;br /&gt;
&lt;br /&gt;
== Spring 2010 ==&lt;br /&gt;
;President              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* [[Cyber Security Competition]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2010 ==&lt;br /&gt;
;President              :[[User:Mutantmonkey|James Schwinabart]]&lt;br /&gt;
;Vice President         :Stephen Tanner&lt;br /&gt;
;Treasurer              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* [[Infrastructure:Wood|Wood]] was built with hardware selected by the [[Hardware Selection Task Force]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2011 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :[[User:Ram|Reese Moore]]&lt;br /&gt;
;Treasurer              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* The LUUG participated in the [[Collegiate Cyber Defense Competition]] for the first time&lt;br /&gt;
* [[gp:Gobblerpedia|Gobblerpedia]] launched on February 11, 2011&lt;br /&gt;
* [[u:Uniluug|Uniluug]] launched&lt;br /&gt;
* Participated in e-week for [[gp:Students Engineers' Council|SEC]] and ran an arcade booth with GNU/Linux games&lt;br /&gt;
&lt;br /&gt;
== Fall 2011 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :Reese Moore&lt;br /&gt;
;Treasurer              :Erich Alderfer&lt;br /&gt;
&lt;br /&gt;
== Spring 2012 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :Reese Moore&lt;br /&gt;
;Treasurer              :Lukas Lozovski&lt;br /&gt;
&lt;br /&gt;
==Fall 2012==&lt;br /&gt;
;President              :Calvin Winkowski&lt;br /&gt;
;Vice President         :Lukas Lozovski&lt;br /&gt;
;Treasurer              :James Gross&lt;br /&gt;
;Sysadmin               :James Schwinabart&lt;br /&gt;
;Outreach Coordinator   :Reese Moore&lt;br /&gt;
* October 2012 is the [[15th Anniversary]] of VTLUUG!&lt;br /&gt;
* [[Infrastructure:Blade|Blade]] added for central authentication using Kerberos and LDAP&lt;br /&gt;
&lt;br /&gt;
==Spring 2013==&lt;br /&gt;
;President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :James Gross&lt;br /&gt;
;Sysadmin               :James Schwinabart&lt;br /&gt;
;Graduate Liason        :Reese Moore&lt;br /&gt;
* [[Infrastructure:Sunway|Sunway]] cluster created&lt;br /&gt;
&lt;br /&gt;
==Fall 2013==&lt;br /&gt;
;President              :Matt Hazinski&lt;br /&gt;
;Vice President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Treasurer              :Jacob Melton&lt;br /&gt;
;Activies Coordinator   :Noah Luther&lt;br /&gt;
;Sysadmin               :Calvin Winkowski&lt;br /&gt;
* [[Infrastructure:Cyberdelia|Cyberdelia]] acquired for [[EL Migration Project]]&lt;br /&gt;
&lt;br /&gt;
==Spring 2014==&lt;br /&gt;
;President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Vice President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Treasurer              :Jacob Melton&lt;br /&gt;
;Sysadmin               :Calvin Winkowski&lt;br /&gt;
* Start of [[EL Migration Project]]&lt;br /&gt;
* [[Super-secret Cluster Project]] on [[Infrastructure:Sunway|Sunway]]&lt;br /&gt;
&lt;br /&gt;
==Fall 2014==&lt;br /&gt;
;President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Vice President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :Ben Weinstein-Raun&lt;br /&gt;
;Sysadmin               :Nathan McCloskey&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
==Spring 2015==&lt;br /&gt;
;President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Vice President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :Ben Weinstein-Raun&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
== Fall 2015 ==&lt;br /&gt;
;President         :[[User:Ackthet|Wade Duvall]]&lt;br /&gt;
;Vice President              :[[User:Uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Treasurer              :Daniel Setareh&lt;br /&gt;
;Sysadmin               :John Volk&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
* [[CVL eviction]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Spring 2016&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:Ackthet|Wade Duvall]]&lt;br /&gt;
;Vice President              :[[User:Uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Treasurer              :[[User:dsetareh|Daniel Setareh]]&lt;br /&gt;
;Sysadmin               :[[User:johnv|John Volk]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Fall 2017&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Vice President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Treasurer              :[[User:johnv|John Volk]]&lt;br /&gt;
;Sysadmin               :[[User:echarlie|VACANT]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Spring 2017&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President              :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:johnv|John Volk]]&lt;br /&gt;
;Sysadmin               :[[User:pew|VACANT]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2017 ==&lt;br /&gt;
;President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President         :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Sysadmin               :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
* October marks the 20th anniversary of the LUUG&lt;br /&gt;
&lt;br /&gt;
== Spring 2018 ==&lt;br /&gt;
;President              :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President         :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Sysadmin               :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2018 ==&lt;br /&gt;
;President              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Vice President         :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2019 ==&lt;br /&gt;
;President              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2019 ==&lt;br /&gt;
;President :Philip Conte&lt;br /&gt;
&lt;br /&gt;
== Spring 2020 ==&lt;br /&gt;
;President :Philip Conte&lt;br /&gt;
&lt;br /&gt;
== Fall 2020 ==&lt;br /&gt;
&lt;br /&gt;
;President     :Ryan Gniadek&lt;br /&gt;
;Vice President    :Joshua Detwiler&lt;br /&gt;
;Treasurer    :Grant Batdorff&lt;br /&gt;
;Sysadmin    :Josh Kirkham&lt;br /&gt;
;Outreach Chair    :Ben Bernstein&lt;br /&gt;
;Emacs and Arch Evangelist    :Daniel Guagliardo &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:VTLUUG:Administration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=VTLUUG:History&amp;diff=7724</id>
		<title>VTLUUG:History</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=VTLUUG:History&amp;diff=7724"/>
		<updated>2020-05-13T21:09:07Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: try to update some history that had been missing/lost. low-effort and based on memory&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Linux and Unix Users Group was founded in October of 1997 as the Virginia Tech Linux Users Group (VTLUG). After realizing the name clash with the Vermont Linux Users Group, the organization changed its name to the Virginia Tech Linux and Unix Users Group (VTLUUG). In the fall of 2009, the name was again changed, this time to comply with registered student organization regulations. Virginia Tech was moved to the end of the organization's full name, but the acronym has been kept, in part because changing domain names would be a hassle. &lt;br /&gt;
&lt;br /&gt;
== Fall 1997 ==&lt;br /&gt;
* Founded in October 1997 as the Linux Users Group of Virginia Tech&lt;br /&gt;
* Eventually became L/UUG to encompass Unix&lt;br /&gt;
&lt;br /&gt;
== Fall 1998 ==&lt;br /&gt;
* Rob Nelson&lt;br /&gt;
* Clemmitt Sigler&lt;br /&gt;
* [http://search.luky.org/cola.1998/msg01361.html Announcement of first meeting]&lt;br /&gt;
* [http://www.debian.org/events/1998/1205-vatech-installfest Installfest] held&lt;br /&gt;
&lt;br /&gt;
== Spring 1999 ==&lt;br /&gt;
* [http://web.archive.org/web/19990219122456/http://corvette.me.vt.edu/~vtlug/ Old website]&lt;br /&gt;
* Server was corvette.me.vt.edu, a Pentium 133 which hosted the LUUG website, as well as Linux distributions over FTP and NFS&lt;br /&gt;
* Early February, 1999: Members of the L/UUG at VT officially begin planning a [[VTLUUG:Beowulf Cluster|Beowulf Cluster]] project.&lt;br /&gt;
&lt;br /&gt;
== Fall 1999 ==&lt;br /&gt;
* Beowulf cluster completed?&lt;br /&gt;
&lt;br /&gt;
== Spring 2001 ==&lt;br /&gt;
;President              :H. Lally Singh&lt;br /&gt;
;Vice President         :Josh Baugher&lt;br /&gt;
;Treasurer              :George Morgan &lt;br /&gt;
;Secretary              :Wes Kurdziolek&lt;br /&gt;
;Steering Committee&lt;br /&gt;
: Clemmitt Sigler&lt;br /&gt;
: Josh Baugher&lt;br /&gt;
: Bucky LaDieu&lt;br /&gt;
: H. Lally Singh&lt;br /&gt;
: Nick Maniscalco&lt;br /&gt;
;Worker Peons&lt;br /&gt;
: Clemmitt Sigler (sysadmin)&lt;br /&gt;
: Rob Nelson (sysadmin)&lt;br /&gt;
: Logan Hanks (webmaster)&lt;br /&gt;
: Rob Hunter (webmaster)&lt;br /&gt;
;Donors&lt;br /&gt;
: Vincent Rivellino&lt;br /&gt;
: Adam Kendall&lt;br /&gt;
: Lyle Evans&lt;br /&gt;
: Kermit Duncan&lt;br /&gt;
: Austin Graves&lt;br /&gt;
: Ethan James&lt;br /&gt;
&lt;br /&gt;
== Fall 2001 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2002 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Fall 2002 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2003 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Fall 2003 ==&lt;br /&gt;
;President              :Wes Kurdziolek&lt;br /&gt;
;VP of IT               :Rob Hunter&lt;br /&gt;
;Treasurer              :Joseph Goodman&lt;br /&gt;
&lt;br /&gt;
== Spring 2004 ==&lt;br /&gt;
Club did not exist&lt;br /&gt;
&lt;br /&gt;
== Fall 2004 ==&lt;br /&gt;
;President              :H. Lally Singh&lt;br /&gt;
;Vice President         :Jerome Holman&lt;br /&gt;
&lt;br /&gt;
== Spring 2005 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
&lt;br /&gt;
* Installfests started&lt;br /&gt;
* Crash courses started&lt;br /&gt;
* BoFs restarted&lt;br /&gt;
&lt;br /&gt;
== Fall 2005 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
&lt;br /&gt;
== Spring 2006 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
* Registered as non-profit with IRS in June&lt;br /&gt;
&lt;br /&gt;
== Fall 2006 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
;Treasurer              :Dan Caughran&lt;br /&gt;
&lt;br /&gt;
== Spring 2007 ==&lt;br /&gt;
;President              :Ben Hilburn&lt;br /&gt;
;Vice President         :Sean Elble&lt;br /&gt;
;Treasurer              :Dan Caughran&lt;br /&gt;
&lt;br /&gt;
== Fall 2007 ==&lt;br /&gt;
;President              :Sean Elble&lt;br /&gt;
;Vice-President         :Dan Caughran&lt;br /&gt;
;Treasurer              :Dan Cohn&lt;br /&gt;
;Secretary              :Ben Hilburn&lt;br /&gt;
;Programs Manager       :Casey Link&lt;br /&gt;
;Systems Administrator  :Dave Vogt&lt;br /&gt;
;Graduate Liaison       :Chris Lasher&lt;br /&gt;
&lt;br /&gt;
== Spring 2008 ==&lt;br /&gt;
;President              :Sean Elble&lt;br /&gt;
;Vice President         :Dan Caughran&lt;br /&gt;
;Secretary              :Ben Hilburn&lt;br /&gt;
&lt;br /&gt;
== Fall 2008 ==&lt;br /&gt;
;President              :Casey Link&lt;br /&gt;
;Activities Coordinator :[[User:Cov|Christopher Covington]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2009 ==&lt;br /&gt;
;Benevolent Dictator    :Christopher Covington&lt;br /&gt;
;Graduate Liaison       :Chris Lasher&lt;br /&gt;
&lt;br /&gt;
== Fall 2009 ==&lt;br /&gt;
;President              :Christopher Covington&lt;br /&gt;
;Vice President         :Paul Galiatsatos&lt;br /&gt;
&lt;br /&gt;
== Spring 2010 ==&lt;br /&gt;
;President              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* [[Cyber Security Competition]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2010 ==&lt;br /&gt;
;President              :[[User:Mutantmonkey|James Schwinabart]]&lt;br /&gt;
;Vice President         :Stephen Tanner&lt;br /&gt;
;Treasurer              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* [[Infrastructure:Wood|Wood]] was built with hardware selected by the [[Hardware Selection Task Force]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2011 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :[[User:Ram|Reese Moore]]&lt;br /&gt;
;Treasurer              :Christopher Covington&lt;br /&gt;
&lt;br /&gt;
* The LUUG participated in the [[Collegiate Cyber Defense Competition]] for the first time&lt;br /&gt;
* [[gp:Gobblerpedia|Gobblerpedia]] launched on February 11, 2011&lt;br /&gt;
* [[u:Uniluug|Uniluug]] launched&lt;br /&gt;
* Participated in e-week for [[gp:Students Engineers' Council|SEC]] and ran an arcade booth with GNU/Linux games&lt;br /&gt;
&lt;br /&gt;
== Fall 2011 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :Reese Moore&lt;br /&gt;
;Treasurer              :Erich Alderfer&lt;br /&gt;
&lt;br /&gt;
== Spring 2012 ==&lt;br /&gt;
;President              :James Schwinabart&lt;br /&gt;
;Vice President         :Reese Moore&lt;br /&gt;
;Treasurer              :Lukas Lozovski&lt;br /&gt;
&lt;br /&gt;
==Fall 2012==&lt;br /&gt;
;President              :Calvin Winkowski&lt;br /&gt;
;Vice President         :Lukas Lozovski&lt;br /&gt;
;Treasurer              :James Gross&lt;br /&gt;
;Sysadmin               :James Schwinabart&lt;br /&gt;
;Outreach Coordinator   :Reese Moore&lt;br /&gt;
* October 2012 is the [[15th Anniversary]] of VTLUUG!&lt;br /&gt;
* [[Infrastructure:Blade|Blade]] added for central authentication using Kerberos and LDAP&lt;br /&gt;
&lt;br /&gt;
==Spring 2013==&lt;br /&gt;
;President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :James Gross&lt;br /&gt;
;Sysadmin               :James Schwinabart&lt;br /&gt;
;Graduate Liason        :Reese Moore&lt;br /&gt;
* [[Infrastructure:Sunway|Sunway]] cluster created&lt;br /&gt;
&lt;br /&gt;
==Fall 2013==&lt;br /&gt;
;President              :Matt Hazinski&lt;br /&gt;
;Vice President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Treasurer              :Jacob Melton&lt;br /&gt;
;Activies Coordinator   :Noah Luther&lt;br /&gt;
;Sysadmin               :Calvin Winkowski&lt;br /&gt;
* [[Infrastructure:Cyberdelia|Cyberdelia]] acquired for [[EL Migration Project]]&lt;br /&gt;
&lt;br /&gt;
==Spring 2014==&lt;br /&gt;
;President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Vice President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Treasurer              :Jacob Melton&lt;br /&gt;
;Sysadmin               :Calvin Winkowski&lt;br /&gt;
* Start of [[EL Migration Project]]&lt;br /&gt;
* [[Super-secret Cluster Project]] on [[Infrastructure:Sunway|Sunway]]&lt;br /&gt;
&lt;br /&gt;
==Fall 2014==&lt;br /&gt;
;President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Vice President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :Ben Weinstein-Raun&lt;br /&gt;
;Sysadmin               :Nathan McCloskey&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
==Spring 2015==&lt;br /&gt;
;President         :[[User:Andreim|Andrei Marcu]]&lt;br /&gt;
;Vice President              :[[User:Mjh|Matt Hazinski]]&lt;br /&gt;
;Treasurer              :Ben Weinstein-Raun&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
== Fall 2015 ==&lt;br /&gt;
;President         :[[User:Ackthet|Wade Duvall]]&lt;br /&gt;
;Vice President              :[[User:Uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Treasurer              :Daniel Setareh&lt;br /&gt;
;Sysadmin               :John Volk&lt;br /&gt;
;Sysadmin Emeritus :Calvin Winkowski&lt;br /&gt;
&lt;br /&gt;
* [[CVL eviction]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Spring 2016&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:Ackthet|Wade Duvall]]&lt;br /&gt;
;Vice President              :[[User:Uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Treasurer              :[[User:dsetareh|Daniel Setareh]]&lt;br /&gt;
;Sysadmin               :[[User:johnv|John Volk]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Fall 2017&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:uncurlhalo|Jacob Melton]]&lt;br /&gt;
;Vice President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Treasurer              :[[User:johnv|John Volk]]&lt;br /&gt;
;Sysadmin               :[[User:echarlie|VACANT]]&lt;br /&gt;
&lt;br /&gt;
==&amp;lt;span class=&amp;quot;mw-headline&amp;quot; id=&amp;quot;current&amp;quot;&amp;gt;Spring 2017&amp;lt;/span&amp;gt;==&lt;br /&gt;
;President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President              :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:johnv|John Volk]]&lt;br /&gt;
;Sysadmin               :[[User:pew|VACANT]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2017 ==&lt;br /&gt;
;President         :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President         :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Sysadmin               :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
* October marks the 20th anniversary of the LUUG&lt;br /&gt;
&lt;br /&gt;
== Spring 2018 ==&lt;br /&gt;
;President              :[[User:marcus|Marcus Wanners]]&lt;br /&gt;
;Vice President         :[[User:echarlie|E. C. Landgraf]]&lt;br /&gt;
;Treasurer              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Sysadmin               :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2018 ==&lt;br /&gt;
;President              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
;Vice President         :[[User:pew|Paul Walko]]&lt;br /&gt;
&lt;br /&gt;
== Spring 2019 ==&lt;br /&gt;
;President              :[[User:bgregos|Brendan Gregos]]&lt;br /&gt;
&lt;br /&gt;
== Fall 2019 ==&lt;br /&gt;
;President :Philip Conte&lt;br /&gt;
&lt;br /&gt;
== Spring 2020 ==&lt;br /&gt;
;President :Philip Conte&lt;br /&gt;
&lt;br /&gt;
== Fall 2020 ==&lt;br /&gt;
&lt;br /&gt;
;President     :Ryan Gniadek&lt;br /&gt;
;Vice President    :Joshua Detwiler&lt;br /&gt;
;Treasurer    :Grant Batdorff&lt;br /&gt;
;Sysadmin    :Josh Kirkham&lt;br /&gt;
;Outreach Chair    :Ben Bernstein&lt;br /&gt;
;Emacs and Arch Evangelist    ;Daniel Guagliardo &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:VTLUUG:Administration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Virginia_Tech_Wifi&amp;diff=7711</id>
		<title>Virginia Tech Wifi</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Virginia_Tech_Wifi&amp;diff=7711"/>
		<updated>2019-04-25T20:50:11Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: openbsd typos /* wpa_supplicant Instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;On campus, there are 2 wireless networks. '''eduroam''' is the preferred method, which uses PEAP-MSCHAPv2 to authenticate to the RADIUS server, while the second SSID, '''VirginiaTech''', provides a captive-portal and allows for guest account creation.&lt;br /&gt;
&lt;br /&gt;
As of January 2015 the [https://www.computing.vt.edu/content/eduroam preferred method] of wireless access at Virginia Tech is through the [https://eduroam.org/ eduroam] network. eduroam is a secure wireless access service that was developed for the use of research and educational institutions. One of the advantages of the eduroam network is that you will be able to connect to the Internet at any participating institution using your Virginia Tech credentials. The eduroam-US site provides a [https://www.eduroam.us/technical_overview technical overview] of how the network authenticates you to the Virginia Tech RADIUS servers.&lt;br /&gt;
&lt;br /&gt;
==General Connection Information==&lt;br /&gt;
===eduroam===&lt;br /&gt;
The following settings are recommended for connecting to the eduroam network:&lt;br /&gt;
&lt;br /&gt;
* '''SSID:''' eduroam&lt;br /&gt;
* '''EAP:''' PEAP&lt;br /&gt;
* '''Phase 2:''' MSCHAPv2&lt;br /&gt;
* '''Root CA:''' &amp;quot;USERTrust RSA Certification Authority&amp;quot; or pin the certificate (see below)&lt;br /&gt;
* '''Server Name:''' eduroam.nis.vt.edu&lt;br /&gt;
* '''Identity:''' pid@vt.edu (So if your PID was &amp;quot;hokiebird&amp;quot;, hokiebird@vt.edu)&lt;br /&gt;
* '''Anonymous Identity:''' anonymous@vt.edu&lt;br /&gt;
* '''Password:''' [https://www.computing.vt.edu/kb/entry/3765 Your Network Password]&lt;br /&gt;
&lt;br /&gt;
''Regardless of what software you use to establish your connection, you must first set your remote (network) passphrase by going to [https://my.vt.edu my.vt.edu]→Settings→Change Network Password.''&lt;br /&gt;
&lt;br /&gt;
===Obtaining the Certificate Chain===&lt;br /&gt;
&lt;br /&gt;
The certificate presented by the RADIUS server is chained as such:&lt;br /&gt;
&lt;br /&gt;
* USERTrust RSA Certification Authority&lt;br /&gt;
** InCommon RSA Server CA &lt;br /&gt;
*** eduroam.nis.vt.edu&lt;br /&gt;
&lt;br /&gt;
Below is where to obtain each of these, along with some metadata. The filenames are arbitrary, but will be used for the rest of this article. For every certificate (''especially'' the root, the signature chain helps with the rest), consider where you are obtaining it from and how much trust that you are getting what you think you are. You will probably want the PEM formatted certificate, if you have the option.&lt;br /&gt;
&lt;br /&gt;
====USERTrust RSA Certification Authority====&lt;br /&gt;
&lt;br /&gt;
''Filename:'' USERTrust_RSA_Certification_Authority.pem&lt;br /&gt;
&lt;br /&gt;
''Subject:'' C = US, ST = New Jersey, L = Jersey City, O = The USERTRUST Network, CN = USERTrust RSA Certification Authority&lt;br /&gt;
&lt;br /&gt;
This is a common root CA and should have shipped with your OS. It is likely located in &amp;lt;code&amp;gt;/etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem&amp;lt;/code&amp;gt;. Note that if you follow the Authority Information Access of the intermediate certificate, it may direct you to a URL which points to a different version of this certficate, which is cross signed by AddTrust and expires in May 2020. The one in your cert store is self-signed and expires in 2038. You want the one from your cert store.&lt;br /&gt;
&lt;br /&gt;
====InCommon RSA Server CA====&lt;br /&gt;
&lt;br /&gt;
''Filename:'' InCommonRSAServerCA_2.pem&lt;br /&gt;
&lt;br /&gt;
''Subject:'' C = US, ST = MI, L = Ann Arbor, O = Internet2, OU = InCommon, CN = InCommon RSA Server CA&lt;br /&gt;
&lt;br /&gt;
This is an intermediate certificate issued by InCommon. You can get it directly from InCommon [http://crt.usertrust.com/InCommonRSAServerCA_2.crt here].&lt;br /&gt;
&lt;br /&gt;
====eduroam.nis.vt.edu====&lt;br /&gt;
&lt;br /&gt;
''Filename:'' eduroam.nis.vt.edu.pem&lt;br /&gt;
&lt;br /&gt;
''Subject:'' C = US, postalCode = 24061, ST = Virginia, L = Blacksburg, street = 800 Washington St. SW, O = Virginia Polytechnic Institute and State University, OU = Secure Identity Services, CN = eduroam.nis.vt.edu&lt;br /&gt;
&lt;br /&gt;
This can be obtained from the [https://certs.it.vt.edu/search VT Certificate Manager]. This requires PID login. Search for &amp;quot;eduroam.nis.vt.edu&amp;quot;. Grab the certificate most recently issued.&lt;br /&gt;
&lt;br /&gt;
===Validating the certificate===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Obtain ''all'' certificates in the chain ''in PEM format'' &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Concatenate the non-leaf certificates in to a single file: &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ cat USERTrust_RSA_Certification_Authority.pem InCommonRSAServerCA_2.pem &amp;gt; ca.pem&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; Verify the certificates are signed correctly &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ openssl verify -verbose -purpose sslserver -CAfile ca.pem eduroam.nis.vt.edu.pem&lt;br /&gt;
eduroam.nis.vt.edu.pem: OK&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt; For at least the root and leaf certificates, verify the subject (compare to above) &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;$ openssl x509 -in file_of_cert_you_want_to_check -noout -subject&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Certificate Pinning===&lt;br /&gt;
&lt;br /&gt;
Due to vulnerabilities in the MSCHAPv2 protocol that allow the protocol to be cracked quickly with a 100% success rate&amp;lt;ref&amp;gt;[https://web.archive.org/web/20160316174007/https://www.cloudcracker.com/blog/2012/07/29/cracking-ms-chap-v2/]&amp;lt;/ref&amp;gt;, it is ''absolutely critical'' that the RADIUS server certificate be validated properly before attempting authentication. Where possible, we opt for the highest level of verification of the certificate: manually pinning the hash of the certificate we expect to be presented.  The canonical form of the hash used by many network managers is the SHA256 hash of the DER encoding of the certificate.&lt;br /&gt;
&lt;br /&gt;
Validate the certificate (see above) then generate the sha256 hash:&lt;br /&gt;
&lt;br /&gt;
 $ openssl x509 -in eduroam.nis.vt.edu.crt -outform der | sha256sum&lt;br /&gt;
 9b5163a3360f07b2dce2fd1e958c541687cf4c5360bb8adc87fa821c1c969910  -&lt;br /&gt;
&lt;br /&gt;
It is recommended that you perform these steps yourself rather than trusting the certificate hash presented in the configurations below.&lt;br /&gt;
&lt;br /&gt;
'''Note:''' As we are pinning the certificate instead of relying on a PKI, when NI&amp;amp;S rotates the certificates being used (at least every 2 years), the configuration will need to be updated to match the new certificate.&lt;br /&gt;
&lt;br /&gt;
===A Word of Caution===&lt;br /&gt;
Although you can verify connection to the Virginia Tech RADIUS servers you must keep in mind that you are connecting to a network that you do not control. It is possible that there are network monitors in place which can record and potentially modify traffic.&lt;br /&gt;
&lt;br /&gt;
We encourage you to take precautions against network eavesdropping and mischief (on the eduroam network, and in general). Potential countermeasures that one might want to employ include using [https://www.eff.org/HTTPS-EVERYWHERE HTTPS when connecting to sites], using a [https://www.computing.vt.edu/content/virtual-private-network VPN], or using the [https://www.torproject.org/ Tor Browser Bundle].&lt;br /&gt;
&lt;br /&gt;
For general tips on improving your security while using the network, consider reading the EFF's [https://ssd.eff.org/ Surveillance Self-Defense] tips, reading [https://www.hokieprivacy.org/ Hokie Privacy], and/or contacting the [https://security.vt.edu/ Virginia Tech Information Security Office].&lt;br /&gt;
&lt;br /&gt;
==NetworkManager Instructions==&lt;br /&gt;
&lt;br /&gt;
In the list of wireless networks, select &amp;quot;eduroam&amp;quot;. Set the following options:&lt;br /&gt;
&lt;br /&gt;
* Wi-Fi security: WPA &amp;amp; WPA2 Enterprise&lt;br /&gt;
* Authentication: Protected EAP (PEAP)&lt;br /&gt;
* Anonymous identity: anonymous@vt.edu&lt;br /&gt;
* Domain: nis.vt.edu&lt;br /&gt;
* CA certificate: Select &amp;lt;code&amp;gt;/path/to/USERTrust_RSA_Certification_Authority.pem&amp;lt;/code&amp;gt; via the file picker&lt;br /&gt;
* PEAP version: Automatic&lt;br /&gt;
* Inner authentication: MSCHAPv2&lt;br /&gt;
* Username: PID@vt.edu&lt;br /&gt;
* Password: YOUR_NETWORK_PASSWORD&lt;br /&gt;
&lt;br /&gt;
[[File:Nm settings.png]]&lt;br /&gt;
&lt;br /&gt;
==wpa_supplicant Instructions==&lt;br /&gt;
&lt;br /&gt;
[http://w1.fi/wpa_supplicant/ wpa_supplicant] is a cross-platform supplicant which implements IEEE 802.1x/WPA and is used in many Linux/UNIX distributions.&lt;br /&gt;
&lt;br /&gt;
In order to connect to the eduroam network, add the following to &amp;lt;code&amp;gt;/etc/wpa_supplicant/eduroam.conf&amp;lt;/code&amp;gt; modifying the identity and password to reflect your PID and Network Password:&lt;br /&gt;
&lt;br /&gt;
 ctrl_interface=DIR=/run/wpa_supplicant GROUP=wheel&lt;br /&gt;
 update_config=1 &lt;br /&gt;
 fast_reauth=1&lt;br /&gt;
 ap_scan=1&lt;br /&gt;
 &lt;br /&gt;
 network={&lt;br /&gt;
     ssid=&amp;quot;eduroam&amp;quot;&lt;br /&gt;
     proto=RSN&lt;br /&gt;
     key_mgmt=WPA-EAP&lt;br /&gt;
     eap=PEAP&lt;br /&gt;
     phase2=&amp;quot;auth=MSCHAPV2&amp;quot;&lt;br /&gt;
     anonymous_identity=&amp;quot;anonymous@vt.edu&amp;quot;&lt;br /&gt;
     #THIS HASH IS OUT OF DATE, PLEASE FOLLOW INSTRUCTIONS ABOVE&lt;br /&gt;
     # if you prefer to pin the certificate&lt;br /&gt;
     ca_cert=&amp;quot;hash://server/sha256/216c5f2568c6e84860b12535efe93500623ccee999306b84260f951bcbd57b1a&amp;quot;&lt;br /&gt;
     # if you prefer to dynamically validate the certificate by its cryptographic attributes&lt;br /&gt;
     ca_cert=&amp;quot;/path/to/USERTrust_RSA_Certification_Authority.pem&amp;quot;&lt;br /&gt;
     domain_match=&amp;quot;eduroam.nis.vt.edu&amp;quot;&lt;br /&gt;
     identity=&amp;quot;YourPidHere@vt.edu&amp;quot;&lt;br /&gt;
     password=&amp;quot;YourNetworkPasswordHere&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
You can then connect to the network by running (where wlan0 is your wireless interface):&lt;br /&gt;
&lt;br /&gt;
 $ sudo wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant/eduroam.conf&lt;br /&gt;
 $ sudo dhcpcd wlan0&lt;br /&gt;
&lt;br /&gt;
On [[OpenBSD]], the process is a little more complicated:&lt;br /&gt;
&lt;br /&gt;
 # ifconfig wlan0 nwid eduroam wpa wpaakms 802.1x up&lt;br /&gt;
 # /usr/local/sbin/wpa_supplicant -B -i wlan0 -c /etc/wpa_supplicant.conf&lt;br /&gt;
 # dhclient wlan0&lt;br /&gt;
 # ifconfig wlan0 inet6 autoconf&lt;br /&gt;
&lt;br /&gt;
Alternate config options, besides domain_match are as follows (obviously not correct):&lt;br /&gt;
&lt;br /&gt;
 subject_match=&amp;quot;/C=US/ST=CA/L=San Francisco/CN=Test AS/emailAddress=as@example.com&amp;quot;&lt;br /&gt;
 domain_suffix_match=&amp;quot;nis.vt.edu&amp;quot;&lt;br /&gt;
&lt;br /&gt;
More thorough documentation is available at [https://w1.fi/cgit/hostap/plain/wpa_supplicant/wpa_supplicant.conf]&lt;br /&gt;
&lt;br /&gt;
==netctl Instructions==&lt;br /&gt;
[https://wiki.archlinux.org/index.php/netctl netctl] is a network manager which is native to the ArchLinux distribution. netctl makes use of wpa_supplicant under the hood, and so the configuration is similar.&lt;br /&gt;
&lt;br /&gt;
Put the following configuration in &amp;lt;code&amp;gt;/etc/netctl/eduroam&amp;lt;/code&amp;gt; with your proper PID and Network Password. Further, this assumes that your wireless network device is wlan0, which you might have to change to match your system. The ca_cert line pins the server certificate and can be generated/validated using the mechanism described above.&lt;br /&gt;
&lt;br /&gt;
 Description='Federated Educational Wifi Network'&lt;br /&gt;
 Interface=wlan0&lt;br /&gt;
 Connection=wireless&lt;br /&gt;
 Security=wpa-configsection&lt;br /&gt;
 &lt;br /&gt;
 IP=dhcp&lt;br /&gt;
 IP6=stateless&lt;br /&gt;
 &lt;br /&gt;
 WPAConfigSection=(&lt;br /&gt;
     'ssid=&amp;quot;eduroam&amp;quot;'&lt;br /&gt;
     'proto=RSN'&lt;br /&gt;
     'key_mgmt=WPA-EAP'&lt;br /&gt;
     'eap=PEAP'&lt;br /&gt;
     'phase2=&amp;quot;auth=MSCHAPV2&amp;quot;'&lt;br /&gt;
     'anonymous_identity=&amp;quot;anonymous@vt.edu&amp;quot;'&lt;br /&gt;
     'ca_cert=&amp;quot;hash://server/sha256/216c5f2568c6e84860b12535efe93500623ccee999306b84260f951bcbd57b1a&amp;quot;'&lt;br /&gt;
     'domain_match=&amp;quot;eduroam.nis.vt.edu&amp;quot;'&lt;br /&gt;
     'identity=&amp;quot;YourPidHere@vt.edu&amp;quot;'&lt;br /&gt;
     'password=&amp;quot;YourNetworkPasswordHere&amp;quot;'&lt;br /&gt;
 )&lt;br /&gt;
&lt;br /&gt;
The ConfigSection (as per the netctl.profile manpage) is just what you would put in a wpa_supplicant config. Again, note that the domain_match is ''less secure'' than ca_cert, but better than not checking at all.&lt;br /&gt;
&lt;br /&gt;
Ensure that this file is owned by root and only readable by root:&lt;br /&gt;
&lt;br /&gt;
 $ sudo chown root:root /etc/netctl/eduroam&lt;br /&gt;
 $ sudo chmod 600 /etc/netctl/eduroam&lt;br /&gt;
&lt;br /&gt;
You can then start the connection using standard netctl methods:&lt;br /&gt;
&lt;br /&gt;
 $ sudo netctl start eduroam&lt;br /&gt;
&lt;br /&gt;
== connman Instructions ==&lt;br /&gt;
This config should be useable with connman. Replace Passphrase and Identity with your Network password and PID@vt.edu, respectively.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[global]&lt;br /&gt;
Name = eduroam&lt;br /&gt;
Description = Optionally put something descriptive here.&lt;br /&gt;
&lt;br /&gt;
[service_wifi_3c15c2e29584_656475726f616d_managed_ieee8021x]&lt;br /&gt;
Type = wifi&lt;br /&gt;
Name = eduroam&lt;br /&gt;
EAP = peap&lt;br /&gt;
CACertFile = /etc/ssl/certs/USERTrust_RSA_Certification_Authority.pem&lt;br /&gt;
DomainMatch = eduroam.nis.vt.edu&lt;br /&gt;
AnonymousIdentity = anonymous@vt.edu&lt;br /&gt;
Phase2 = MSCHAPV2&lt;br /&gt;
Identity = PID@vt.edu&lt;br /&gt;
Passphrase = NETWORKPASSWORD&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Android Instructions==&lt;br /&gt;
&lt;br /&gt;
[[File:AndroidEduroamNoCert.png|170px|thumb|Sample Android configuration of eduroam, but crucially lacking certificate validation.]]&lt;br /&gt;
&lt;br /&gt;
A sample configuration is available to the right, but as this configuration is currently lacking CA certificate validation, we do not at this time recommend connecting to the network.&lt;br /&gt;
&lt;br /&gt;
The Identity needs to be modified to match your PID@vt.edu, and your Network Password needs to be entered in the Password field.&lt;br /&gt;
&lt;br /&gt;
Steps:&lt;br /&gt;
* From the home screen, press the menu button and choose &amp;quot;Settings&amp;quot;→&amp;quot;Wireless &amp;amp; networks&amp;quot;→&amp;quot;Wi-Fi settings&amp;quot;.&lt;br /&gt;
* Remove any existing entries for eduroam.&lt;br /&gt;
* From the &amp;quot;WiFi networks&amp;quot; listing, click on eduroam.&lt;br /&gt;
* Choose PEAP as the EAP method and MSCHAPv2 as the phase two authentication mechanism.&lt;br /&gt;
* Enter your pid@vt.edu for the identity&lt;br /&gt;
* Enter &amp;quot;anonymous@vt.edu&amp;quot; for the anonymous identity&lt;br /&gt;
* Enter your Network Password for the password&lt;br /&gt;
* Press &amp;quot;Connect&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''TODO:''' Android certificate validation&lt;br /&gt;
&lt;br /&gt;
Quick and dirty options for validating the eduroam certificate, in order from least secure to most secure:&lt;br /&gt;
&lt;br /&gt;
# Do not validate: you will get online, but consider your connection to be as secure as a public hotspot&lt;br /&gt;
# (Android 7.1+ only) Use system certificates: This will check to make sure the certificate chains back to some CA in the system cert store. This is significantly better than no validation, but still not very good. You may also need to specify a domain. If so, use &amp;quot;vt.edu&amp;quot;&lt;br /&gt;
# Download and import the USERTrust Root CA: detailed instructions to come. Since you are still not checking the CN, it is only marginally better than using system certificates.&lt;br /&gt;
# Use the [https://play.google.com/store/apps/details?id=uk.ac.swansea.eduroamcat eduroam CAT] tool: this will setup the whole wireless profile and use the correct CA and verify the CN. As such, it is the preferred method. Warning, it is ugly. If you have an existing &amp;quot;eduroam&amp;quot; profile, you will need to remove it. When it prompts for the username and password, use &amp;lt;YOUR-PID&amp;gt;@vt.edu and your network password. It relies on geolocation to prompt for the profile for the right school. You may need to go outside to get a good GPS signal. If it is able to do geo-ip (e.g., you are connected to the &amp;quot;VirginiaTech&amp;quot; SSID), it gets you close enough.&lt;br /&gt;
&lt;br /&gt;
==Frequently Asked Questions==&lt;br /&gt;
===Is eduroam free?===&lt;br /&gt;
eduroam at Virginia Tech is free for:&lt;br /&gt;
* VT affiliates with wireless entitlements (includes students) access and network passwords&lt;br /&gt;
* Users at other participating institutions&lt;br /&gt;
&lt;br /&gt;
===Why is eduroam the preferred SSID?===&lt;br /&gt;
Using eduroam has several advantages:&lt;br /&gt;
* The unencrypted portion of your authentication optionally identifies you as &amp;quot;anonymous@vt.edu&amp;quot; rather than revealing your PID&lt;br /&gt;
* You have access to seamless roaming if you ever travel to another participating college campus&lt;br /&gt;
* The anonymous identity feature separates RADIUS authentication logs from the network access provider's logs&lt;br /&gt;
&lt;br /&gt;
===Does eduroam support EAP-TLS?===&lt;br /&gt;
Currently, the Virginia Tech eduroam RADIUS servers are not configured for EAP-TLS.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Network Information Sources===&lt;br /&gt;
* [http://www.cns.vt.edu/html/wireless/wlan/index.html Communications Network Services: Wireless LAN]&lt;br /&gt;
* [http://computing.vt.edu/internet_and_web/internet_access/ipaddresses.html Virginia Tech IP Addresses]&lt;br /&gt;
&lt;br /&gt;
[[Category:Howtos]]&lt;br /&gt;
[[Category:Campus computing resources]]&lt;br /&gt;
[[Category:Needs restoration]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
	<entry>
		<id>https://vtluug.org/w/index.php?title=Pound_vtluug&amp;diff=7631</id>
		<title>Pound vtluug</title>
		<link rel="alternate" type="text/html" href="https://vtluug.org/w/index.php?title=Pound_vtluug&amp;diff=7631"/>
		<updated>2019-01-17T02:44:40Z</updated>

		<summary type="html">&lt;p&gt;Echarlie: /* History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Irc-etiquette.jpg|thumb|right|alt=IRC etiquette|]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''#vtluug''' on &amp;lt;code&amp;gt;irc.oftc.net&amp;lt;/code&amp;gt; is the [[Linux and Unix Users Group|LUUG]] [[Internet Relay Chat|IRC]] channel. It is a public, relatively unmoderated forum for general banter, especially focusing on VTLUUG operations.&lt;br /&gt;
If you have questions about this wiki, any even we're having, or general *nix, it is the best place to ask them.&lt;br /&gt;
&lt;br /&gt;
If you ask a question, please stick around for a while (several hours) after asking; just because no one can help you&lt;br /&gt;
now does not mean that no one will be able to help you later. Also look at ESR's&lt;br /&gt;
[http://www.catb.org/esr/faqs/smart-questions.html how to ask questions the smart way]; it will help you when&lt;br /&gt;
someone decides to troll you.&lt;br /&gt;
&lt;br /&gt;
Previously, we have had stringent rules on the channel, however, experience shows that the community is rather self-moderating. More importantly, the ops actively avoid using &amp;lt;code&amp;gt;/ban&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you have logs, etc to post, use https://linx.vtluug.org or https://linx.li&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
Beginning in 2008, some folks began to idle on &amp;lt;code&amp;gt;irc.freenode.net&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;#vtluug&amp;lt;/code&amp;gt;. In fall 2009, there were generally a dozen LUUG members, alumni and associates on at any given time.&lt;br /&gt;
&lt;br /&gt;
On February 28, 2012, the approximately 30 members in the channel made the decision to migrate to &amp;lt;code&amp;gt;irc.oftc.net&amp;lt;/code&amp;gt; due to persistent stability issues with Freenode and some issues that some members had with the staff. By 2014, there were as many as 40 to 50 students and others in the channel. Currently, there are often 20 to 30 LUUG members and alumni idling in the channel.&lt;br /&gt;
&lt;br /&gt;
==Rules==&lt;br /&gt;
You will be kicked for an in progress flood only. There are no other rules. If you don't like somebody, use &amp;lt;code&amp;gt;/ignore&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== Recommendations ==&lt;br /&gt;
&lt;br /&gt;
* Don't set &amp;lt;code&amp;gt;/away&amp;lt;/code&amp;gt; &amp;lt;ref&amp;gt;https://sackheads.org/~bnaylor/spew/away_msgs.html&amp;lt;/ref&amp;gt; in an obnoxious way.&lt;br /&gt;
* Don't abuse the bots -- they will be told to ignore you&lt;br /&gt;
* Don't piss off the OPs (they don't keep @ for a reason)&lt;br /&gt;
* Wait around, if you have questions.&lt;br /&gt;
** You'll probably be trolled first. Sorry.&lt;br /&gt;
* NO WAREZ&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Recommended_software#IRC_clients | IRC Clients]]&lt;br /&gt;
* [[Wadsworth]]&lt;br /&gt;
* [[Shell account tutorial]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://bash.vtluug.org/ VT Bash (quotes)]&lt;br /&gt;
* [http://bash.org/ bash.org]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Infrastructure]]&lt;br /&gt;
[[Category:IRC]]&lt;/div&gt;</summary>
		<author><name>Echarlie</name></author>
		
	</entry>
</feed>