I’ve got to tell you, I have not been so excited about a technology… probably since Containers. At Summit this year Red Hat announced the General Availability of Image Mode for RHEL. So I got to spend a week in Boston, explaining, over and over again, why that’s important.
See, Image mode is kind of a big deal. It takes container workflows, and applies it to your data center servers using a technology called bootc. This concept isn’t new exactly, this sort of technology has been applied to edge devices, and phones, and other appliances for years. But what we have now is a general purpose linux that you can update using a bootable container image. This changes things.
So think about a Linux system as you know it today. We’re calling that Package Mode now in order to avoid confusion. RHEL Package Mode is a Linux base, with a package manager, where you install and configure things, and then fight to keep those things from drifting pretty much from then until eternity. There’s a whole facet of the IT industry around mitigating that drift. Package and config management is a huge business! For good reason! Drift is what makes your routine 2AM maintenance into a panic attack when the database server doesn’t come back up.
So I talked a lot about Image Mode at Summit, but I have to admit, I hadn’t touched it yet! So Now that I’m back home, and my time is a little less all consumed by prep for the RHEL 10 release, and Summit deadlines, I decided to take some time and get hands on with this revolutionary thing.
Building a pipelineSo, I use Gitlab community edition as a repository for a few container builds I maintain. Some time back I managed to get the CI/CD pipelines working for my container builds. These were nothing fancy, but they work. I commit a change to the repository, and a job kicks off to rebuild the container, and push it into a registry. In some cases that’s just the internal Gitlab registry, in others its Docker Hub. I, of course, do it all with Podman. So when I decided to tackle Image Mode, I thought it would be best to just rip that band-aid right off and do it in Gitlab, and have the builds happen there. How hard could it be? I already had container builds running there!
So I made a repo, and copied my CI config from one of the container builds that just used podman and the local registry, and threw in a basic Containerfile that just sourced FROM the RHEL bootc base image, and then did a package install. Commit, sit back in my arrogance and wait for my image.
It failed. For reasons I still don’t fully understand, the container build uses fuse-overlayfs to do its build, and couldn’t in my runner’s podman in podman build container. I did some research, and luckily I have access to internal Red Hat knowledge, so I was able to bounce some ideas around and came up with a solution. Two things actually. My runner needed some config changes. Here, I’ll share them with you.
Here is my Runner config
[[runners]] name = "dind-container" url = "https://git.undrground.org" id = 3 token = "NoTokenForYou" token_obtained_at = somedatestamp token_expires_at = someotherdatestamp executor = "docker" environment = ["FF_NETWORK_PER_BUILD=1"] [runners.cache] MaxUploadedArchiveSize = 0 [runners.cache.s3] [runners.cache.gcs] [runners.cache.azure] [runners.docker] tls_verify = false image = "docker:git" privileged = true disable_entrypoint_overwrite = false oom_kill_disable = false disable_cache = false volumes = ["/cache"] shm_size = 0 network_mtu = 0
The things I had to add were, first, privileged = true. This gives the container the access it needs to do its fusefs work. And the environment “FF_NETWORK_PER_BUILD=1”, which I believe tweaks the podman networking such that it fixed a DNS resolution problem I was having in my builds.
With that fixed, I was able to get builds working! I have two things to share that may help you if you are trying to do the same. First, another Red Hatter built a public example repo that will apparently “just work” if you use it as a base for your Image Mode CI/CD. It didn’t work for me, but I suspect that was more about my gitlab setup and less about the functionality of the example. You can find that example, Here. What I ended up doing was modify my existing podman CI file. That looks like this:
---image: registry.undrground.org/gangrif/podman-builder:latest#services:# - docker:dindbefore_script: - dnf -y install podman git subscription-manager buildah skopeo podman - subscription-manager register --org=${RHT_ORGID} --activationkey=${RHT_ACT_KEY} - subscription-manager repos --enable codeready-builder-for-rhel-9-x86_64-rpms --enable rhel-9-for-x86_64-baseos-rpms - export REVISION=$(git rev-parse --short HEAD) - podman login --username gitlab-ci-token --password $CI_JOB_TOKEN $CI_REGISTRY - podman login --username $RHLOGIN --password "$RHPASS" registry.redhat.ioafter_script: - podman logout $CI_REGISTRY - subscription-manager unregisterstages: - buildcontainerize: stage: build script: . - podman build --secret id=creds,src=/run/containers/0/auth.json --build-arg GIT_HASH=$CI_COMMIT_SHA -t $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA -t $CI_REGISTRY_IMAGE:latest . - podman push $CI_REGISTRY_IMAGE
Now, this example contains no verification or validation, so I suggest you maybe look into the proper example linked externally. That one has a lot of testing included. Mine will improve with time.
Registry Authentication for your buildNow, there’s a few things to note here. First, Notice that I am not just logging into my own registry, but registry.redhat.io. You register using your Red Hat login for the Red Hat private registry, and that’s where the bootc base images come from. I also use subscription-manager to register the build container to Red Hat’s CDN. That’s because the RHEL Image Mode build is building RHEL, and must be done using an entitled host in order to receive any updates or packages during the container build. This was something I had gotten stuck on for some time, its a little tough to wrap your head around. Once you do though, it makes sense.
Authenticating your bootc system with your registry, automaticallyI am also passing the podman authentication token file into a podman secret at build time. This is important later. If your bootc images are stored in a registry that is not public, you will need to authenticate to that registry in order to pull your updated images after deployment. The easiest way to bake in that authentication is to simply take the authentication from the build host, and place it into the built image. There is some trickery that happens in your Containerfile to make this work. You can read more about this here.
ContainerfileSo, I told you we build image mode like a container. I meant it. We literally write a Contanerfile, and source it from these special bootc images that are published by Red Hat. There are a few things you’ll want to think about when building a bootc Containerfile vs a standard application container. Things that you wouldn’t normally think about when building a normal container.
ContentFirst, RHEL is entitled software, that doesn’t change for RHEL Image Mode. This is pretty seemless if you are doing your build directly on an Entitled RHEL system. But if you’re in a ubi container like I am, you’ll need to subscribe the UBI container because the BootC build will depend on that entitlement to enable its own repositories. That is not true, however, for 3rd party public repositories. Those just get enabled right inside of the Containerfile. This sounds confusing, but it boils down to this. RHEL repository? Entitled by the build host, Other repository? Add it via the Containerfile. I add EPEL in my example below.
UsersSomething else I don’t usually see done in a standard container is the addition of users. Remember this is going to be a full RHEL host at the other end, so you might need to add users. In my case I am adding a local “breakglass” user, because I am leveraging IdM for my identities. But if something goes wrong during the provisioning, i want a user I can login to the system with to troubleshoot. You can also come in later with other tools to add users. You can enable cloud-init and add them there, or if you are using the image builder tool I’ll talk about in a bit, you can give it a config.toml file to add users at that point.
Other ConsiderationsOther things that you’ll need to think about might be firewall rules, container registry authentication, and even the lack of an ENTRYPOINT or CMD. Because this system is expected to boot into a full OS, it is not going to run a single dedicated workload. Instead you’ll be enabling services like you would on a standard RHEL system, with systemctl.
My ContainerfileNow that we’re through all of that, let me show you what I ended up with as a Containerfile.
FROM registry.redhat.io/rhel9/rhel-bootc:latest# Enable EPEL, install updates, and install some packagesRUN dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpmRUN dnf -y updateRUN dnf -y install ipa-hcc-client rhc rhc-worker-playbook cloud-init && dnf clean all# This sets up automatic registration with Red Hat InsightsCOPY --chmod=0644 rhc-connect.service /usr/lib/systemd/system/rhc-connect.serviceCOPY .rhc_connect_credentials /etc/rhc/.rhc_connect_credentialsRUN systemctl enable rhc-connect && touch /etc/rhc/.run_rhc_connect_next_boot# This is my backdoor user, in case of IdM join failureRUN useradd breakglassRUN usermod -p '$6$s0m3pAssw0rDHasH' breakglassRUN groupmems -g wheel -a breakglass# This picks up that podman pull secret, and adds it to the build imageCOPY link-podman-credentials.conf /usr/lib/tmpfiles.d/link-podman-credentials.confRUN --mount=type=secret,id=creds,required=true cp /run/secrets/creds /usr/lib/container-auth.json && \ chmod 0600 /usr/lib/container-auth.json && \ ln -sr /usr/lib/container-auth.json /etc/ostree/auth.json# This configures the bootc update timer to run at a time that I consider acceptableRUN mkdir -p /etc/systemd/system/bootc-fetch-apply-updates.timer.d/COPY weekly-timer.conf /etc/systemd/system/bootc-fetch-apply-updates.timer.d/weekly.conf
You can see from my comments what’s going on in the various blocks in that Containerfile. My intention is to use this as a base RHEL system, and then make more derivative images based on this one. For instance, if I wanted a web server, I would base a new Containerfile on this image, and then add in a RUN dnf install httpd. Its important to note that you shouldn’t be installing packages on these deployed systems after they are up and running. Those installations should happen in the image. If you install a package on a running image mode system, that change will not be carried into the next image update on your system unless you then incorporate it into your bootable container image. This means that you will need to plan ahead, but it also means that tracking package drift in the future is a thing of the past!
In my case, the above mentioned CI automation, and this Containerfile worked in my Gitlab instance, with the above Runner modifications. The build job will take some time, a bootc image is much larger than the lightweight container images you are used to if you’ve been building application containers.
But what about turning that into a VM?So I am covering but ONE method of getting this image deployed to an acutal system. You can use a myriad of different methods including Kickstart, writing an ISO, PXEBOOT, but what I am doing (because it suits my needs) is turning my image into a qcow2 file, which is a virtual disk image for use with Libvirt. If you’re familiar with Image Builder, the tool used to churn out tailored RHEL disk images, then this wont be a surprise. Theres a container that you can grab that just runs image builder, you give it a bootable container image, and it turns it into a qcow2! Ive cooked up a script that pulls my bootable container right from my registry, writes it to a qcow2, then immediately passes that to virt-install and builds a VM out of it!
In my case, it also uses cloud-init to set its hostname, auto registers, and connects to insights, and then uses a slick new tech preview feature that auto-joins my lab’s IdM domain through insights! Here is my script:
```
``` This, of course, can be improved, but as a proof of concept it works great! Ive build a few test systems and so far its working flawlessly! Now, when I wans to update my systems, I update the gitlab repository with the changes, and let the CI run. Then once it completes, all I do is run this script to make a new vm! The running vms -should- (i have not tested this yet) get the updated bootble container image from the registry on saturday at 3AM, and reboot if new changes are applied.
Wrapping it upThis is, i think, the thing we’ve been promised for years. Ever since the advent of the cloud when we were told that we should stop treating our servers like pets, but never really given a clear definition of how. Image Mode makes that promise a reality. I’m certain I’ll be sharing more as my Image Mode journey progresses. Thanks for reading!
Alternate link on Peertube here: https://video.ironsysadmin.com/w/cQ1eX1sphxxvboFfrMwiM2
Folks, I know it, hopefully you know it, passwords are bad. You can get OK security with a decently long and complex password, but in general, passwords are easy to steal through phishing attacks. The best password policy in the world cant defeat a user giving their password to an attacker. So FreeIPA has been focusing on a few methods of passwordless, yet secure, authentication mechanisms. The latest of these is Fido2 passkey support. I wanted to throw together this demo to let you see how it works.
This is all availabe on 100% free and open source software, everything in this demo is in the FreeIPA and Fedora upstreams. I suppose the only commercial piece you need is the passkey. I used a YubiKey 5 with fido2 support.
Ever want to try out linux, for real, not just in a vm, but you’re afraid of losing your safety net? Sure, you could use a spare machine, but what if you don’t have one? Or maybe you’ve got one decent machine and want to see what linux can do with it? Well since the beginning (for me, 1998 or so) I’ve been doing just that on my main machine. I dual-boot windows and linux. Today I decided it was time to get it done on my main PC, an Alienware gaming tower, that I use for gaming and media creation/editing. I can’t ditch windows because a lot of the creative tools I use are Windows or mac only, so I want to dual-boot it.
I picked up a Western Digital SSD drive, and added it as a spare drive in my machine, and then Installed Fedora 38 Workstation. I decided to share the experience with all of you! You can check it out here.
Or, if you’d like to support the Fediverse, head over to my new Peertube instance, Ive decided to give that a go for folks who want to de-googlify.
If you’re on nvidia gpu hardware, there’s also a great how-to over here, on getting the driver installed, AND get it signed for secure boot.
Enjoy!
In my last post, The new Social Media (or.. it should be), I talked about activitypub, and how de-centralized social media _should be_ the future. In this post I’d like to talk a little bit about my experiences since joining Mastodon, and a few other federated services I’ve tried out.
I looked at mastodon years ago, I thought it was a great idea. I’d already given Diaspora (another de-centralized social network, though not activitypub) a try, and never really saw the adoption. I was more than a little concerned that mastodon would do the same thing. At the time I didn’t know what activitypub was, or that it was a standard. Because Mastodon had chosen activitypub it meant that their network had a lot more possibilities. But again, I didn’t know that at the time. My point is that I’ve been interested in a de-centralized social network for quite some time. There was this talk by Eben Moglin way back In fact there were many, I cant find the one I remember, but this one gets the point across. In the talk I watched, Eben had suggested a de-centralized social platform, where users could host their own pod, and that pod would talk to all of the others. Diaspora strove to implement that exactly as Eben had described. Which I thought was a great goal. The problem is… Its not accessible to non-nerds. Its just too much for the average person to deal with. If I could sell you a device that just did it automatically, maybe. But seriously. expecting grandma to run a linux server in her basement so she can talk to you is ludicrous.
Activitypub takes a different approach. Instead of dictating a social network, it enables federation. Then all you need to do is write your idea of a social network to support the protocol, and you can participate. Personally, i think this is better approach. Because if I prefer a Twitter-like experience, all I need is a twitter-like activitipub application (like mastodon), and the same is true for other social media types. Though I haven’t yet seen TikTok on activitypub… But all of this is getting a little off-topic.
My experience in the fediverseWhere is everyone?The fediverse can be an odd place if you’re coming from a central social network. See, there was a time when social media was just a way to communicate with your friends. Content shared with people you were friends with was shared with you in some sort of sorted fashion, and you could see it. So the day you signed up, it was a pretty empty place, until you started finding folks to follow or friend. Then it became sort of social-hub for you and the folks you chose to interact with.
Today’s social media is much different. You sign up, and until it leanrs something about you, it just inundates you with promoted content until you start interacting with things. I remember when I first started using Instagram, it seemed that 90% of the stuff shown to me was TnA. Probably because all it knew about me was that I was male, and men usually like that sort of thing. The same thing happened when I gave TikTok a try, and more recently, Threads. The point though, is that so far, the activitypub systems DO NOT do that. It’s very similar to the old model, where if you don’t have any friends, you’ve got this feeling of isolation. It looks like no one is there. Larger instances will usually have recommendations on folks to follow, but if you jumped all in like I did, and stood up your own instance… It’s really tough to find folks to follow. Mastodon seems to do something to help that process along, but I found that Pixelfed doesn’t seem to.
So, if you’ve just signed up on some instance, or started your own, and you feel like you cant find anyone to follow, my recommendation would be to see if you can find prominent folks that you followed on other networks. I wouldn’t go looking for celebrities, though there are a handful there. But especially folks in the technology space. Follow them, and start looking at their posts, and see who they’re interacting with, then follow those folks if you’re interested. Ther are also federation relays, that if your platform supports them could help you discover content.
If you’re on a larger instance, the local feed can also come in handy. On my instance its practically useless, as I’ve only got a few people on my instance, but on something like infosec.excahnge, i bet it’s booming with folks to interact with.
Content warnings, and etiquetteLook I’m going to be honest here, I don’t get this one. Most social networks have the ability to flag your content as possibly offensive. Activitypub platforms are no different. But the culture in the fediverse is to take this to 11 it seems. I’ve seen people add content warnings to things that at face value seem completely ridiculous. Things like political discussions, pictures of people being happy with their family, pictures of pets. If you think hard about these you can see why they could _possibly_ be offensive to folks. Politics is probably the most obvious, people who have perhaps lost their families, may have bad memories dredged up seeing you and your kiddos. I don’t use CW’s, mainly because I don’t generally post things that would be considered as offensive by a reasonable person. I personally do not take responsibility for other people’s happiness. If its nudity, offensive language, or imagery with gore or something, yea i’ll CW it, but mostly I just don’t post those things. Does this make me a bad fediverse citizen? Some folks would probably say so. It’s one of the reasons I am happily on my own instance. I live by my rules (and I think my rules are reasonable) and if you don’t like my rules, you can block me or my instance. Maybe that’s harsh? I dunno.
Now, all that being said. I do not go around picking on people, and making their lives miserable. That’ll get you or your instance banned, with good reason, in my opinion. Speaking of bans, if you’re an instance admin, there are a lot of instances that most admins like to block. There isn’t yet (that I know of) a central list of instances that should be banned but you can see the list of banned servers on other instances, at least of those instances are mastodon. Personally, i like this mechanic. If you don’t want to federate with that right-wing “freedom” platform, or that other one that’s primarily adult content, you have that choice.
Speaking of federation.. Let’s talk about commercial social media.There has been a lot of consternation around commercial social networks federating over activitypub. A lot of people think this is a terrible thing, and that it shouldn’t be allowed. I think that stance is directly in opposition to what an open network stands for. Anyone should be allowed to federate, and if they behave badly, instance admins can block them. In my opinion, this is exactly how this sort of network was meant to work. Self-governing, and free. If Threads wants to federate, I welcome the effort. If it means other large social platforms may follow suit, I welcome that as well. But I welcome it with skepticism.
This is how things were meant to be.The founders of the web, they had some principles that the thought would make a good global platform for the exchange of information. These things should be accessible, and they shouldn’t be kept behind gates. They shouldn’t be held by a commercial interest. Especially one who’s goal it is to mine our data and sell it. Social media today is not just a place to communicate, its a place where our opinions are being molded. Quite frankly its becoming a poison. I have seen friendships ended over political disagreements that were fuelled by misinformation and propaganda that was forced down our throats by the big social platforms. This is not how things should be. We have the power to change it, but only if we use that power. The power to choose. Choose Wisely.
I feel like there are some misunderstandings flying around. I wanted to write something to help. Part opinion and part technical. This post is meant to spread the word and maybe dispel some doubts around federated social media, commonly referred to as “The Fediverse”
Ok, stop, a fedi-what?Fediverse. Check the link above. It’s a word used to describe the whole of a new-ish movement for decentralized social networks. What’s that you might ask? Well, it’s what it sounds like. A social network that doesn’t depend on one dude and his intentions to operate, because nodes or instances within that network are not managed by one central entity. Those nodes talk to each other, or federate. This creates a FEDerated unIVERSE of systems all sharing these social interactions. Mostly over a protocol called Activitypub.
Wait, activitypub?Activitypub is a standard by which instances in the fediverse (or most of them anyway) communicate, or federate. It’s the language any federated instance needs to understand in order to participate. These instances will track users activity on other instances, and pass those notifications off to their own users who they follow. The awesome thing about a protocol like Activitypub is, as longas all of the instances are using the same protocol, they can talk to each other. There are implementations of activitypub instances that mimmick many different commercial social platforms like Instagram, Facebook, Twitt.. er… _X_, Youtube, even Twitch. So, if the platform you prefer is instagram-like because you’re into photography, or cat pictures, or sharing pictures of your butt, and someone you’d like to follow (or someone who wants to follow pictures of your butt) are on a different format platform… They can!
And on top of that, so far these implementations are all self-hostable and open-source. So, if you want to keep those pictures of your butt on your own server so you have a choice when you’d no longer like those pictures shared across the internet, you can!
So why does all of this matter?I could go into all of the privacy and data rights rabbit holes that you probably expect me to right now. But I don’t think that’s what people really care about. I mean sure. Some of you probably care that you get control of your data, how open it is, and where you’d like it to live. But the average Facetwitgram user just doesn’t. If they did they wouldn’t be on those sites in the first place.
What does, or should, matter to those folks is the freedom to choose. Freedom to not be at the whim of a corporation. Let’s take _X_ as an example. For a very long time, privacy-minded folks, seemed to flock to Twitter. It was viewed as a safer and maybe cleaner place where you had a little more control over your identity and maybe even a little anonymity. Personally I was there for the massive Information Security community that existed there. Then they started with ads, and promoted tweets, and then they started mucking about with the chronological timeline, and inserting filler posts from folks you didn’t follow because they thought you’d (or they’d) benefit from you seeing them… It was on, in my opinion, a decline.. then E-Day happened. That is when Elon Musk was essentially forced to buy Twitter or spend time in an orange jumpsuit. He started making sweeping changes that seemed to make no sense at all, firing or laying off a huge portion of the staff, ending things like content moderation programs, and turning accounts back on for some of the worst and most offensive people that plagued the platform. The last straw for me was his insane re-brand from the Twitter brand that’s so ubiquitous that its become a verb, to _X_.
The point there is, that folks had come to rely on twitter. It was part of their life, they had made friends, met soul mates, exchanged ideas, built careers, around this platform. And now they had absolutely no say in its crumble into a platform that it is now. Many people had enough, and fled to Mastodon. Mastodon is an activitypub twitter clone.
The future of social networksIt is my hope, that the federated model is the future of social media. Meta, who owns Instagram and Facebook, has recently stood up an instagram-related service called Threads. I assume they wanted to cash in on the demise of twitter, because threads is basically a twitter clone that uses your Instagram login. But it’s run by Meta, so you can bet it’s having a field day with your data. Personally, I think Threads has a lot of similarities with Mastodon, except that you cant host it yourself, and it’s closed source. Oh, and its run by a corporation who’s sole purpose is to collect information about you and sell it. But it also federates…. Or, at least they say it will.
Let that sink in. One of the big problems with the fediverse isn’t the people who are there, it’s the people who aren’t. Early adopters of mastodon found the place quite empty. They couldn’t find anyone to actually interact with, and as a result went back to the closed gardens that they were used to. But… Imagine if you could follow your facebook friends from Friendica (a facebook clone in the fediverse), or youtube channels you love from your peertube instance. Well, if threads works out, maybe it’ll set the stage for other big social platforms to start talking activitypub. And if they do, you’ll be able to happily check out your nieces and nephew’s childhood pics on Instagram, or follow nazi’s on _X_, or chat with aunt Marge on Facebook from the confines of your chosen open platform.
The issue here is, that these large companies shouldn’t have any real motivation to federate. What do they get out of it? Sure their users get more reach, but they don’t care about their users. They care about their user’s data. So is this al a plot to help them siphon up information from us freedom loving fediverse users? I guess only time will tell.
So, for me…Personally, I don’t see a reason to support any social network that won’t federate. We need to choose for ourselves what the future holds. If you’re on a federated platform, follow me @gangrif, and follow this blog @nate@www.ironsysadmin.com
Hi Folks! It’s me, Nate.
It’s been several months since we put the show in moth-balls. I’ve since started a new off-road related podcast, and I’m having a ball! But it’s left me wondering what to do with The Iron Sysadmin brand.
See, I still very much enjoy creating content for you all. It’s why I do what I do for a living, and why I also do it in the off-road space. I love sharing information, trying to make a dent in the industry, and doing it on my terms. The problem with the Iron Sysadmin podcast was, that it was a bit too tight of a box for the sort of content that I want to create now. Talking about being a sysadmin is hard to do when you’re not living the sysadmin life. At least for me it is.
That being said though, sys-adminning is very much a hobby of mine, and staying relevant in that space is very important to my day job, where I try to show the value of RHEL to an audience of admins and the folks above them who write those purchase orders. To me, it’s really important that the messages I send as a technical marketing manager for a product like RHEL are also genuine. I am a Sysadmin at heart, I’ve done it since my early days when we were called SySops, running BBS’s in my parent’s basement, and in learning BIND and apache so I could stand up the early days of The Underground. After leaving the daily sysadmin grind, i started bringing a number of the services I’d moved off-prem to various services back to my home lab. Because if there’s one thing I’ve learned about myself, is that system administration is in my blood. I may not be doing it professionally, at least not officially, but my technical tool-belt needs to remain well oiled and operational.
So, what does that mean for The Iron Sysadmin? Well, it means we’re not dead. The Iron Sysadmin Podcast may be, but I am really starting to think about the future of The Iron Sysadmin as a whole.
I am the Iron Sysadmin, and there’s no reason the content has to stop. Early on I made the mistake of keeping my personal tech content and the Iron Sysadmin tech content separate. I don’t know why I did that, but you can see on The Undrblog that all through the life of the podcast, I’ve been creating blog content there around technology over there. I think that stops now, and that sort of content is now going to show up here! And I think video content will as well. I do blog and demo content all day long for the day job, and some things I’d like to show don’t really fit that venue, but no one says I cant share it myself, and really. Isn’t that WHY I’ve got sysadminning in my blood? Yes, yes it is, that desire to do it myself without limits and boundaries is exactly why I run sites like this.
So, Welcome back folks. I wouldn’t expect much of a schedule to all of this, but expect to see some familiar faces with their hands on keyboards producing wicked technical content.
Folks! Listeners! Bad rendition of disney tune lovers! We have some news we need to share.
Over the years The Iron Sysadmin podcast has evolved. On Episode 1 Jason and I were both working in IT ops in one aspect or another, and we started this show because we thought there was a gap in the current (or, at the time anyway) podcast landscape for content BY sysadmins, FOR sysadmins. We wanted to make a show that addressed some of the challenges in a Sysadmin’s life. Not just their day job, but topicslike work/life balance, staying healthy, and working with others.
We had 0 audio editing skills, and 0 budget. We started as cheap as possible, and grew over the years. I’ve done all of the editing myself, and coming in which absolutely no audio editing or engineering skills, it was tough. I did my best. Luckily we built a decent backing on patreon which allowed the show to expand the technology stack. Adobe audition, decent mics, the Rodecaster Pro mixer, Libsyn podcast hosting, Streamlabs for streaming, and Riverside for recording. Patreon cover all (or.. most) of that.
We’ve had some great times over the years. We’ve always tried to make this show entertaining, instead of just informative. And we’ve had a great time doing it! We’ve had hosts come and go over the years, a big thanks to Dustin, and Charles who both gave us their time, and then finally the addition of Unclemarc who’s been a staple on the show since.
So, why am I taking you on this trip down memory lane? Well, its because things have changed over the years. My role has moved further and further from daily ops, all of the active hosts have progressed their careers in fact. Marc is in management now, and Nate’s still technical but from a marketing perspective instead of an admin. And while we’ve all god a ton of industry experience, that unfortunately does not replace daily hands-on-keyboard relevance that the show really needs in order to be what we intend it to be. And that doesn’t even account for the amount of time it takes to organize a show. Figuring out topics to cover, researching them, finding news to talk about, arranging guests. It takes more time than you might think, and many times in the past 2 years or so that work was getting done hours before we went live, because we were having trouble coming up with good content. I’m sure in some shows that came through, but generally we’d call the show off if we didn’t feel like we had a valuable topic. The bulk of the show’s planning and engineering has always fallen to me. I’ve enjoyed it! It’s what I expected honestly.
But now the bad news. Every year we’ve taken a bit of a break around the US holidays of Thanksgiving and Christmas. This was mainly because show scheduling got tough with hosts having family things to attend, so we would just accept it and take an episode or two off during this time of year. And that usually meant we hit the new year feeling a bit recharged. In 2022 we’d even taken several weeks off around July when my Mother-in-law’s battle with Cancer had taken a turn for the worse. By the way, that lead to an accumulated $500 donation to the American cancer society fueled mostly by the awesome patrons. Oh, and I never got to make this public on the show, but through a program Red Hat gives me access to through my day job, I was able to DOUBLE that, for a total of $1000. Folks, have I mentioned what an awesome employer Red Hat is? But I digress. Taking these breaks usually has a recharging effect on us as the hosts. 2022’s breaks didn’t do that, and that worried me to the point where I decided to call a meeting with Marc and Jason this past Friday. Iron Sysadmin is mine, and it always has been, but these guys have given me two Thursdays a month for years, almost 6 years for Jason, and about 4 for Marc. They get to have a say in the future of the show. We decided together that it was time to end things.
Marc is now managing TAMs at Red Hat, I work in the Marketing team for RHEL, and Jason, well who knows what he’s doing, but he’s been all over the IT map for the past few years. Jason might have the most relevant day to day out of all of us, and we can’t carry the show on just one host who’s in the weeds. Personally, I’m finding it hard to be objective when my day job is to cast a positive light on one of the products we should be critical of on the show.
Patreon was paused over the weekend, I’ll close that up before the one month pause period expires. Again thank you so much to the patrons who have supported this show.
And let’s not forget all of you listeners! And our great guests! This has been an awesome ride and it wouldn’t have been possible without all of you.
Welcome to Episode 133a Main Topic * Red Hat Insights Vulnerability Service with John Spinks + Who’s John? + What is insights (high level overview) + What is the vulnerability service? - How does it identify vulnerabilities? - How does it fix vulnerabilities? - Centralized view - helps you prioritize - Data from OVAL - https://access.redhat.com/solutions/4161 - Security Rules [https://access.redhat.com/articles/2968471 - Known exploits - Affected but not vulnerable - Wanna watch a video? https://youtu.be/b1qGrmZjoO0
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2 http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 133b Announcements * Patreon Update + name_pending197 + Jeremy + Odin + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles
Reviews * Nothing New
Chat * [Nate]
+ https://www.bigscreenvr.com/
+ https://www.redhat.com/en/about/videos/push-rhel-images-to-aws-with-image-builder
Some of my content is on redhat.com now! Pretty neat.
[XenoPhage]
News * https://www.npr.org/2023/02/20/1158334690/instagram-facebook-meta-verified-zuckerberg * https://www.wral.com/the-future-is-here-take-a-look-at-the-first-3d-printed-housing-development-in-nc/20718655/ * https://techcrunch.com/2023/02/22/instagrams-co-founders-personalized-news-app-artifact-launches-to-the-public-with-new-features/ * https://time.com/6256529/bing-openai-chatgpt-danger-alignment/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2 http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 132 Main Topic Our favorite linux commands (or utilities)
Libvirt
Unclemarc
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2 http://freemusicarchive.org/music/Tri-Tachyon/
#IT #sysadmin #ironsysadmin #podcsast #sysadminpodcast #linux
Welcome to Episode 132b Announcements * Patreon Update + name_pending197 + Jeremy + Odin + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The-Mentor + Marc + Julius + Andi + J + Charles
Reviews Nothing New
Chat * [unclemarc]
+ https://photos.app.goo.gl/WNVdFFZZYVhbzLTz7
+ Dwarf Fortress
+ Hogwarts Legacy
+ https://www.reddit.com/r/Stadia/comments/10eokkg/sweet\_stadia\_controller\_to\_steam\_deck\_via/
Steam Deck is still baller
[nate]
News * https://www.redhat.com/en/blog/red-hat-enterprise-linux-now-available-oracle-cloud-infrastructure * https://www.cnn.com/2023/02/08/tech/microsoft-ai-bing-experience/index.html * https://www.ft.com/content/2fe6163b-b4c3-413e-b595-8110e328b42d * https://gizmodo.com/android-xiamoi-oneplus-phones-personal-info-study-1850082989
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2 http://freemusicarchive.org/music/Tri-Tachyon/
#IT #sysadmin #ironsysadmin #podcsast #sysadminpodcast
We’re starting to make the Snippets we’ve talked about! We’re trying out the Youtube Shorts platform for these, but will adjust if it doesn’t work out.
Enjoy this snippet, where Nate takes us through some vim basics!
Welcome to Episode 131 Main Topic * Security in the cloud + How is it the same + How is it different
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 131b Announcements * Patreon Update + name_pending197 + Jeremy + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The_Mentor + Marc + Andi + J + Charles + American cancer society donation sent! $436 was our total, I threw in the extra and took it to $500! + Current Patrons
Reviews Nothing New
Chat * [nate] + https://www.amazon.com/Final-Empire-Mistborn-Book-1-audiobook/dp/B001QKBHG4 + Wife had knee surgery, i now have a part time job as a nursing assistant. + Tearing apart an engine for fun and prof… er.. Frustration. + Started reading a new series! Eric the IT Guy suggested the Mistborn series by Brandon Sanderson. So far its pretty good. + this is hilarious https://www.reddit.com/r/pics/comments/10ldkmb/so_i_found_this_on_the_beach_at_low_tide_feel/?utm_source=share&utm_medium=ios_app&utm_name=iossmf
News * https://www.cnn.com/2023/01/25/tech/microsoft-cloud-outage-worldwide-trnd/index.html * https://www.theverge.com/2023/1/17/23559203/google-stadia-controller-bluetooth-support-tool-download + https://stadia.google.com/controller/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 130a Main Topic * Interview with Paul + https://securityweekly.com
- https://securityweekly.com/subscribe
+ How did you get from that, to an infosec podcast?
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 130b Announcements * Patreon Update * American Cancer Society Funds are up to $366.84 + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles
Reviews Chat * Nate + New Wifi! I’ve joined the Ubiquiti club. + TSO
Podcast automation.
unclemarc
So much Dwarf Fortress
XenoPhage
News * https://www.nytimes.com/2022/12/15/us/politics/trump-nft-trading-cards-superhero.html * https://www.bleepingcomputer.com/news/security/oktas-source-code-stolen-after-github-repositories-hacked/ * https://arstechnica.com/information-technology/2022/12/kremlin-backed-hackers-targeted-a-large-petroleum-refinery-in-a-nato-nation/ * https://futurism.com/the-byte/roomba-photos-leaked * https://www.zerodayinitiative.com/advisories/ZDI-22-1690/ * https://blog.lastpass.com/2022/12/notice-of-recent-security-incident/ + https://hackernoon.com/psa-lastpass-does-not-encrypt-everything-in-your-vault-8722d69b2032
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 129a Main Topic Mastodon, with Jerry!
Setup and Background
Decentralized, and federated
It effectively cannot be taken away.
Why is that important?
Fediverse? Activitypub? what’s that all about?+ Open Source
Why is _that_ important?
So What’s it like when your hobby becomes a life raft?
How is it hosted?
Cloud? Metal? Vms?+ How do you afford it??
https://liberapay.com/Infosec.exchange
Links and things
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 129b Announcements * Patreon Update * American Cancer Society Funds are up to $297.66 + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles
Reviews * Nothing New
Chat * Nate + https://social.undrground.org/@gangrif + mastodon instance + car is broken + pto coming up + re:invent
Daughter getting married Saturday after Thanksgiving, so that’s a thing
XenoPhage (he/him/his) (@xenophage@infosec.exchange)
News * https://www.forbes.com/sites/cyrusfarivar/2022/11/14/musk-fires-twitter-engineer-on-twitter-cowards/ * https://www.bleepingcomputer.com/news/security/us-govt-iranian-hackers-breached-federal-agency-using-log4shell-exploit/ * https://venturebeat.com/ai/intel-unveils-real-time-deepfake-detector-claims-96-accuracy-rate/ * https://www.phoronix.com/news/Fedora-37-Released
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 128 Main Topic 1. Blog by David Heinemeier Hansson https://world.hey.com/dhh/why-we-re-leaving-the-cloud-654b47e0 1. He’s a Danish programmer, and the Creator of Ruby on Rails 2. He is also co-founder of both Basecamp and HEY 1. https://basecamp.com/ 2. https://hey.com/ 3. And, an Author 1. https://basecamp.com/books/rework 2. https://basecamp.com/books/calm/ 3. https://basecamp.com/books/remote/ 4. https://basecamp.com/books/getting-real/ 1. Basecamp has been at least partially in the cloud for a long time 2. HEY was started in the cloud. 3. Various platforms and technologies 1. Bare vms 2. K8s 3. Google 4. Amazon 4. “Renting computers is (mostly) a bad deal for medium-sized companies like ours with stable growth.” 5. Two ends of the scale: 1. Low-end, when your application is simple, low workloads, you benefit from the simplicity of managed services 2. Irregular “bursty” end, where you have a certain sustained workload, but it has a tendency to burst, and then settle. 6. Middle of the scale: 1. Workloads that have consistent traffic, and stable growth 7. Cost vs Complexity 1. A lot of server hardware could be bought for half a million a year 2. Argument being, managing those servers. 1. Half a million spend for HEY per year. 2. But how true is that, really? 8. And then there’s centralization… 1. Who is David Heinemeier Hansson https://dhh.dk/? 2. So what about this post.
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 128b Announcements * Patreon Update * American Cancer Society Funds are up to $224.48 + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles
Reviews (nothing new)
Chat * Nate + What’s up with Elon and Twitter? + Im ditching the google wifi
News * https://arstechnica.com/gadgets/2022/10/microsoft-puts-the-l-in-android-12l-updates-surface-duo-7-months-late/ * https://www.cnbc.com/2022/10/27/meta-stock-falls-23percent-on-earnings-miss-analyst-downgrades.html * https://arstechnica.com/gadgets/2022/10/google-profits-plummet-27-percent-in-q3-2022-earnings-report/ * https://arstechnica.com/gadgets/2022/10/google-can-now-remove-your-identifying-search-results-if-theyre-the-right-kind/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 127 Main Topic * Microservices + “Simpler” code? + Easily scalable? + “Complex” deployment? + What are they? + Why build like that? + How do you interact with a microservice? + Pros/Cons ?
What? Why?
Service Mesh?
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 127 Main Topic * Microservices + “Simpler” code? + Easily scalable? + “Complex” deployment? + What are they? + Why build like that? + How do you interact with a microservice? + Pros/Cons ?
What? Why?
Service Mesh?
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 127 Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + American Cancer Society Funds are up to $224.48 + Patrons:
Chat * [Nate] + From ebay, It’s an HP Proliant + It’s like a decade old, but has 24 xeon cores, and 96gb of memory. + I paid under $180 including shipping. + https://labgopher.com + I bought a new old server… + 3d printer is acting up a bit. + Started a new hacky project on the jeep. Or, at least started planning it and getting parts together anyway. + Getting a donkey (must be rideable)
News * https://www.theregister.com/2022/10/12/drone-roof-attack/ + https://www.youtube.com/watch?v=Cdk4Zw2oYdc
https://www.youtube.com/watch?v=ouq5yyzSiAw
https://www.wired.com/story/us-chip-sanctions-kneecap-chinas-tech-industry/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 127 Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + American Cancer Society Funds are up to $224.48 + Patrons:
Chat * [Nate] + From ebay, It’s an HP Proliant + It’s like a decade old, but has 24 xeon cores, and 96gb of memory. + I paid under $180 including shipping. + https://labgopher.com + I bought a new old server… + 3d printer is acting up a bit. + Started a new hacky project on the jeep. Or, at least started planning it and getting parts together anyway. + Getting a donkey (must be rideable)
News * https://www.theregister.com/2022/10/12/drone-roof-attack/ + https://www.youtube.com/watch?v=Cdk4Zw2oYdc
https://www.youtube.com/watch?v=ouq5yyzSiAw
https://www.wired.com/story/us-chip-sanctions-kneecap-chinas-tech-industry/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Matrix Space: https://matrix.to/#/#IronSysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 126a Main Topic Lift and Shift
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 129b Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles
Chat * [unclemarc] + Printed a cool stand for it - https://www.thingiverse.com/thing:5363356/files + Enabled sshd on the Steam Deck for access via my laptop + My son’s Deck is sitting over there, we’re bringing it to him on Sunday + Steam Deck + Having fun interviewing for a new TAM for my team
Very curious about Bone Lab (vr game)
[xenophage]
News * https://matrix.org/blog/2022/09/28/upgrade-now-to-address-encryption-vulns-in-matrix-sdks-and-clients + https://fakeyou.com/tts/result/TR:mts8v95r5a78s241hyx92pnt3eagr
Stadia Controllers on Windows:
https://theintercept.com/2022/09/28/cia-extinction-woolly-mammoth-dna/
https://www.npr.org/2022/09/20/1124096032/stay-hungry-stay-foolish
https://www.bloomberg.com/news/articles/2022-09-29/meta-announces-hiring-freeze-warns-employees-of-restructuring
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 125b Announcements Patreon Update name_pending197 Jeremy Arinomi Andrew Tatro Bruce Robert David S0l3mn LiNuXsys666 Mark DeMentor@PowerShellOnLinux.com Marc Julius Andi J Charles Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin Chat [gangrif] Starting in September, Sr. Technical Marketing Manager … Continue reading "Episode 125b – Metas, video games, facepages, and Patreon"
Welcome to Episode 125 Main Topic Intro to Cloud Private Cloud (is it really a cloud? What makes it different from “my computers”?) Public Cloud Hybrid Cloud Understanding Cloud Acronyms and Terminology IaaS – Infrastructure as a Service PaaS – Platform as a Service SaaS – Software as a Service MaaS – Marc as a … Continue reading "Episode 125a – Cloud Terminology and technologies"
Welcome to Episode 125 Main Topic * Intro to Cloud + Private Cloud (is it really a cloud? What makes it different from “my computers”?) + Public Cloud + Hybrid Cloud
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 125 Main Topic * Intro to Cloud + Private Cloud (is it really a cloud? What makes it different from “my computers”?) + Public Cloud + Hybrid Cloud
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 125b Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + DeMentor@PowerShellOnLinux.com + Marc + Julius + Andi + J + Charles
Chat * [gangrif] + Starting in September, Sr. Technical Marketing Manager at Red Hat + New Job! + Playing “The Last Campfire”
Arcade Paradise on the Steam Deck is my most recent “new fun game”
[xenophage]
News * https://www.cnbc.com/2022/09/08/facebook-login-button-disappearing-from-websites-on-privacy-concerns.html * https://www.washingtonpost.com/us-policy/2022/09/08/treasury-crypto-warn-white-house/ + https://twitter.com/bitcoinmagazine/status/1567883215733460994?s=21&t=oESwzdWofRwdaxo_9O2I8A + https://i.redd.it/7bpapo8yw2c51.jpg
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 125b Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + DeMentor@PowerShellOnLinux.com + Marc + Julius + Andi + J + Charles
Chat * [gangrif] + Starting in September, Sr. Technical Marketing Manager at Red Hat + New Job! + Playing “The Last Campfire”
Arcade Paradise on the Steam Deck is my most recent “new fun game”
[xenophage]
News * https://www.cnbc.com/2022/09/08/facebook-login-button-disappearing-from-websites-on-privacy-concerns.html * https://www.washingtonpost.com/us-policy/2022/09/08/treasury-crypto-warn-white-house/ + https://twitter.com/bitcoinmagazine/status/1567883215733460994?s=21&t=oESwzdWofRwdaxo_9O2I8A + https://i.redd.it/7bpapo8yw2c51.jpg
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 124 Main Topic AI and Ethics… https://www.reddit.com/r/Futurology/comments/w6g9hk/google_fires_researcher_who_claimed_lamda_ai_was/ Blake Lemoine Was part of Responsible AI project Fired after going public (washington post) claiming that Google’s LaMDA had gained sentience. Chess robot that broke a boy’s finger https://nypost.com/2022/06/12/google-engineer-blake-lemoine-claims-ai-bot-became-sentient/ How do we know when something is “Sentient” What is Sentient anyway? What does it mean … Continue reading "Episode 124 – AI, Sentience, and Ethics"
Welcome to Episode 124 Main Topic * AI and Ethics… + https://www.reddit.com/r/Futurology/comments/w6g9hk/google_fires_researcher_who_claimed_lamda_ai_was/ - Blake Lemoine - Was part of Responsible AI project - Fired after going public (washington post) claiming that Google’s LaMDA had gained sentience.
What is Sentient anyway?
What does it mean when an inanimate object becomes sentient?
Is it still “Just a thing”?
AI taught to play D&D - https://www.wargamer.com/dnd/ai-player
https://arxiv.org/pdf/2201.08239.pdf
AI and the future?
https://www.ted.com/talks/jeanette_winterson_is_humanity_smart_enough_to_survive_itself
Wrap up
Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + DeMentor@PowerShellOnLinux.com + Marc + Julius + Andi + J + Charles
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 124 Main Topic * AI and Ethics… + https://www.reddit.com/r/Futurology/comments/w6g9hk/google_fires_researcher_who_claimed_lamda_ai_was/ - Blake Lemoine - Was part of Responsible AI project - Fired after going public (washington post) claiming that Google’s LaMDA had gained sentience.
What is Sentient anyway?
What does it mean when an inanimate object becomes sentient?
Is it still “Just a thing”?
AI taught to play D&D - https://www.wargamer.com/dnd/ai-player
https://arxiv.org/pdf/2201.08239.pdf
AI and the future?
https://www.ted.com/talks/jeanette_winterson_is_humanity_smart_enough_to_survive_itself
Wrap up
Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + DeMentor@PowerShellOnLinux.com + Marc + Julius + Andi + J + Charles
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 123 Main Topic * What does it look like to work in IT today? + Iron syadmin’s have been around a long time, things have changed since we got our starts in this industry. + Can you start off the street or do you need certs and education? + Help Desk + Classic “sysadmin” + Legacy admin (old skool Unix and prior) + DevSecBizCheeseOps + Novell/legacy to Windows to Linux in data centers + Cloud based tech + Software as a service/components + Mobile apps + Automation + Intro: + What is entry level now? + What are some roles and how have they changed? + How have techs changed the role of IT careers?
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 123b Announcements * Patreon Update + name_pending197 + Jeremy + Arinomi + Andrew + Tatro + Bruce + Robert + David + S0l3mn + LiNuXsys666 + Mark + DeMentor@PowerShellOnLinux.com + Marc + Julius + Andi + J + Charles
Chat * [nate] + Finally had covid.. It wasn't so bad. + Switched back to Windows 10. + Did not need to buy a new mixer :D
News * https://www.pcgamer.com/mark-zuckerberg-spent-dollar10b-on-the-metaverse-and-all-he-got-was-this-stupid-selfie/ * https://devblogs.microsoft.com/oldnewthing/20220816-00/?p=106994 * https://www.theverge.com/2022/8/18/23309439/crypto-com-layoffs-unannounced-july-august-bear-market * https://edition.cnn.com/2022/08/18/asia/japan-tax-alcohol-competition-intl-hnk/index.html * https://gizmodo.com/epson-printer-end-of-service-life-error-not-working-dea-1849384045
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
This is just a quick update folks. We realize we have not released a show in a while, and we wanted to give you guys some re-assurance that we're coming back! Listen in to see what's up, and when we'll be back.
Thanks for being patient!
Welcome to Episode 122a Main Topic * yes it is i the boy - who am i even
-son of unclemarc
-stevens type kid
-longtime mathematics enjoyer
-"pro" gamer
a quick personal history
-first talk about how i got into older games
-wii virtual console, snes emulator in 3rd grade (messing around with lunar magic, despite not knowing how to use it)
-got into gba in grade 6
-got into fe in grade 8, fell out a bit, got back into it in junior year
-got into hacking in freshman year of college
retro gaming
-old games are cool, but good luck finding the carts and consoles
-if you're not japanese there goes a lot of games
-solve these problems with emulation- play classic games, translate foreign games, etc.
-pretty much every system you can think of has emulators developed
-of note here is also the ability to play hacks
what the hell is a romhack
-take a game that you enjoy, and use your numerous powers to turn it into something new
-graphics, sounds, level design, mechanics- the whole nine yards
-why do you hack? for fun, to learn about old stuff, to show off to people
-it's like making a game, but you kinda have to be purely passion driven (no profit for you)
what do ya need, anyway
-a rom, obviously (yeah sure i totally dumped one myself)
-patience and perseverance
-whatever hacking tools exist for the game you wish to tackle
-god there's so many of them
-game specific tools (ex. lunar magic, febuilder)
-assemblers/disassemblers
-debugging emulators (ex. no$gba)
-graphical tools (ex. usenti, paint if you hate yourself)
-sound stuff (usually working with midis, either custom made, downloaded, or ripped from other games)
decomp vs. binary
-binary hacking is more straightforward to setup (usually)
-decompilations/buildfiles allow much more freedom
-buildfiles also give you powerful version control
-if you screw up, bug fixing is far more merciful
-binary has you burning edits into your rom- scary!
i just told you buildfiles are rad but anyway use binary hacking
-that all being said, binary hacking tools are probably the best way to start
-the simplicity allows you to acquaint yourself with the nitty gritty
-gonna be honest, i started with very little knowledge on the specifics
-never thought i'd casually pick up hexadecimal
you don't even have to do it all yourself
-lots of hacking communities have tons of resources
-graphical/musical assets for the artistically unable
-engine hacks so you don't have to reinvent the wheel adding cool shit
-documentation on the inner workings of a game
but sometimes you gotta
-gba assembly haunts my dreams
-thankfully, other options exist
-pokemon decomps use C, CHAX is a somewhat recent thing in fe
-with the gui methods, you can do a ton of stuff without ever touching asm
-just gotta be clever and maybe rub an elbow or two
screw it, fe hacking scene history
-nightmare (good old csv editing), various general use gba tools
-apparently hackers used to map in ms paint
-feditor is a nightmare hellscape
-despite this, we still had hacks
-shoutout to the last promise, made by a highschooler with the equivalent of rusty sponges
the golden age begins
-event assembler- insert data with a powerful and versatile tool
-buildfiles insert most of their data through EA
-in march 2017, skillsystem dropped- a revolution in the hacking scene to turn fe8 into a game as feature rich as modern entries
-emblem magic- an all in one gui hacking tool dropped in august 2017
-then febuilder dropped in september 2017 and kinda overshadowed it
-an aside on pokemon romhacking making you download like 80 things
-builder is a gift from a god known as 7743- easy to use UI with a ton of features and some underrated debugging power
-skillsys got ported to builder early on, and it has a ton of ui to complement it
-ever since, we've had tons more hacks
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 122b Announcements * Patreon Update + Z(ed)-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + 22532
Reviews * Nothing New
Chat * [unclemarc] + First days + PS Remote Play + I haz Steam Deck + Killed Elden Beast! + Trying Fiverr for a mashup
And we’re going on vacation.
[retina]
News * https://www.teenvogue.com/story/conspiracy-theories-how-to-spot-them-and-what-you-need-to-know * https://9to5mac.com/2022/05/25/duckduckgo-privacy-microsoft-permission-tracking/ * https://www.politico.com/news/magazine/2022/05/27/stopping-mass-shooters-q-a-00035762?utm_source=pocket-newtab * https://hard-drive.net/remembering-the-gamecube-that-fucker-ruled/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 121 Main Topic * How do I get a hold of expensive software, for the purposes of learning? + Check with your school, a LOT of vendors have super-cheap solutions for education. Your school may be able to provide you a learning license/sub for software you are interested in + Less than Legal alternatives + Red hat enterprise linux
- Red Hat Developer Sub
- https://developers.redhat.com/articles/getting-red-hat-developer-subscription-what-rhel-users-need-know#
- Centos literally feeds RHEL, Centos stream is an extremely similar platform.
- Fedora feeds Centos,+ Ubuntu
- Ubuntu Server is free, but you can buy support from Canonical+ Windows Server
- Try it on azure’s free tier
- Windows server will run for some time without activation
- Talk to a partner about a trial
- https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/
- https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/
- https://www.microsoft.com/en-us/windows-server/trial
+ Red Hat Openshift
- https://developers.redhat.com/openshift/hosting-openshift
- Trial, ask your account rep
- OKD is the upstream for Openshift
- OpenShift Online has a free tier
VM/Container platforms
Vmware vsphere
Or just stand-alone esxi?
Industry Software
Oracle DB
SaaS and Cloud
Aws
AWS Free Tier
https://cloud.google.com/compute/
https://azure.microsoft.com/en-in/free/
https://try.digitalocean.com/freetrialoffer/
$100 trial credit
Rotating list of promotions: https://www.linode.com/promotions/+ Github
Free for all, as far as I know
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 121b Announcements * Patreon Update + Z(ed)-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + 22532
Reviews * Nothing new
Chat [unclemarc]
Also, supporting the VR mod - https://www.patreon.com/realvr/posts
Still waiting on my Steamdeck email
[gangrif]
News * https://www.redhat.com/en/blog/top-new-features-red-hat-enterprise-linux-86 + Also, https://www.crn.com/news/cloud/10-big-announcements-from-red-hat-summit-2022
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 120 Main Topic * Learning new things + Certification + Sog, on twitter,
- Dive in and drink from the firehose and leverage the hyper-focusing ADHD ability to further accelerate learning. I learned Powershell, Go, and Rust in the last year-ish, in addition to a lot of pentesting-specific stuff. If you want it bad enough, you'll get it done.+ The Mentor
- the way I learn new technology is by setting it up in my homelab messing around with it and messing it up and building it up so many times until I fully get it+ Name\_pending197
- This is the way. I do the same, build it, document it, break it, repeat. I also find that learning and then presenting new technology to the rest of the team is an excellent way to retain knowledge. Explaining and demonstrating something to others is one of the best ways to understand it yourself. Especially if you know you will be questioned on it
+ https://www.youtube.com/watch?v=X48VuDVv0do&start=10725
+ https://kubebyexample.com/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 120 Announcements * Patreon Update + Z(ed)-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + 22532
Reviews * Nothing New
Chat * [nate] + https://www.printables.com/model/54214-endless-customizable-interchangeable-shelf + Fighting with ISP + Bought Elden ring, played about 30 minutes. + 3d Printing Some cool modular shelves.
Unclemarc defeating the slug.
[friz]
News * https://www.nbcnews.com/tech/tech-news/elon-musk-reaches-deal-buy-twitter-rcna25806 (this may be a long discussion, depending on.. Feelings. ;) ) * https://edition.cnn.com/2022/04/28/tech/international-democratic-internet-commitment/index.html * https://news.slashdot.org/story/22/04/28/146214/nsa-re-awards-10b-cloud-computing-contract-to-aws * https://arstechnica.com/information-technology/2022/04/microsoft-finds-linux-desktop-flaw-that-gives-root-to-untrusted-users/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 119 Main Topic * Staying Healthy while working at a desk + Obvious things - “Office work” * Generally means you are indoors * You are not performing physically intense tasks * You naturally burn less calories in a day * You are sheltered from the sun
And this is even worse if you are a WFH worker
And a lot easier to make poor dietary decisions
This can be improved by WFH, if you can be disciplined
Not so obvious things
Remote/WFH
So what do we do about all of this?
in fact. eat regularly in general breakfast lunch dinner
Either get to the gym or go for walks/runs/cycling/whatever you're into
treadmill desk?
Articles
Motivational meetings can depress people -lol
https://blog.vantagefit.io/office-workers-health-problems/
https://www.mdlinx.com/article/the-surprising-health-effects-of-working-from-home/tsastCACwiPt6Al4ONUZL
Products:
Nate’s setup (amazon links are affiliate links that benefit the podcast)
Kinesis Gaming Freestyle Edge - Ergonomic Keyboard https://amzn.to/3M18PoE
With tent risers: https://amzn.to/3xodm0p
Logitech MX Ergo: https://amzn.to/3uGtE2Z
I got mine from Crandall Office for a fraction of the new price: https://www.crandalloffice.com/
Autonomous Sit/Stand desk. https://amzn.to/3xqPM32
Announcements * Patreon Update + Z(ed)-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + 22532
Chat * [nate] + Windows hibernate is just as terrible as I remember + Toying with DOKS (digital ocean kubernetes) + I have trodden further down the apple path…
https://youtu.be/g3MSJl7lhnk Marc’s “wave motion cannon”
Manager Life so far is great
News * https://www.cbsnews.com/news/elon-musk-twitter-purchase-offer-43-billion-private-company/ * https://www.vice.com/en/article/pkp47y/metaverse-company-to-offer-immortality-through-live-forever-mode (this was LITERALLY a Black Mirror episode. Black Mirror is a warning, not a How-To) - Be Right Back - Wikipedia * https://www.macrumors.com/2022/04/14/apple-says-meta-plan-is-hypocritical/ * https://www.science.org/content/article/thermal-batteries-could-efficiently-store-wind-and-solar-power-renewable-grid
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 118 Main Topic * Cyber Warfare (https://en.wikipedia.org/wiki/Cyberwarfare) + There’s this thing going on with Russia and the Ukraine.Maybe you've heard. + https://darknetdiaries.com/episode/50/ + White House Statement on Cyber Security (March 21, 2022)
- https://www.whitehouse.gov/briefing-room/statements-releases/2022/03/21/statement-by-president-biden-on-our-nations-cybersecurity/
+ Nation States
+ Ideological groups (“Hacktivism”)
+ Direct attacks
+ Malware
+ Banning of services
- https://www.theverge.com/2022/3/21/22988955/russia-facebook-instagram-putin-meta-whatsapp-ban-ukraine
+ Answers vary based on who you’re talking to, and what they're selling.
+ A lot comes down to what industry you’re in.
+ How can you prepare?
+ Directly? Probably not.
+ Indirectly, maybe, but there isn't a ton you can do about that. (is there?)
+ If you run an open source project for example?
- https://opensource.org/blog/open-source-protestware-harms-open-source+ Should you be attacking other nations?
+ Companies who have suspended services in Russia
- Apple
- Google
- Red Hat
- Microsoft
- Mastercard
- Visa
- Airbus
- Meta
- Many More: https://startuptalky.com/companies-suspended-operations-russia/
How companies are “contributing”
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 118 Announcements * Patreon Update + Z(ed)-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + Mark + The Mentor + Marc + Julius + Andi + J + Charles + 22532
Chat * Gangrif + https://www.prusaprinters.org/prints/54214-endless-customizable-interchangeable-shelf + https://hub.docker.com/r/gangrif/vrspace + https://vrspace.org + Have not 3d printed much, but I am planning on this cool modular shelf system + Roll20 has a dark mode now. Kinda cool. + I am going to be on RHEL Presents on 4/6! + Replaced my last C by GE LED strip with WLED + VRSpace Container
New role at the Hat
XenoPhage
News * https://www.cnn.com/2022/03/23/tech/okta-breach-acknowledgment/index.html * https://www.bloomberg.com/news/articles/2022-03-24/apple-is-working-on-a-hardware-subscription-service-for-iphones * https://apnews.com/article/technology-business-europe-new-york-new-york-city-5f1a7dbd9ba08562aff894c982b470a9 * https://phys.org/news/2022-03-analysis-captured-perseverance-rover-reveals.html * https://www.businessinsider.com/open-source-developers-burnout-low-pay-internet-2022-3 (https://web.archive.org/web/20220320083930/https://www.businessinsider.com/open-source-developers-burnout-low-pay-internet-2022-3) + https://www.bleepingcomputer.com/news/security/big-sabotage-famous-npm-package-deletes-files-to-protest-ukraine-war/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 117 Main Topic * Preparing for Maintenance + How do you make sure a new deployment is ready for prime time? - Testing
Or maybe just what isnt prime time?
How do you prepare your team for a go-live?
Can another admin jump in using your docs and troubleshoot a problem?
Has it passed whatever security checks your business has?
What about vendor involvement?
How do you spend the first week (or weeks?) after go-live?
Announcements * Patreon Update + Z-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The-Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532
Chat * Jason finally beat halo infinite * Nate’s still valheiming * Truly open metaverse? https://opensource.com/article/22/1/open-source-metaverse
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 116 Main Topic * Cgroups with Unclemarc! + Paul Menage and Rohit Seth + Solaris implemented zones in 2004, which featured resource groups, providing cgroup-like functionality + Kernel version 2.6.24 + Re-design for v2 begin in 2013 + Cpu + Memory + Disk (I/O) + Cpuset + v1 - https://www.kernel.org/doc/Documentation/cgroup-v1/cgroups.txt + V2 - https://www.kernel.org/doc/Documentation/cgroup-v2.txt + What problem are we trying to solve? + Started at Google in 2006, originally named “process containers” + Renamed to “control groups” and Introduced into kernel in 2007 + First appeared in RHEL 6 but none of the tooling was enabled by default + Critical component of systemd, so they’ve been active on RHEL since RHEL 7 + RHEL 8 is the first Red Hat OS to support cgroups v2 + Most useful controllers (supported via systemd) + My blogs - https://www.redhat.com/en/authors/marc-richter + RHEL 8 docs - https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/managing_monitoring_and_updating_the_kernel/setting-limits-for-applications_managing-monitoring-and-updating-the-kernel + Kernel docs + Comics! https://wizardzines.com/comics/cgroups/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 116 Announcements * Patreon Update + Z-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The-Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532
Matt, Mark, and Arinomi!
Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Chat * Nate has been sucked into valheim, deep + I googled this and was very let down when I saw NO HAMMERS… sigh [XenoPhage] + But managed to get older last week + And watch the King of the Hammers race! + Hand-me-down computer fail.
Made the mistake of downloading Destiny 2 on the PS5
Jason
News * https://access.redhat.com/security/cve/CVE-2021-44142 * https://www.theverge.com/2022/2/10/22927472/klobuchar-lummis-algorithm-bill-section-230-misinformation-teenager-mental-health * https://kotaku.com/google-stadia-streaming-failing-shutdown-report-stream-1848487185 * https://www.justice.gov/opa/pr/two-arrested-alleged-conspiracy-launder-45-billion-stolen-cryptocurrency + BONUS CONTENT! + RAZZLEKHAN - https://razzlekhan.com/ + https://www.engadget.com/razzlekhan-rap-cryptocurrency-012307238.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 115 Main Topic * How has sysadminning changed + System Operator + System Administrator + BOFH references galore + The ability to automate builds made it easier to build faster + But systems were still mostly manually configured + Now systems were not bound to hardware in the traditional sense + VM Sprawl
- Meant larger fleets to manage+ Templating and cloning makes standing up new machines even faster/simpler
+ Pets vs Cattle
+ Disposable systems
+ Containerization
+ Infrastructure as code!
+ On-demand functions like lambda
+ Any predictions on what Sysadmin will look like in 10 more years? Or even 5?!
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 115b Announcements * Patreon Update + Z-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The-Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532
Chat * [Jason] + Had a “water event” dont buy a house from a plummer. :P
News * https://news.microsoft.com/2022/01/18/microsoft-to-acquire-activision-blizzard-to-bring-the-joy-and-community-of-gaming-to-everyone-across-every-device/ * https://news.ycombinator.com/item?id=30055222 * https://www.theverge.com/2022/1/27/22904908/apple-ios-15-4-beta-1-developer-face-id-mask * https://www.inc.com/jason-aten/google-just-gave-you-best-reason-yet-to-finally-quit-using-chrome.html * https://moxie.org/2022/01/07/web3-first-impressions.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 114 Main Topic * 2021 year in #nerdlife? + Framework laptops + Chip shortage & supply chain issues. Plus stupid scalpers - Crypto has totally jumped the shark and become Mary Kay for bros + - I can haz PS5? - I can haz new XBox? - I can haz video card? + The Occulus Quest 2 took Christmas. + - $300 entry into VR + Log4j sucks + - Large orgs running on undersourced Open Source projects continues to be something we just don’t deal with + Windows 11 + iPhone 13 + Pixel 6 + Zuck wants to rule the virtual world + Movies + - Matrix, with old Neo - Dune finally is good - And we get a decent Ghostbusters as well - Encanto (surprisingly good!) + TV - Season 6, Final season + - Boba (black sheep) Fett - Bad Batch - Expanse - Lots of Marvel goodness on Disney+ * + Hardware + Software + Phones + Culture
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 114 Announcements * Patreon Update * + Z-Thor + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The-Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532
Chat [unclemarc]
[nate]
News * https://www.cnn.com/2021/12/26/us/habitat-for-humanity-first-3d-home-trnd/index.html * https://www.techradar.com/news/sonos-wins-patent-lawsuit-against-google-heres-what-it-means-for-you * https://www.theverge.com/2022/1/9/22874949/developer-corrupts-open-source-libraries-projects-affected * https://www.techradar.com/news/norton-antivirus-under-fire-again-over-crypto-mining-feature
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 113 Main Topic * Virtual worlds, and metaverses + First let’s talk about VR + Now, what is a “Metaverse”? - Principles of the web - The next evolution of the web - What we’re being sold… + Meta, Facebook, and their metaverse - https://about.fb.com/news/2021/09/building-the-metaverse-responsibly/ - Horizon Worlds - accessible on quest only now * Not sure if that will expand, data currently is vague + Other virtual worlds calling themselves Metaverses - The Sandbox * https://thesandbox-game.com/ - Decentraland * https://decentraland.org/ + Other things that are metaverse adjacent - Second Life - VRChat - Roblox - Minecraft - Others? + Open Metaverse Foundation - https://github.com/openmetaversefoundation + Wrap-up
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 113 Announcements * Patreon Update * + Z(ed)-Thor + fferauu + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin
Reviews * Nothing New
Chat [unclemarc]
[gangrif]
News * http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-43527 * https://cve.mitre.org/cgi-bin/cvename.cgi?name=2021-44228
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 112a Main Topic * Holiday Hack with Ed! + Did the pandemic hurt? Help? Any noticeable difference? + It’s open! + Anything new in how the challenge is hosted? + What can new players expect? + Who should play? + - Is there some level of experience required to get started? * + Who’s Ed, for folks who dont know. + And Who’s Jared? + What is the holiday hack? + How did last year’s challenge go? + This year’s challenge
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 112 Announcements * Patreon Update * + Z(ed)-Thor + fferauu + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + The Mentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin
Reviews Nothing New
Chat * [Nate] - Christmas time! Lots going on. Not a ton in the way of projects + Vr chat is a scary but interesting place (Furries?) + https://www.undrground.org/2021/12/04/virtual-reality-online-worlds-and-metaverses/ * + Jeep is driveable again (spent a month otherwise) + Working on printable stuff for gifts + VR continues to be fun * [Friz] - What day is it? * + Ordered an ESP32 from Tindie, gonna try this automation thing? Sort of? + Also ordered a Pinecil.. It's been all over the world at this point and is in Illinois now for some odd reason.
News * https://www.theverge.com/2021/12/7/22822332/amazon-server-aws-down-disney-plus-ring-outage * https://www.theverge.com/2021/12/9/22825139/meta-horizon-worlds-access-open-metaverse * https://www.msn.com/en-us/money/other/google-says-bug-with-teams-and-android-can-cause-911-calls-to-fail/ar-AAREVFK
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 111 - Elevens Main Topic * Ghosts of Linux past + https://www.maketecheasier.com/history-of-linux-distros/ * + https://www.redhat.com/en/blog/download-original-red-hat-linux-09-halloween-release + History of distros * Linux From Scratch * + https://www.linuxfromscratch.org * Linux Daily Driver Challenge * + https://youtu.be/0506yDSgU7M
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 111b Announcements * Patreon Update * + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin * BSides Delaware is happening NOW
Reviews * Nothing New
Chat * unclemarc + Goals: Rise of the Resistance, build a BB droid, Universal on Thursday, moar selfies with princesses * + The new Animal Crossing update and DLC are here! + Going on vacation this Sunday to Disney * Nate + Valve index “knuckles” controllers * + New vr controllers + Working my way through the Dresden files.. Again. + Learning to airbrush acrylic paint… for the creepy doll.
News * https://boingboing.net/2021/11/09/an-apple-1-computer-hand-built-by-jobs-and-wozniak-sells-for-400000.html * https://www.vice.com/en/article/g5qbq4/robinhood-says-it-was-hacked-and-extorted-but-nobody-lost-any-money * https://www.theverge.com/2021/11/11/22774301/patreon-jack-conte-video-player-podcast-youtube-launch
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 110 Main Topic * Participating in program betas * + You are a customer of a thing, that thing has a beta, should you participate? * What might you get out of it? * What should YOU bring to the table? * Sub topic: Early Access as a thing for games * Open Source World: Some things never come formally out of beta. At what point do we just shrug and say “yeah, it’s prod” * + https://www.computerworld.com/article/2583883/open-source--even-beta-is-better.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 110 Announcements * Patreon Update * + fferauu + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + 32Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin
Chat * [gangrif] * + Building RPI based computers for the kids + Hello Fresh * [unclemarc] + https://www.xmodulo.com/access-ssh-terminal-web-browser-linux.html + Need to fuss with firewall rules for jump box and my internal network + https://www.legendarymage.com/whispering-egg-larval-core-in-no-mans-sky-nms-2021-guide/ * + Playing with setting up a hosted CTF playground + We need to farm whispering eggs.
News * https://www.theverge.com/2021/10/28/22751036/microsoft-windows-11-download-available-more-pcs-install * https://www.npr.org/2021/10/28/1049813246/facebook-new-name-meta-mark-zuckerberg * https://www.nytimes.com/2021/10/27/technology/internet-age-check-proof.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 109 Announcements * Patreon Update + fferauu + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LiNuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 + Iron Sysadmin tier gets a tee-shirt! * + Patrons + Patreon Merch! * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin * BSides DE - Nov 12/13! Registration is open! * + Registration - https://www.eventbrite.com/e/security-bsides-delaware-2021-registration-164012370415 + CFP - http://bit.ly/BDECFP21 * Defcon 610 Hacker Pubcrawl * + https://crawl.defcon610.org
Reviews * Nothing New
Chat * [Nate] + Projects - https://specialstl.com/product/witchblade-sara-pezzini-fanart/ - https://www.malix3design.com/2017/10/sailor-moon-3d-model-for-3d-printing.html - https://www.thingiverse.com/thing:3184441 - https://www.thingiverse.com/thing:4768077 + - Witchblade Model - Sailor Moon! - Ball Jointed Doll Re-Do - Cat Armor + Finishing… - https://amzn.to/3DJqopk + - Body Putty * + VR! No Mans Sky and Beat Saber + More 3d printing + Music to work by: https://www.youtube.com/watch?v=o33l32ZrIy8 * [unclemarc] * + Playing NMS with Nate + Excited about DC610 CTF + Doing glow in the dark 3D printing
News * The face is back in front of the senate: https://techcrunch.com/2021/09/30/facebook-grilled-in-senate-hearing-over-teen-mental-health/ + https://www.zdnet.com/article/for-two-hours-a-large-chunk-of-european-mobile-traffic-was-rerouted-through-china/ + The bgp thing with china Nate was trying to remember: * View Source is a crime? + https://arstechnica.com/tech-policy/2021/10/missouri-gov-calls-journalist-who-found-security-flaw-a-hacker-threatens-to-sue/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 109 Main Topic * Guests: * + Jaimie + Chris (@sogonsec) * Basics * + What is a CTF? * Do I need to be a l33t haxt0r to participate in one? * What can I learn from participating in a CTF? * Where can I find year-round CTF’s? + https://www.hackthebox.eu/ + https://www.holidayhackchallenge.com + https://tryhackme.com + https://www.vulnhub.com * + Hack The Box + Holiday Hack Challenge + Try Hack Me + Vuln hub + Security Conferences * Bomb Lab * + http://csapp.cs.cmu.edu/3e/labs.html + Specifically the “bomb lab” bullet. The primary link needs a user/pass, but there’s a download there for the package itself that isn’t locked. + There’s some other neat stuff there too.. * Learning resources + https://overthewire.org/wargames + https://overthewire.org/wargames/bandit + https://www.youtube.com/channel/UCa6eh7gCkpPo5XXUDfygQQA + Website to search for stuff that links to portions of his existing videos https://ippsec.rocks/?# * + OWASP top 10 + Ippsec
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 108a Main Topic * What’s a Xenophage? * + How much geekery was there before you were getting paid for it? + - Heathkit Hero 2000 http://www.theoldrobots.com/hero2k.html - Epic Megagames https://www.dosgamesarchive.com/profile/epic-megagames/ - https://en.wikipedia.org/wiki/Security_Administrator_Tool_for_Analyzing_Networks + Career + - https://en.wikipedia.org/wiki/SCO%E2%80%93Linux_disputes - https://en.wikipedia.org/wiki/Asynchronous_Transfer_Mode - https://en.wikipedia.org/wiki/FORE_Systems
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 108b Announcements * Patreon Update * + name_pending197 + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Support the Iron Sysadmin Podcast AND try out Riverside.fm by using this link: https://riverside.fm/?utm_campaign=campaign_1&utm_medium=affiliate&utm_source=rewardful&via=ironsysadmin * Bsides DE! Reg is open, CFP is open * + November 12 and 13th 2021 + https://www.bsidesdelaware.com
Reviews * Nothing New
Chat * [nate] * + Some 3d printing stuff + - PEI problems + Home Assistant stuff + - Trying to delve deeper into true automation + Myst in VR + - Cyan.com * [jason] * + Sony sucks
News * https://www.livescience.com/strange-radio-source-milky-way-center * + https://talkpython.fm/ ep 257 * https://appleinsider.com/articles/21/09/08/after-chiding-apple-on-privacy-germany-says-it-uses-pegasus-spyware * https://www.theguardian.com/us-news/2021/sep/08/revealed-los-angeles-police-officers-gathering-social-media * + https://gimletmedia.com/shows/reply-all/76h967/127-the-crime-machine-part-i * https://www.prnewswire.com/news-releases/founder-of-centos-and-rocky-linux--gregory-kurtzer--disrupts-legacy-software-and-support-business-model-with-worldwide-ciq-debut-301371929.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 107b Announcements * Patreon Update * + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * BSidesDE Nov 12-13 - REGISTRATION AND CFP ARE OPEN! (Eventbrite for details)
Reviews Nothing New
Chat * [nate] + This means re-architecting pretty much everything i self host at home. + https://www.synology.com/en-us/products/DS920+ * + Finally got a nas * [jscar] * + Making a 3d printed mechanical keyboard + https://www.thingiverse.com/thing:2822140 + https://www.thingiverse.com/thing:3478494 + https://www.thingiverse.com/thing:3372910 + https://www.thingiverse.com/thing:2704567 * [unclemarc] + https://community.octoprint.org/t/octoprint-randomly-loses-connection-to-the-printer-with-a-serialexception/228 + Fatherlinux’s fault: https://crunchtools.com/moving-linux-services-to-containers/ * + Octoprint configured on new Pi. Had some issues that I needed work out + Home Assistant now running on a VM, so time to fuss with that + I am now obligated to containerize the Valheim server. Have not started yet
News * https://www.fda.gov/news-events/press-announcements/fda-approves-first-covid-19-vaccine * + https://www.foxbusiness.com/healthcare/moderna-request-full-fda-approval-covid-vaccine + https://www.reddit.com/r/HermanCainAward/ + https://www.reddit.com/r/nursing/comments/pbvcdu/uhh_are_any_of_these_unvaccinated_patients_in/ * https://www.businessinsider.com/onlyfans-reverses-ban-sexually-explicit-content-2021-8 * + https://www.youtube.com/watch?v=CtUuab1Aqg0 * Need to get root on a Windows box? Plug in a Razer gaming mouse https://www.tomshardware.com/news/steelseries-admin-vulnerability * + https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/security_hardening/protecting-systems-against-intrusive-usb-devices_security-hardening * https://www.humblebundle.com/books/unix-linux-books * https://www.forbes.com/sites/barrycollins/2021/08/25/samsung-phone-owners-warned-save-your-photos-now/?sh=2a44a729686e * PC prices still going up https://wccftech.com/tsmc-raises-7nm-5nm-chip-prices-by-up-to-10-believe-reports/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 107a Main Topic * Defcon with Jscar & Skyria * + Hybrid this year 9K on site ( Pre-Covid it’s around 30k) + What is DEFCON? + What is there to do at DEFCON? + - Talks/Presentations - Villages - Contests - Networking - Badges - Stickers/challenge coins
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 106 Main Topic * Side Work/Jobs * + You have a skill, why not use it to make some extra money? + - Single-tasks - Part-time jobs - Self-owned business + Is it ethical? + - Does it matter what my Employer thinks about it? + Things to consider + - Extra stress - Taxes - Is it worth it? + Where can I find work? + - Upwork - Fiverr - * Dungeon Master: https://www.fiverr.com/lelanglacier/be-your-dungeon-master-for-dnd-5e-games?context_referrer=search_gigs&source=top-bar&ref_ctx_id=b53a8c16da8b992dc5a72ec64b486a16&pckg_id=1&pos=6&context_type=auto&funnel=79afc87e69a82d671c6a7e95876e2f61
Announcements * Patreon Update * + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing New.
Chat * Nate * + Re-discovering a love for making electronics + - WLED ALL THE THINGS!!! - * https://www.thingiverse.com/thing:4831115 - Hexlamp * https://www.thingiverse.com/thing:4671788 - ESP8266 case for WLED projects * https://www.thingiverse.com/thing:3401758 - Minecraft Ore lamp - Outdoor Temperature sensor as well (esp2866 based, with a case) + Finally have VR setup. * Unclemarc * + Abby in Korea - we’re groupwatching stuff on Disney+ + - And I had to set up a VPN for her - * Did I mention that last time? (i dont think you did) * + Yeah, confusing this with GCS-Connect + Bloodborne on PS4 - very hard, pretty dang fun so far + Son is running an MTG tourney on Monday with the Crew. I might be able to play + - Sank money into the new D&D themed set already. I’m silly
News * https://www.cnn.com/2021/08/11/tech/accenture-ransomware/index.html * + https://it.slashdot.org/story/21/08/12/1929243/accenture-downplays-ransomware-attack-as-lockbit-gang-leaks-corporate-data * https://www.tomshardware.com/news/microsoft-windows-365-price-availability * https://www.digitaltrends.com/mobile/pixel-fold-will-finally-make-pixel-phones-exciting/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 105 Main Topic * Josh with papercut * + Who is Josh? + - Josh's blog about AR and VR and the future: - * https://www.papercut.com/blog/vr-and-ar-the-paperless-office-of-the-future/ + Tell us about PaperCut, who is PaperCut? + - What does PaperCut sell? + And the Papercut application + - What is it? - Why would I run it? - What platforms does it run on? - Does papercut do anything to improve printer security? - Does it have any cool integrations? - PaperCut - * NG - https://www.papercut.com/products/ng/#commercial * MF (The Samuel L. Jackson edition) https://www.papercut.com/products/mf/ * Pocket - https://www.papercut.com/products/papercut-pocket/ * Hive - https://www.papercut.com/products/papercut-hive/ * Mobility Print - https://www.papercut.com/products/free-software/mobility-print/
Announcements * Patreon Update * + Jérémy + Arinomi + Andrew + Tatro + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Nothing New
Chat [unclemarc]
[nate]
News * https://isc.sans.edu/diary/rss/27660 * https://www.techradar.com/news/microsoft-edge-is-finally-killing-off-one-of-the-worst-things-about-being-online * https://www.tomshardware.com/news/microsoft-released-cbl-mariner-linux-distro * https://nextcloud.com/blog/nextcloud-talk-introduces-voice-messages-location-sharing-outlook-integration-and-more/ * https://www.techspot.com/news/90459-disable-windows-print-spooler-or-you-could-hacked.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 104 Main Topic * The ballad of Unclemarc * + Marc’s actual first computer + - https://www.youtube.com/watch?v=5WiRc1ZLk38 + Apple II Marc’s first _actual_ computer + Rutgers graduate + Nordock: + - http://www.nordock.net/forums/ - https://www.linuxjournal.com/article/7138 + Tribute to my Uncle: https://www.facebook.com/notes/10159545238714252/
Announcements * Patreon Update $108/ month * + Arinomi + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Nothing new
Chat [nate]
[unclemarc]
[Jason]
News * https://www.cnn.com/2021/06/23/tech/john-mcafee-death/index.html * + https://en.wikipedia.org/wiki/John_McAfee * https://arstechnica.com/gadgets/2021/06/centos-replacement-distro-rocky-linuxs-first-general-release-is-out/ * https://www.yahoo.com/entertainment/windows-11-feature-already-making-211519913.html * https://twitter.com/TheHackersNews/status/1407279043355955203?s=09 * + https://thehackernews.com/2021/06/wormable-darkradiation-ransomware.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 103 Main Topic * Getting into IT series: Nate * + What is Nate’s story, How did he get into computers? + How did that lead into IT? + What path has his career taken? * Links * + https://en.wikipedia.org/wiki/Texas_Instruments_TI-99/4A + https://en.wikipedia.org/wiki/Hunt_the_Wumpus + https://en.wikipedia.org/wiki/TRS-80_Color_Computer + https://en.wikipedia.org/wiki/Bulletin_board_system + https://en.wikipedia.org/wiki/The_Major_BBS + https://www.themajorbbs.com/phoenix/ + https://en.wikipedia.org/wiki/Doom_(1993_video_game) + https://en.wikipedia.org/wiki/Windows_NT_3.51 + https://en.wikipedia.org/wiki/OS/2 + https://en.wikipedia.org/wiki/Red_Hat_Linux + https://www.icq.com/ It’s kinda russian now... + https://en.wikipedia.org/wiki/ICQ + https://www.enlightenment.org/ + https://en.wikipedia.org/wiki/AfterStep + http://www.afterstep.org/ + https://en.wikipedia.org/wiki/NetWare
Announcements * Patreon Update 21 Patrons, $108/mo * + Arinomi + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Chat Nate and Marc diverge into Everquest, and a few other games.
[unclemarc]
[Nate]
News * https://www.theverge.com/2021/6/9/22526266/facebook-smartwatch-two-cameras-heart-rate-monitor * https://www.theregister.com/2021/05/26/freenode_irc_takeover/ * https://in.pcmag.com/security/143104/meat-supplier-jbs-pays-ransomware-hackers-11-million-despite-having-backups * https://www.nytimes.com/live/2021/06/07/us/biden-news-today * + Crypto rap battle: https://www.youtube.com/watch?v=JaMJi1_1tkA
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode #102 Main Topic Rich Bowen - CentOS Community Manager
Announcements * Patreon Update - 21 patrons at $104/mo * + Arinomi + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing New
Chat [unclemarc]
[nate]
News * https://www.theverge.com/2021/5/25/22452620/google-fuchsia-os-nest-hub-smart-display-update-operating-system-linux-kernal * https://hackaday.com/2021/05/19/psa-amazon-sidewalk-rolls-out-june-8th/ * https://www.fail2ban.org/wiki/index.php/Main_Page
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 101! Main Topic * Ransomware * + https://abcnews.go.com/US/cyberattack-shuts-us-pipeline-supplies-45-fuel-east/story?id=77573904 + https://www.msn.com/en-us/news/us/largest-us-pipeline-to-restart-operations-after-hack-shut-it-down-for-nearly-a-week/ar-BB1gErfB + https://www.reddit.com/r/hacking/comments/naxgl8/coloninan_pipeline_is_only_the_beginning * How can you help prevent it? * What can you do once you’ve been hit?
Announcements * Patreon Update - 21 patrons at $104/mo * + Arinomi + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing New
Chat * Weird science. * Nate’s got a shoe box of body parts
News * https://finance.yahoo.com/news/google-hit-123m-antitrust-fine-101816811.html * https://www.ctvnews.ca/world/wework-ceo-in-hotseat-for-suggesting-the-least-engaged-employees-love-remote-work-1.5426444 * https://www.zdnet.com/article/codecov-breach-impacted-hundreds-of-customer-networks/ * + https://therecord.media/security-firm-rapid7-says-codecov-hackers-accessed-some-of-its-source-code/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 100 Main Topic * Self Hosting with Alex * + https://selfhosted.show/ * Related ISA shows: * + Throw Away Culture: https://www.ironsysadmin.com/2021/03/11/episode-97-throw-away-culture/ + Home Automation: https://www.ironsysadmin.com/2021/01/29/episode-95-home-automation/ + Self Hosting?: https://www.ironsysadmin.com/2021/01/15/episode-94-self-hosting/
Announcements * Patreon Update * + Nicholas + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing new
Chat * Why is lumber so expensive? * + Because people are building a bunch of things because they weren’t during the pandemic. * Gangrif - * + Attempting to print a a ball jointed doll from thingiverse + Building another jeep bumper…. Its an addiction. * unclemarc * + Still 3D printing like a fiend
News * https://www.bloomberg.com/news/articles/2021-04-26/how-apple-google-are-killing-the-advertising-cookie-quicktake * https://www.irishtimes.com/business/technology/internet-security-saviour-daniel-kaminsky-dies-at-42-1.4548919 * + The 2008 DNS Cache poisoning discovery: https://duo.com/blog/the-great-dns-vulnerability-of-2008-by-dan-kaminsky
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 99 Main Topic * Automated Mitigation * https://docs.aws.amazon.com/wellarchitected/latest/reliability-pillar/design-your-workload-to-withstand-component-failures.html
Announcements * Patreon Update: 21 patrons, $95/month * + Nicholas + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor + Jon + Marc + Julius + Andi + J + Charles + 22532 * Folks are falling into the new Tiers, Thank you! * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Upcoming guest : Alex from the Self Hosted Podcast.
Reviews * Charles on Apple Podcasts - I enjoy listening to you all. Please keep it up. 🍻 * Apparently, there’s a group of Red Hatters that listen to us semi-regularly. Which is nice.
Chat * [Nate] - More 3d printer tinkering. Switched to PETG, got a PEI build plate. It’s magical. * [unclemarc] My 3D printer is back! Some re-engineering happened by Monoprice. * [Charles] I read Shattered Sword, an English-language account of the Battle of Midway that draws heavily on Japanese archival sources.
News * https://arstechnica.com/tech-policy/2021/04/how-the-supreme-court-saved-the-software-industry-from-api-copyrights/ * https://www.zdnet.com/article/sco-linux-fud-returns-from-the-dead/ * https://www.zdnet.com/article/cloudlinux-launches-almalinux-centos-linux-clone/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 98 Main Topic * Compliance with Quadling! * + Random list of topics + - Audit vs. assessment - What is evidence and why does it matter? - Data centricity - Asset inventory - Change Management - Config Mgmt - Infrastructure as code - What’s coming down the pike? - * New standards? * + CMMC + Interim Order * Terrifying news from overseas * + PSD2 + CPRA + - California is domestic? + Sounds like security????? + - Why does it sound like security???
Announcements * Patreon Update, 21 Patrons, $89/month * + Nicholas + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing new
Chat * [Gangrif] I bought a thing.. A big thing. * [unclemarc] * + Lab server is alive! + Stevens & Red Hat talk was a success! + - https://youtu.be/CC2Rvif_gWg * [Jason] * + Joysticks + And then we sidetracked about letting magic smoke out of heating controllers.
News * https://www.zdnet.com/article/return-of-stallman-to-fsf-sparks-outrage-among-open-source-and-free-software-leaders/ * + https://www.redhat.com/en/blog/red-hat-statement-about-richard-stallmans-return-free-software-foundation-board
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 97 Main Topic * Throw away culture
Announcements * Patreon Update * + Andrew + Tatro + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Chat [unclemarc]
[xenophage]
[nate]
News * https://krebsonsecurity.com/2021/03/at-least-30000-u-s-organizations-newly-hacked-via-holes-in-microsofts-email-software/ * https://www.kotaku.com.au/2021/03/major-data-centre-fire-takes-rust-servers-chess-network-offline/ * https://techcrunch.com/2021/03/11/google-pay-paves-way-to-tap-pay-users-data-in-india * https://www.techrepublic.com/article/a-new-linux-foundation-open-source-signing-tool-could-make-secure-software-supply-chains-universal/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 96 Main Topic * Consuming open source projects… * + https://eggman28.itch.io/hot-air-balloons + https://www.hestiapi.com + https://github.com/facebookarchive/fbctf + https://yggdrasil-network.github.io/ + https://www.linux-laptop.net/index.html + http://linuxhowtos.org/Home/ + https://tldp.org/index.html
Announcements * Patreon Update $86/month * + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Patreon Post : Topic Suggestions * + https://www.patreon.com/posts/47547213 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Switching to Discord… https://discord.gg/3fA57n6b
Reviews * Nothing new
Chat * [Nate] * + hacking a “smart” doorbell + - It’s talking to china... + Ordered parts for an open source thermostat! * [unclemarc] * + Streaming on Twitch now. Right now, focusing on Flight Simulator 2020 + - https://www.twitch.tv/richterm * [jscar] * + I built one! And had to build a cable + - https://pikvm.org/
News * https://www.baynews9.com/fl/tampa/news/2021/02/08/pinellas-sheriff--hacker-changed-chemical-levels-at-city-s-water-treatment-plant * https://arstechnica.com/gadgets/2021/02/zuckerberg-responds-to-apples-privacy-policies-we-need-to-inflict-pain/ * https://blog.lastpass.com/2021/02/changes-to-lastpass-free/ * There was a video on youtube where law enforcement is playing copyrighted music to control live streaming
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/3fA57n6b
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 95 Main Topic Home Automation with Avri
Announcements * Patreon Update $86/month + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Switching to Discord… https://discord.gg/wmxvQ4c2H6
Reviews * Nothing new
Chat * [unclemarc] + Valve Index makes FS2020 stellar + Emulating my childhood and teen years with the Pi 4 * [Nate] + Not much really + Got my chair + Got a new arm for my mic + https://gaming.kinesis-ergo.com/edge/ * [Xenophage] + Retro gaming cabinet + New mic Blue Yeti Nano - * [Avri] + Pi based kvm project - Pikvm.org - diy ip kvm
News * https://go.theregister.com/feed/www.theregister.com/2021/01/26/killing_centos/ + Brian Exelbierd, Community Business Owner, RHEL Product Management - Senior Principle Product Marketing Manager at Red Hat + Converting small deployments to rhel was not the goal + RHEL is actually now free for up to 16 servers - No this does not cover all use cases, of course + More free offerings are likely coming * https://www.redhat.com/en/blog/new-year-new-red-hat-enterprise-linux-programs-easier-ways-access-rhel * https://9to5google.com/2021/01/27/android-12-working-on-in-depth-theming-system-that-can-even-recolor-apps/ * https://www.zdnet.com/article/10-years-old-sudo-bug-lets-linux-users-gain-root-level-access/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Discord Community: https://discord.gg/wmxvQ4c2H6
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 94 Main Topic * Does it still make sense to self-host?
Announcements * Patreon Update $86/month * + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews * Nothing new
Chat [Jason]
[Nate]
[unclemarc]
News * https://www.nytimes.com/2021/01/10/technology/parler-app-trump-free-speech.html * https://www.engadget.com/parler-sues-aws-193232908.html * + https://twitter.com/sarahmei/status/1349212897830785024 * https://www.reuters.com/article/uk-tech-bernerslee-interview/father-of-the-web-tim-berners-lee-prepares-do-over-idUSKBN29H1JG * https://www.engadget.com/lenovo-think-reality-a3-smart-glasses-140022294.html * https://arstechnica.com/information-technology/2021/01/jared-mauch-didnt-have-good-broadband-so-he-built-his-own-fiber-isp/ * https://www.elastic.co/blog/licensing-change * + https://anonymoushash.vmbrasseur.com/2021/01/14/elasticsearch-and-kibana-are-now-business-risks
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 93 Main Topic Geeky christmas list
Announcements * Patreon Update 19 patrons, $86/month * + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Scheduling for December * + No second show for December * Dementor will be on again, in January, 1/14, to talk about home automation stuffs.
Reviews Nothing New
Chat * Nate * + Started some blogs about my de-googling + Heroforge! Kinda cool. + Starting to build a little makerspace at home + https://holidayhackchallenge.com/2020/ * Unclemarc * + Big nerdy thing has been an effort for Troop 76’s first fully virtual Game Day + - https://boardgamearena.com/
News * https://www.zdnet.com/article/red-hat-resets-centos-linux-and-users-are-angry/ * https://www.theregister.com/2020/12/10/rocky_linux/ * https://arstechnica.com/tech-policy/2020/12/florida-posted-the-password-to-a-key-disaster-system-on-its-website/ * https://www.eurogamer.net/articles/2020-12-11-perfect-dark-reboot-announced
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 92 Main Topic * Interview with Ed Skoudis! * + Who is Ed? + What is holiday hack (for those that are new to this) + How many participants did you get last year? + What sort of new theme can we expect this year? + You guys developed an entire web game engine for this.. How'd that go? + What kind of infrastructure do you have the event running on this year? * Want to be a Kringleconcierge? Contact: info@counterhack.com * Register for KringleCon: https://holidayhackchallenge.com
Announcements * Patreon Update, 20 patrons for $87/month * + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Nothing New
Chat [nate]
[unclemarc]
“News” (not really) * Parler… * + https://en.wikipedia.org/wiki/Parler + Was originally intended to be pronounced as “Parlay”. + It feels sort of like “old” twitter. Or even ‘old’ facebook + - No filtering, little moderation - Timeline is chronological instead of curated - Simple UI, not cluttered with ads - No fact checking + Pros + - Doesn’t appear to use a tracking cookie (though i could be wrong) + Cons + - Well… It’s a bit of an echo chamber at the moment + Critical Mass + We get a little passionate...
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 91 Announcements * Patreon Update, 20 patrons for $87/month * + rootisgod + Bruce + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * BSides DE is 11/13-11/14! Nate's presenting Friday at 4:30, and Jason is on Saturday!
Reviews * Nothing new
Main Topic * We’re MST3King Episode 1! * Release date: 11/8/2016 + No live stream + No mixer + No sound board * + We were recording on Tuesday’s then + Jason’s audio sounded robotic. :P + I tried looking for notable events on 11/8/2016, but all i found was news about this real estate mogul with funny hair. * Episode 1’s show notes: * + Intros + Who the heck are we, and why are we doing a podcast? + Why the name “Iron Sysadmin”? + What can people expect here? + News? + https://www.redhat.com/en/about/press-releases/red-hat-achieves-common-criteria-security-certification-red-hat-enterprise-linux-7 + http://www.bizjournals.com/sanjose/news/2016/11/02/facebook-rattles-cisco-s-cage-with-new-open.html + https://thehackernews.com/2016/11/mysql-zero-day-exploits.html + https://threatpost.com/hack-crashes-linux-distros-with-48-characters-of-code/121052/ + http://fortune.com/2016/10/31/amazon-cloud-migration/ + Main Topic: + Moving to the cloud, good or bad, what are the risks?
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 90 Main Topic * What can you learn from participating in a CTF? * + What the heck is a ctf? + Why would an OPS person care? * Where can I participate in a CTF? * + Check out the sans holiday hack! + - https://holidayhackchallenge.com + DC610 Pubcrawl (if you’re in the area) + Hack The Box + - https://www.hackthebox.eu/
Announcements * Patreon Update $84/month * + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Reviews Nothing New
Chat * [nate] * + Nate is angry at google again + - https://privacytools.io/operating-systems/#mobile_os (alternate OS’s) - https://www.home-assistant.io/ * [unclemarc] * + Successfully voted by mail + cgroups lab is ready for tomorrow! Wish me luck
News * https://www.wgrz.com/article/news/nation-world/peanuts-apple-tv-exclusive-rights-great-pumpking-charlie-brown/507-7b820281-8db6-484f-b63f-d744f08bb9aa * + https://en.wikipedia.org/wiki/Linus_and_Lucy * https://thetaiwantimes.com/japan-covid-vaccine-program-hit-by-chinese-cyberattacks/6303 * https://www.sciencealert.com/nasa-s-osiris-rex-spacecraft-just-successfully-landed-on-an-asteroid * https://www.washingtonpost.com/technology/2020/10/20/proud-boys-emails-florida/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 89 Main Topic * Vendors, and how to deal with them * + Also, support from your vendors
Announcements * Patreon Update * + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * + We’ve sold some more shirts! W00t! + ISAOCT2020 (good until 10/23)
Reviews * Apparently foreign reviews are foreign to Itunes.. * + Ratingscatcher.com * From Tooper_ish back in July (5-stars): * + These admins Rock! + Charles, Nate and their co-hosts really rock the news and events in the systems world. With a nice leaning towards open source/‘nix but updates in general tech goings on are abound… * From sabertooth604 from August of 2019 (5 stars): * + Useful info and entertaining + I listen to Iron Sysadmin on regular basis. This podcast contains useful relevant information covering a plethora of subjects. Nate, Jason, Dustin and the others definitely deliver an entertaining view on information technology. :-) thanks and keep up the good work!! (From Canada)
Chat * [nate] * + My flipping debit card was compromised again! + - Trying out privacy.com - Bluetana? https://ucsdnews.ucsd.edu/pressrelease/bluetana * [charles] * + More model railroading + Made bread! + Football is back!
News * https://arstechnica.com/tech-policy/2020/10/google-asks-supreme-court-to-overrule-disastrous-ruling-on-api-copyrights * + https://www.cnn.com/2020/10/07/tech/google-oracle-arguments/index.html + https://arstechnica.com/tech-policy/2020/10/googles-supreme-court-faceoff-with-oracle-was-a-disaster-for-google/ + - https://www.supremecourt.gov/oral_arguments/argument_transcripts/2020/18-956_kifl.pdf * https://www.msn.com/en-us/money/news/ibm-jumps-13percent-after-it-reveals-plan-to-spin-off-legacy-business-to-focus-on-cloud-unit/ar-BB19Pd2Q * https://techcrunch.com/2020/10/06/googles-new-logos-are-bad/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 88 YouTube Link: https://youtu.be/B0xDg5WJazY
Main Topic * How much does your job identify you, and is that a bad thing? * + “Do what you love and you’ll never work a day in your life” - how true is that statement, for real?
Announcements * Patreon Update * + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * BSides DE UNconference - November 13-14
Reviews * Not a review exactly, but cool: * + https://www.whatsupgold.com/blog/top-9-sysadmin-podcasts * @rugaripov on Twitter: * + I like uncle Mark. I like his jokes. I like very much when he's singing. We're all different, so even if someone get annoyed by you, I still like you, uncle Mark! :-P Thanks for a great show, guys!
Chat [unclemarc]
[gangrif]
[xenophage]
News * https://www.forbes.com/sites/daveywinder/2020/09/24/microsoft-confirms-critical-windows-server-perfect-10-zerologon-attacks-have-started/#75bcbc84869e * + Zerologon attack + CVE-2020-1472 + https://support.microsoft.com/en-us/help/4557222/how-to-manage-the-changes-in-netlogon-secure-channel-connections-assoc * https://techcrunch.com/2020/09/23/google-maps-gets-a-covid-19-layer * https://www.ksat.com/news/politics/2020/09/23/doj-nearing-antitrust-action-on-google-trump-eyes-tech-curb/ * https://www.fiercewireless.com/5g/verizon-and-aws-bring-mobile-edge-compute-to-3-more-cities * https://9to5mac.com/2020/09/23/microsoft-hints-that-youll-soon-be-able-to-stream-xbox-games-to-iphone/ * https://www.npr.org/2020/09/20/914032065/tiktok-ban-averted-trump-gives-oracle-walmart-deal-his-blessing * https://www.bbc.com/news/technology-54285692
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 87 Main Topic * RHCE Remote Exam + I found this practice exam immensely useful + - https://www.lisenet.com/2019/ansible-sample-exam-for-ex407/ * + Remote Exams? + Preparing your workspace + Exam day + The actual exam
Announcements * Patreon Update * + Robert + Matt + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * Rodecaster Pro * More info on live@Manning Rust Conf: http://mng.bz/8G1w * More info on live@Manning Women in Tech Conf: http://mng.bz/EElO
Reviews * Used to love it - DeathByHubris (2-stars, booo) (Sorry Marc…) * + uncle mark just annoys me way too much to keep listening. brought the show from 4 or 5 stars to 2, and frankly just not worth listening. his constant interruptions to inject unfunny jokes, repetition lines, and very loud periodic yelling, have ruined a once enjoyable listen. unsubscribing and removing from recommend list * Sucking me in!! - frame:45 (5-stars) * + I’ve had this podcast on my phone for a while but just lately started diving in. Really liking the tech info and the personal interaction back and forth. Personalities make me feel like I’m listening to friends that I’ve never met in person. Thanks for the show guys. Love the interviews, really enjoy hearing how people got into tech!! * Fun to hear from like minded folk - iamtehMichael (5-stars) * + It’s been a fun show so far to listen to. Thanks for making these!
Chat * [unclemarc] I like reading books, so I finally bought a Kindle Fire. I share my thoughts after 24 hours or so * [gangrif] passed my RHCE, but you know that by now * [gangrif] dad and I built an awesome double-sided desk for the kids to do their home-schooling from. * [xenophage] grumble 3D Printing * [xenophage] Still working on barcade
News * https://techcrunch.com/2020/09/07/scratch-ban-in-china/ * https://www.techradar.com/news/chinese-chipmaker-smic-could-face-us-blacklist * https://www.techradar.com/news/ps5-pre-orders-how-to-be-the-first-in-line-when-orders-go-live * https://www.silicon.co.uk/cloud/cloud-management/aws-lambasts-president-trump-347570 * https://www.zdnet.com/article/microsoft-were-ending-support-for-adobe-flash-heres-how/ * https://blog.google/products/android/android-11/amp/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 86 https://youtu.be/AfqNlL4vkhI
Main Topic * Defcon with jscar, BiaSciLab and HEAV * + Have you ever gone to DEFCON? + What have you heard about DEFCON?
https://www.defcon.org/html/defcon-safemode/dc-safemode-index.html
DEFCON Discord
Presentations
A Few Talks from Co-Workers
Contests
Announcements * Patreon Update * + New Patrons + - Robert - Matt - David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532 * Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin * More info on live@Manning Rust Conf: http://mng.bz/8G1w * More info on live@Manning Women in Tech Conf: http://mng.bz/EElO
Reviews Chat * [nate] RHCE8 exam on Monday… Using the following practice exam. * + https://www.lisenet.com/2019/ansible-sample-exam-for-ex407/ * [unclemarc] * + The boy goes to Stevens this Saturday. Also, he handed in his Eagle Application today + Youngest daughter & chemistry & AWS + - https://en.wikipedia.org/wiki/GROMACS + In a “solo/co-op” boardgame mood lately + - https://boardgamegeek.com/boardgame/182340/star-trek-frontiers - * https://photos.app.goo.gl/sNph2TF9F9SU2km77 - https://boardgamegeek.com/boardgame/96848/mage-knight-board-game + I’m now a dirty dirty hippy using Brave * [jscar] * + How to use a Raspberry Pi as a Network Sensor - Bill Stearns + https://www.youtube.com/watch?v=vja_H59fh1I + https://activecountermeasures.com/raspberry_pi_sensor/ * [HEAV] * + SecureOpenVote.com + @secureopenvote +
News * If Privacy Dies in VR, It Dies in Real Life * + https://www.eff.org/deeplinks/2020/08/if-privacy-dies-vr-it-dies-real-life * The Sounds a Key Make Can Produce 3D-Printed Replica * + https://threatpost.com/the-sounds-a-key-make-can-produce-3d-printed-replica/158457/ * https://www.computerworld.com/article/3572404/zooms-outage-causes-chaos-especially-for-educators-teachers.html * https://www.cnet.com/news/mozilla-firefox-daylight-browser-for-android-is-out-here-are-5-reasons-to-try-it/ * https://www.theverge.com/21401280/android-101-location-tracking-history-stop-how-to * https://www.privacytools.io/ * + https://www.privacytools.io/operating-systems/#mobile_os * https://inteltechniques.com/ * Andyomail says thanks for the entertainment tonight from Element
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
OR
https://twitch.tv/IronSysadminPodcast
Matrix Community: https://matrix.to/#/+ironsysadmin:trixie.undrground.org
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 85 Youtube URL: https://youtu.be/yGJBdSUHUvo
Twitch URL: https://www.twitch.tv/ironsysadminpodcast
Main Topic * Moving from docker-compose to podman * + https://www.undrground.org/2020/07/01/moving-from-docker-compose-to-podman-pods/ + Why am I bothering? + - Podman is the new docker - * Why the holy hell do I care about docker? + Why is this a problem? + - Podman-compose isnt ready + Why was this complicated? + - Because it wasnt obvious - Because i needed a specific sub-set of the kube definitions - Because i dont know kube definitions to start with + Podman pods + Podman play + How did i get from pods, to kube config?
Announcements * Patreon Update * + David + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532
Reviews Chat Someone bought a shirt! And a sticker!
[nate]
[unclemarc]
News * Z0mg the twittahz * + https://krebsonsecurity.com/2020/07/whos-behind-wednesdays-epic-twitter-hack/ + https://securityboulevard.com/2020/07/biggest-twitter-breach-accounts-of-us-high-profiles-hacked-in-bitcoin-scam/ * Bill Gates and microchips and vaccines * + https://www.geekwire.com/2020/serious-mistakes-made-highlights-bill-gates-cbs-interview-return-school-vaccine-conspiracies/ * https://www.nytimes.com/2020/07/23/technology/google-ecommerce-amazon.html * https://finance.yahoo.com/news/ibms-red-hat-acquisition-begins-194100285.html
Get your Iron Sysadmin Merch at Teespring! https://teespring.com/stores/ironsysadmin
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Now on Twitch! https://www.twitch.tv/ironsysadminpodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 84 YouTube Link: https://youtu.be/gbyZ-zT2XgU
Main Topic Interview with Chris Wright!
Announcements * Patreon Update: $72/month + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + Mark + DeMentor PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532
Reviews * Nothing new
Chat * [unclemarc] + The miraculous resurrection of my lab’s performance + New cgroups blog in marketing and legal review...cpusets in cgroup v2 yo! + Back in Everquest because I’m a crazy person - Progress Quest - http://progressquest.com/
[nate]
The jeep is fixed! Finally!
Switched to podman
[friz]
News * https://www.cbronline.com/news/aws-user-data * https://www.forbes.com/sites/johnkoetsier/2020/07/07/googles-internet-balloons-use-ai-to-deliver-web-voice-video-from-12-miles-high/#39172b781a2a * https://www.cnn.com/2020/07/06/tech/whatsapp-facebook-hong-kong/index.html * https://blocksandfiles.com/2020/07/07/amazon-adds-on-premises-rds-database-support-to-aws-outposts/ * https://techcrunch.com/2020/07/09/docker-partners-with-aws-to-improve-container-workflows/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 83 Main Topic * Interview with Chuck Gehman @charlesgehman * + He’s got this book + - https://www.manning.com/books/aws-cloudformation-in-action - Let’s talk about the contents of the book - It’s not done, let’s talk about MEAP - * AManning Early Adopter Program - Scheduled for completion “early 2021” - We’ve got a discount code! Podironsys20 - We also have Preview codes, good for 2 months of access + Perforce - version control + - http://www.perforce.com + Infrastructure as Code + - Let’s talk about what that is exactly - What sort of tools are usually leveraged here - And what about Cloud Formation? + Automation Pipeline.
Announcements * Patreon Update * + S0l3mn + Erwin + Trooper_Ish + LinuXsys666 + gimpyb + Ryan + tuxpreacher + Mark + DeMentor at PowerShellOnLinux.com + Jon + Marc + Julius + Andi + J + Charles + 22532
Reviews Chat * [unclemarc] It’s the Steam Summer Sale, so I’ll probably buy some more games I won’t play. I did buy a HOTAS, which makes Elite Dangerous much more fun...and playing in VR is sick! Also, Deep Rock Galactic gets 5 out of 5 drunken violent dwarves in space. It’s a must buy if you like coop shooters. Or drunken space dwarves. * Charles fell off his bike… * Nate’s jeep is still broken.
News * https://9to5mac.com/2020/06/24/former-intel-engineer-says-skylake-problems-were-turning-point-for-apples-arm-mac-transition/ * + https://en.wikipedia.org/wiki/Mac_transition_to_Intel_processors * https://www.wcjb.com/2020/06/23/google-introduces-fact-checking-to-image-search/ * https://www.microsoft.com/security/blog/2020/06/23/microsoft-continues-to-extend-security-for-all-with-mobile-protection-for-android/ * https://analyticsindiamag.com/what-is-aws-snowcone/ * https://www.zdnet.com/article/arm-and-linux-take-supercomputer-top500-crown/ * https://www.cnn.com/2020/06/23/tech/ios-14-features-apple-android/index.html i should have dropped this from the news.
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 82 Main Topic The Face
Responses:
Announcements * Patreon Update * + 22532 + Andi + Captain SOG + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason + Jon + Julius + LinuXsys666 + Marc + Mark + Ryan
Reviews * Ruslan from Twitter * + Thanks for great episode, guys! Especially for that post where f... Google blaming C & C++. Yep, those "engineers" are stupid! Hope in future you'll discuss software development topics more. ;-)
Chat * Nate’s training RHCE * + Aaaaaasible * Jason bought a 3d printer * https://www.amazon.com/gp/product/B003C1S0RO/ref=ppx_yo_dt_b_asin_title_o02_s00?ie=UTF8&psc=1 * The "Clayton Oosterhouse Story": https://youtu.be/DefoMBmI3ic?t=3830
News * https://blog.playstation.com/2020/06/08/updated-time-this-thursday-see-the-future-of-gaming-on-ps5/ * https://www.computerworld.com/article/3561592/android-pro-subscription.html * https://www.howtogeek.com/677100/how-to-turn-off-covid-19-exposure-tracking-and-notifications-on-android/ * https://9to5mac.com/2020/05/19/how-to-turn-on-off-covid-19-contact-tracing-iphone-ios/ * https://incyberdefense.com/business/during-covid-19-remote-workers-must-maintain-cyber-security/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode # Main Topic Contact Tracing with Greg
Announcements * Patreon Update * + Andi + J + Mark + Julius + sogwtf + Marc + Charles + LinuXsys666 + Ryan + gimpyb + Jason + Jon + 22532 + DeMentor
Reviews * Nothing new
Chat * “In these trying times….” - Marc is visiting Disneyworld - using VR and Minecraft * + HTC Vive VR headset + https://mcparks.us/ + http://www.vivecraft.org/ * Nate is fighting with Jeeps
News * https://www.darkreading.com/cloud/cloud-security-architect-proves-hardest-infosec-role-to-fill/d/d-id/1337925 * https://www.theverge.com/2020/5/27/21271186/google-rcs-t-mobile-encryption-ccmi-universal-profile * https://www.theverge.com/2020/5/27/21272625/arizona-ag-sues-google-location-tracking-android-allegations * https://www.theverge.com/2020/5/28/21272543/google-search-results-page-experience-load-time-contentfu-paint-layout-shift-top-stories-amp * https://www.forbes.com/sites/gordonkelly/2020/05/26/google-chrome-critical-security-vulnerability-warning-firefox-update-chrome-browser/#74d202b94977 * https://arstechnica.com/tech-policy/2020/05/5g-conspiracy-theorists-sell-350-usb-stick-to-fight-electric-fog/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 80 Main Topic * Being social in social isolation. * + Private Gaming Servers + - Minecraft - Ark & Atlas + text/voice chat systems + - Discord - matrix + Video chat systems + Other “social” games + - Jackbox - Roll20 - * https://www.bloomberg.com/news/features/2019-07-08/how-to-be-a-professional-dungeons-dragons-master-hosting-games
Announcements * Patreon Update * + Andi + J + Mark + Julius + sogwtf + Marc + Charles + LinuXsys666 + Ryan + gimpyb + Jason + Jon + 22532 + DeMentor
Reviews * Nothing new
Chat * Nate got a cool new monitor, and a desk arm to hold both displays, and it’s changed his life. * Marc’s son Josh is building the Minty Pi. He screwed up one ribbon cable already + https://www.youtube.com/watch?v=YqE2x-0JYzs * Charles is Biking, and losing weight.
News * https://www.reuters.com/article/us-zoom-video-commn-acquisition-idUSKBN22J22T * https://www.pcmag.com/how-to/heres-how-contact-tracing-will-work-on-iphones-and-android-phones * https://www.forbes.com/sites/daveywinder/2020/05/12/revealed-4000-android-apps-expose-millions-of-passwords-phone-numbers-and-messages/#706d8706438d * https://www.theverge.com/2020/5/12/21252200/google-stadia-cross-play-games-lonely-venue * https://www.extremetech.com/gaming/310589-the-epic-game-store-is-collapsing-under-the-weight-of-free-gta
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 79 Main Topic * Charles talks capacity planning and amid COVID-19 and an on-prem to AWS migration.
Announcements * Patreon Update * + 22532 + Andi + Captain SOG + Charles + DeMentor at PowerShellOnLinux.com + gimpyb + J + Jason + Jon + Julius + LinuXsys666 + Marc + Mark + Ryan
Reviews * Nothing new here
Chat * Charles is documenting his time outdoors during the lockdown: https://galleries.goodbyeplease.com/album/Albums-2020-Social-distance.html * Marc smokes meat * + https://photos.app.goo.gl/1beacPVxcURcEvyo6
News * https://www.snopes.com/fact-check/microsoft-own-patent-666/ * + Actual patent #666: https://pdfpiw.uspto.gov/.piw?Docid=00000666&homeurl=http%3A%2F%2Fpatft.uspto.gov%2Fnetacgi%2Fnph-Parser%3FSect1%3DPTO1%2526Sect2%3DHITOFF%2526d%3DPALL%2526p%3D1%2526u%3D%25252Fnetahtml%25252FPTO%25252Fsrchnum.htm%2526r%3D1%2526f%3DG%2526l%3D50%2526s1%3D0000666.PN.%2526OS%3DPN%2F0000666%2526RS%3DPN%2F0000666&PageNum=&Rtype=&SectionNum=&idkey=NONE&Input=View+first+page (it’s a door latch) * https://www.fool.com/investing/2020/04/21/next-big-opportunity-tech-microsoft-lead.aspx * https://www.techradar.com/news/fortnite-for-android-is-finally-on-the-play-store-after-epic-games-yields-to-google * https://www.nbcnews.com/tech/security/logins-who-gates-foundation-employees-circulate-fringes-internet-n1189636 * https://arstechnica.com/gadgets/2020/04/caveat-emptor-smr-disks-are-being-submarined-into-unexpected-channels/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 78 Main Topic * Abraham Snell talks about ansible, automation, and the human element. * + https://www.ansible.com/minimizing-business-unit-conflict-with-patch-automation * @abrsnell on the twitters
Announcements * Patreon Update * + 22532 + Andi + Captain SOG + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason + Jon + Julius + Marc + Mark + Ryan * Google Play Podcasts Update
Reviews ATF-FAN , 03/27/2020
Enjoy it Enjoy the show! Only suggestion is to blend the volume a bit.. Jason always seems way quieter so I boost the volume while he talks and then hurt my ears when he’s done.
Chat * https://www.redhat.com/sysadmin/network-packet-captures
News * https://www.zdnet.com/article/why-not-the-best-red-hat-vet-paul-cormier-takes-over-as-ceo/ * https://www.theverge.com/2020/4/9/21214314/microsoft-teams-usage-coronavirus-pandemic-work-habit-change * https://threatpost.com/fbi-threatens-zoom-bombing-trolls-with-jail-time/154495/ * https://arstechnica.com/gadgets/2020/04/google-makes-seamless-update-support-mandatory-in-android-11/ * https://www.businessinsider.com/no-new-emoji-iphone-android-in-2021-2020-4 * https://www.theverge.com/2020/4/9/21215135/google-android-braille-keyboard-talkback-more-accessible
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 77 YouTube Link: https://youtu.be/Us-NrQhSO-o
Main Topic Uh…
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason B + Jon + Julius + Marc + Mark + Ryan * Red Hat Summit Update * + Summit Virtual Event Reg now open + - https://www.redhat.com/summit * EVERYTHING IS CANCELLED OR DELAYED! * WOPR Summit Streaming * + Saturday, roughly 8pm + https://www.twitch.tv/woprsummit
Reviews Sad about accuweather: Great show!
One of my two favorites! Love the format and color commentary :). Keep up the great work!
News * https://thenextweb.com/security/2020/03/24/android-malware-found-farming-ads-for-cash-in-kids-apps-on-googles-play-store/ * https://thenextweb.com/world/2020/03/25/pornhub-is-making-its-service-free-worldwide-to-cure-your-lockdown-blues/ * https://www.zdnet.com/article/trickbot-now-pushes-android-app-for-bypassing-2fa-on-banking-accounts/ * https://www.express.co.uk/life-style/science-technology/1259187/Android-11-Google-delay-operating-system-reveal-rumour * https://www.theverge.com/2020/3/25/21192325/google-podcasts-update-design-android-ios-recommendations * https://www.theverge.com/2020/3/25/21193639/huawei-mate-30-google-apps-services-appgallery-p40-preview * https://www.gmtoday.com/business/technology/google-website-can-help-you-get-tested-for-coronavirus-so/article_b1bc4166-6dd6-11ea-82b3-6795d01dbd8c.html * https://gcn.com/articles/2020/03/24/cloud-vendors-covid-research.aspx * https://www.forbes.com/sites/daveywinder/2020/03/25/microsoft-just-confirmed-unprecedented-changes-to-windows-10-for-1-billion-users/#4def39e8324c * https://www.zdnet.com/article/google-to-phase-out-user-agent-strings-in-chrome/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 76 YouTube Link: https://youtu.be/Dpj5y0GQUuU
Main Topic * Disaster Response, Forced work from home. * + WidgetCo Inc. + - 400 employees - * Most employees are on-site workers * + Mix of Desktops and Laptops + - 160 (40%) Laptops, the rest are desktops - Those 160 take their laptops home - For the rest? - * Vdi as a service? * Take your desktops home? * Use your home computer? * Sales team - already solved. * + Already mobile so they can do their jobs + These workers have laptops * Overworked IT People: let them figure it out. * + Nate + Jason - On-Prem datacenter - * Hosting local-access sales/marketing application * “Sensitive” files * Telephone PBX, Not VoIP * + Forward your desk phone to your cell or elsewhere. * Small VPN appliance, meant for allowing on-the-road sales team access to on-prem data * + Stand up an openvpn access server?] + Expand licensing for vpn appliance. - Cloud hosted - * Email * Docs * Calendar * Web presence + Scenario: + - There’s a global pandemic that the media has grossly blown out of proportion. Senior management has asked that IT find a way to enable All staff to work remotely. + Internet Traffic + - https://www.capacitymedia.com/articles/3825088/de-cix-records-9tbps-at-frankfurt-internet-exchange - https://www.intelligentcio.com/africa/2020/03/05/africas-largest-internet-exchange-point-ixp-napafrica-reaches-traffic-milestone/
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason B + Jon + Julius + Marc + Mark + Ryan * Red Hat Summit has been converted to an online event, and it’s free! * + If you had tickets, you can get a refund, or convert your tickets to a 2021 conference pass * WOPRSummit postponed until September 18-20 * + More info here : https://woprsummit.org + Tickets purchased before June will get a special SAO WOPR pin!
Reviews TCP over carrier pidgin ★★★★☆ in Apple Podcasts by Welsh1lad from United Kingdom on February 28, 2020
The show continues to improve , even more so since the host has joined red hat and we are now getting more hosts on the show than before. Sysadmin is a good place to listen to real world news and issues that are brought up in the news slot. The two hosts bounce off each other pretty well and seem very clued up on the subjects that they bring up. It’s a good show. Keep up good work
Trooper_Ish 1 week ago
Oh man, I missed it, and it had all the guests! Great show guys!
Chat Jason finished his bar top gaming system. We talked about Mame.
Nate’s building a bumper for his jeep.
News * https://lifehacker.com/uninstall-these-vpn-and-ad-blocking-apps-that-spied-on-1842274746 * https://www.forbes.com/sites/gordonkelly/2020/03/12/apple-ios-14-leak-2020-iphone-upgrades-new-iphone-11-pro-max-update/#3f37fdb84686 * https://itsfoss.com/gnome-3-36-release/ * https://9to5google.com/2020/03/11/google-android-tv-fire-tv-block/ * https://www.sdxcentral.com/articles/news/aws-bottlerocket-launches-into-container-os-space/2020/03/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 75 Main Topic YouTube URL: https://youtu.be/TP569JrjS4E
Andi and Marc from the Red Hat Accelerators * Introductions * + Who are Andi and Marc? + - What is their quest? - * What is Andi’s favorite color? * + Blue? NO RED! * What are the Red Hat Accelerators? * Why did you form the Accelerators? * What sorts of things have the Accelerators done? * What does a customer get out of all this? * What does Red Hat get out of it?
URLs of note:
Accelerator Info (and application) https://access.redhat.com/accelerators OR https://red.ht/RedHatAcceleratorApp
If my (Andi’s) blog is brought up: MisadventuresWithAndi.com
Andi on Twitter @andi_fisher
Red Hat Accelerators on Twitter #RedHatAccelerator
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason + Jon + Julius + Marc + Mark + Ryan * Red Hat Summit is coming. https://summit.redhat.com * + April 27th - 29th 2020 * War Operation Plan Response Its some kinda conference. * + March 27-29 + BE THERE! * DC610!
Reviews * Nothing New… #sadpanda * What’s a review?
Chat * Jason is building his bar top arcade cabinet
News * https://www.npr.org/2020/02/23/808645524/daredevil-mad-mike-hughes-killed-in-crash-of-homemade-rocket * https://www.cnn.com/2020/02/25/business/jif-gif-peanut-butter-trnd/index.html * https://www.forbes.com/sites/kateoflahertyuk/2020/02/26/clearview-ai-the-company-whose-database-has-amassed-3-billion-photos-hacked/#44a557f57606 * https://www.techrepublic.com/article/android-11-the-six-best-features/ * + Oh god, the chat heads * https://www.datacenterknowledge.com/manage/dropbox-s-reverse-migration-cloud-own-data-centers-five-years * https://www.businessinsider.com/microsoft-10-million-theft-bitcoin-gift-cards-house-tesla-verdict-2020-2
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 74 Youtube Link: https://youtu.be/vMsBqXntIZM
Main Topic * Automation * + https://www.informationsecuritybuzz.com/study-research/security-professionals-anticipate-automation-will-reduce-it-security-headcount-but-not-replace-human-expertise/ + - https://www.domaintools.com/content/2019-ponemon-report-staffing-it-age-automation.pdf + 40% believe automation reduces human error + 50% believe automation will make jobs more complex + 54% think automation will never replace human intuition and hands-on experience + 74% say that automation is not capable of certain tasks done by IT security staff * https://en.wikipedia.org/wiki/Knight_Capital_Group
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor PowerShellOnLinux.com + gimpyb + J + Jason B + Jon + Julius + Marc + Mark + Ryan * WOPR Summit - March 27-29 - Holiday Inn Express, Fort Washington, PA. * + www.woprsummit.org
Reviews * From Patron, Mark * + love you guys! I've only been listening for a few months and have been catching up on some of your older episodes. While we're so different in so many ways, I've noticed some similarities in our education & career background and love the way you guys bring a level-headed view to the news and net/sysadmin stuffs. The guests for the last few episodes have been fantastic too - in particular, BHIS with the Backdoors & Breaches and kringlecon have given me enough to fill up my spare time learning new techniques and software! Keep doing what you do!
Chat * Xeno is building retro gaming * Charles is doing train things with digital signals * Nate is building an armored bumper
News * https://arstechnica.com/information-technology/2020/02/the-iowa-caucuses-were-a-comedy-of-tech-errors-and-poor-planning/ * https://www.bleepingcomputer.com/news/security/dell-supportassist-bug-exposes-business-home-pcs-to-attacks/ * https://arstechnica.com/tech-policy/2020/02/amazon-wins-court-injunction-on-controversial-jedi-contract/ * https://towardsdatascience.com/who-is-winning-google-amazon-facebook-or-apple-45728660473 * https://www.theverge.com/2020/2/11/21132822/microsoft-windows-10x-emulator-dual-screen-os-testing-apps-compatibility-features * https://www.nytimes.com/2020/01/30/technology/ginni-rometty-ibm-ceo.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our Patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 73 Main Topic Self hosting, vs cloud hosting, vs colo hosting
Announcements * Patreon Update * + Patrons: + - 22532 - Andi - Charles - DeMentor - J - Jon - Julius - Marc + Monthly Take: $48.12 * Shmoocon, NEXT WEEKEND! * WOPRSummit - March 27-29 * + Woprsummit.org * DC610 2/5/2020 * RHUG!
Reviews/feedback * Through DM, via Twitter: Thanks @de_mentor for being a positive spokesman for this Open Source Community on ironsysadmin.com. You expressed a love for all things open source while at the same time encouraging PowerShell on Linux. I really appreciate your attitude and your positive voice * From Youtube user Mark K.: Great episode! Interesting stuff about Powershell and hass.io is awesome!
Chat * https://www.redhat.com/sysadmin/evolution-linux-sysadmin * + Red hat 5 craziness stream
News * https://www.zdnet.com/article/red-hat-enterprise-linux-8-2-beta-arrives/ * + RHEL 6 EOL in November * https://fedoramagazine.org/fedora-coreos-out-of-preview/ * https://seekingalpha.com/article/4318281-ibm-turnaround-is * + https://www.fool.com/investing/2020/01/23/ibm-returns-to-growth-thanks-to-red-hat-and-mainfr.aspx * https://www.bbc.com/news/health-51182451 * https://www.theverge.com/2020/1/22/21076773/jeff-bezos-amazon-hack-investigation-saudi-arabia-mbs-spyware-nso * + https://thehill.com/policy/technology/479332-un-calls-for-probe-into-alleged-hack-of-bezoss-phone-by-saudi-arabia * https://www.theverge.com/tech/2020/1/23/21077846/microsoft-software-sdk-duo-android-phone-pragmatism * https://thehill.com/policy/cybersecurity/479426-250-million-microsoft-customer-service-records-briefly-exposed-online * https://finance.yahoo.com/news/proofpoint-state-phish-report-stresses-130510959.html * https://www.vice.com/en_us/article/4agx4m/ignoring-security-experts-washington-state-eyes-voting-by-smartphone * + https://www.ted.com/talks/anna_piperal_what_a_digital_government_looks_like
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 72 Main Topic Powershell on linux
Announcements * Patreon Update * + The usual patrons. * WOPR Summit March 27-29 * + Holiday Inn Express, Fort Washington, PA + https://www.woprsummit.org/
Reviews * We have not received an iTunes review in over a year… We are teh sad. * Mark said in slack: (Im paraphrasing) Great show, and dont sweat the streaming. Or and he couldnt leave a review on spotify.. Which is where he listens.
Chat News * https://www.theguardian.com/australia-news/2020/jan/07/instagram-model-australia-fires-naked-philanthropist-kaylen-ward-raises-700000-selling-posing-nude-photos-selfies * + https://twitter.com/lilearthangelk/status/1213284066755317761 * https://voicebot.ai/2020/01/03/google-assistant-blocks-xiaomi-cameras-after-nest-hub-begins-showing-random-peoples-homes/ * + https://securityboulevard.com/2020/01/xiaomi-iot-cameras-leak-private-stills-via-google-home-hub/ * https://www.novinite.com/articles/202524/Microsoft+to+End+Windows+7+Support * https://www.forbes.com/sites/davidthier/2020/01/05/microsoft-and-xbox-are-holding-the-golden-key-to-the-future-of-gaming/#1604f7665b5a * https://arstechnica.com/information-technology/2020/01/unpatched-vpn-makes-travelex-latest-victim-of-revil-ransomware/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 71 Main Topic * Ed Skoudis! Holiday Hack! * https://www.holidayhackchallenge.com
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor + J + Jon + Julius + Unclemarc * DC610 - 1/8/2020 * + Moar ATM Shenanigans! * WOPR Summit - March 27-29 in Philadelphia * + https://www.woprsummit.org/
Reviews * No new reviews
Chat * Nate: * + Stadia is Neat.
News * https://thehackernews.com/2019/12/linux-vpn-hacking.html * + https://seclists.org/oss-sec/2019/q4/122 * https://www.forbes.com/sites/zakdoffman/2019/12/08/new-apple-security-update-could-scrap-your-old-macbook-heres-what-you-do/#7b7493d521d1 * https://ww.9to5google.com/2019/12/08/fortnite-android-google-play-store/ * https://onezero.medium.com/architects-are-playing-with-the-future-of-design-in-video-games-1352a2d3ae3f
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 70 Main Topic * Backdoors & Breaches! With BHIS! * + Jason Blanchard, Content Community Director - BHIS @banjocrashland + www.backdoorsandbreaches.com + https://www.blackhillsinfosec.com/
Announcements * Patreon Update * + 22532 + Andi + Charles + DeMentor + J + Jon + Julius + unclemarc
Reviews * Couldn’t get them because apple is dumb.
Chat News * Youtube-kidpocalypse (COPPA) https://www.youtube.com/watch?v=-JzXiSkoFKw * + This seems to be backlash from all of the youtube kids issues from last year. + Kids content is now being subjected to COPPA. Which means ads and other youtube features are going to be disabled for Kids content, + - Targeted ads - Ability to add content to playlists - No info-cards * https://www.cnbc.com/2019/11/13/google-reportedly-offering-checking-accounts-next-year.html * https://www.vanityfair.com/news/2019/11/google-project-nightingale-has-guzzled-up-millions-of-americans-healthcare-data * + Prior information about Google Health, interesting + - https://www.engadget.com/2019/11/03/google-health-doctor-search-plans/ * https://www.cnn.com/2019/11/12/business/just-100-list/index.html * https://www.dailymail.co.uk/sciencetech/article-7677873/Google-enlists-help-THREE-cyber-security-firms-scan-new-Android-apps-viruses.html * https://thehackernews.com/2019/11/network-security-sase.html * https://thehackernews.com/2019/11/hacking-voice-assistant-laser.html * https://thehackernews.com/2019/10/rcs-messaging-sms.html
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 69 Main Topic * Leaving a job * + Good standing + - Gotta love those going away parties + Not so good standing + - YOLO - @xenophage is good at this part! * Starting a job * + Feeling overwhelmed is normal… + Learning how to walk again + Office politics
Announcements * Patreon Update. $58
Patrons:
Julius
Andi
J
Marc
Charles
22532
DeMentor
Jon
Reviews Chat * Matt has died, long live Matt.
News * https://arstechnica.com/information-technology/2019/10/alexa-and-google-home-abused-to-eavesdrop-and-phish-passwords/ * https://www.forbes.com/lists/worlds-best-employers/#42623c201e0c * https://www.blackhillsinfosec.com/webcast-how-to-play-backdoors-breaches-incident-response-card-game/ * https://fossbytes.com/unix-co-founder-ken-thompsons-bsd-password-cracked/ * https://9to5google.com/2019/03/11/galaxy-s10-face-unlock-insecure/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 68 Main Topic When to job hop?
Announcements * Patreon Update $57/month * + julius + Andi + Marc + 22532 + DeMentor + Jon
Reviews No reviews! Dammit, people, get with the reviewing!
Chat * Nate’s busy starting a new job * Jason’s putting smart spying devices thermostats in his house * https://amzn.to/2lYe2aC
News * https://www.forbes.com/sites/marcochiappetta/2019/09/24/microsoft-hits-major-windows-10-milestone-but-theres-no-catching-ios-or-android/ * https://www.cnbc.com/2019/09/25/you-can-apply-for-a-job-at-mcdonalds-using-alexa-and-google-assistant.html * + https://twitter.com/backlon/status/1176891719746371584 * https://siliconangle.com/2019/09/25/red-hat-ansible-enables-enterprise-security-to-fight-fire-with-fire-ansiblefest/ * https://www.crn.com/news/cloud/aws-billing-error-overcharges-cloud-customers * https://arstechnica.com/information-technology/2019/09/no-it-wasnt-a-virus-it-was-chrome-that-stopped-macs-from-booting/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 67 Main Topic DERBYCO*N
Talks: http://www.irongeek.com/i.php?page=videos/derbycon9/mainlist
Opening Ceremony: http://www.irongeek.com/i.php?page=videos/derbycon9/1-00-opening-ceremony-derbycon-crew
Keyonte from Ed Skoudis: http://www.irongeek.com/i.php?page=videos/derbycon9/1-01-opening-keynote-presented-by-ed-skoudis-ed-skoudis
Panel with Mog and friends: http://www.irongeek.com/i.php?page=videos/derbycon9/1-02-derbycon-story-time-panel-dustin-heywood-evil-mog-and-others
Jayson streets talk http://www.irongeek.com/i.php?page=videos/derbycon9/2-01-i-pwn-thee-i-pwn-thee-not-jayson-e-street
Scientific computing for infosec: http://www.irongeek.com/i.php?page=videos/derbycon9/2-02-scientific-computing-for-information-security-forging-the-missing-link-ryan-elkins
Jason blanchard’s talk: http://www.irongeek.com/i.php?page=videos/derbycon9/2-15-how-to-give-the-gift-that-keeps-on-giving-your-knowledge-jason-blanchard
Integgroll's talk: http://www.irongeek.com/i.php?page=videos/derbycon9/stable-30-python-two-birds-with-one-stone-andy-cooper
Closing Ceremony: http://www.irongeek.com/i.php?page=videos/derbycon9/1-22-closing-ceremony-derbycon-crew
Announcements * Patreon Update $52/Month THANK YOU ALL! * + 22532 + Andi F + DeMentor + Jon S + Julius + Marc R * https://www.patreon.com/IronSysadmin
Reviews Useful info and entertaining ★★★★★ in Apple Podcasts by sabertooth604 from Canada on August 20, 2019
I listen to Iron Sysadmin on regular basis. This podcast contains useful relevant information covering a plethora of subjects. Nate, Jason, Dustin and the others definitely deliver an entertaining view on information technology. :-) thanks and keep up the good work!! (From Canada)
(https://app.mypodcastreviews.com/podcasts/personal_review?review_id=690696&token=a6e4846430eb169051c663172aa81e83)
News * https://techcrunch.com/2019/09/12/loot-boxes-in-games-are-gambling-and-should-be-banned-for-kids-say-uk-mps/ * https://www.cultofmac.com/649724/samsung-cancels-all-galaxy-fold-preorders-ahead-of-launch/ * https://www.wired.com/story/apple-u1-chip/ * https://metro.co.uk/2019/09/10/hardcore-doom-fans-can-now-drink-bone-vodka-straight-from-hell-10717360/
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 66 Guest host: Marc Richter (https://twitter.com/richtermarc)
News * https://www.itpro.co.uk/cloud/33999/ibm-doubles-down-on-red-hat-independence * https://www.cnn.com/2019/07/29/business/capital-one-data-breach/index.html * + https://www.creditkarma.com/id-theft/i/how-to-freeze-credit/ * https://www.dw.com/en/can-huaweis-harmonyos-rival-googles-android/a-49997254 * https://www.engadget.com/2019/08/13/microsofts-next-gen-xbox-will-prioritize-high-frame-rates-and-f/ * https://msrc-blog.microsoft.com/2019/08/13/patch-new-wormable-vulnerabilities-in-remote-desktop-services-cve-2019-1181-1182/
Announcements * Patreon Update * + 3 total patrons, 2 of which are hosts + $18/month
Reviews * No new reviews.
Chat * Marc recently did a redhat webinar on cgroups v2. And some bloggy stuff! * + https://www.redhat.com/en/blog/authors/marc-richter * https://www.redhat.com/sysadmin/geeking-outside-office
Main topic * Wizards and Peons * + How intimidation makes budding IT pros feel like lesser humans + How that affects the industry + How can we help?
Watch us live on the 2nd and 4th Thursday of every month (sort of)! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 65 News * https://www.cnet.com/news/galaxy-fold-samsung-will-relaunch-the-foldable-phone-in-september/ * https://www.zdnet.com/article/robinhood-admits-to-storing-some-passwords-in-cleartext/ * https://www.vice.com/en_us/article/mb88za/amazon-requires-police-to-shill-surveillance-cameras-in-secret-agreement * https://www.zdnet.com/article/ransomware-incident-leaves-some-johannesburg-residents-without-electricity/ * https://www.zdnet.com/article/us-company-selling-weaponized-bluekeep-exploit/
Announcements * #sysadminday 7/26! * Nate’s had some stuff published on Enable Sysadmin * + https://www.redhat.com/sysadmin/appreciating-your-sysadmin + https://www.redhat.com/sysadmin/virtual-machine-recovery + https://www.redhat.com/sysadmin/locking-down-sshd
Reviews * 10 Stars from evil mog!
Chat Main topic * Evil_Mog talks about Derbymud (and probably everything else that comes to mind) * Evil_Mog may drop some hints or show some maps for the game :P
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 64 News * https://www.zdnet.com/article/ibm-closes-34-billion-red-hat-acquisition-now-its-time-to-deliver/ * + https://www.bloomberg.com/news/videos/2019-07-09/ibm-ceo-says-red-hat-deal-is-about-the-hybrid-cloud-video + https://community.redhat.com/blog/2019/07/faq-for-communities/?sc_cid=701f2000000tyBjAAI * https://www.cnbc.com/2019/07/09/google-amazon-facebook-apple-to-appear-at-antitrust-house-hearing.html * https://www.cnn.com/2019/07/10/tech/android-apps-privacy-trnd/index.html * https://threatpost.com/pgp-ecosystem-targeted-in-poisoning-attacks/146240/ * https://www.engadget.com/2019/07/10/apple-mac-update-removes-zoom-exploit/
Announcements * DerbyCON - Finish Line - Sep 4-8 * BSidesDE - Will be ready to announce dates soon, stay tuned
Reviews Chat Main topic DNS
Watch us live on the 2nd and 4th Thursday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 63! News * https://www.vice.com/en_us/article/paj8z8/a-diy-internet-network-has-drastically-expanded-its-coverage-in-nyc * https://www.technologyreview.com/s/613891/the-pentagon-has-a-laser-that-can-identify-people-from-a-distanceby-their-heartbeat/ * https://gizmodo.com/nasa-is-officially-sending-an-aerial-drone-to-titan-and-1835918159 * https://www.vox.com/2019/6/27/18761639/ai-deepfake-deepnude-app-nude-women-porn
Announcements * https://twitter.com/ironsysadmin/status/1139281979537534976 * + 16% News coverage + 26% Sysadmin Stories + 32% Guests/Interviews + 26% Technical Deep Dives + 99% MOAR XENOPHAGE!!!
Chat * https://youtu.be/1BB6wj6RyKo
Main topic * https://www.undrground.org/2019/06/22/locking-down-sshd/ * Locking down SSH * + Knock ports + Ciphers + Keys + 2FA + no root login + password policy + disable password auth
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 62 Main topic * Jack Rhysider from Darknet Diaries * + Who is this guy + What does he do for a living + What is Darknet Diaries + How did he come up with the idea? + “Out On the wire” book (https://smile.amazon.com/Out-Wire-Storytelling-Secrets-Masters/dp/0385348436) + His blog! (https://www.tunnelsup.com/) + Oh yeah, DARKNET DIARIES! (https://darknetdiaries.com)
Announcements
Reviews No new reviews, give us a review!!
Chat * Jason is running the OSX Catalina beta.. Surprise (NOT!) * Jason uses downcast, and thinks his perfect podcast app doesn't exist * Nate uses overcast, and it’s good enough. * Dustin made fun of Jason’s horrible browser tab hygiene. * https://silverblue.fedoraproject.org/
News * https://www.washingtonpost.com/history/2019/06/06/he-asked-fbi-analyze-bigfoot-hair-years-ago-never-heard-back-until-now/ * https://www.i-programmer.info/news/86-browsers/12838-firefox-premium-coming-this-fall.html * + https://www.tomsguide.com/us/chrome-block-ad-blockers,news-30206.html * https://qz.com/work/1634380/schwartz-center-rounds-stops-burnout-in-doctors-could-it-help-others/ * https://www.techspot.com/article/1850-how-screwed-is-intel-no-hyper-threading/ * https://www.cnet.com/features/amazons-helping-police-build-a-surveillance-network-with-ring-doorbells/ * https://www.theatlantic.com/technology/archive/2019/06/travelers-images-stolen-attack-cbp/591403/ * https://www.washingtonpost.com/business/2019/05/28/laptop-with-some-worlds-most-destructive-malware-sold-million/
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 61
Main topic
News
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 60
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 59
News
Announcements
Reviews
Chat
Dustins meetup: https://tech570.org
Jasons blog series:
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode #58
News
Announcements
Reviews
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 57!
News
Announcements
Reviews
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 56!
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.youtube.com/IronSysadminPodcast
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 55!
News
Announcements
Reviews
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 54!
News
Announcements
Reviews
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 53
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode #52
AT&T has all the Gs, “Alexa, send my conversations to a random person”, debating screen time, being a woman online is hell, “goodbye twitter, hello fortnite”, and we talk 2018 in review, tonight on Iron Sysadmin, Episode 52!
News
Announcements
Shameless plugs:
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Main topic
Chat
News
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP50.mp3
Welcome to Episode 50
Announcements
Reviews
Worth the time
by Coolguy1067
Great podcast with a wide variety of IT topics. Thanks guys.
Great Show
by JerryKinh
I am a Network/Systems Admin in the mining industry. I really like the topics you cover and your insight on the IT world.
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don't forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/ISA-Episode49.mp3
Welcome to Episode 49
News
Announcements
Reviews
From Itunes:
by datafx
I’m not a sysadmin, but I really enjoy this podcast. If you’re in to technology and security, I highly recommend it.
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP48.mp3
Welcome to Episode 48 October 10th 2018
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-ep47.mp3
Welcome to Episode 47
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP47.mp3
Welcome to Episode 46
EU flips the copyright tables, I can hear your screen, fortnite AGAIN, Google sells tainted security keys?, O365 phishing, hack n’ fax, WE BROKE REDDIT!, and we talk LOGS, tonight on the Iron Sysadmin Podcast, episode 46!
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP45.mp3
Welcome to Episode 45!
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP44.mp3
Welcome to Episode 44
News
Announcements
Chat
Main topic
Watch us live on the 2nd and 4th Wednesday of every month! Subscribe and hit the bell! https://www.ironsysadmin.com/youtube
Slack workspace https://www.ironsysadmin.com/slack
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon! https://patreon.com/ironsysadmin
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP43.mp3
Welcome to Episode 43
News
Announcements
Chat
Main topic
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP42.mp3
Welcome to Episode #42 (Yes, really)
News
Announcements
Chat
Main topic
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP41.mp3
Welcome to Episode #41
News
Main topic
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/Ha
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP40.mp3
Welcome to Episode 40!
News
Announcements
Main topic
Watch us live every other Monday night! Subscribe and hit the bell!
Slack workspace
Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon!
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP39.mp3
Welcome to Episode 39
Sorry for the duplicate folks! Episode 39 somehow got published with Episode 37 attached to it! This is a re-release of 39, with the proper episode!
News
Announcements
Chat
Main topic
Watch us live every other Monday night! Subscribe and hit the bell!
Slack workspace
Find us on Twitter, and Facebook!
Subscribe where ever you find podcasts!
And don’t forget about our patreon!
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 39News https://www.bloomberg.com/news/articles/2018-05-20/new-sony-ceo-to-detail-shift-away-from-gadgets-in-mid-term-plan https://www.bleepingcomputer.com/news/technology/advocacy-groups-call-for-the-ftc-to-break-up-facebook/ https://www.scientificamerican.com/article/memory-transferred-between-snails-challenging-standard-theory-of-how-the-brain-remembers/ https://www.zdnet.com/article/teen-phone-monitoring-app-leaks-thousands-of-users-data/ https://www.techrepublic.com/article/linux-admins-dire-vulnerability-gives-attackers-root-access-in-rhel-centos-fedora/ https://access.redhat.com/security/vulnerabilities/3442151 https://arstechnica.com/science/2018/05/china-has-launched-a-communications-satellite-to-the-moon/ Announcements On June 6th the DC610 group is meeting for their monthly meetup. Chat http://atac2018.clamp-it.org/ To the cloud! Main topic WordPress with Charles! WordPress Security Plugins Compared How To Create A Full-Featured … Continue reading "Episode 39 – WordPress like a Pro!"
Welcome to Episode 38!
News
Announcements
Chat
Watch us live every other Monday night! Subscribe and hit the bell!
Slack workspace
Find us on Twitter, and Facebook!
Subscribe where ever you find podcasts!
And don’t forget about our patreon!
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP38.mp3
Welcome to Episode 37
News
Announcements
Chat
Main topic
Watch us live every other Monday night! Subscribe and hit the bell!
Slack workspace Find us on Twitter, and Facebook!
Subscribe wherever you find podcasts!
And don’t forget about our patreon!
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-ep37.mp3
Welcome to Episode 36
News
Announcements
Ready player one?
Patreon?
Chat
Feedback?
Main topic
Watch us live every other Monday night! Subscribe and hit the bell!
Slack workspace
Find us on Twitter, and Facebook!
Subscribe where ever you find podcasts!
And don’t forget about our patreon!
Intro and Outro music credit: Tri Tachyon, Digital MK 2
http://freemusicarchive.org/music/Tri-Tachyon/
http://s3.amazonaws.com/ironsysadmin/episodes/IronSysadmin-EP36.mp3
Welcome to Episode # 25 News https://qz.com/1097506/monday-is-the-worst-day-of-the-week-according-to-a-twitter-data-analysis/http://money.cnn.com/2017/10/03/technology/business/yahoo-breach-3-billion-accounts/index.htmlhttps://techcrunch.com/2017/10/06/aol-instant-messenger-shut-down/https://www.bleepingcomputer.com/news/software/office-depot-best-buy-pull-kaspersky-products-from-shelves/https://www.wired.com/story/google-closer-to-using-balloons-for-telecom-in-puerto-rico/https://thehackernews.com/2017/10/macos-high-sierra-apfs-password.html Announcements LVHackers – October 11BsideDE – November 10/11 Chat https://teespring.com/shop/trevorforget-september-2017#pid=369&cid=6513&sid=fronthttps://twitter.com/sehnaoui/status/916002547986550784w00tstout! Main topic: OpenStack with John Fulton• RDO is an RPM-based Distribution of OpenStack: https://www.rdoproject.org• TripleO is a project to install, upgrade, operate OpenStack: http://tripleo.org• Ceph is a unified, distributed storage system designed for excellent performance, reliability and scalability: … Continue reading "Episode 25 – Moar Openstack!"
Welcome to Episode 24 Newshttp://www.ibtimes.com/derbycon-hackers-hold-memorial-dead-cockroach-trevor-outside-louisville-kentucky-2593611https://access.redhat.com/security/vulnerabilities/3189592http://www.reuters.com/article/us-equifax-cyber/equifax-says-cyber-attack-may-have-hit-2-5-million-more-u-s-consumers-idUSKCN1C61Y4https://blogs.windows.com/windowsexperience/2017/10/02/microsoft-to-bring-spotify-to-groove-music-pass-customers/#wZ2it8JWPyqDbHVv.97https://futurism.com/tesla-is-shipping-hundreds-of-powerwall-batteries-to-puerto-rico/https://www.dailydot.com/parsec/mario-yoshi-punch-head/ AnnouncementsJoin our slack Team! BsidesDE, November 10-11, 2017 at DTCC (Delaware Technical Community College) – CFP IS OPEN, REGISTRATION IS OPEN, ALL THE THINGS ARE OPEN!http://bit.ly/BSidesDE ChatVegas Main topicDerbyCon! Where can you find us?https://www.ironsysadmin.comhttps://www.patreon.com/ironsysadminhttps://www.facebook.com/ironsysadminhttps://www.ironsysadmin.com/youtubehttps://www.twitter.com/ironsysadminApple PodcastsStitcher!Slack! Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 23 Newshttps://www.nytimes.com/2017/09/07/business/equifax-cyberattack.htmlhttps://www.nytimes.com/2017/09/08/your-money/identity-theft/equifaxs-instructions-are-confusing-heres-what-to-do-now.html?_r=0https://www.darkreading.com/attacks-breaches/equifax-gets-slammed-removes-forced-arbitration-clause-from-credit-monitoring-offer-/d/d-id/1329847?_mc=rss_x_drr_edt_aud_dr_x_x-rss-simplehttp://www.kalzumeus.com/2017/09/09/identity-theft-credit-reports/http://fortune.com/2017/09/09/hurricane-irma-florida-google/https://www.inquisitr.com/4479047/nintendo-updates-super-marios-cv-hes-not-a-plumber-anymore/http://trickybell.com/ever-thought-why-c-is-default-drive-on-your-pclaptop-not-a-or-b-heres-the-secret/https://motherboard.vice.com/en_us/article/xwwexa/windows-10s-built-in-linux-shell-could-be-abused-to-hide-malware-researchers-sayhttps://www.theregister.co.uk/2017/09/11/everybody_without_android_oreo_vulnerable_to_overlay_attack/ Announcements Derbycon!BsidesDE – Nov 10/11 @ Delaware Technical Community College – bit.ly/BSidesDE ChatNetflix and Disney, are we getting what we asked for? Main topic import topicimport antigravity ← Seriously.. Try it.Import emojis ? ← FIRED Where can you find us?https://www.ironsysadmin.comhttps://www.patreon.com/ironsysadminhttps://www.facebook.com/ironsysadminhttps://www.ironsysadmin.com/youtubehttps://www.twitter.com/ironsysadminApple PodcastsStitcher! Intro and Outro music credit: Tri Tachyon, Digital … Continue reading "Episode 23 – Beginner Python"
Welcome to Episode 22 Newshttps://thenewstack.io/red-hat-patches-flaws-linux-kernel-openstack-networkinghttps://www.theverge.com/2017/8/21/16177916/malicious-replacement-touch-screens-control-smart-phonehttps://www.theverge.com/circuitbreaker/2017/8/21/16176892/intel-8th-generation-core-processors-revised-kaby-lake-cpu-gpu-chips-faster-improvedhttps://www.darkreading.com/vulnerabilities—threats/50–of-ex-employees-can-still-access-corporate-apps/d/d-id/1329672https://thenextweb.com/google/2017/08/28/google-japan-internet-blackout/ AnnouncementsLV Hackers meetup coming 9/6/2017John‘s coming back to talk about OpenStack on 9/25 ChatCollabora (It‘s W(EI|EI)RD!!) Main topicHack My Derby Updatehttp://hackmyderby.com/build Where can you find us?https://www.ironsysadmin.comhttps://www.patreon.com/ironsysadminhttps://www.facebook.com/ironsysadminhttps://www.ironsysadmin.com/youtubehttps://www.twitter.com/ironsysadminApple PodcastsStitcher! Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/
Welcome to Episode 21 Newshttp://searchitoperations.techtarget.com/news/450424274/Kubernetes-on-AWS-users-cheer-as-AWS-joins-CNCFhttps://techcrunch.com/2017/08/14/marcus-hutchins-arraignment-wisconsin/https://www.dreamhost.com/blog/we-fight-for-the-users/https://boingboing.net/2017/08/14/airbnbs-preferred-smart-lock.htmlhttps://www.wired.com/story/smart-gun-fire-magnets/http://osxdaily.com/2017/08/13/shutdown-mac-command-line/ AnnouncementsDanny is a failure.Bia – https://vimeo.com/229394185 ChatMain topicWhat are we using docker for?DerbyGitlab-CI?Development workloadsProduction workloadsPersonal websitesSplunk (in a container!) redminesplunkconfluencemediawikinginxgitlabartifactoryblack duck Where can you find us?https://www.ironsysadmin.comhttps://www.patreon.com/ironsysadminhttps://www.facebook.com/ironsysadminhttps://www.ironsysadmin.com/youtubehttps://www.twitter.com/ironsysadminApple PodcastsStitcher! Yaaay derbycon! Intro and Outro music credit: Tri Tachyon, Digital MK 2http://freemusicarchive.org/music/Tri-Tachyon/