222 lines
7.5 KiB
Plaintext
222 lines
7.5 KiB
Plaintext
<p>In this episode Noah and Steve discuss migrating moving into a datacenter. Amazon Linux 3 is based off of Fedora, a new GPD Pocket 3 is out and is an IT sysadmin's dream, a privacy respecting voice assistant, join us for a packed show!</p>
|
||
|
||
<h3><strong>-- During The Show --</strong></h3>
|
||
|
||
<h4>01:41 Fedora Feedback & Tumbleweed Challenge - Bhikhu</h4>
|
||
|
||
<ul>
|
||
<li>[Get Fedora](getfedora.org)</li>
|
||
<li><a href="https://get.opensuse.org/tumbleweed/" rel="nofollow">Get OpenSuse Tumbleweed</a></li>
|
||
<li>Fedora is not unstable</li>
|
||
<li>What should we look for in OpenSuse Tumbleweed? - Write In!</li>
|
||
<li>Underlying distribution seems matter less now days</li>
|
||
<li>What is the primary use of OpenSuse Tumbleweed? - Write In!</li>
|
||
<li><a href="http://www.linuxdelta.com/" rel="nofollow">Linux Delta</a></li>
|
||
</ul>
|
||
|
||
<h4>09:20 RE: Key Mapping - Matt</h4>
|
||
|
||
<ul>
|
||
<li><a href="https://github.com/sezanzeb/key-mapper" rel="nofollow">Key-Mapper Github</a></li>
|
||
</ul>
|
||
|
||
<h4>10:54 User Provides Script to Check HTTPS - Cory</h4>
|
||
|
||
<details><summary>Click To Expand</summary>
|
||
|
||
```
|
||
#!/usr/bin/env python3
|
||
#based on https://stackoverflow.com/a/52575489
|
||
|
||
from urllib.request import Request, urlopen, ssl, socket
|
||
from urllib.error import URLError, HTTPError
|
||
import json
|
||
from dateutil import parser
|
||
|
||
for site in {
|
||
'asknoahshow.com',
|
||
'www.asknoahshow.com',
|
||
'podcast.asknoahshow.com',
|
||
'altispeed.com',
|
||
'www.altispeed.com',
|
||
}:
|
||
context = ssl.create_default_context()
|
||
try:
|
||
with socket.create_connection((site, '443')) as sock:
|
||
with context.wrap_socket(sock, server_hostname=site) as ssock:
|
||
expiration = parser.parse(ssock.getpeercert()['notAfter'])
|
||
print(f"{str(expiration.date())} {site} ({ssock.version()})")
|
||
#data = json.dumps(ssock.getpeercert())
|
||
except Exception as e: # socket.gaierror, ConnectionRefusedError, ConnectionResetError, ssl.SSLCertVerificationError, etc.
|
||
print(f"---------- {site} {str(e)}")
|
||
```
|
||
</details>
|
||
|
||
<ul>
|
||
<li>Banking this for work!</li>
|
||
<li>[Register for Less](R4l.com)</li>
|
||
<li>Free Hosting doesn't include HTTPS</li>
|
||
<li>Changes coming at the end of the year</li>
|
||
</ul>
|
||
|
||
<h4>14:32 Episode 257 Feedback - Kevin</h4>
|
||
|
||
<ul>
|
||
<li><a href="https://github.com/netbox-community/netbox" rel="nofollow">Netbox</a></li>
|
||
</ul>
|
||
|
||
<h4>16:05 Open Source ITSM Software - Mauro</h4>
|
||
|
||
<ul>
|
||
<li><a href="https://glpi-project.org/" rel="nofollow">GLPI Project</a></li>
|
||
</ul>
|
||
|
||
<h4>17:22 Caller Katana</h4>
|
||
|
||
<ul>
|
||
<li>RaspberryPi HiFi Hats?</li>
|
||
<li><a href="https://www.hifiberry.com/" rel="nofollow">HiFi Berry</a></li>
|
||
<li><a href="https://volumio.com/en/" rel="nofollow">Volumio</a></li>
|
||
<li><a href="https://www.behringer.com/product.html?modelCode=P0484" rel="nofollow">Behringer</a></li>
|
||
</ul>
|
||
|
||
<h4>24:00 Bot Feedback - Sunjam</h4>
|
||
|
||
<ul>
|
||
<li><a href="https://homelabos.com/" rel="nofollow">Home Lab OS</a></li>
|
||
</ul>
|
||
|
||
<h4>25:30 Bot Feedback - DJ</h4>
|
||
|
||
<ul>
|
||
<li>Thanks Noah and Steve</li>
|
||
<li>OpenVPN worked!</li>
|
||
</ul>
|
||
|
||
<h4>26:15 Pick of the Week</h4>
|
||
|
||
<ul>
|
||
<li>Graphical Docker App for Linux</li>
|
||
<li><a href="https://github.com/vv9k/dockeye" rel="nofollow">Dockeye Github</a></li>
|
||
<li><a href="https://www.portainer.io/" rel="nofollow">Portainer</a></li>
|
||
</ul>
|
||
|
||
<h4>28:00 Gadget of the Week</h4>
|
||
|
||
<ul>
|
||
<li>GPD Pocket 1 is awesome</li>
|
||
<li>This device has changed my life</li>
|
||
<li><a href="https://www.indiegogo.com/projects/pocket-3-a-modular-and-full-featured-handheld-pc#/" rel="nofollow">GPD Pocket 3</a></li>
|
||
<li>Designed for IT work</li>
|
||
<li>Modular IO Ports</li>
|
||
<li>Comes with a stylus</li>
|
||
</ul>
|
||
|
||
<h4>38:26 Amazon Linux 3</h4>
|
||
|
||
<ul>
|
||
<li>Based on Fedora Community Linux</li>
|
||
<li><a href="https://www.itworldcanada.com/post/amazon-linux-3-to-be-based-on-fedora-community-linux" rel="nofollow">IT World Canada Article</a></li>
|
||
<li>SeLinux on by default</li>
|
||
<li>Companies moving from "Tried & True" to "Rolling & Community"</li>
|
||
</ul>
|
||
|
||
<h4>42:00 Genie</h4>
|
||
|
||
<ul>
|
||
<li>Open Source Virtual Assistant</li>
|
||
<li><a href="https://voicebot.ai/2021/11/26/open-source-virtual-assistant-almond-renamed-genie/" rel="nofollow">Voicebot AI</a></li>
|
||
<li><a href="https://oval.cs.stanford.edu/" rel="nofollow">OVAL</a></li>
|
||
<li>Stanford University's Open Virtual Assistant Lab (OVAL) rebranded its Almond assistant as Genie</li>
|
||
<li><a href="https://mycroft.ai/" rel="nofollow">Mycroft</a></li>
|
||
<li>Competition is good</li>
|
||
<li><a href="https://rhasspy.readthedocs.io/en/latest/" rel="nofollow">Rhasspy</a></li>
|
||
</ul>
|
||
|
||
<h4>46:55 NVidia DLSS on Linux</h4>
|
||
|
||
<p><a href="https://www.theverge.com/22803980/nvidia-dlss-linux-arrived-proton-game-deathloop-support" rel="nofollow">https://www.theverge.com/22803980/nvidia-dlss-linux-arrived-proton-game-deathloop-support</a></p>
|
||
|
||
<ul>
|
||
<li>Available in Proton 6.3-8</li>
|
||
<li>Still Need to set
|
||
|
||
<ul>
|
||
<li>PROTON_ENABLE_NVAPI = 1</li>
|
||
<li>dxgi.nvapiHack = False</li>
|
||
</ul></li>
|
||
<li>Available on Nvidea Only (not on the Steam Deck)</li>
|
||
</ul>
|
||
|
||
<h4>48:30 Libreddit: Private front-end for Reddit</h4>
|
||
|
||
<ul>
|
||
<li><a href="https://www.reddit.com/r/linux/comments/r5e3vh/libreddit_private_frontend_for_reddit/" rel="nofollow">Libreddit</a></li>
|
||
<li>Alternative private front-end for Reddit</li>
|
||
</ul>
|
||
|
||
<h4>49:30 Steve's Day Job Preview/Future Altispeed</h4>
|
||
|
||
<ul>
|
||
<li>Steve is a Red Hat Architect</li>
|
||
<li>Containerize Altispeed Technologies</li>
|
||
<li>HA/Redundancy/Fail Over</li>
|
||
<li>SLAs</li>
|
||
<li>Where Altispeed is at now</li>
|
||
<li>Where Altispeed wants to go</li>
|
||
<li>Altispeed Sandbox</li>
|
||
<li>Skating to where the puck is going</li>
|
||
<li>Move platforms then "modernize"</li>
|
||
</ul>
|
||
|
||
<h4>Call to Action</h4>
|
||
|
||
<ul>
|
||
<li>Send us your questions</li>
|
||
<li>Special episode Sept 21</li>
|
||
<li>Special Event - Altispeed Technologies Roundtable
|
||
|
||
<ul>
|
||
<li>Thurs Dec 9, 6 pm central</li>
|
||
</ul></li>
|
||
<li><a href="https://www.opensourcevoices.org/23" rel="nofollow">OSV 23</a></li>
|
||
</ul>
|
||
|
||
<h3><strong>-- The Extra Credit Section --</strong></h3>
|
||
|
||
<p>For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard!</p>
|
||
|
||
<p><a href="http://podcast.asknoahshow.com/261" rel="nofollow">This Episode's Podcast Dashboard</a></p>
|
||
|
||
<p><a href="http://www.voxtelesys.com/asknoah" rel="nofollow">Phone Systems for Ask Noah provided by Voxtelesys</a></p>
|
||
|
||
<p>Join us in our dedicated chatroom <a href="https://element.linuxdelta.com/#/room/#geeklab:linuxdelta.com" rel="nofollow">#GeekLab:linuxdelta.com on Matrix</a></p>
|
||
|
||
<h3><strong>-- Stay In Touch --</strong></h3>
|
||
|
||
<p><strong>Find all the resources for this show on the Ask Noah Dashboard</strong></p>
|
||
|
||
<blockquote>
|
||
<p><a href="http://www.asknoahshow.com" rel="nofollow">Ask Noah Dashboard</a></p>
|
||
</blockquote>
|
||
|
||
<p><strong>Need more help than a radio show can offer? Altispeed provides commercial IT services and they’re excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show!</strong></p>
|
||
|
||
<blockquote>
|
||
<p><a href="http://www.altispeed.com/" rel="nofollow">Altispeed Technologies</a></p>
|
||
</blockquote>
|
||
|
||
<p><strong>Contact Noah</strong></p>
|
||
|
||
<blockquote>
|
||
<p>live [at] asknoahshow.com</p>
|
||
</blockquote>
|
||
|
||
<p><strong>-- Twitter --</strong></p>
|
||
|
||
<ul>
|
||
<li><a href="https://twitter.com/kernellinux" rel="nofollow">Noah - Kernellinux</a></li>
|
||
<li><a href="https://twitter.com/asknoahshow" rel="nofollow">Ask Noah Show</a></li>
|
||
<li><a href="https://twitter.com/altispeed" rel="nofollow">Altispeed Technologies</a></li>
|
||
</ul><p>Special Guest: Steve Ovens.</p><p><a href="https://patreon.com/linuxdelta" rel="payment">Support Ask Noah Show</a></p>
|
||
|