<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://lug.mtu.edu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Freya</id>
	<title>MTU LUG Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://lug.mtu.edu/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Freya"/>
	<link rel="alternate" type="text/html" href="https://lug.mtu.edu/wiki/Special:Contributions/Freya"/>
	<updated>2026-09-15T17:04:16Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Docs/Shell&amp;diff=8147</id>
		<title>Docs/Shell</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Docs/Shell&amp;diff=8147"/>
		<updated>2026-09-04T23:26:41Z</updated>

		<summary type="html">&lt;p&gt;Freya: Update shell docs to mention soju&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Docs|&amp;lt;small&amp;gt;~/Docs&amp;lt;/small&amp;gt;]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Shell is the LUG &amp;quot;pubnix&amp;quot; / multi-tenant server for all members/alumni. It is primarily intended as a sandbox to grant access to a linux environment to newcomers, and enable people to poke around with developing websites.&lt;br /&gt;
&lt;br /&gt;
Shell was first started as a concept in ~2012, where it was called something else. It later adopted the name &amp;quot;shell&amp;quot; on the 2nd/3rd iteration.&lt;br /&gt;
&lt;br /&gt;
When Steven took over LUG in 2022, he copied all the existing /home/*/public_html from the existing shell server at that time to a brand-new shell server, so the web content would not be lost.&lt;br /&gt;
&lt;br /&gt;
In 2023 we once again started a fresh Shell server, but this time did not copy over the old web content.&lt;br /&gt;
&lt;br /&gt;
== Notes for Shell users ==&lt;br /&gt;
Shell provides a number of services to users with an account.&lt;br /&gt;
&lt;br /&gt;
You can of course login, and get a shell on the server, which is running Debian. On logging in from off-campus, see the &amp;quot;SSH-Over-TLS&amp;quot; below.&lt;br /&gt;
&lt;br /&gt;
The primary service Shell has is the user webpages. Upon logging in, you will see a &amp;quot;public_html&amp;quot; directory in your home directory. Anything placed in this directory will be available at &amp;quot;&amp;lt;nowiki&amp;gt;https://shell.lug.mtu.edu/~&amp;lt;/nowiki&amp;gt;&amp;lt;your_username&amp;gt;/&amp;quot;. You can look into how websites work on the backend to understand how to make one yourself, if you would like.&lt;br /&gt;
&lt;br /&gt;
Of note, because the webserver runs as the user/group &amp;quot;www-data&amp;quot;, you must make sure all files in public_html can be read by www-data. Either by granting every user on the system read-only access (&amp;lt;code&amp;gt;chmod o+r &amp;lt;file&amp;gt;&amp;lt;/code&amp;gt;), or changing the group to &amp;lt;code&amp;gt;www-data&amp;lt;/code&amp;gt; and granting group read access (&amp;lt;code&amp;gt;chmod g+r &amp;lt;file&amp;gt;&amp;lt;/code&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
Shell also has an IRC bouncer (&amp;lt;code&amp;gt;soju&amp;lt;/code&amp;gt;) on port 6697, using the same username/password you use to login. &amp;lt;code&amp;gt;soju&amp;lt;/code&amp;gt; can be configured by messaging &amp;lt;code&amp;gt;BouncerServ&amp;lt;/code&amp;gt; once logged in on IRC. Read more on [[IRC Bouncer]].&lt;br /&gt;
&lt;br /&gt;
== SSH-Over-TLS ==&lt;br /&gt;
IT blocks all inbound SSH connections from outside of the 141.219.0.0/16 range so by default you can&#039;t ssh into Shell from off-campus (or the guest WiFi).&lt;br /&gt;
&lt;br /&gt;
There&#039;s a service on port 8443 to allow wrapping ssh traffic in TLS, so if you&#039;re connecting from a *nix client you can use the following options to do the TLS-wrapped-SSH:&lt;br /&gt;
&lt;br /&gt;
=== Using &amp;lt;code&amp;gt;openssl&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&amp;lt;code&amp;gt;openssl&amp;lt;/code&amp;gt; should be installed on most *NIX systems, including MacOS, by default.&lt;br /&gt;
&lt;br /&gt;
It can be installed on Windows with &amp;lt;code&amp;gt;winget install openssl&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;scoop install openssl&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Single-Use Command ====&lt;br /&gt;
You can use the following command to ssh into shell without editing any persistent configuration files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;ssh -o ProxyCommand=&amp;quot;openssl s_client -quiet shell.lug.mtu.edu:8443 2&amp;gt;/dev/null&amp;quot; username@shell.lug.mtu.edu&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Persistent Config ====&lt;br /&gt;
Otherwise, you can add the following to &amp;lt;code&amp;gt;~/.ssh/config&amp;lt;/code&amp;gt;, and have it auto-apply any time you type &amp;lt;code&amp;gt;ssh shell&amp;lt;/code&amp;gt;:&amp;lt;syntaxhighlight lang=&amp;quot;text&amp;quot;&amp;gt;&lt;br /&gt;
Host shell&lt;br /&gt;
    ProxyCommand        openssl s_client -quiet shell.lug.mtu.edu:8443 2&amp;gt;/dev/null&lt;br /&gt;
    ServerAliveInterval 10&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;This is what I recommend, as you can just type &amp;lt;code&amp;gt;ssh shell&amp;lt;/code&amp;gt; and it&#039;ll apply the SSH-over-TLS settings automatically.&lt;br /&gt;
&lt;br /&gt;
You can also add your username and pubkey to the host config for a very quick login, so you don&#039;t have to type your password every time.&lt;br /&gt;
&lt;br /&gt;
More information about the SSH Host configuration file can be found [https://linuxize.com/post/using-the-ssh-config-file/ here]&lt;br /&gt;
&lt;br /&gt;
=== Using &amp;lt;code&amp;gt;socat&amp;lt;/code&amp;gt; ===&lt;br /&gt;
If the above doesn&#039;t work, (or if &amp;lt;code&amp;gt;openssl&amp;lt;/code&amp;gt; keeps dropping the connection randomly) you can use &amp;lt;code&amp;gt;socat&amp;lt;/code&amp;gt; instead.&lt;br /&gt;
&lt;br /&gt;
Just replace:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;openssl s_client -quiet shell.lug.mtu.edu:8443 2&amp;gt;/dev/null&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;socat - OPENSSL:shell.lug.mtu.edu:8443,verify=0&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
in either the single-use command or persistent config.&lt;br /&gt;
&lt;br /&gt;
So long as &amp;lt;code&amp;gt;socat&amp;lt;/code&amp;gt; is installed, it should work without hassle.&lt;br /&gt;
&lt;br /&gt;
You can also use other TLS client you like, such as &amp;lt;code&amp;gt;ncat&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;stunnel&amp;lt;/code&amp;gt;, but &amp;lt;code&amp;gt;openssl&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;socat&amp;lt;/code&amp;gt; are some of the most popular programs for this purpose so I decided to only cover the configs for them.&lt;br /&gt;
&lt;br /&gt;
Contact a LUG sysadmin if you need help using a different TLS client application for this purpose.&lt;br /&gt;
&lt;br /&gt;
== Notes for sysadmins ==&lt;br /&gt;
&lt;br /&gt;
=== Scripts ===&lt;br /&gt;
Shell has scripts for administrators in /root/ to automate various tasks.&lt;br /&gt;
&lt;br /&gt;
These are:&lt;br /&gt;
&lt;br /&gt;
* add-new-user.sh&lt;br /&gt;
** Use this to make a new user account. useradd doesn&#039;t make home directories a ZFS dataset. (useful in case a user wants to rollback their homedir to a snapshot)&lt;br /&gt;
* generate-homepage.sh&lt;br /&gt;
** Generates the index.html page for shell. Called by a cronjob to run every minute.&lt;br /&gt;
* list-administrators.sh&lt;br /&gt;
** Prints a (colored) list of administrators.&lt;br /&gt;
* list-logins.sh&lt;br /&gt;
** Prints an ordered list of user logins&lt;br /&gt;
* list-user-creation.sh&lt;br /&gt;
** Displays a sorted list of each user&#039;s creation date based on their homedir&lt;br /&gt;
* user-popularity.awk&lt;br /&gt;
** Prints number of unique IPs that visited each user&#039;s shell website path&lt;br /&gt;
** Plan to use this to make &amp;quot;most popular user of the day&amp;quot; blurb in generate-homepage.sh at some point&lt;br /&gt;
&lt;br /&gt;
=== ZFS ===&lt;br /&gt;
Shell uses ZFS for the main data pool, which is mounted at /home (and each user&#039;s homedir is an individual dataset).&lt;br /&gt;
As of Fall 2025, it has roughly ~8TB in raw space (4x2TB drives), ~4TB after formatting (RAID10 / striped-mirrors) and ~1TB used with ~3.5TB free.&lt;br /&gt;
&lt;br /&gt;
Some helpful commands are:&lt;br /&gt;
&lt;br /&gt;
* View general pool status (and disk health)&lt;br /&gt;
** &amp;lt;code&amp;gt;zpool status&amp;lt;/code&amp;gt;&lt;br /&gt;
* View all ZFS snapshots&lt;br /&gt;
** &amp;lt;code&amp;gt;zfs list -t snapshot&amp;lt;/code&amp;gt;&lt;br /&gt;
* Delete specific snapshot&lt;br /&gt;
** &amp;lt;code&amp;gt;zfs destroy -r zhome@example-snapshot&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Automated tasks (cronjobs):&lt;br /&gt;
&lt;br /&gt;
* 4AM EST: cronjob recursively makes a snapshot of /home and each user&#039;s homedir, prefixed by &amp;quot;Auto&amp;quot;.&lt;br /&gt;
* 4:15AM EST a cronjob recursively deletes &amp;gt;8th oldest /home snapshot starting with &amp;quot;Auto&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== Root drives ===&lt;br /&gt;
Shell has two 1TB Crucial SSDs RAID&#039;ed together with MDADM in RAID1 to serve as the ESP and the root (&amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt;) partition.&lt;br /&gt;
&lt;br /&gt;
Each drive has two partitions, first the ESP (500MB/476MiB), and the root partition second (the rest of the drive; ???GB/931.5GiB).&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=IRC_Bouncer&amp;diff=8146</id>
		<title>IRC Bouncer</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=IRC_Bouncer&amp;diff=8146"/>
		<updated>2026-09-04T23:24:41Z</updated>

		<summary type="html">&lt;p&gt;Freya: Add our IRC as an example network command&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Configuration =&lt;br /&gt;
&lt;br /&gt;
The [https://wiki.znc.in/ZNC IRC bouncer], since September 2026, has moved from ZNC to soju, meaning there is no longer any web configuration. Configuration can instead be done inside of IRC itself by connecting to the bouncer and then issuing commands to &amp;lt;code&amp;gt;BouncerServ&amp;lt;/code&amp;gt; (which can be messaged with &amp;lt;code&amp;gt;/msg BouncerServ [MESSAGE]&amp;lt;/code&amp;gt;). See documentation of the commands on the soju manpage [https://soju.im/doc/soju.1.html#IRC_SERVICE here].&lt;br /&gt;
&lt;br /&gt;
== Logging In ==&lt;br /&gt;
The bouncer runs on &amp;lt;code&amp;gt;shell.lug.mtu.edu:6697&amp;lt;/code&amp;gt;, which is the default port for IRC over TLS. We do not support plaintext IRC, &#039;&#039;&#039;you&#039;&#039;&#039; &#039;&#039;&#039;need to use TLS&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Bouncer logins are done through PAM, so your shell account credentials should work for authentication. As for how you log in, that&#039;s specific to your client. Check your client&#039;s documentation for how to do SASL authentication.&lt;br /&gt;
&lt;br /&gt;
== IRC Information ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Nickname&amp;lt;/code&amp;gt; is the username that will be on IRC. This is not what you log in to, but this is what others will see.&lt;br /&gt;
&lt;br /&gt;
{{Note|The other IRC information is not really useful. Just choose an alternative nickname in case someone is trying to impersonate you: register your account to prevent this.}}&lt;br /&gt;
&lt;br /&gt;
== Networks ==&lt;br /&gt;
You can add networks with &amp;lt;code&amp;gt;/msg BouncerServ network create -addr [address] -name [network name]&amp;lt;/code&amp;gt;. Note that there are more options than this that can be see with &amp;lt;code&amp;gt;/msg BouncerServ help network create&amp;lt;/code&amp;gt;. This will be important if, for example, you needed to log in to an external network with a password (Libera Chat does this!). &#039;&#039;Try adding our IRC with &amp;lt;code&amp;gt;/msg BouncerServ create -addr lug.mtu.edu -name lug&amp;lt;/code&amp;gt;!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The traditional way to determine your network through the bouncer is to log in with your name as &amp;lt;code&amp;gt;[name]/[network]&amp;lt;/code&amp;gt;. This is not necessary with soju! If your client supports the &amp;lt;code&amp;gt;bouncer-networks&amp;lt;/code&amp;gt; IRCv3 extension, you can just log in normally and your client will detect the networks that soju is watching automatically.&lt;br /&gt;
&lt;br /&gt;
== Channels ==&lt;br /&gt;
Channels should be added automatically upon joining them through the bouncer. They can also be added manually through &amp;lt;code&amp;gt;/msg BouncerServ channel create [channel]/[network]&amp;lt;/code&amp;gt;. These are the channels that the bouncer will actively watch and log messages from.&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=IRC_Bouncer&amp;diff=8145</id>
		<title>IRC Bouncer</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=IRC_Bouncer&amp;diff=8145"/>
		<updated>2026-09-04T23:22:10Z</updated>

		<summary type="html">&lt;p&gt;Freya: Overhaul page now that we use soju&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Configuration =&lt;br /&gt;
&lt;br /&gt;
The [https://wiki.znc.in/ZNC IRC bouncer], since September 2026, has moved from ZNC to soju, meaning there is no longer any web configuration. Configuration can instead be done inside of IRC itself by connecting to the bouncer and then issuing commands to &amp;lt;code&amp;gt;BouncerServ&amp;lt;/code&amp;gt; (which can be messaged with &amp;lt;code&amp;gt;/msg BouncerServ [MESSAGE]&amp;lt;/code&amp;gt;). See documentation of the commands on the soju manpage [https://soju.im/doc/soju.1.html#IRC_SERVICE here].&lt;br /&gt;
&lt;br /&gt;
== Logging In ==&lt;br /&gt;
The bouncer runs on &amp;lt;code&amp;gt;shell.lug.mtu.edu:6697&amp;lt;/code&amp;gt;, which is the default port for IRC over TLS. We do not support plaintext IRC, &#039;&#039;&#039;you&#039;&#039;&#039; &#039;&#039;&#039;need to use TLS&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Bouncer logins are done through PAM, so your shell account credentials should work for authentication. As for how you log in, that&#039;s specific to your client. Check your client&#039;s documentation for how to do SASL authentication.&lt;br /&gt;
&lt;br /&gt;
== IRC Information ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Nickname&amp;lt;/code&amp;gt; is the username that will be on IRC. This is not what you log in to, but this is what others will see.&lt;br /&gt;
&lt;br /&gt;
{{Note|The other IRC information is not really useful. Just choose an alternative nickname in case someone is trying to impersonate you: register your account to prevent this.}}&lt;br /&gt;
&lt;br /&gt;
== Networks ==&lt;br /&gt;
You can add networks with &amp;lt;code&amp;gt;/msg BouncerServ network create -addr [address] -name [network name]&amp;lt;/code&amp;gt;. Note that there are more options than this that can be see with &amp;lt;code&amp;gt;/msg BouncerServ help network create&amp;lt;/code&amp;gt;. This will be important if, for example, you needed to log in to an external network with a password (Libera Chat does this!).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The traditional way to determine your network through the bouncer is to log in with your name as &amp;lt;code&amp;gt;[name]/[network]&amp;lt;/code&amp;gt;. This is not necessary with soju! If your client supports the &amp;lt;code&amp;gt;bouncer-networks&amp;lt;/code&amp;gt; IRCv3 extension, you can just log in normally and your client will detect the networks that soju is watching automatically.&lt;br /&gt;
&lt;br /&gt;
== Channels ==&lt;br /&gt;
Channels should be added automatically upon joining them through the bouncer. They can also be added manually through &amp;lt;code&amp;gt;/msg BouncerServ channel create [channel]/[network]&amp;lt;/code&amp;gt;. These are the channels that the bouncer will actively watch and log messages from.&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Vim&amp;diff=8139</id>
		<title>Vim</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Vim&amp;diff=8139"/>
		<updated>2026-07-26T15:01:01Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:LearningToExit im.jpg|alt=Hacker Jeopardy question on &amp;quot;learning to exit _IM&amp;quot;|thumb|The most legendary Hacker Jeopardy goof ever (GrrCON 2022)]]&lt;br /&gt;
&lt;br /&gt;
= Beginner&#039;s guide =&lt;br /&gt;
We talked about vim and how to set it up. Basically type&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
vimtutor&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and follow this. You&#039;ll learn the basic hotkeys. &lt;br /&gt;
{{Note|If all you&#039;re using is basic vim, it isn&#039;t the best. Vim has decreased in popularity as people move towards GUI editors and IDEs, but it still has a place due to its ubiquity in *nix systems and a requirement on systems without a GUI such as a server. Additionally, when using macros and plugins, vim really shows its power.}}&lt;br /&gt;
&lt;br /&gt;
== .vimrc file ==&lt;br /&gt;
To edit the defaults file:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
vim ~/.vimrc&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can add the following to this file:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;vim&amp;quot; line&amp;gt;&lt;br /&gt;
syntax on&lt;br /&gt;
set tabstop=4 softtabstop=0 expandtab shiftwidth=4 smarttab autoindent&lt;br /&gt;
set number nu relativenumber&lt;br /&gt;
set incsearch wildmenu&lt;br /&gt;
set backspace=indent,eol,start&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Inside vim, typing &amp;lt;code&amp;gt;:source ~/.vimrc&amp;lt;/code&amp;gt; will adjust these defaults. &lt;br /&gt;
&lt;br /&gt;
Line &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt; gives syntax coloring for each file.&lt;br /&gt;
&lt;br /&gt;
Line &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; sets an autoindenting where &amp;lt;code&amp;gt;tab&amp;lt;/code&amp;gt; will be replaced with 4 spaces, and backspacing will remove 4 spaces. The &amp;lt;code&amp;gt;smarttab&amp;lt;/code&amp;gt; will auto-indent when writing for loops, and &amp;lt;code&amp;gt;autoindent&amp;lt;/code&amp;gt; will keep the new line&#039;s tab spacing.&lt;br /&gt;
&lt;br /&gt;
Line &amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt; gives line numbers on the left side of vim. &amp;lt;code&amp;gt;relativenumber&amp;lt;/code&amp;gt; gives a relative distance between each line which is beneficial for commands like &amp;lt;code&amp;gt;j&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;k&amp;lt;/code&amp;gt; to go up N lines easily.&lt;br /&gt;
&lt;br /&gt;
Line &amp;lt;code&amp;gt;4&amp;lt;/code&amp;gt; works with searching in files. &amp;lt;code&amp;gt;incsearch&amp;lt;/code&amp;gt; will jump to the first instance immediately while typing. &amp;lt;code&amp;gt;wildmenu&amp;lt;/code&amp;gt; shows the files while trying to &amp;lt;code&amp;gt;:edit &amp;lt;file&amp;gt;&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;:split &amp;lt;file&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Line &amp;lt;code&amp;gt;5&amp;lt;/code&amp;gt; sets backspace to delete lines nicely instead of moving backwards.&lt;br /&gt;
&lt;br /&gt;
{{Note|Type &amp;lt;code&amp;gt;:set&amp;lt;/code&amp;gt; to view all the possible settings, and type &amp;lt;code&amp;gt;:help &amp;lt;setting&amp;gt;&amp;lt;/code&amp;gt; to get more information on specific settings.}}&lt;br /&gt;
&lt;br /&gt;
== Plugins ==&lt;br /&gt;
&lt;br /&gt;
Plugins are the only point at which vim is more usable than VSCode. I use [https://github.com/junegunn/vim-plug vim-plug] and the [https://github.com/junegunn/vim-plug#unix install steps] are a single line. &lt;br /&gt;
&lt;br /&gt;
At this point, add these lines to your &amp;lt;code&amp;gt;.vimrc&amp;lt;/code&amp;gt;:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;vim&amp;quot; line start=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
call plug#begin(&#039;~/.vim/autoload&#039;)&lt;br /&gt;
Plug &#039;scrooloose/nerdtree&#039;&lt;br /&gt;
Plug &#039;vim-airline/vim-airline&#039;&lt;br /&gt;
Plug &#039;vim-airline/vim-airline-themes&#039;&lt;br /&gt;
call plug#end()&lt;br /&gt;
let g:airline_theme=&#039;deus&#039;&lt;br /&gt;
nmap &amp;lt;F2&amp;gt; :NERDTreeToggle&amp;lt;CR&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
which will set up 3 plugins. &lt;br /&gt;
&lt;br /&gt;
[https://github.com/preservim/nerdtree Nerdtree] gives a nice directory on the left side of your editor.&lt;br /&gt;
[https://github.com/vim-airline/vim-airline Airline] and [https://github.com/vim-airline/vim-airline-themes themes] give&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=PHP_iCalendar&amp;diff=8138</id>
		<title>PHP iCalendar</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=PHP_iCalendar&amp;diff=8138"/>
		<updated>2026-07-26T14:59:35Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PHP iCalendar is a [http://sourceforge.net SourceForge] project that can be found here: http://sourceforge.net/projects/phpicalendar/. It is a collection of php pages that uses .ics (RFC 2445) files (like those from iCalendar on OS X) to generate a web page containing your schedule on the fly.  Since it&#039;s PHP, it is platform independent, I&#039;m only going to cover OS X though, since that&#039;s what I initially set it up on.&lt;br /&gt;
&amp;lt;p&amp;gt;An example of this is my [http://aragirn.resnet.mtu.edu/cal schedule]. There are a number of ways to give the php pages access to the calendar files. I&#039;ll only cover one method here, and that is setting up a cron script to copy the files to the proper directory. This method assumes that you have not edited any of your system files, if you have, be on the lookout with the changes you have made fresh in your mind.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Download and install ==&lt;br /&gt;
The first thing that needs to be done though, is to download and untar the project into your Sites folder. After this, you need to enable Personal Web Sharing under the Sharing section of System Preferences. &lt;br /&gt;
&lt;br /&gt;
== Apache ==&lt;br /&gt;
Then, edit /etc/httpd/httpd.conf and make the following changes:&lt;br /&gt;
&lt;br /&gt;
Uncomment the following lines:&lt;br /&gt;
 LoadModule php4_module&lt;br /&gt;
 libexec/httpd/libphp4.so&lt;br /&gt;
 AddModule mod_php4.c&lt;br /&gt;
&lt;br /&gt;
After the line that says: AddType application/xtar .tgz add the following lines&lt;br /&gt;
 AddType application/x-httpd-php .php&lt;br /&gt;
 AddType application/x-httpd-php-source .phps&lt;br /&gt;
&lt;br /&gt;
Find and replace:&lt;br /&gt;
 &amp;lt;IfModule mod_dir.c&amp;gt;&lt;br /&gt;
 DirectoryIndex index.html&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
with:&lt;br /&gt;
 &amp;lt;IfModule mod_dir.c&amp;gt;&lt;br /&gt;
 DirectoryIndex index.html index.php&lt;br /&gt;
 &amp;lt;/IfModule&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, ina  terminal type:&lt;br /&gt;
 sudo apachectl graceful &lt;br /&gt;
to restart the webserver and allow the changes that were made to take effect.&lt;br /&gt;
&lt;br /&gt;
== Configuring ==&lt;br /&gt;
Next, PHP iCalendar needs to be configured. If you don&#039;t want to change anything, then don&#039;t. If you do, the file is config.inc.php in your phpicalendar folder. It is pretty well documented and things are easy to figure out.&lt;br /&gt;
&lt;br /&gt;
== Updating the calendars used ==&lt;br /&gt;
Now comes the important part: getting your ical files into the directory for PHP iCalendar to use them. To do this, a crontab is going to be added that will copy over the files every five minutes. While not as nice as the instantaneous method WebDAV allows, changes are available reasonably quickly. You will need to edit /etc/crontab to set up the automation of thet script that will be written. The following will set up the calendar copying.&lt;br /&gt;
&lt;br /&gt;
 sudo vim /etc/crontab&lt;br /&gt;
&lt;br /&gt;
Add the following line into the section topped by minute, hour, mday, etc. where each thing goes into a seperate column. Replace kyle with your username.&lt;br /&gt;
 */5    *     *    *    *     kyle     calendar_copy&lt;br /&gt;
&lt;br /&gt;
2) Save and close the file.&lt;br /&gt;
&lt;br /&gt;
3) Create a new file called calendar_copy&lt;br /&gt;
 sudo vim /usr/sbin/calendar_copy&lt;br /&gt;
add the following text to it, while replacing &#039;&#039;&#039;kyle&#039;&#039;&#039; with your username. &lt;br /&gt;
 cp /Users/&#039;&#039;&#039;kyle&#039;&#039;&#039;/Library/Calendars/* /Users/&#039;&#039;&#039;kyle&#039;&#039;&#039;/Sites/phpicalendar/calendars/.&lt;br /&gt;
&lt;br /&gt;
4) Change the permissions on the file to be executable:&lt;br /&gt;
 sudo chmod 755 /usr/sbin/calendar_copy&lt;br /&gt;
&lt;br /&gt;
== Wrap-up ==&lt;br /&gt;
That&#039;s all there is to it. Your site will be available at: http://your-host-name/~your-user-name/phpicalendar/ &lt;br /&gt;
&lt;br /&gt;
Other methods of setting this up include: Using a webdav server or publishing to the php script included in the project, if you wish to do those, check [http://google.com google.]&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Firefox&amp;diff=8137</id>
		<title>Firefox</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Firefox&amp;diff=8137"/>
		<updated>2026-07-26T01:27:14Z</updated>

		<summary type="html">&lt;p&gt;Freya: Software category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A popular opensource browser that is currently growing in user base.  It is put out by the [http://www.mozilla.org/ Mozilla Foundation] and is generally considered to be more secure than Internet Explorer.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* Pop-up blocking&lt;br /&gt;
* Tabbed Browsing&lt;br /&gt;
* [https://addons.mozilla.org/?application=firefox Extensions]&lt;br /&gt;
* RSS Integration&lt;br /&gt;
* Built in search bar&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Bash&amp;diff=8136</id>
		<title>Bash</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Bash&amp;diff=8136"/>
		<updated>2026-07-26T01:23:57Z</updated>

		<summary type="html">&lt;p&gt;Freya: Add software category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Basic Bash =&lt;br /&gt;
It was too much effort to make a full guide so this is just the basics.&lt;br /&gt;
&lt;br /&gt;
=== What is bash? ===&lt;br /&gt;
It is literally just a file full of commands. It allows users to write automation scripts because us sweaty nerds are the laziest human beings the human race has to offer. Typing commands over and over again is hard work and requires a mild amount of effort. &lt;br /&gt;
&lt;br /&gt;
=== Creating a bash file ===&lt;br /&gt;
Bash files use the .sh file extension. They have two basic things they need in order to run. They need a shebang line and to be made executable.&lt;br /&gt;
* The shebang line just goes at the beginning of the file and tells your computer what to do with the file. For bash files the shebang line is just &amp;quot;#!/bin/bash&amp;quot;&lt;br /&gt;
* To make the file executable, just use the classic &amp;quot;chmod +x FILE_NAME&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=== Variables ===&lt;br /&gt;
Variables are super simple, here is a basic example of a hello world program bash file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
greeting=&amp;quot;You are a warm popsicle&amp;quot;&lt;br /&gt;
echo $greeting&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When creating and assigning a value to a variable, make sure to include no spaces between the variable name, the equal sign, and the value of the variable. Then when you want to call a variable for use, like the greeting, we use a dollar sign to indicate that it is a variable. Note, variables like $1, $0, $11 are reserved for command line arguments so avoid using them.&lt;br /&gt;
&lt;br /&gt;
=== Input ===&lt;br /&gt;
Read values inline:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;Guess a number&amp;quot; &lt;br /&gt;
# Use read to create the number variable and&lt;br /&gt;
# immediately set the variable to the input&lt;br /&gt;
read number&lt;br /&gt;
echo &amp;quot;You get slapped $number times.&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Read parameters from command-line:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
# Prints the name of the file&lt;br /&gt;
echo $0&lt;br /&gt;
# Prints the first parameter passed to the file&lt;br /&gt;
echo $1&lt;br /&gt;
&lt;br /&gt;
# $@ is used to represent all of the command line inputs&lt;br /&gt;
# Here we are just iterating through all command line inputs&lt;br /&gt;
for param in &amp;quot;$@&amp;quot;&lt;br /&gt;
do&lt;br /&gt;
     echo $param&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Operators ===&lt;br /&gt;
The operators for bash are:&lt;br /&gt;
*   Equal: -eq   &lt;br /&gt;
*   Not equal: -ne&lt;br /&gt;
*   Less than or equal: -le  &lt;br /&gt;
*   Less than: -lt    &lt;br /&gt;
*   Greater than or equal: -ge&lt;br /&gt;
*   Greater than: -gt&lt;br /&gt;
*   Is null: -z&lt;br /&gt;
*   or: || &lt;br /&gt;
*   and: &amp;amp;&amp;amp;&lt;br /&gt;
&lt;br /&gt;
As a side note, when comparing two strings, always put strings or variables referencing strings in parenthesis and compare using == or !=. &lt;br /&gt;
syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
if [ &amp;quot;$foo&amp;quot; == &amp;quot;$bar&amp;quot;]&lt;br /&gt;
# or&lt;br /&gt;
if [ &amp;quot;$foo&amp;quot; != &amp;quot;$bar&amp;quot;]&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== If, Elif, Else ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;Enter a number:&amp;quot;&lt;br /&gt;
read number&lt;br /&gt;
&lt;br /&gt;
# if and elif both have a &amp;quot;then&amp;quot; associated with it&lt;br /&gt;
if [ $number -eq 1 ]&lt;br /&gt;
then&lt;br /&gt;
     echo 1&lt;br /&gt;
elif [[ $number -eq 2 ]]&lt;br /&gt;
then&lt;br /&gt;
     echo 2&lt;br /&gt;
else&lt;br /&gt;
     echo &amp;quot;You can&#039;t get anything right you hopeless loser&amp;quot;&lt;br /&gt;
fi&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is a simple example that just reads in a number and checks to see if the number is either 1, 2, or, if neither of these are true, will just insult you. The syntax here is pretty simple. You have the if statement which uses square brackets for the conditional and elif statements which use double square brackets. There is also the default else statement and the whole statement is closed off by a fi (if backwards).&lt;br /&gt;
&lt;br /&gt;
=== Loops ===&lt;br /&gt;
There are three types of loops:&lt;br /&gt;
&lt;br /&gt;
For:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
# Iterates through all objects in an array, all inputsguessed, etc.&lt;br /&gt;
for word in $paragraph&lt;br /&gt;
do&lt;br /&gt;
     echo $word&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
While:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
# Runs while the conditional is being met&lt;br /&gt;
while [ $index -lt 5 ]&lt;br /&gt;
do&lt;br /&gt;
     echo $index&lt;br /&gt;
     # Incrementing values is obnoxious&lt;br /&gt;
     index=$((index + 1))&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Until:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
# Runs until the conditional is met&lt;br /&gt;
until [ $index -eq 5 ]&lt;br /&gt;
do&lt;br /&gt;
     echo $index&lt;br /&gt;
     # Still obnoxious&lt;br /&gt;
     index=$((index + 1))&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
=== Iterating through files in a directory ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
# Path to the directory we want to check out&lt;br /&gt;
files=~/Downloads/*&lt;br /&gt;
    &lt;br /&gt;
# The for loop is back baby&lt;br /&gt;
for file in $files&lt;br /&gt;
do&lt;br /&gt;
     echo $file&lt;br /&gt;
     # Prints out the absolute path of each file&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
Bash is able to automatically detect whether a variable represents a directory or not. It&#039;s magic and is definitely not regex.&lt;br /&gt;
&lt;br /&gt;
=== Aliases ===&lt;br /&gt;
You can use aliases to create cli commands from bash files. Aliases can be set in your ~/.bashrc file. Make sure to make your bash file executable and move it to your&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
alias epiccommand=&#039;./epiccommand.sh&#039;&lt;br /&gt;
alias epiccommand=&#039;./epiccommand.sh &amp;quot;Nerds&amp;quot;&#039;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Category:Software&amp;diff=8135</id>
		<title>Category:Software</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Category:Software&amp;diff=8135"/>
		<updated>2026-07-26T01:23:04Z</updated>

		<summary type="html">&lt;p&gt;Freya: Add software category description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This category contains pages that detail certain software and their uses. Use these to learn about interesting packages!!&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=FFmpeg&amp;diff=8134</id>
		<title>FFmpeg</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=FFmpeg&amp;diff=8134"/>
		<updated>2026-07-26T01:20:31Z</updated>

		<summary type="html">&lt;p&gt;Freya: Add software category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[https://ffmpeg.org/ FFmpeg] is a really complicated, all-in-one software that deals with videos and encoders. The software is typically not packaged with anything because some encoders are non-free and package managers don&#039;t typically use a version with the non-free encoders. So, you&#039;ll need to download it yourself  https://ffmpeg.org/download.html unless you really care about the notion that there&#039;s non-free software on your computer. &lt;br /&gt;
&lt;br /&gt;
FFmpeg is mainly the backend to software like [https://www.vegascreativesoftware.com/us/ Song Vegas] and [https://www.openshot.org OpenShot], but you can use FFmpeg for small video edits like re-encoding and scripting multiple audio files at once. Since FFmpeg is such a behemoth of a software, here are some examples.&lt;br /&gt;
&lt;br /&gt;
= Simple commands =&lt;br /&gt;
I consider a simple edit to be any edit that does not re-encode your streams.&lt;br /&gt;
{{UserCmd|ffmpeg -i video.mp4 -ss 1:00 -t 2:00 out.mp4}}&lt;br /&gt;
This will start the video at 1 minute and end at 2 minutes.&lt;br /&gt;
{{UserCmd|ffmpeg -i video.mp4 -an out.mp4}}&lt;br /&gt;
This will remove audio from the video if there was audio previously.&lt;br /&gt;
{{UserCmd|ffmpeg -re -i out.mp4 -acodec copy -vcodec copy -f flv -y rtmp://localhost/live/livestream}}&lt;br /&gt;
This will stream your video to [https://github.com/ossrs/srs SRS]. &lt;br /&gt;
= Complicated  edits =&lt;br /&gt;
I consider a complicated edit to be any edit that will re-encode your streams. When you encode files, it takes a long time. Expect to take around real-time (running your code for 1 hour for a 1 hour video) for any command that re-encodes your streams.&lt;br /&gt;
&lt;br /&gt;
At this point, we focus on properly handling streams. According to FFmpeg, streams are either audio, visual, or subtitles. If there are multiple video streams, the process to handle each one is:&lt;br /&gt;
 0:v:0&lt;br /&gt;
 0:v:1&lt;br /&gt;
 0:v:2&lt;br /&gt;
 ...&lt;br /&gt;
This shows 3 different video streams on your first input. You can have multiple inputs, for example:&lt;br /&gt;
{{UserCmd|ffmpeg -i movie.mp4 -i overlay.mp4 -i music.mp4 ...}}&lt;br /&gt;
In this case, you&#039;ll have 3 inputs, and if each mp4 has multiple video streams, then you need to handle them like so:&lt;br /&gt;
 0:v:0&lt;br /&gt;
 0:v:1&lt;br /&gt;
 0:v:2&lt;br /&gt;
 1:v:0&lt;br /&gt;
 2:v:0&lt;br /&gt;
Typically, there really aren&#039;t multiple video streams, like, ever, but there are typically multiple audio streams for dubbing in different languages. Audio streams are:&lt;br /&gt;
 0:a:0&lt;br /&gt;
and subtitle streams are:&lt;br /&gt;
 0:s:0&lt;br /&gt;
&lt;br /&gt;
== Rate modification ==&lt;br /&gt;
{{UserCmd|ffmpeg -i phone_video.mp4 -b:v 2M out.mp4}}&lt;br /&gt;
Your phone records at an extremely high bitrate and it&#039;s not required to be such a massive file.  Reducing your video bitrate (&amp;lt;code&amp;gt;-b:v&amp;lt;/code&amp;gt;) is a good way to reduce the size of your files before uploading to a server.&lt;br /&gt;
{{UserCmd|ffmpeg -i music.mp3 -ar 44100 out.mp3}}&lt;br /&gt;
This sets your audio sample rate to &amp;lt;code&amp;gt;44100&amp;lt;/code&amp;gt;, or 44.1kHz, a standard sample rate for speakers.&lt;br /&gt;
&lt;br /&gt;
== Subtitle example ==&lt;br /&gt;
Suppose you have a .srt or a .ass file with your subtitles and you want to hardcode them before streaming them. &lt;br /&gt;
{{UserCmd|ffmpeg -i movie.mp4 -vf &amp;quot;subtitles&amp;amp;#x3d;sub.srt&amp;quot; out.mp4}}&lt;br /&gt;
More typically, subtitles are embedded into an mkv or avi file, and as such, you&#039;ll need to hardcode from a stream inside the file itself using multiple streams. This depends upon the subtitle stream itself, but if the stream is a text stream, then you can use a text encoder:&lt;br /&gt;
{{UserCmd|ffmpeg -i movie.mkv -map 0:v:0 -map 0:s:0 out.mp4}}&lt;br /&gt;
&lt;br /&gt;
If you have a bitmap-based subtitle stream (dvb is bitmap-based, srt/ass is text-based), you need to overlay the subtitles onto the movie itself.&lt;br /&gt;
&lt;br /&gt;
{{UserCmd|ffmpeg -i movie.mkv -filter_complex &amp;quot;[0:v:0][0:s:0]overlay&amp;quot; out.mp4}}&lt;br /&gt;
&lt;br /&gt;
== Encoders ==&lt;br /&gt;
The following is a verbose manner of defining encoders:&lt;br /&gt;
{{UserCmd|ffmpeg -vcodec copy -acodec copy -scodec copy -map 0:v:0 -map 0:a:0 -map 0:s:0 out.mp4}}&lt;br /&gt;
The video codec (&amp;lt;code&amp;gt;-vcodec&amp;lt;/code&amp;gt;) and the subtitle codec (&amp;lt;code&amp;gt;-scodec&amp;lt;/code&amp;gt;) are used to transform the video stream (&amp;lt;code&amp;gt;0:v:0&amp;lt;/code&amp;gt;) and the subtitle stream (&amp;lt;code&amp;gt;0:s:0&amp;lt;/code&amp;gt;) into the output file (&amp;lt;code&amp;gt;out.mp4&amp;lt;/code&amp;gt;). The term &amp;lt;code&amp;gt;copy&amp;lt;/code&amp;gt; for each codec simply uses whatever codec is used in the original file, &amp;lt;code&amp;gt;movie.mk4&amp;lt;/code&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
If you want to use a specific codec, &lt;br /&gt;
&lt;br /&gt;
{{UserCmd|ffmpeg -i movie.mkv -vcodec libx264 -scodec copy -map 0:v:0 -map 0:s:0 -map 0:a:0 out.mp4}}&lt;br /&gt;
&lt;br /&gt;
Typically, audio codecs are standardized and each output format will accept the audio codecs. &amp;lt;code&amp;gt;libx264&amp;lt;/code&amp;gt; is used for mp4 files, &amp;lt;code&amp;gt;libvpx-vp9&amp;lt;/code&amp;gt; is used for webm files and these are non-free codecs. To go from .mp4 to .webm to reduce the video size:&lt;br /&gt;
{{UserCmd|ffmpeg -i video.mp4 -c:v libvpx-vp9 -b:v 1M out.webm}}&lt;br /&gt;
&amp;lt;code&amp;gt;-b:v&amp;lt;/code&amp;gt; sets the bitrate to 1 MB/s, which should reduce the size down to below 2MB and &amp;lt;code&amp;gt;-an&amp;lt;/code&amp;gt; removes noise, which should allow you to post your video on a certain website.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=MTU_Jargon&amp;diff=8133</id>
		<title>MTU Jargon</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=MTU_Jargon&amp;diff=8133"/>
		<updated>2026-07-26T01:11:01Z</updated>

		<summary type="html">&lt;p&gt;Freya: Pronunciation and adding GLRC&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Michigan Technological University]]&lt;br /&gt;
&lt;br /&gt;
*Brick Dick: Another name for the MEEM&lt;br /&gt;
*Copper Country Cruising: Driving around the Keweenaw&lt;br /&gt;
*EERC (pronounced like &amp;quot;irk&amp;quot;): Electrical Energy Resources Center (Building 07)&lt;br /&gt;
*Glass tit: The greenhouse between the MEEM (Building 20) and Chem-Sci (Building 19)&lt;br /&gt;
*[[Hobomaxxing]]: The concept of living homelessly to keep cost of living down, while maintaining an otherwise normal life.&lt;br /&gt;
*MEEM (pronounced like &amp;quot;meme&amp;quot;): Mechancial Engineering - Engineering Mechanics (Building 20)&lt;br /&gt;
*Troll: A resident of the Lower Peninsula&lt;br /&gt;
*[[WMTU]] (pronounced like &amp;quot;wim two&amp;quot;): Campus radio station&lt;br /&gt;
*Yooper: A long time resident of the [[UP]]&lt;br /&gt;
*GLRC (pronounced like &amp;quot;glurk&amp;quot;): Great Lakes Research Center, home of LUG servers (and this wiki!)&lt;br /&gt;
&lt;br /&gt;
= Outdated Jargon =&lt;br /&gt;
These are terms that have come to be outdated and are not often used.&lt;br /&gt;
&lt;br /&gt;
*CLIT: The new CS building. Also known as Rekhi for the n00bs.&lt;br /&gt;
*Cyberia Cafe: Local Coffee shop with free wifi (closed 2025)&lt;br /&gt;
*Motherlode: Local Coffee shop with free wifi (closed)&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=User:Freya&amp;diff=8132</id>
		<title>User:Freya</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=User:Freya&amp;diff=8132"/>
		<updated>2026-07-26T00:29:33Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secretary from 2026-now&lt;br /&gt;
&lt;br /&gt;
Created the LUG /idgames mirror&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Members&amp;diff=8131</id>
		<title>Members</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Members&amp;diff=8131"/>
		<updated>2026-07-26T00:29:04Z</updated>

		<summary type="html">&lt;p&gt;Freya: Change out e-board members&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Officers ==&lt;br /&gt;
&#039;&#039;&#039;President&#039;&#039;&#039;: Lily&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Vice President:&#039;&#039;&#039; Simone&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Treasurer&#039;&#039;&#039;: Greg &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Secretary&#039;&#039;&#039;: [[User:Freya|Freya]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Server Administration Team&#039;&#039;&#039;: &lt;br /&gt;
&lt;br /&gt;
# August Staples&lt;br /&gt;
# Dane Cucinelli&lt;br /&gt;
# Lucas Jones&lt;br /&gt;
# Noah Holland&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Faculty Advisor&#039;&#039;&#039;: [https://www.mtu.edu/applied-computing/about/faculty/ac-faculty/arney/ Todd O. Arney (Applied Computing Department)]&lt;br /&gt;
&lt;br /&gt;
== Alumni ==&lt;br /&gt;
[[User:Dark-Fx|Brian McPherson]] CS Major (2008)&lt;br /&gt;
&lt;br /&gt;
[[User:rsmudge|Raphael Mudge]] CS Major (2004)&lt;br /&gt;
&lt;br /&gt;
[http://www.dingostick.com Adam Shirey] CS Major (2004)&lt;br /&gt;
&lt;br /&gt;
[[User:gzphreak|Dan Clark]] CS Major (2005)&lt;br /&gt;
&lt;br /&gt;
[http://khanbo.com Mary Farmer] EE Major (2005)&lt;br /&gt;
&lt;br /&gt;
[[User:spi|Steven Isaacson]] CS Major (2005)&lt;br /&gt;
&lt;br /&gt;
[[User:base16|Justin TerAvest]] CS Major (2005)&lt;br /&gt;
&lt;br /&gt;
[http://xobes.com Andy Zobro] ME Undergrad, Engineering Masters (2005)&lt;br /&gt;
&lt;br /&gt;
[[User:Jon787|Jon DeVree]] CS Major (2006)&lt;br /&gt;
&lt;br /&gt;
[[User:Sgowtham|S Gowtham]] Eng. Physics (Sometime in 2006)&lt;br /&gt;
&lt;br /&gt;
[[User:Chong|Timothy Carmean]] CSY Major (2007)&lt;br /&gt;
&lt;br /&gt;
[[User: Techieb0y|Peter Corbett]] CSY Major (2007)&lt;br /&gt;
&lt;br /&gt;
[[User:Physcofish|Jon Klimowicz]] CS Major (December 2007)&lt;br /&gt;
&lt;br /&gt;
[[User:Ox|Michael Senkow]] ME &amp;amp; STC Major (2009)&lt;br /&gt;
&lt;br /&gt;
[[User:MJS|Matthew Senkow]] SocSci Major (2008)&lt;br /&gt;
&lt;br /&gt;
[[User:Freshmen|Andrew Swartzendruber]] CpE Major (2008)&lt;br /&gt;
&lt;br /&gt;
[[User:MrVoids|Andrew Miller]] CpE/EE Major (2008)&lt;br /&gt;
&lt;br /&gt;
[[User:Adamjaskie|Adam Jaskie]] CS (2008)&lt;br /&gt;
&lt;br /&gt;
Lenore Towne CS (????)&lt;br /&gt;
&lt;br /&gt;
Jeff Tyson CS (2008)&lt;br /&gt;
&lt;br /&gt;
John Pastore Math (1901)&lt;br /&gt;
&lt;br /&gt;
[[User: Tokyo-18|A&#039;Lisa Krawciw]] CpE/EE Major (2010)&lt;br /&gt;
&lt;br /&gt;
[[User:blcrowle|Brandon Crowley]] CS Major (2011)&lt;br /&gt;
&lt;br /&gt;
[[User:agmeyer|Andrew Meyer]] CpE/EE Major (2012)&lt;br /&gt;
&lt;br /&gt;
Alex Klinkhamer&lt;br /&gt;
&lt;br /&gt;
Beth Russart&lt;br /&gt;
&lt;br /&gt;
Steven Vormwald&lt;br /&gt;
&lt;br /&gt;
Jesse Wisniewski EE Major (2011?)(fall 2000-&amp;gt;spring2002, fall2009+)&lt;br /&gt;
&lt;br /&gt;
Alicia Gervais&lt;br /&gt;
&lt;br /&gt;
Nate Scowcroft&lt;br /&gt;
&lt;br /&gt;
William Cody Laeder&lt;br /&gt;
&lt;br /&gt;
Nick Trierweiler&lt;br /&gt;
&lt;br /&gt;
Peter Marheine (CpE 2013)&lt;br /&gt;
&lt;br /&gt;
[[User:Bane|Dan Williams]]&lt;br /&gt;
&lt;br /&gt;
[[User:Dwfreed|Doug Freed]] (CpE 2015)&lt;br /&gt;
&lt;br /&gt;
[[User:Thirtysixway |Josh Knight]] (CNSA Major, EE Minor 2014) President &#039;12/&#039;13&lt;br /&gt;
&lt;br /&gt;
Kaleb Elwert (CS Major 2014) President &#039;13/&#039;14&lt;br /&gt;
&lt;br /&gt;
[[User:Jfledvin|Jared Ledvina]] CNSA Major(2015) President &#039;14/&#039;15&lt;br /&gt;
&lt;br /&gt;
Brandon Ingalls (????) President &#039;15&lt;br /&gt;
&lt;br /&gt;
Kory Wegmeyer (????) Vice President &#039;15&lt;br /&gt;
&lt;br /&gt;
Evan Hauck (????) Secretary &#039;15&lt;br /&gt;
&lt;br /&gt;
Brendan Kerrigan (????) Treasurer &#039;15&lt;br /&gt;
&lt;br /&gt;
Christopher Sengstack (????) Public Relations &#039;15&lt;br /&gt;
&lt;br /&gt;
Stephen Radachy (????) Server Admin &#039;15&lt;br /&gt;
&lt;br /&gt;
Christopher Sengstack (????) Server Admin &#039;15&lt;br /&gt;
&lt;br /&gt;
Daniel Knudsen (????) Server Admin &#039;15&lt;br /&gt;
&lt;br /&gt;
[[User:Sjwhitak|Steven Whitaker]] EE Major (2022) President &#039;21/&#039;22&lt;br /&gt;
&lt;br /&gt;
David Hochstetler (????) Vice President &#039;22/&#039;23&lt;br /&gt;
&lt;br /&gt;
== Past Members ==&lt;br /&gt;
[[User:Rachel|Rachel Pierce]] (2004-2005) transferred to [http://www.stolaf.edu/ St. Olaf]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8115</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8115"/>
		<updated>2026-04-17T00:44:25Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-04-16]] — Metabrainz and Musicbrainz&lt;br /&gt;
* [[Minutes 2026-04-09]] — iOS Jailbreaking -- [https://lug.mtu.edu/archive/pdfs/2026-04-09.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2026-04-02]] — Google Sheets 3D Rendering&lt;br /&gt;
* [[Minutes 2026-03-12]] — Bedrock Linux -- [https://lug.mtu.edu/archive/pdfs/2026-03-12.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2026-02-19]] — Qubes OS -- [https://lug.mtu.edu/archive/pdfs/2026-02-19.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8114</id>
		<title>Minutes 2026-04-16</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8114"/>
		<updated>2026-04-16T23:54:08Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Presentation on Metabrainz and their various services, with a focus on Musicbrainz&lt;br /&gt;
* Musicbrainz is a database of music&lt;br /&gt;
** Individual releases&lt;br /&gt;
** Track info&lt;br /&gt;
** Specific file tags&lt;br /&gt;
** Can be contributed to by anyone&lt;br /&gt;
** Lots of metadata for each release, including official/bootleg status, language/script, and specific version&lt;br /&gt;
* Picard&lt;br /&gt;
** Auto-tags music files based on Musicbrainz database&lt;br /&gt;
** Checks audio file against the database with Audio ID&lt;br /&gt;
** Checks CD fingerprints to tag&lt;br /&gt;
** Can rip tracks from a CD and tag them&lt;br /&gt;
* Listenbrainz is like last.fm but Metabrains&lt;br /&gt;
* Album Cover Archive is a collaboration with archive.org, it&#039;s name is self-explanatory&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8113</id>
		<title>Minutes 2026-04-16</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8113"/>
		<updated>2026-04-16T23:26:08Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Presentation on Metabrainz and their various services, with a focus on Musicbrainz&lt;br /&gt;
* Musicbrainz is a database of music&lt;br /&gt;
** Individual releases&lt;br /&gt;
** Track info&lt;br /&gt;
** Specific file tags&lt;br /&gt;
** Can be contributed to by anyone&lt;br /&gt;
** Lots of metadata for each release, including official/bootleg status, language/script, and specific version&lt;br /&gt;
* Picard&lt;br /&gt;
** Auto-tags music files based on Musicbrainz database&lt;br /&gt;
** Checks audio file against the database with Audio ID&lt;br /&gt;
** Checks CD fingerprints to tag&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8112</id>
		<title>Minutes 2026-04-16</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-16&amp;diff=8112"/>
		<updated>2026-04-16T23:21:58Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Presentation on Metabrainz and their various services, with a focus on Musicbrainz * Musicbrainz is a database of music&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Presentation on Metabrainz and their various services, with a focus on Musicbrainz&lt;br /&gt;
* Musicbrainz is a database of music&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-09&amp;diff=8096</id>
		<title>Minutes 2026-04-09</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-09&amp;diff=8096"/>
		<updated>2026-04-09T23:29:03Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Presentation by Simone on iOS Jailbreaking  * What is it? ** Remove restrictions ** Root access ** Sideloading apps ** Bypass code signing * Tools ** Cydia (old) ** Sileo ** Checkra1n * iOS Architecture ** Darwin kernel (derived from FreeBSD) ** Enforces code signing ** Apps are sandboxed ** Secure boot chain (iBoot) * How does it work? ** Exploits *** Bootrom exploits like checkra1n and redsn0w, which are usually unpatchable *** Userland exploits through apps or tools,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Presentation by Simone on iOS Jailbreaking&lt;br /&gt;
&lt;br /&gt;
* What is it?&lt;br /&gt;
** Remove restrictions&lt;br /&gt;
** Root access&lt;br /&gt;
** Sideloading apps&lt;br /&gt;
** Bypass code signing&lt;br /&gt;
* Tools&lt;br /&gt;
** Cydia (old)&lt;br /&gt;
** Sileo&lt;br /&gt;
** Checkra1n&lt;br /&gt;
* iOS Architecture&lt;br /&gt;
** Darwin kernel (derived from FreeBSD)&lt;br /&gt;
** Enforces code signing&lt;br /&gt;
** Apps are sandboxed&lt;br /&gt;
** Secure boot chain (iBoot)&lt;br /&gt;
* How does it work?&lt;br /&gt;
** Exploits&lt;br /&gt;
*** Bootrom exploits like checkra1n and redsn0w, which are usually unpatchable&lt;br /&gt;
*** Userland exploits through apps or tools, usually get patched very quickly&lt;br /&gt;
** Attempt privilege escalation&lt;br /&gt;
** Patch out kernel protections&lt;br /&gt;
*** Caries wildly by iOS version and device&lt;br /&gt;
* Types of jailbreaks&lt;br /&gt;
** Untethered&lt;br /&gt;
*** Full reboot persistence&lt;br /&gt;
*** Died out by iOS 9&lt;br /&gt;
** Semi-untethered&lt;br /&gt;
*** No reboot persistence&lt;br /&gt;
*** Requires an app to jailbreak each boot&lt;br /&gt;
*** Apps must be resigned each week&lt;br /&gt;
*** Most common type&lt;br /&gt;
** Semi-tethered&lt;br /&gt;
*** Requires a computer to jailbreak each boot&lt;br /&gt;
*** Most bootrom exploits are this type&lt;br /&gt;
*** Computer tool overrides iOS boot chain&lt;br /&gt;
** Tethered&lt;br /&gt;
*** Requires a computer each boot&lt;br /&gt;
*** Rare&lt;br /&gt;
** Demo using iOS 10 on an iPhone 5S&lt;br /&gt;
*** Using browser exploit called Totally Not Spyware&lt;br /&gt;
**** Creates a popup saying the kernel was patched&lt;br /&gt;
*** Zebra is the package manager for this jailbreak&lt;br /&gt;
*** Reloaded into jailbroken state with theme&lt;br /&gt;
*** Hard crashed :(&lt;br /&gt;
*** After jailbreaking again, it reloads again and then died immediately.&lt;br /&gt;
** What you can do&lt;br /&gt;
*** Install package manager&lt;br /&gt;
**** Cydia, Sileo, Zebra&lt;br /&gt;
**** Frontends for apt&lt;br /&gt;
*** Customization&lt;br /&gt;
**** Theming&lt;br /&gt;
**** UI modifications&lt;br /&gt;
*** Modify app or system behavior&lt;br /&gt;
*** SSH server&lt;br /&gt;
** Jailbreaking is dead now&lt;br /&gt;
*** Modern iOS is much more secure&lt;br /&gt;
**** Signed boot chain&lt;br /&gt;
**** Page protection to stop kernel read and write&lt;br /&gt;
**** Pointer authentication code&lt;br /&gt;
**** Hasn&#039;t been a bootrom exploit in years&lt;br /&gt;
*** Can&#039;t downgrade iOS&lt;br /&gt;
**** Every iOS version is signed per individual device&lt;br /&gt;
**** SHSH blob must be saved to downgrade, but must be saved while still signed by Appled&lt;br /&gt;
**** Firmware incompatibilities&lt;br /&gt;
*** Apple hired prominent Jailbreak developers&lt;br /&gt;
**** Bug bounty programs&lt;br /&gt;
*** Apple added some Jailbreak features to stock iOS&lt;br /&gt;
**** Dark theme&lt;br /&gt;
**** Icon themes&lt;br /&gt;
** Jailbreak compatibility&lt;br /&gt;
*** iPhone X and older&lt;br /&gt;
**** All versions vulnerable&lt;br /&gt;
**** Bootrom and software exploits&lt;br /&gt;
**** Devices are no longer supported by Apple&lt;br /&gt;
*** Newer devices&lt;br /&gt;
**** Userland exploits on iOS 17 and older&lt;br /&gt;
**** Generally don&#039;t exist now&lt;br /&gt;
** Risks&lt;br /&gt;
*** Security risks&lt;br /&gt;
*** Can be unstable&lt;br /&gt;
*** Some apps will break&lt;br /&gt;
**** Games&lt;br /&gt;
**** Banking apps&lt;br /&gt;
*** Updating iOS usually patches the exploit&lt;br /&gt;
*** Legal grey area&lt;br /&gt;
**** Not exactly illegal&lt;br /&gt;
**** Violates Apple EULA&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8095</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8095"/>
		<updated>2026-04-09T23:07:49Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-04-09]] — iOS Jailbreaking&lt;br /&gt;
* [[Minutes 2026-04-02]] — Google Sheets 3D Rendering&lt;br /&gt;
* [[Minutes 2026-03-12]] —Bedrock Linux&lt;br /&gt;
* [[Minutes 2026-02-19]] — Qubes OS&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=User:Freya&amp;diff=8094</id>
		<title>User:Freya</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=User:Freya&amp;diff=8094"/>
		<updated>2026-04-09T23:06:38Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Secretary from 2026-now&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secretary from 2026-now&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8093</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8093"/>
		<updated>2026-04-03T00:03:15Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-04-02]] — Google Sheets 3D Rendering&lt;br /&gt;
* [[Minutes 2026-03-12]] —Bedrock Linux&lt;br /&gt;
* [[Minutes 2026-02-19]] — Qubes OS&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-02&amp;diff=8092</id>
		<title>Minutes 2026-04-02</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-04-02&amp;diff=8092"/>
		<updated>2026-04-03T00:03:07Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Casey presenting an STL viewer in Google Sheets *Not made for any particular reason *Works pretty well *Only uses &amp;quot;vanilla&amp;quot; Google Sheets *Can set resolution of points, rotations *Why It Was Made: **Casey did not know any languages outside of Gcode, Mcode, R, and Google Sheets **Came out of several experiments with Sheets in high school (barcode generator, data matrix generator, Animal Crossing flower breeding model) **Saw a video of a cube projection in Minecraft redsto...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Casey presenting an STL viewer in Google Sheets&lt;br /&gt;
*Not made for any particular reason&lt;br /&gt;
*Works pretty well&lt;br /&gt;
*Only uses &amp;quot;vanilla&amp;quot; Google Sheets&lt;br /&gt;
*Can set resolution of points, rotations&lt;br /&gt;
*Why It Was Made:&lt;br /&gt;
**Casey did not know any languages outside of Gcode, Mcode, R, and Google Sheets&lt;br /&gt;
**Came out of several experiments with Sheets in high school (barcode generator, data matrix generator, Animal Crossing flower breeding model)&lt;br /&gt;
**Saw a video of a cube projection in Minecraft redstone&lt;br /&gt;
*How It&#039;s Made:&lt;br /&gt;
**Initial version: rendered through layers of conditional formatting&lt;br /&gt;
**Subsequent versions went towards using line graphs to load faster&lt;br /&gt;
**Development went through phases, going through a lot of work and then being dropped for a while.&lt;br /&gt;
**Switched to STL files for importing&lt;br /&gt;
***Older versions calculated normals, but it turns out those are provided in STL format&lt;br /&gt;
**Limit of 100 series in Google Sheets for plots&lt;br /&gt;
***This means that for an 8000+ vertex model, it requires hundreds of plots, with backgrounds transparent, to render a whole model.&lt;br /&gt;
***Various versions of this type of spreadsheet are done&lt;br /&gt;
***Eventually Google came out with iterative calculations, allowing everything to be done in one series.&lt;br /&gt;
****Allowed smaller size functions using lambda expressions, as spreadsheet size was becoming a constraint&lt;br /&gt;
*****This performed worse&lt;br /&gt;
***Switched to scatterplots&lt;br /&gt;
****Eliminates series limitations as there are no series&lt;br /&gt;
****Did hit cell limit, requiring a separate page&lt;br /&gt;
****Can adjust resolution of line rendering&lt;br /&gt;
****Renders considerably faster&lt;br /&gt;
****Calculates vertices and midpoints in separate sheets&lt;br /&gt;
**Reinvented hashing accidentally to get a unique index for each vertex, to do indices&lt;br /&gt;
**Modern version uses two layered scatterplots, uses the STL format&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-03-19&amp;diff=8087</id>
		<title>Minutes 2026-03-19</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-03-19&amp;diff=8087"/>
		<updated>2026-03-19T23:25:17Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Presentation about toad today  * Small CLI program to manage to-do lists * Built in C, GPLv3 * Written over 2 weeks * Internally mostly one file * Gets arguments, processes non-specific commands, loads relevant files, processes specific commands * Lessons: ** C string processing isn&amp;#039;t very good *** Generally very annoying *** Requires lots of extra allocations *** Concatenation is hell ** Fun to write C code *** Simple *** Small library = low mental overhead ** Build sys...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Presentation about toad today&lt;br /&gt;
&lt;br /&gt;
* Small CLI program to manage to-do lists&lt;br /&gt;
* Built in C, GPLv3&lt;br /&gt;
* Written over 2 weeks&lt;br /&gt;
* Internally mostly one file&lt;br /&gt;
* Gets arguments, processes non-specific commands, loads relevant files, processes specific commands&lt;br /&gt;
* Lessons:&lt;br /&gt;
** C string processing isn&#039;t very good&lt;br /&gt;
*** Generally very annoying&lt;br /&gt;
*** Requires lots of extra allocations&lt;br /&gt;
*** Concatenation is hell&lt;br /&gt;
** Fun to write C code&lt;br /&gt;
*** Simple&lt;br /&gt;
*** Small library = low mental overhead&lt;br /&gt;
** Build systems are hard&lt;br /&gt;
*** Lots of them&lt;br /&gt;
*** Make, CMake, Autotools, etc&lt;br /&gt;
** Not hard to get started in C&lt;br /&gt;
*** Already probably have GCC on your system&lt;br /&gt;
*** Simple to read and write&lt;br /&gt;
*** Few libraries needed for something this small&lt;br /&gt;
* Linux/Unix Philosophy&lt;br /&gt;
** Most stuff here is written in C&lt;br /&gt;
** Libraries target C first&lt;br /&gt;
** Small and composable programs are useful&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-03-12&amp;diff=8086</id>
		<title>Minutes 2026-03-12</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-03-12&amp;diff=8086"/>
		<updated>2026-03-12T23:30:52Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;Bedrock Linux: * Meta distribution   * Doesn&amp;#039;t exactly distribute linux, but instead gives the tools to set up distros   * Installs multiple distributions so tooling can be used across distros   * Can set up shared directories, $PATH, init systems, bootloaders, etc. * How it works:   * Each distro is a &amp;quot;strata&amp;quot;   * Each distro has its own rootfs   * crossfs using FUSE is used to share components     * Packages managers are oblivious   * Able to present a unified rootfs,...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bedrock Linux:&lt;br /&gt;
* Meta distribution&lt;br /&gt;
  * Doesn&#039;t exactly distribute linux, but instead gives the tools to set up distros&lt;br /&gt;
  * Installs multiple distributions so tooling can be used across distros&lt;br /&gt;
  * Can set up shared directories, $PATH, init systems, bootloaders, etc.&lt;br /&gt;
* How it works:&lt;br /&gt;
  * Each distro is a &amp;quot;strata&amp;quot;&lt;br /&gt;
  * Each distro has its own rootfs&lt;br /&gt;
  * crossfs using FUSE is used to share components&lt;br /&gt;
    * Packages managers are oblivious&lt;br /&gt;
  * Able to present a unified rootfs, through a lot of trickery&lt;br /&gt;
  * Cross-binary paths are added to $PATH&lt;br /&gt;
* Installation:&lt;br /&gt;
  * Replaces existing distribution instead of wiping it&lt;br /&gt;
  * Reorganizes directory structure&lt;br /&gt;
  * Can install system you want first, then bedrock-ify it&lt;br /&gt;
* Package management:&lt;br /&gt;
  * Manages its own fs&lt;br /&gt;
  * Minimal conflicts&lt;br /&gt;
  * Bedrock uses pmm, which abstracts all your package managers to one interface&lt;br /&gt;
  * Can mix different package repositories (debian + arch packages)&lt;br /&gt;
* Demo:&lt;br /&gt;
  * *she failed to write `btop` like 4 times*&lt;br /&gt;
  * On debian system, installing btop from the arch repos&lt;br /&gt;
  * `brl which btop` shows which distro has btop&lt;br /&gt;
  * `brl which` to see current distro&lt;br /&gt;
  * `strat [distro] [command]` to run command on specific distro&lt;br /&gt;
* Use cases:&lt;br /&gt;
  * Using Debian, want newer packages&lt;br /&gt;
  * Pick initramfs or init system&lt;br /&gt;
  * Using AUR&lt;br /&gt;
  * Using portage&lt;br /&gt;
* Limitations:&lt;br /&gt;
  * Disk usage overhead&lt;br /&gt;
  * Init system conflicts with some packages&lt;br /&gt;
  * Some packages assume distro ownership&lt;br /&gt;
  * May be unstable&lt;br /&gt;
  * Larger attack surface&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8085</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8085"/>
		<updated>2026-03-12T23:29:06Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-03-12]] —Bedrock Linux&lt;br /&gt;
* [[Minutes 2026-02-19]] — Qubes OS&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-19&amp;diff=8083</id>
		<title>Minutes 2026-02-19</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-19&amp;diff=8083"/>
		<updated>2026-02-20T00:41:15Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;=Meeting Minutes 2026-02-19= Qubes presentation by Simone  * Traditional OS security is not ideal ** No isolation by default ** Assumes trusted kernel ** Only one compromised app can take over the system ** Easy lateral movement for hacks * Qubes: ** Type 1 hypervisor as desktop OS ** Everything is isolated in VMs ** 1 VM per ** This contains compromised apps within the part of the system they are used on ** Based on Xen hypervisor * Architecture: ** Xen hypervisor, hard...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Meeting Minutes 2026-02-19=&lt;br /&gt;
Qubes presentation by Simone&lt;br /&gt;
&lt;br /&gt;
* Traditional OS security is not ideal&lt;br /&gt;
** No isolation by default&lt;br /&gt;
** Assumes trusted kernel&lt;br /&gt;
** Only one compromised app can take over the system&lt;br /&gt;
** Easy lateral movement for hacks&lt;br /&gt;
* Qubes:&lt;br /&gt;
** Type 1 hypervisor as desktop OS&lt;br /&gt;
** Everything is isolated in VMs&lt;br /&gt;
** 1 VM per&lt;br /&gt;
** This contains compromised apps within the part of the system they are used on&lt;br /&gt;
** Based on Xen hypervisor&lt;br /&gt;
* Architecture:&lt;br /&gt;
** Xen hypervisor, hardened&lt;br /&gt;
** Dom0: management VM&lt;br /&gt;
** DomU: unpriveleged VMs&lt;br /&gt;
* Dom0:&lt;br /&gt;
** NOT HOST&lt;br /&gt;
** Priveleged&lt;br /&gt;
** Gets most hardware by default&lt;br /&gt;
** Window Manager/GUI is in Dom0&lt;br /&gt;
** No networking&lt;br /&gt;
** Enforces color coding on&lt;br /&gt;
* AppVMs:&lt;br /&gt;
** Unpriveleged&lt;br /&gt;
** Usually Debian or Fedora&lt;br /&gt;
** Runs user applications&lt;br /&gt;
** Video sent to Dom0&lt;br /&gt;
** Input sent from Dom0&lt;br /&gt;
** Stateless by default: /home persists but root filesystem doesn&#039;t&lt;br /&gt;
* TemplateVMs:&lt;br /&gt;
** Snapshot-based templates&lt;br /&gt;
** Contains installed packages&lt;br /&gt;
** No direct internet access (update by proxy, updates all AppVMs)&lt;br /&gt;
* DisposableVMs:&lt;br /&gt;
** Similar to AppVms, but self-destructs&lt;br /&gt;
** Useful for viewing untrusted files or sites&lt;br /&gt;
** Also useful to get a fresh environment&lt;br /&gt;
** Automatic creation and deletion&lt;br /&gt;
* Virtualization:&lt;br /&gt;
** PVH by default&lt;br /&gt;
** Can be fully virtualized (FVH) as an option&lt;br /&gt;
** Qubes Windows Tools (QWT) to work with Windows better&lt;br /&gt;
** Can use any OS&lt;br /&gt;
* Networking:&lt;br /&gt;
** Dedicated VM for network&lt;br /&gt;
** Hardware passthrough&lt;br /&gt;
** Firewall is between AppVMs and hardware&lt;br /&gt;
** Impossible to sniff network activity from the VMs&lt;br /&gt;
* Peripherals:&lt;br /&gt;
** Dedicated USB VM&lt;br /&gt;
** Can forward USB devices to Qubes&lt;br /&gt;
** Isolates malicious USBs&lt;br /&gt;
*** Can spin up a disposable VM to investigate&lt;br /&gt;
** Audio/Bluetooth have similar systems&lt;br /&gt;
* GUI:&lt;br /&gt;
** Each VM renders own windows&lt;br /&gt;
** Dom0 composites video together&lt;br /&gt;
** Per-VM color coding (makes popups harder to fall for)&lt;br /&gt;
** Each VM has an emulated GPU&lt;br /&gt;
** Anything that requires a real GPU will need hardware passthrough&lt;br /&gt;
* VM Communication:&lt;br /&gt;
** qrexec lets Dom0 control VMs&lt;br /&gt;
** &amp;amp;quot;Send to Qube&amp;amp;quot; to share files between VMs&lt;br /&gt;
** &amp;amp;quot;Open URL in Qube&amp;amp;quot;&lt;br /&gt;
* Whonix/TOR:&lt;br /&gt;
** Whonix is built into Qubes OS&lt;br /&gt;
** Whonix runs everything only through TOR&lt;br /&gt;
*** Really slow&lt;br /&gt;
** Whonix-gateway: runs TOR only&lt;br /&gt;
** Whonix-workstation: routes traffic through gateway, disposable&lt;br /&gt;
* Updates/Trust:&lt;br /&gt;
** sys-whonix: updates over TOR&lt;br /&gt;
** sys-net: updates everything else, managed by Dom0&lt;br /&gt;
* Performance:&lt;br /&gt;
** So many VMs has a cost&lt;br /&gt;
** Most VMs are idle, and Xen reallocates unused memmory&lt;br /&gt;
** Overhead with CPU performance, RAM, and I/O&lt;br /&gt;
** Recommended at elast 32GB RAM, and an SSD&lt;br /&gt;
** Requires hardware virtualization (VT-x/VT-d, AMD-V, IOMMU)&lt;br /&gt;
** Qubes in VM is unsupported&lt;br /&gt;
&lt;br /&gt;
* Useful for journalists, developers, and the paranoid&lt;br /&gt;
* Reduces risk&lt;br /&gt;
* Trains visual/habitual security&lt;br /&gt;
&lt;br /&gt;
* NOT FOR BEGINNERS&lt;br /&gt;
* Not meant for games&lt;br /&gt;
* Firmware malware still a problem&lt;br /&gt;
* Annoying and takes a lot of work to run&lt;br /&gt;
&lt;br /&gt;
* Demo:&lt;br /&gt;
** Lots of VMs on the system&lt;br /&gt;
** VMs for:&lt;br /&gt;
*** Discord&lt;br /&gt;
*** Work&lt;br /&gt;
*** Personal&lt;br /&gt;
*** Vault&lt;br /&gt;
*** Untrusted&lt;br /&gt;
*** USB devices&lt;br /&gt;
*** Firewall&lt;br /&gt;
** Disposable VM can be created to inspect a USB safely&lt;br /&gt;
*** Popups, other sneaky things are both isolated and easy to see&lt;br /&gt;
** All Qubes can be seen on the Qube Manager&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8082</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8082"/>
		<updated>2026-02-20T00:40:02Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-02-19]] — Qubes OS&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-12&amp;diff=8079</id>
		<title>Minutes 2026-02-12</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-12&amp;diff=8079"/>
		<updated>2026-02-13T01:15:00Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=2026-02-12 Meeting Minutes=&lt;br /&gt;
Presentation on OpenStreetMap by Steven&lt;br /&gt;
&lt;br /&gt;
* OpenStreetMap started as a way to map private buses in the UK&lt;br /&gt;
* Entirely open source&lt;br /&gt;
* Community-built, anyone can edit&lt;br /&gt;
** Online web editor&lt;br /&gt;
** Java OpenStreetMap Editor (JOSM)&lt;br /&gt;
*** JOSM shows more advanced data, is more complex&lt;br /&gt;
*** Can automatically fetch data like addresses&lt;br /&gt;
* Android Clients (all offline)&lt;br /&gt;
** OsmAnd&lt;br /&gt;
** CoMaps&lt;br /&gt;
** Organic Maps&lt;br /&gt;
* Various other ways to view the map&lt;br /&gt;
** OnTheGoMap&lt;br /&gt;
* API is free&lt;br /&gt;
* StreetComplete&lt;br /&gt;
** App that marks unfinished data as &amp;amp;quot;quests&amp;amp;quot;&lt;br /&gt;
** Meant to encourage completion of the maps&lt;br /&gt;
* Michigan is the only state in the US that doesn&#039;t allow you to get addresses through JOSM&lt;br /&gt;
* Google Maps can&#039;t be used to contribute due to licensing, try to get your data legally&lt;br /&gt;
* LOTS of things to be added, and its very easy to do so&lt;br /&gt;
* https://wiki.openstreetmap.org/wiki/List_of_OSM-based_services&lt;br /&gt;
&lt;br /&gt;
Extra Stuff:&lt;br /&gt;
&lt;br /&gt;
* Planned installathon&lt;br /&gt;
** Reach out to Women in Science (might be a different name??) since they also do installathons&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-12&amp;diff=8078</id>
		<title>Minutes 2026-02-12</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-02-12&amp;diff=8078"/>
		<updated>2026-02-13T01:14:49Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;=2026-02-12 Meeting Minutes= Presentation on OpenStreetMap by Steven  * OpenStreetMap started as a way to map private buses in the UK * Entirely open source * Community-built, anyone can edit ** Online web editor ** Java OpenStreetMap Editor (JOSM) *** JOSM shows more advanced data, is more complex *** Can automatically fetch data like addresses * Android Clients (all offline) ** OsmAnd ** CoMaps ** Organic Maps * Various other ways to view the map ** OnTheGoMap * API is...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=2026-02-12 Meeting Minutes= Presentation on OpenStreetMap by Steven&lt;br /&gt;
&lt;br /&gt;
* OpenStreetMap started as a way to map private buses in the UK&lt;br /&gt;
* Entirely open source&lt;br /&gt;
* Community-built, anyone can edit&lt;br /&gt;
** Online web editor&lt;br /&gt;
** Java OpenStreetMap Editor (JOSM)&lt;br /&gt;
*** JOSM shows more advanced data, is more complex&lt;br /&gt;
*** Can automatically fetch data like addresses&lt;br /&gt;
* Android Clients (all offline)&lt;br /&gt;
** OsmAnd&lt;br /&gt;
** CoMaps&lt;br /&gt;
** Organic Maps&lt;br /&gt;
* Various other ways to view the map&lt;br /&gt;
** OnTheGoMap&lt;br /&gt;
* API is free&lt;br /&gt;
* StreetComplete&lt;br /&gt;
** App that marks unfinished data as &amp;amp;quot;quests&amp;amp;quot;&lt;br /&gt;
** Meant to encourage completion of the maps&lt;br /&gt;
* Michigan is the only state in the US that doesn&#039;t allow you to get addresses through JOSM&lt;br /&gt;
* Google Maps can&#039;t be used to contribute due to licensing, try to get your data legally&lt;br /&gt;
* LOTS of things to be added, and its very easy to do so&lt;br /&gt;
* https://wiki.openstreetmap.org/wiki/List_of_OSM-based_services&lt;br /&gt;
&lt;br /&gt;
Extra Stuff:&lt;br /&gt;
&lt;br /&gt;
* Planned installathon&lt;br /&gt;
** Reach out to Women in Science (might be a different name??) since they also do installathons&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8077</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8077"/>
		<updated>2026-02-13T01:14:08Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-02-12]] — OpenStreetMap&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8071</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8071"/>
		<updated>2026-01-30T00:57:49Z</updated>

		<summary type="html">&lt;p&gt;Freya: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-01-29]] -- Planning and State of the org&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-29&amp;diff=8070</id>
		<title>Minutes 2026-01-29</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-29&amp;diff=8070"/>
		<updated>2026-01-30T00:56:54Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;&amp;lt;span id=&amp;quot;Minutes 2026-01-29&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; = Minutes 2026-01-29 =  Greg absent. Lily, Simone, and Freya present.  &amp;lt;span id=&amp;quot;Activity Brainstorming&amp;quot;&amp;gt;&amp;lt;/span&amp;gt; == Activity Brainstorming ==  SUBMIT YOUR IDEAS!!!!  * Systemd alternatives * Old laptop fixing workshop ** Fix them ** Install linux? ** Salvage? * Suicide Linux battle royale * Bootloaders * niri * Show-and-tell * Chromebook workshop???? * Devices you can tux * SteamOS??? ** CPU scheduler ** Gamescope * Gentoo talk * The...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;span id=&amp;quot;Minutes 2026-01-29&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
= Minutes 2026-01-29 =&lt;br /&gt;
&lt;br /&gt;
Greg absent. Lily, Simone, and Freya present.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;Activity Brainstorming&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
== Activity Brainstorming ==&lt;br /&gt;
&lt;br /&gt;
SUBMIT YOUR IDEAS!!!!&lt;br /&gt;
&lt;br /&gt;
* Systemd alternatives&lt;br /&gt;
* Old laptop fixing workshop&lt;br /&gt;
** Fix them&lt;br /&gt;
** Install linux?&lt;br /&gt;
** Salvage?&lt;br /&gt;
* Suicide Linux battle royale&lt;br /&gt;
* Bootloaders&lt;br /&gt;
* niri&lt;br /&gt;
* Show-and-tell&lt;br /&gt;
* Chromebook workshop????&lt;br /&gt;
* Devices you can tux&lt;br /&gt;
* SteamOS???&lt;br /&gt;
** CPU scheduler&lt;br /&gt;
** Gamescope&lt;br /&gt;
* Gentoo talk&lt;br /&gt;
* Theming Your Way(land)&lt;br /&gt;
** Waybar&lt;br /&gt;
** Custom modules&lt;br /&gt;
** Shell bits and bobs&lt;br /&gt;
** Notifs&lt;br /&gt;
** Keybinds&lt;br /&gt;
** Color themes&lt;br /&gt;
** CSS&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span id=&amp;quot;State Of The Org&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
== State Of The Org ==&lt;br /&gt;
&lt;br /&gt;
* Mirrors is fixed!!&lt;br /&gt;
** Mirrors was hacked and put into a botnet BUT IT&#039;S FIXED NOW&lt;br /&gt;
** REMEMBER TO UPDATE IN THE FUTURE WE NEED TO MAKE THIS FASTER&lt;br /&gt;
** Previously was updated through salt, which made it hard to update&lt;br /&gt;
** Hacked through rsync 0day&lt;br /&gt;
** Fresh-installed FreeBSD&lt;br /&gt;
* New server things happening soon!&lt;br /&gt;
* We&#039;re hopefully getting proper storage soon&lt;br /&gt;
* Perpendicular&lt;br /&gt;
* We want more space, but we also cannot go into the WMTU rack. Nor do we need to. Such is the state of man.&lt;br /&gt;
* Focus less on servers in the future, Linux education should still be important&lt;br /&gt;
** NOT DOWNSIZE, just don&#039;t expand further. The homelab is not everything and it takes a lot of work.&lt;br /&gt;
* Potential migration from Proxmox, but that would take a lot of time and effort.&lt;br /&gt;
&lt;br /&gt;
At this point the room broke into separate conversations.&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Docs&amp;diff=8052</id>
		<title>Docs</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Docs&amp;diff=8052"/>
		<updated>2026-01-23T18:52:13Z</updated>

		<summary type="html">&lt;p&gt;Freya: Add meeting minutes management details&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is the hub for LUG&#039;s documentation.&lt;br /&gt;
&lt;br /&gt;
All of our documentation is intentionally public so that other orgs (or students) can replicate aspects of our infrastructure if they want. Everything sensitive (private keys, break-glass passwords, etc) should go in the LUG Bitwarden.&lt;br /&gt;
&lt;br /&gt;
Topics should generally be broken out into individual articles and linked on this page, unless there&#039;s a very small amount of content.&lt;br /&gt;
&lt;br /&gt;
== [[Docs/Infrastructure|Infrastructure]] ==&lt;br /&gt;
General infrastructure notes&lt;br /&gt;
&lt;br /&gt;
=== [[Docs/Plans|Plans]] ===&lt;br /&gt;
Pending upgrades/maintenance to our infrastructure&lt;br /&gt;
&lt;br /&gt;
=== Network ===&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Cables|Cables]] ====&lt;br /&gt;
Physical cabling and &amp;quot;layer 1&amp;quot; network config.&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Switches|Switches]] ====&lt;br /&gt;
Switch and layer 2 network configs (VLANs).&lt;br /&gt;
&lt;br /&gt;
=== Servers ===&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Leskinen|Leskinen]] ====&lt;br /&gt;
&lt;br /&gt;
The primary storage server.&lt;br /&gt;
&lt;br /&gt;
Currently has Shell home directory backups and media for maho.&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Maho|Maho]] ====&lt;br /&gt;
The GPU compute server.&lt;br /&gt;
&lt;br /&gt;
Currently hosts a [https://studio.blender.org/films/ Blender Open Studio Films] mirror via Jellyfin and Local LLM host for members to experiment with.&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Mirrors|Mirrors]] ====&lt;br /&gt;
The Linux mirror server at mirrors.lug.mtu.edu&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/OPNsense|OPNsense]] (Lasanga/Ravioli) ====&lt;br /&gt;
Router/Firewall and layer 3+ network configs.&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Proxmox Cluster|Proxmox Cluster]] ====&lt;br /&gt;
Our Proxmox cluster running the majority of our services&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/Shell|Shell]] ====&lt;br /&gt;
The shared multi-tenant server for LUG members/alums at [https://shell.lug.mtu.edu/ shell.lug.mtu.edu]&lt;br /&gt;
&lt;br /&gt;
=== Services ===&lt;br /&gt;
&lt;br /&gt;
==== BlueSky ====&lt;br /&gt;
&lt;br /&gt;
==== [[Docs/IRC|IRC]] ====&lt;br /&gt;
&lt;br /&gt;
==== Website ====&lt;br /&gt;
&lt;br /&gt;
==== Wiki ====&lt;br /&gt;
&lt;br /&gt;
== Org Management ==&lt;br /&gt;
&lt;br /&gt;
=== Wiki ===&lt;br /&gt;
&lt;br /&gt;
==== Docs ====&lt;br /&gt;
How to create/manage pages in this category (&amp;quot;Docs&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
==== Meeting Minutes ====&lt;br /&gt;
Notes are taken during the meetings.&lt;br /&gt;
&lt;br /&gt;
There are no specific guidelines, but usually minutes are kept to a series of bullet points, with some elaboration in sub-bullets.&lt;br /&gt;
&lt;br /&gt;
These notes can be written in whatever markup format is preferred, but must be converted to MediaWiki to be pasted onto the wiki. [https://pandoc.org/ Pandoc] can do this for the majority of formats (Markdown, Vimwiki, ODT, etc.)&lt;br /&gt;
&lt;br /&gt;
=== Time-sensitive ===&lt;br /&gt;
&lt;br /&gt;
* Email IT for new certs (example template to use, make sure to keep SubjectAltName, etc)&lt;br /&gt;
* Install-a-thons&lt;br /&gt;
* Shirt printing / stickers&lt;br /&gt;
&lt;br /&gt;
=== Budget ===&lt;br /&gt;
&lt;br /&gt;
* USG meetings&lt;br /&gt;
* Making presentable diagrams and representations of data&lt;br /&gt;
&lt;br /&gt;
=== MTU Policies and Procedures ===&lt;br /&gt;
https://www.mtu.edu/umc/services/websites/requirements/&lt;br /&gt;
&lt;br /&gt;
All (sub)domains need to be approved by UMC (University Marketing &amp;amp; Communication)&lt;br /&gt;
&lt;br /&gt;
IT handles IP addressing and SSL certificates&lt;br /&gt;
&lt;br /&gt;
USG handles funding and reimbursements&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8051</id>
		<title>Meeting Minutes</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Meeting_Minutes&amp;diff=8051"/>
		<updated>2026-01-23T18:44:12Z</updated>

		<summary type="html">&lt;p&gt;Freya: Added 2026-01-22 Minutes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note: This page exists to list meeting minutes in a more human-readable format. The original &#039;category&#039; based listing is at [[:Category:Meeting Minutes]].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Visit [[Upcoming Talks]] for a list of scheduled talks.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Spring 2026 ===&lt;br /&gt;
&lt;br /&gt;
* [[Minutes 2026-01-22]] -- Kubernetes (Virtual Meeting)&lt;br /&gt;
&lt;br /&gt;
=== Fall 2025 ===&lt;br /&gt;
* [[Minutes 2025-11-13]] -- Minecraft Server Administration [https://lug.mtu.edu/archive/pdfs/2025-11-13.pptx Presentation] [pptx]&lt;br /&gt;
* [[Minutes 2025-11-06]] -- Yap Session&lt;br /&gt;
* [[Minutes 2025-10-30]] -- Network Bound Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-10-30.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-10-23]] -- Jellyfin and the new LUG GPU server -- [https://lug.mtu.edu/archive/pdfs/2025-10-23.odp Presentation] [odp]&lt;br /&gt;
*16th was during October Break, no meeting! &lt;br /&gt;
* [[Minutes 2025-10-09]] -- Keweenaw Computer Rescue Idea &amp;amp; UNIX Pipes -- [https://lug.mtu.edu/archive/pdfs/2025-10-09_1.pptx Presentation 1] [pptx] [https://lug.mtu.edu/archive/pdfs/2025-10-09_2.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-10-02]] -- LUKS -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-25]] -- Hackintoshing -- [https://lug.mtu.edu/archive/pdfs/2025-09-25.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-18]] -- RAID, ZFS, and Highly Availible Storage -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-11]] -- Intro to LUG and our Servers! -- [https://lug.mtu.edu/archive/pdfs/2025-09-11.odp Presentation] [odp]&lt;br /&gt;
* [[Minutes 2025-09-04]] -- Linux Commandline &amp;amp; SSH -- [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation 1] [odp] [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation 2] [odp]&lt;br /&gt;
* [[Minutes 2025-08-28]] -- Introduction to Linux -- [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
=== Spring 2025 ===&lt;br /&gt;
*24th was on finals week, no meeting! &lt;br /&gt;
*[[Minutes 2025-04-17]] -- Final meeting of the semester!&lt;br /&gt;
*[[Minutes 2025-04-10]] -- FreeBSD -- [https://lug.mtu.edu/archive/pdfs/2025-04-10.odp Presentation] [odp]&lt;br /&gt;
*No Meeting on the 3rd (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2025-03-27]] -- RedTeam day!&lt;br /&gt;
*[[Minutes 2025-03-20]] -- Bedrock Linux (&amp;amp; eBoard elections!) -- [https://lug.mtu.edu/archive/pdfs/2025-03-20.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2025-03-13]] -- Coreboot &amp;amp; BIOS Modding -- [https://lug.mtu.edu/archive/pdfs/2025-03-13.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-03-06]] -- LUG Infrastructure -- [https://lug.mtu.edu/archive/pdfs/2025-03-06.odp Presentation] [odp]&lt;br /&gt;
*Spring break on the 27th, no meeting!&lt;br /&gt;
*[[Minutes 2025-02-20]] -- Wireguard / OpenVPN&lt;br /&gt;
*[[Minutes 2025-02-13]] -- Creating Mifare Classic Polyglot Cards (Programming the LUG IDs) -- [https://lug.mtu.edu/archive/pdfs/2025-02-13.odp Presentation] [odp]&lt;br /&gt;
*Winter Carnival on the 6th, no meeting!&lt;br /&gt;
*[[Minutes 2025-01-30]] -- Creating LUG IDs&lt;br /&gt;
*[[Minutes 2025-01-23]] -- LUKS and Disk Encryption -- [https://lug.mtu.edu/archive/pdfs/2025-01-23.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-16]] -- RAID (and ZFS) -- [https://lug.mtu.edu/archive/pdfs/2025-01-16.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2025-01-09]] -- Program Optimization -- [https://lug.mtu.edu/archive/pdfs/2025-01-09.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2024===&lt;br /&gt;
*The 12th was during finals week, the consensus was no meeting.&lt;br /&gt;
*[[Minutes 2024-12-05]] -- Linux buffer overflows -- [https://lug.mtu.edu/archive/pdfs/2024-12-05.odp Presentation] [odp]&lt;br /&gt;
*Fall Break on the 28th, no meeting!&lt;br /&gt;
*[[Minutes 2024-11-21]] -- X11/Wayland -- [https://lug.mtu.edu/archive/pdfs/2024-11-21.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-11-14]] -- Regex (Regular Expressions) -- [https://lug.mtu.edu/archive/pdfs/2024-11-14.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-11-07]] -- Ricing WMs (AwesomeWM+Hyprland) -- [https://lug.mtu.edu/archive/pdfs/2024-11-07.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-10-31]] -- WireGuard (and Tailscale)  -- [https://lug.mtu.edu/archive/pdfs/2024-10-31.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-24]] -- Practical Cybersecurity (Guest Speaker!) -- [https://lug.mtu.edu/archive/pdfs/2024-10-24.webm Presentation] [webm]&lt;br /&gt;
*October Recess on the 17th, no meeting!&lt;br /&gt;
*[[Minutes 2024-10-10]] -- Pentesting on Linux (AKA intro to NCL) - [https://lug.mtu.edu/archive/pdfs/2024-10-10.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-10-03]] -- Plan 9 (Guest Speaker!) - [https://lug.mtu.edu/archive/pdfs/2024-10-03.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2024-09-26]] -- SSH - [https://lug.mtu.edu/archive/pdfs/2024-09-26.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-19]] -- Introduction to the Linux Commandline - [https://lug.mtu.edu/archive/pdfs/2024-09-19.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-12]] -- Introduction to Linux - [https://lug.mtu.edu/archive/pdfs/2024-09-12.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-09-05]] -- LUG Servers &amp;amp; Services - [https://lug.mtu.edu/archive/pdfs/2024-09-05.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-08-29]] -- Introductions!&lt;br /&gt;
&lt;br /&gt;
===Spring 2024===&lt;br /&gt;
*[[Minutes 2024-04-11]] -- &amp;lt;-- Eboard elections&lt;br /&gt;
*[[Minutes 2024-03-21]] -- No meeting (eboard at CypherCon)&lt;br /&gt;
*[[Minutes 2024-03-14]]&lt;br /&gt;
*[[Minutes 2024-03-07]]&lt;br /&gt;
*[[Minutes 2024-02-22]]&lt;br /&gt;
*[[Minutes 2024-02-15]] -- Ansible - [https://lug.mtu.edu/archive/pdfs/2024-02-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2024-02-01]] -- Linux Kernelmodding - [https://lug.mtu.edu/archive/pdfs/2024-02-01.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Fall 2023===&lt;br /&gt;
*[[Minutes 2023-10-26]]&lt;br /&gt;
*[[Minutes 2023-09-28]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2022===&lt;br /&gt;
*[[Minutes 2022-04-21]] -- Tiedyeing shirts.&lt;br /&gt;
*[[Minutes 2022-04-14]] -- [[ports]].&lt;br /&gt;
*[[Minutes 2022-04-07]] -- No talk.&lt;br /&gt;
*[[Minutes 2022-03-31]] -- [[email]]&lt;br /&gt;
*[[Minutes 2022-03-24]] -- Installathon explanation and stepping through Mediawiki&lt;br /&gt;
*[[Minutes 2022-03-17]] --  &amp;lt;-- Eboard elections.&lt;br /&gt;
*[[Minutes 2022-02-24]] -- [[nginx]]&lt;br /&gt;
*[[Minutes 2022-02-14]] -- [https://gitlab.com/osu-lug/activities/presentations/-/blob/main/rm-rf-resurrection/notes.md recovering after rm -rf]&lt;br /&gt;
*[[Minutes 2022-02-03]] -- [[ASIC Design#Layout]]&lt;br /&gt;
*[[Minutes 2022-01-27]] -- [[ASIC Design#Digital logic]]&lt;br /&gt;
*[[Minutes 2022-01-20]] -- Game night. COVID was too high to meet in person, so we didn&#039;t.&lt;br /&gt;
*[[Minutes 2022-01-13]] -- [[vim]] part 2.&lt;br /&gt;
&lt;br /&gt;
===Fall 2021===&lt;br /&gt;
*[[Minutes 2021-12-09]] -- [[sed]]&lt;br /&gt;
*[[Minutes 2021-11-25]] -- [[File systems]]&lt;br /&gt;
*[[Minutes 2021-11-18]] -- [https://www.imdb.com/title/tt0366548/ Movie night]&lt;br /&gt;
*[[Minutes 2021-11-11]] -- [[neofetch]]&lt;br /&gt;
*[[Minutes 2021-11-02]] -- [[crontab]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-28]] -- [[git]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-21]] -- [[vim]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-15]] -- Discussion on the [[servers]] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-08]] -- [https://www.imdb.com/title/tt0113243/ Movie night] (Unofficial meeting)&lt;br /&gt;
*[[Minutes 2021-10-03]] -- [[FFmpeg]] (Unofficial meeting)&lt;br /&gt;
&lt;br /&gt;
===Fall 2019===&lt;br /&gt;
*[[Minutes 2019-10-15]] - [https://lug.mtu.edu/archive/pdfs/2019-10-15.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-10-08]] - [https://lug.mtu.edu/archive/pdfs/2019-10-08.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-24]] - [https://lug.mtu.edu/archive/pdfs/2019-09-24.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-17]] - [https://lug.mtu.edu/archive/pdfs/2019-09-17.odp Presentation] [odp]&lt;br /&gt;
*[[Minutes 2019-09-10]] - [https://lug.mtu.edu/archive/pdfs/2019-09-10.odp Presentation] [odp]&lt;br /&gt;
&lt;br /&gt;
===Spring 2019===&lt;br /&gt;
*[[Minutes 2019-04-25]]&lt;br /&gt;
*[[Minutes 2019-04-12]]&lt;br /&gt;
*[[Minutes 2019-04-03]]&lt;br /&gt;
*[[Minutes 2019-03-28]]&lt;br /&gt;
*[[Minutes 2019-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2018===&lt;br /&gt;
*[[Minutes 2018-12-04]]&lt;br /&gt;
*[[Minutes 2018-11-13]]&lt;br /&gt;
*[[Minutes 2018-11-07]]&lt;br /&gt;
*[[Minutes 2018-10-24]]&lt;br /&gt;
*[[Minutes 2018-10-16]]&lt;br /&gt;
*[[Minutes 2018-10-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2018===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_25.pptx 2018-04-25] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_18.pptx 2018-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_11.pptx 2018-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_04_04.pptx 2018-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_28.pptx 2018-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2018/2018_03_21.pptx 2018-03-21] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_29_2017.pptx 2017-11-29] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/11_15_2017.pptx 2017-11-15] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_19_2017.pptx 2017-10-19] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/10_05_2017.pptx 2017-10-05] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_28_2017.pptx 2017-09-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/9_14_2017.pptx 2017-09-14] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2017===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_18_2017.pptx 2017-04-18] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_11_2017.pptx 2017-04-11] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/4_4_2017.pptx 2017-04-04] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_28_2017.pptx 2017-03-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/3_21_2017.pptx 2017-03-21] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_28_2017.pptx 2017-02-28] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_14_2017.pptx 2017-02-14] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/2_07_3017.pptx 2017-02-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_31_3017.pptx 2017-01-31] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_24_2017.pptx 2017-01-24] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2017/1_17_2017.pptx 2017-01-17] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2016===&lt;br /&gt;
Presentations are the only documentation here.&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/12_1_2016.pptx 2016-12-01] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_10_2016.pptx 2016-11-10] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/11_3_2016.pptx 2016-11-03] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_20_2016.pptx 2016-10-20] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_13_2016.pptx 2016-10-13] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/10_7_2016.pptx 2016-10-07] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_23_2016.pptx 2016-09-23] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_16_2016.pptx 2016-09-16] [pptx]&lt;br /&gt;
*[https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016/9_2_2016.pptx 2016-09-02] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2016===&lt;br /&gt;
*(2016-04-22 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-08 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-08.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-04-01 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-04-01.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-18.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-03-04 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-03-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-26.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-19]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-19.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-02-18]]&lt;br /&gt;
*[[Minutes 2016-02-12]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-02-12.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-29]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-29.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2016-01-22]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-22.pptx Presentation] [pptx]&lt;br /&gt;
*(2016-01-15 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2016-01-15.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Fall 2015===&lt;br /&gt;
*[[Minutes 2015-12-10]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-10.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-12-04]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-12-04.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-13]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-13.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-11-06]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-11-06.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-30.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2015-10-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-23.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-16 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-16.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-10-02 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-10-02.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-25 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-25.pptx Presentation] [pptx]&lt;br /&gt;
*(2015-09-18 missing) - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/2015-09-18.pptx Presentation] [pptx]&lt;br /&gt;
&lt;br /&gt;
===Spring 2015===&lt;br /&gt;
*[[Minutes 2015-04-16]]&lt;br /&gt;
*[[Minutes 2015-04-09]]&lt;br /&gt;
*[[Minutes 2015-04-02]]&lt;br /&gt;
*[[Minutes 2015-03-26]]&lt;br /&gt;
*[[Minutes 2015-03-19]]&lt;br /&gt;
*[[Minutes 2015-03-05]]&lt;br /&gt;
*[[Minutes 2015-02-26]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/MTU-LUG-Nginx-Config.pdf Presentation] [pdf]&lt;br /&gt;
*[[Minutes 2015-02-19]]&lt;br /&gt;
*[[Minutes 2015-02-12]]&lt;br /&gt;
*[[Minutes 2015-01-22]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2014===&lt;br /&gt;
*[[Minutes 2014-12-09]]&lt;br /&gt;
*[[Minutes 2014-12-02]]&lt;br /&gt;
*[[Minutes 2014-11-11]]&lt;br /&gt;
*[[Minutes 2014-11-04]]&lt;br /&gt;
*[[Minutes 2014-10-28]]&lt;br /&gt;
*[[Minutes 2014-10-14]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/10-14-2014.LUG-Server.Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-30]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/Linux%20Basics.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-23]] - [https://lug.mtu.edu/archive/pdfs/Presentations_2013-2018/9-23-2014.LUG%20Linux%20Install%20_%20IRC%20Presentation.pptx Presentation] [pptx]&lt;br /&gt;
*[[Minutes 2014-09-16]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2014===&lt;br /&gt;
*[[Minutes 2014-02-14]]&lt;br /&gt;
*[[Minutes 2014-01-31]]&lt;br /&gt;
*[[Minutes 2014-01-24]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
*[[Minutes 2013-12-02]]&lt;br /&gt;
*[[Minutes 2013-11-18]]&lt;br /&gt;
*[[Minutes 2013-11-11]]&lt;br /&gt;
*[[Minutes 2013-11-04]]&lt;br /&gt;
*[[Minutes 2013-10-21]]&lt;br /&gt;
*[[Minutes 2013-10-14]]&lt;br /&gt;
*[[Minutes 2013-10-07]]&lt;br /&gt;
*[[Minutes 2013-09-30]]&lt;br /&gt;
*[[Minutes 2013-09-23]]&lt;br /&gt;
*[[Minutes 2013-09-16]]&lt;br /&gt;
*[[Minutes 2013-09-09]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2013===&lt;br /&gt;
*[[Minutes 2013-04-16]]&lt;br /&gt;
*[[Minutes 2013-04-02]]&lt;br /&gt;
*[[Minutes 2013-03-27]]&lt;br /&gt;
*[[Minutes 2013-03-05]]&lt;br /&gt;
*[[Minutes 2013-02-26]]&lt;br /&gt;
*Snow day on February 19th, 2013! No meeting!&lt;br /&gt;
*[[Minutes 2013-02-12]]&lt;br /&gt;
*[[Minutes 2013-02-05]]&lt;br /&gt;
*[[Minutes 2013-01-29]]&lt;br /&gt;
*[[Minutes 2013-01-22]]&lt;br /&gt;
*[[Minutes 2013-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2012===&lt;br /&gt;
*[[Minutes 2012-10-17]]&lt;br /&gt;
*[[Minutes 2012-10-09]]&lt;br /&gt;
*[[Minutes 2012-09-25]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2012===&lt;br /&gt;
*[[Minutes 2012-04-05]]&lt;br /&gt;
*[[Minutes 2012-02-23]]&lt;br /&gt;
*[[Minutes 2012-02-02]]&lt;br /&gt;
*[[Minutes 2012-01-26]]&lt;br /&gt;
*[[Minutes 2012-01-12]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2011===&lt;br /&gt;
*[[Minutes 2011-12-08]]&lt;br /&gt;
*[[Minutes 2011-12-01]]&lt;br /&gt;
*[[Minutes 2011-11-10]]&lt;br /&gt;
*[[Minutes 2011-10-13]]&lt;br /&gt;
*[[Minutes 2011-10-06]] ([[Agenda20111006|Meeting Agenda)]]&lt;br /&gt;
*[[Minutes 2011-09-29]]&lt;br /&gt;
*[[Minutes 2011-09-22]]&lt;br /&gt;
*[[Minutes 2011-09-15]]&lt;br /&gt;
*[[Minutes 2011-09-08]]&lt;br /&gt;
*[[Minutes 2011-09-01]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2011===&lt;br /&gt;
*[[Minutes 2011-04-21]]&lt;br /&gt;
*[[Minutes 2011-04-14]]&lt;br /&gt;
*[[Minutes 2011-04-07]]&lt;br /&gt;
*[[Minutes 2011-03-31]]&lt;br /&gt;
*[[Minutes 2011-03-17]]&lt;br /&gt;
*[[Minutes 2011-03-03]]&lt;br /&gt;
*[[Minutes 2011-02-24]]&lt;br /&gt;
*[[Minutes 2011-02-17]]&lt;br /&gt;
*[[Minutes 2011-02-03]]&lt;br /&gt;
*[[Minutes 2011-01-27]]&lt;br /&gt;
*[[Minutes 2011-01-20]]&lt;br /&gt;
*[[Minutes 2011-01-13]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2010===&lt;br /&gt;
*[[Minutes 2010-12-02]]&lt;br /&gt;
*[[Minutes 2010-11-18]]&lt;br /&gt;
*[[Minutes 2010-11-11]]&lt;br /&gt;
*[[Minutes 2010-10-28]]&lt;br /&gt;
*[[Minutes 2010-10-21]]&lt;br /&gt;
*[[Minutes 2010-10-10]]&lt;br /&gt;
*[[Minutes 2010-10-07]]&lt;br /&gt;
*[[Minutes 2010-09-30]]&lt;br /&gt;
*[[Minutes 2010-09-16]]&lt;br /&gt;
*[[Minutes 2010-09-09]]&lt;br /&gt;
*[[Minutes 2010-09-02]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2010===&lt;br /&gt;
*[[Minutes 2010-04-22]]&lt;br /&gt;
*[[Minutes 2010-04-15]]&lt;br /&gt;
*[[Minutes 2010-04-08]]&lt;br /&gt;
*[[Minutes 2010-04-01]]&lt;br /&gt;
*[[Minutes 2010-03-25]]&lt;br /&gt;
*[[Minutes 2010-03-18]]&lt;br /&gt;
*[[Minutes 2010-02-25]]&lt;br /&gt;
*[[Minutes 2010-02-18]]&lt;br /&gt;
*[[Minutes 2010-02-11]]&lt;br /&gt;
*[[Minutes 2010-01-21]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2009===&lt;br /&gt;
*[[Minutes 2009-12-10]]&lt;br /&gt;
*[[Minutes 2009-12-03]]&lt;br /&gt;
*[[Minutes 2009-11-19]]&lt;br /&gt;
*[[Minutes 2009-11-12]]&lt;br /&gt;
*[[Minutes 2009-11-10]]&lt;br /&gt;
*[[Minutes 2009-11-05]]&lt;br /&gt;
*[[Minutes 2009-10-29]]&lt;br /&gt;
*[[Minutes 2009-10-22]]&lt;br /&gt;
*[[Minutes 2009-10-21 (Officers)]]&lt;br /&gt;
*[[Minutes 2009-10-01]]&lt;br /&gt;
*[[Minutes 2009-09-24]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2009===&lt;br /&gt;
*[[Minutes 2009-03-05]]&lt;br /&gt;
*[[Minutes 2009-02-26]]&lt;br /&gt;
*[[Minutes 2009-02-19]]&lt;br /&gt;
*[[Minutes 2009-02-12]]&lt;br /&gt;
*[[Minutes 2009-01-29]]&lt;br /&gt;
*[[Minutes 2009-01-15]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2008===&lt;br /&gt;
*[[Minutes 2008-12-11]]&lt;br /&gt;
*[[Minutes 2008-12-04]]&lt;br /&gt;
*[[Minutes 2008-11-20]]&lt;br /&gt;
*[[Minutes 2008-11-13]]&lt;br /&gt;
*[[Minutes 2008-11-06]]&lt;br /&gt;
*[[Minutes 2008-10-30]]&lt;br /&gt;
*[[Minutes 2008-10-23]]&lt;br /&gt;
*[[Minutes 2008-10-16]]&lt;br /&gt;
*[[Minutes 2008-10-09]]&lt;br /&gt;
*[[Minutes 2008-10-02]]&lt;br /&gt;
*[[Minutes 2008-09-25]]&lt;br /&gt;
*[[Minutes 2008-09-18]]&lt;br /&gt;
*[[Minutes 2008-09-11]]&lt;br /&gt;
*[[Minutes 2008-09-04]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2008===&lt;br /&gt;
*[[Minutes 2008-04-24]]&lt;br /&gt;
*[[Minutes 2008-04-17]]&lt;br /&gt;
*[[Minutes 2008-04-03]]&lt;br /&gt;
*[[Minutes 2008-03-27]]&lt;br /&gt;
*[[Minutes 2008-03-20]]&lt;br /&gt;
*[[Minutes 2008-03-06]]&lt;br /&gt;
*[[Minutes 2008-02-28]]&lt;br /&gt;
*[[Minutes 2008-02-07]]&lt;br /&gt;
*[[Minutes 2008-01-31]]&lt;br /&gt;
*[[Minutes 2008-01-24]]&lt;br /&gt;
*[[Minutes 2008-01-17]]&lt;br /&gt;
*[[Minutes 2008-01-15 (Officers)]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2007===&lt;br /&gt;
*[[Minutes 2007-12-13]]&lt;br /&gt;
*[[Minutes 2007-12-06]]&lt;br /&gt;
*[[Minutes 2007-11-29]]&lt;br /&gt;
*[[Minutes 2007-11-08]]&lt;br /&gt;
*[[Minutes 2007-11-01]]&lt;br /&gt;
*[[Minutes 2007-10-18]]&lt;br /&gt;
*[[Minutes 2007-10-11]]&lt;br /&gt;
*[[Minutes 2007-10-04]]&lt;br /&gt;
*[[Minutes 2007-09-27]]&lt;br /&gt;
*[[Minutes 2007-09-20]]&lt;br /&gt;
*[[Minutes 2007-09-13]]&lt;br /&gt;
*[[Minutes 2007-09-06]]&lt;br /&gt;
&lt;br /&gt;
===Spring 2007===&lt;br /&gt;
*[[Minutes 2007-04-26]]&lt;br /&gt;
*[[Minutes 2007-04-19]]&lt;br /&gt;
*[[Minutes 2007-04-12]]&lt;br /&gt;
*[[Minutes 2007-04-05]]&lt;br /&gt;
&lt;br /&gt;
===Fall 2006===&lt;br /&gt;
*[[Minutes 2006-01-19]]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-23&amp;diff=8050</id>
		<title>Minutes 2026-01-23</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-23&amp;diff=8050"/>
		<updated>2026-01-23T18:42:47Z</updated>

		<summary type="html">&lt;p&gt;Freya: Freya moved page Minutes 2026-01-23 to Minutes 2026-01-22: put it under the wrong name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Minutes 2026-01-22]]&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-22&amp;diff=8049</id>
		<title>Minutes 2026-01-22</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-22&amp;diff=8049"/>
		<updated>2026-01-23T18:42:47Z</updated>

		<summary type="html">&lt;p&gt;Freya: Freya moved page Minutes 2026-01-23 to Minutes 2026-01-22: put it under the wrong name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Meeting Minutes 01/22/26=&lt;br /&gt;
&lt;br /&gt;
* Scott Raiford presenting on how to use Kubernetes&lt;br /&gt;
* A little banter about the meeting and how LUG runs :P&lt;br /&gt;
&lt;br /&gt;
==Scott Story:==&lt;br /&gt;
&lt;br /&gt;
* At a job lost a guy who knew a lot of stuff. There&#039;s a system they have to shut down everything and bring it back up 15 minutes later.&lt;br /&gt;
* Next guy comes in to see how the code worked. The code is full of message boxes that say &amp;amp;quot;I am here&amp;amp;quot; and then SEGFAULTS.&lt;br /&gt;
* There was no timing to the script, he conned the company into paying him :P&lt;br /&gt;
&lt;br /&gt;
==The Presentation:==&lt;br /&gt;
&lt;br /&gt;
* Kubernetes allows the hosting of a lot of software on very small amounts of hardware&lt;br /&gt;
** Uses containers very efficiently to make this work&lt;br /&gt;
* Linux has the kernel, then on top of that the userspace, and on top of that your own programs.&lt;br /&gt;
** Userspace is where your programs live.&lt;br /&gt;
** Userspace asks the kernel to do things like file access or sending packets.&lt;br /&gt;
** Userspace programs will ask the kernel about network adapters or other processes on the system&lt;br /&gt;
* A container is a namespace for processes&lt;br /&gt;
** If the kernel is asked what processes are running, it lies and says only the namespace&#039;s programs are running&lt;br /&gt;
** Multiple namespaces are possible&lt;br /&gt;
** Keeps applications from interfering with each other&lt;br /&gt;
* Kubernetes is solving the problem of managing containers in a scalable manner&lt;br /&gt;
** Example:&lt;br /&gt;
**# 3 nodes in a cloud&lt;br /&gt;
**# nginx is running on node 1, gateway on nodes 2 and 3&lt;br /&gt;
**# node 1 dies&lt;br /&gt;
**# nginx is moved into another node&lt;br /&gt;
**# when that other node dies, nginx is moved again This is what Kubernetes does, allowing things to keep running even if hardware fails.&lt;br /&gt;
** apiserver knows we need some state (a set of software that should be running), and if there&#039;s a mismatch, it changes things to make things the way they should be.&lt;br /&gt;
*** apiserver and its database is redundant so it is resilient&lt;br /&gt;
** istio: routes traffic based on hostname, etc.&lt;br /&gt;
** Controllers can be deployed as pods. apiserver itself is a container&lt;br /&gt;
** Working example:&lt;br /&gt;
*** Containerfile defines what is in the container, what is installed, what is exposed, etc&lt;br /&gt;
*** Trivia game needs to be run on a node, with a service that passes traffic into it&lt;br /&gt;
*** Write YAML to describe how to actually run the software, pass in traffic&lt;br /&gt;
**** Push YAML to apiserver, which then gets added to etcd and run by Kubernetes&lt;br /&gt;
*** YAML states how many copies of a software should run&lt;br /&gt;
*** Controller configures things to keep things running according to spec, can have side effects.&lt;br /&gt;
*** If any node in the cluster gets traffic on any port, it is forwarded through a virtual network to the trivia app&lt;br /&gt;
*** a change in the config will trigger a rebuild of the pods (clusters of containers)&lt;br /&gt;
*** &#039;&#039;several minutes of troubleshooting have been omitted from these minutes&#039;&#039;&lt;br /&gt;
*** _19&amp;lt;span id=&amp;quot;-54_&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;54_&amp;quot; class=&amp;quot;tag&amp;quot;&amp;gt;54_&amp;lt;/span&amp;gt; IT WORKS!!&lt;br /&gt;
&lt;br /&gt;
==Extra Little Notes==&lt;br /&gt;
&lt;br /&gt;
* Each control node runs an apiserver&lt;br /&gt;
* There is a kubernetes service, anything that wants to make a request can ask it and it will be load-balanced to one of the apiservers&lt;br /&gt;
* Meant to fail: if one node goes down, others can pick up the slack&lt;br /&gt;
* Outside of Kubernetes, you can run a few instances of software like HAproxy so that when one dies you still have load-balancing.&lt;br /&gt;
* Kubernetes will constantly try and repair the cluster if things are killed&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
	<entry>
		<id>https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-22&amp;diff=8048</id>
		<title>Minutes 2026-01-22</title>
		<link rel="alternate" type="text/html" href="https://lug.mtu.edu/w/index.php?title=Minutes_2026-01-22&amp;diff=8048"/>
		<updated>2026-01-23T18:41:55Z</updated>

		<summary type="html">&lt;p&gt;Freya: Created page with &amp;quot;=Meeting Minutes 01/22/26=  * Scott Raiford presenting on how to use Kubernetes * A little banter about the meeting and how LUG runs :P  ==Scott Story:==  * At a job lost a guy who knew a lot of stuff. There&amp;#039;s a system they have to shut down everything and bring it back up 15 minutes later. * Next guy comes in to see how the code worked. The code is full of message boxes that say &amp;amp;quot;I am here&amp;amp;quot; and then SEGFAULTS. * There was no timing to the script, he conned the...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Meeting Minutes 01/22/26=&lt;br /&gt;
&lt;br /&gt;
* Scott Raiford presenting on how to use Kubernetes&lt;br /&gt;
* A little banter about the meeting and how LUG runs :P&lt;br /&gt;
&lt;br /&gt;
==Scott Story:==&lt;br /&gt;
&lt;br /&gt;
* At a job lost a guy who knew a lot of stuff. There&#039;s a system they have to shut down everything and bring it back up 15 minutes later.&lt;br /&gt;
* Next guy comes in to see how the code worked. The code is full of message boxes that say &amp;amp;quot;I am here&amp;amp;quot; and then SEGFAULTS.&lt;br /&gt;
* There was no timing to the script, he conned the company into paying him :P&lt;br /&gt;
&lt;br /&gt;
==The Presentation:==&lt;br /&gt;
&lt;br /&gt;
* Kubernetes allows the hosting of a lot of software on very small amounts of hardware&lt;br /&gt;
** Uses containers very efficiently to make this work&lt;br /&gt;
* Linux has the kernel, then on top of that the userspace, and on top of that your own programs.&lt;br /&gt;
** Userspace is where your programs live.&lt;br /&gt;
** Userspace asks the kernel to do things like file access or sending packets.&lt;br /&gt;
** Userspace programs will ask the kernel about network adapters or other processes on the system&lt;br /&gt;
* A container is a namespace for processes&lt;br /&gt;
** If the kernel is asked what processes are running, it lies and says only the namespace&#039;s programs are running&lt;br /&gt;
** Multiple namespaces are possible&lt;br /&gt;
** Keeps applications from interfering with each other&lt;br /&gt;
* Kubernetes is solving the problem of managing containers in a scalable manner&lt;br /&gt;
** Example:&lt;br /&gt;
**# 3 nodes in a cloud&lt;br /&gt;
**# nginx is running on node 1, gateway on nodes 2 and 3&lt;br /&gt;
**# node 1 dies&lt;br /&gt;
**# nginx is moved into another node&lt;br /&gt;
**# when that other node dies, nginx is moved again This is what Kubernetes does, allowing things to keep running even if hardware fails.&lt;br /&gt;
** apiserver knows we need some state (a set of software that should be running), and if there&#039;s a mismatch, it changes things to make things the way they should be.&lt;br /&gt;
*** apiserver and its database is redundant so it is resilient&lt;br /&gt;
** istio: routes traffic based on hostname, etc.&lt;br /&gt;
** Controllers can be deployed as pods. apiserver itself is a container&lt;br /&gt;
** Working example:&lt;br /&gt;
*** Containerfile defines what is in the container, what is installed, what is exposed, etc&lt;br /&gt;
*** Trivia game needs to be run on a node, with a service that passes traffic into it&lt;br /&gt;
*** Write YAML to describe how to actually run the software, pass in traffic&lt;br /&gt;
**** Push YAML to apiserver, which then gets added to etcd and run by Kubernetes&lt;br /&gt;
*** YAML states how many copies of a software should run&lt;br /&gt;
*** Controller configures things to keep things running according to spec, can have side effects.&lt;br /&gt;
*** If any node in the cluster gets traffic on any port, it is forwarded through a virtual network to the trivia app&lt;br /&gt;
*** a change in the config will trigger a rebuild of the pods (clusters of containers)&lt;br /&gt;
*** &#039;&#039;several minutes of troubleshooting have been omitted from these minutes&#039;&#039;&lt;br /&gt;
*** _19&amp;lt;span id=&amp;quot;-54_&amp;quot;&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span id=&amp;quot;54_&amp;quot; class=&amp;quot;tag&amp;quot;&amp;gt;54_&amp;lt;/span&amp;gt; IT WORKS!!&lt;br /&gt;
&lt;br /&gt;
==Extra Little Notes==&lt;br /&gt;
&lt;br /&gt;
* Each control node runs an apiserver&lt;br /&gt;
* There is a kubernetes service, anything that wants to make a request can ask it and it will be load-balanced to one of the apiservers&lt;br /&gt;
* Meant to fail: if one node goes down, others can pick up the slack&lt;br /&gt;
* Outside of Kubernetes, you can run a few instances of software like HAproxy so that when one dies you still have load-balancing.&lt;br /&gt;
* Kubernetes will constantly try and repair the cluster if things are killed&lt;/div&gt;</summary>
		<author><name>Freya</name></author>
	</entry>
</feed>