POPULARITY
This show has been flagged as Clean by the host. 01 Introduction In this episode I will describe how to calculate elapsed time in bash or other shell scripts. While this may sound like a very simple and basic thing to do, there is a slightly more complex aspect to it if you wish to calculate elapsed time to a higher resolution than one second. 02 There are many reasons for calculating elapsed time in a shell script. For example you may wish to simply report how long an operation took to run. Another reason may be that you are trying to speed up a script and need to calculate benchmark data to see how different alternative methods perform. 03 What may seem like a simple task gets a bit more complicated if you want to do it for multiple different operating systems even if they are all unix related, as we shall see. -------------------- 04 Operating Systems Tested For the purposes of this episode, I ran tests on the current version of the following operating systems. Alma Alpine Debian FreeBSD OpenBSD RaspberryPi OpenSuse Ubuntu 2604 Alma is a close copy of Red Hat that we can take as representing Red Hat style distros. -------------------- 05 Simple Low Resolution Timing I will start with the simple and obvious method before describing the less obvious ones. This uses the date command to get the current time in seconds since the unix epoch. This is simply date '+%s' 06 Save this to a variable using whatever method you prefer. For example. starttime=$(date '+%s') 07 Next, do whatever operations it is you wish to time. Use the date command to get the current time again. endtime=$(date '+%s') 08 Now simply subtract the start time from the end time using shell arithmetic. This should be very obvious and basic. -------------------- 09 Higher Resolution Timing However, suppose we wish to measure time to greater than one second of precision. We need to do two things. The first is to obtain the current time at a higher degree of precision. The second is to conduct the calculations to a higher degree of precision. 10 Unfortunately, the standard time precision for POSIX shells seems to be 1 second. Some shells offer a higher precision, but others do not. Furthermore, standard shell arithmatic uses integer, which limits calculations to 1 second of precision. -------------------- 11 Bash High Resolution Shell Variable Fortunately, bash is one that does offer a high precision date. If you are using bash 5.0 or newer, there is a shell variable called EPOCHREALTIME which offers time since the the unix epoch (that is, since the first of January 1970, at 00:00:00 UTC) in seconds to 6 decimals of precision. 12 Example echo $EPOCHREALTIME 1779634800.184926 13 This is related to the similar bash variable known as EPOCHSECONDS which gives the number of seconds since the unix epoch. 14 Example echo $EPOCHSECONDS 1779634800 15 So if you are using bash, measuring time is very simple. -------------------- 16 But is it Really Bash? Is your script however actually using bash? Debian and derivatives actually have two shells. The first, the interactive shell is bash. The second, the non-interactive shell is dash, which stands for "debian almquist shell". 17 If you open a terminal, you get bash. If your script starts with a "bin/bash" shebang line, you get bash. However, if your script starts with a "bin/sh" shebang line, you get dash. Some people find themselves getting caught out by this one when they try something out in a terminal but find that it doesn't work in their script which started with "bin/sh". 18 Many other, but not all, Linux distros use bash for both the interactive and non-interactive shells, so "bin/sh" and "bin/bash" work the same with those ones. So if you intend to use bash, make sure your script calls for bash in the first line. -------------------- 19 The SHELL Variable So how can a script tell what shell it is running under? There is a shell variable called "SHELL" which will tell you the name of the shell. Well, sort of. 20 On Debian and derivatives "SHELL" will say "bash" regardless of whether the actual shell is bash or dash. On some other operating systems "SHELL" will simply say "sh" even if it is something else entirely. So we need to do some additional levels of checking to see what we have. 21 To start with though, here's what each of the test distros reports for SHELL. Alma : bash Alpine : sh Debian : bash FreeBSD : sh OpenBSD : ksh Raspberry-Pi : bash Suse : bash ubuntu2604 : bash -------------------- 22 Bash Versus Dash First, let's try to see which ones are bash and which ones are dash. The first thing we can check is for the shell variable BASH_VERSION. 23 Example echo $BASH_VERSION If the shell is bash, then it will report a version string. If the shell is not bash, then it will return an empty value. 24 Using this test, we can see that Alma and Opensuse are indeed using bash. We however need to check Debian, Raspberry Pi, and Ubuntu when running in an "sh" script. To check this we can use the "which" command to see what "sh" actually is. 25 Example echo $( ls -l $(which sh ) | rev | cut -d" " -f1 | cut -d/ -f1 | rev ) 26 "which sh" shows us the path to "sh" However, that is a link so we need to use "ls -l" to find the actual executable. "rev" reverses the string. 27 "cut" takes the first element separated by spaces. The second "cut" takes the first element separated by the "/" characters. The final "rev" takes that string and reverses it again to get it in the correct order. 28 In the case of Debian, Raspberry Pi, and Ubuntu it tells us that this is "dash". -------------------- 29 Openbsd Openbsd reports its shell as "ksh", which stands for Korn Shell. It is indeed Korn Shell, so we simply leave that one as is. -------------------- 30 Alpine and Freebsd Next we have Alpine Linux and Freebsd, which both report as "sh". In the case Freebsd there doesn't appear to be any further we can go that I am aware of. It's simple "sh". It is a basic POSIX shell which seems to be similar to the original unix shell, the Bourne Shell. Older versions of Freebsd used a different shell known as tsch (the C shell), but I haven't tested that so I will ignore that here. 31 With Alpine Linux however, we can get the actual shell using the same method that we used for Debian Linux. This reports as being "busybox". 32 Busybox is a limited shell intended for use in embedded systems. Alpine was originally an embedded distro, but some people started using it for containers. Alpine is Linux, but it is not GNU/Linux, and there are a number of areas which can trip you up if you are not aware of them. So, be extra careful if you are using it for anything, and test everything. -------------------- 33 Summary of Actual Shells Here is our revised list with the actual shell used when asking for "sh", so far as we can determine. Alma : bash Alpine : busybox Debian : dash FreeBSD : sh OpenBSD : ksh Raspberry-Pi : dash Suse : bash ubuntu2604 : dash 34 There are other shells, but none of them are the default shell for any of the distros on our list, so I haven't tested them. -------------------- 35 Solutions for Measuring Time Now we need to find solutions for bash, dash, ksh, sh, and busybox. -------------------- 36 Bash For bash, we can simply use EPOCHREALTIME, as mentioned above. -------------------- 37 Dash For dash, we can use the date command. This is a very conventional method, and is probably the first answer that anyone would give for this situation. However, while it will work in most cases, it will not work in all cases, so it is not a universal solution. 38 To use date we simply call it with the correct format string. This uses %s to get seconds since the epoch, and %N to get nanoseconds of the current second. If you put a decimal separator between the two it will appear in the output. You can use the correct decimal separator for your locale, but I won't go into that here. Instead I will just assume a period or dot. 39 Example date '+%s.%N' 1779634800.358916385 -------------------- 40 Problems with Date on Alpine and Openbsd Date will work for bash, dash, and sh on Freebsd. However it will not work for ksh on Openbsd, or for busybox on Alpine. 41 With busybox on Alpine, it simply ignores the %N format specifier and prints out the epoch in seconds only followed by the decimal separator. = Example date '+%s.%N' 1779634800. 42 With ksh on Openbsd it prints the epoch in seconds followed by the decimal separator and then the %N as a literal N. date '+%s.%N' 1779634800.N 43 Fortunately we have alternatives for these two cases. -------------------- 44 Openbsd Openbsd has the "ts" or timestamp utility installed by default. ts prints a time stamp in front of every line it receives from standard input. I won't go into details on all aspects of ts here, I'll leave that to someone else. Instead I will focus on how to use it for our specific purposes here. 45 We need to provide a format specifier to ts, which in this case is "%.s" We also need to provide something for standard input, or otherwise ts will simply sit there and wait for input. So what we need to do is to echo nothing through a pipe to ts while also giving ts the proper format specifier. 46 Example echo | ts "%.s" 47 This will output the epoch time in seconds to six decimals of precision. ts is installed in Openbsd and Freebsd by default and can be used in either. It can also be installed in many other distros. -------------------- 48 Busybox on Alpine None of the methods discussed so far will work for busybox on Alpine though. However there is a way, but it's a bit non obvious and somewhat hacky. 49 Busybox includes a command called "adjtimex". This is normally used to adjust the time hardware. However if it is run without arguments, it will report the current settings. 50 These include the current epoch time in seconds , and in another field the time in microseconds. These are reported as key value pairs. So what we need to do is to do the following 51 Run adjtimex Capture the output. Grep for "time.tv_sec" Grep for "time.tv_usec" Use cut to extract the time value in each case. Use tr to get rid of excess spaces in each case. Combine the two in a string with a decimal separator between them. 52 This takes a total of 4 lines of shell script. I will just describe them breifly here, see the show notes for details. 53 First we want to capture the output of adjtimex in a single operation. Run adjtimex and pipe the output through grep to capture lines containing "time.tv_" and save this to a variable. # Extract the current high resolution time from adjtimex. # We want two key value pairs, identified by time.tv_sec and time.tv_usec. tvals=$( adjtimex | grep "time.tv_" ) 54 Next echo the contents of this variable and pipe it through grep, cut, and tr to get first the seconds and then the microseconds while also removing excess spaces. Save these to two separate variables. "time.tv_sec" is the time in seconds since the epoch. "time.tv_usec" is the number of microseconds in the current second. # Get the time since the unix epoch in seconds and micro-seconds. timesec=$( echo "$tvals" | grep "time.tv_sec" | cut -d: -f2 | tr -d " " ) timeusec=$( echo "$tvals" | grep "time.tv_usec" | cut -d: -f2 | tr -d " " ) 55 Adjtimex does not zero pad the microsecond time value to provide leading zeros, so we need to take care of this using printf before we can append it to the seconds value. We didn't need to do this with date where the %N format character does this automatically. In this instance, the printf format string is '%06d' padusec=$( printf '%06d' $timeusec ) Now, combine these into a single number with a decimal separator by using simple string concatenation. # Combine them into a single number. timehires="$timesec"".""$padusec" -------------------- 56 Summary of Methods Let's summarize where we are so far in terms of methods we can use to get the current time as a high resolution number. Alma : use EPOCHREALTIME or date Debian (bash) : use EPOCHREALTIME or date Raspberry-Pi (bash) : use EPOCHREALTIME or date ubuntu2604 (bash) : use EPOCHREALTIME or date Suse : use EPOCHREALTIME or date Debian (dash) : use date Raspberry-Pi (dash) : use date ubuntu2604 (dash) : use date Alpine : use adjtimex and parse the output FreeBSD : use date or ts OpenBSD : use ts -------------------- 57 Other alternatives There are a few alternatives that we haven't discussed yet. 58 Bash with Dash In the case of Debian, Raspberry Pi, and Ubuntu running dash, since bash is available it is possible to write a separate bash script which simply echos EPOCHREALTIME and then call it from the dash script and capture the output. While this would work, there's probably not a lot of point to it. If you can rely on bash being there, then just change the first line of the script and make it a bash script. 59 Adding Packages to Alpine The ts or timestamp utility is a common unix utility that can be installed if it is not present by default. This does produce high resolution timestamps on Alpine. On Alpine Linux this comes as part of the "moreutils" package. To add the package, use the following sudo apk add moreutils echo | ts "%.s" 1779634800.959948 60 You can also add the GNU coreutils, which will provide a high resolution date command which works like in the other examples. To add the package use the following sudo apk add coreutils date '+%s.%N' 1779634800.212897332 61 If you can install more packages into your Alpine system, either of the above two is probably going to be preferable to parsing the output of adjtimex. 62 Custom Timestamp Programs You can also write a very short program in python, perl, tcl, or some other language and have it output the current epoch time. I won't discuss that here though. -------------------- 63 Calculating Time Differences Shell arithmetic is integer only. If we wish to use high resolution timing data, we need to do something so we don't lose the precision we have worked so hard to get. There are several possible solutions. 64 Change the Time Base One method is to change the time base from seconds to milli, micro, or nanoseconds. This can be done by simply multiplying the time values by the appropriate amount (e.g. 1000, 1,000,000, etc.) before subtracting them. This allows for integer arithmetic on high resolution values without losing precision. 65 Use the Shell bc Arbitrary Precision Calculator The bc command line calculator will perform calculations using real numbers and is easy to use in scripts. It is present by default in most distros. echo "scale=9; $endtime - $starttime" | bc where endtime and starttime are variables containing time values. 66 However, for some inexplicable reason, neither Debian nor Opensuse install it by default. It is present in Ubuntu and Raspberry Pi which are Debian derivatives, and it can be added to distros which lack it. 67 Use awk awk can also perform calculations using real numbers and it is present in nearly all distros including in all of the ones we tested here. echo "$endtime $starttime" | awk '{printf "%.6fn", $1 - $2}' -------------------- 68 Benchmarks And of course no comparative evaluation would be complete without benchmarks where we see how each method compares to another in terms of speed. In the benchmark test I ran each method in a loop through multiple iterations, measured the elapsed time, subtracted out the time for an empty loop, and then compared it to alternate methods. For anything other than EPOCHREALTIME, the empty loop time is negligible and has no real effect on the results. 69 Rather interestingly I came across a bug which caused date to run very slowly if called immediately after using EPOCHREALTIME in bash. The effect of the bug was to make the date benchmark test roughly 24 times slower. This has been fixed in newer releases, but if you are using an older distro release then beware of this bug. I was able to get around it either putting a sleep delay between benchmarking EPOCHREALTIME and benchmarking date, or by simply testing date before testing EPOCHREALTIME. 70 To be able to conduct additional tests I installed ts in Ubuntu and Alpine, and the GNU version of date in Alpine. 71 EPOCHREALTIME Versus date in Ubuntu 2604 bash The EPOCHREALTIME method is 3103 times faster than date. However, when the same test is run on Ubuntu 2404 when the date test is run before the EPOCHREALTIME test, EPOCHREALTIME is 1240 faster than date. Other Linux distros show performance to Ubuntu 2404. It appears that a side effect of fixing whatever the bug is has the effect of slowing down date. However, this is probably not a significant issue in normal circumstances. 72 date versus ts in Ubuntu 2604 bash The date method is 3.7 times faster than ts 73 date versus ts in Ubuntu 2604 dash The date method is 4.9 times faster than ts 74 date versus ts in Freebsd sh The date method is 2.5 times faster than ts 75 date versus adjtimex in Alpine Busybox The date method is 6.0 times faster than adjtimex 76 date versus ts in Alpine Busybox The date method is 20.0 times faster than ts 77 bc versus awk in Ubuntu 2604 I compared calculating the difference between two numbers when using bc versus awk. The difference is negligible, with bc being only 7% faster than awk. 78 Conclusion for Benchmarks Based on these results, if you need to measure elapsed time to high resolution and care about runing the command with as little overhead as possible, then the order of preference should be the following. 79 If you are using a newer version of bash, then use EPOCHREALTIME. If that is not available, then use date, provided it allows for high resolution times. If the above two cannot be used, then use ts. If you are using Busybox and cannot install either GNU date or ts, then use adjtimex. Date is the closest in terms of being the universal portable solution, but it does not work in all cases. 80 I have not compared different platforms to each other in terms of performance, as that would be a much more involved problem that is outside the scope of this episode. However, different operating systems implement different commands in different ways. 81 For example, on Openbsd and Freebsd, ts appears to be an ELF binary. That is, it is executable machine code, possibly written in C. On Ubuntu however, ts appears to be a perl script. As a result of this, the advantage that date has over ts is much less in Freebsd than it is with Ubuntu (and likely other Linux distros) as on Freebsd it doesn't need to load a perl interpreter to run ts. -------------------- 82 Overall Conclusion You no doubt thought that measuring elapsed time was going to be so simple, and how could someone get an entire podcast out of such a simple subject? And yet here we are half an hour later with just a basic overview of the subject. 83 I hope you found this interesting and informative. Please let us know in the comments if you think that I have done anything incorrectly, or if you have another way of doing things. I hope to see you all again in another future episode of HPR. -------------------- Provide feedback on this episode.
An AUR safety net arrives with Yay v13, adding visibility into packing timestamps. A developer found and fixed ~4ms of hidden mouse latency in KWin stemming from three separate sources. And Canonical announced a local, private, hotkey-activated speech-to-text tool coming in Ubuntu 26.10. You can find the show notes at https://bit.ly/3Sq5Qi4, and happy Linuxing! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free audio and video feeds, a members-only Discord, and exclusive content. Join today: https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
An AUR safety net arrives with Yay v13, adding visibility into packing timestamps. A developer found and fixed ~4ms of hidden mouse latency in KWin stemming from three separate sources. And Canonical announced a local, private, hotkey-activated speech-to-text tool coming in Ubuntu 26.10. You can find the show notes at https://bit.ly/3Sq5Qi4, and happy Linuxing! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free audio and video feeds, a members-only Discord, and exclusive content. Join today: https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
Is SUSE & openSUSE planning to implement age verification which would require parental consent for teens to use Linux? It looks that way.More from The Lunduke Journal:https://lunduke.com/ This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit lunduke.substack.com/subscribe
openSUSE Linux has changed their "Terms of site" to specifically forbid users under "16 years of age or the age of majority" from using any websites or servers.More from The Lunduke Journal:https://lunduke.com/ This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit lunduke.substack.com/subscribe
This show has been flagged as Clean by the host. This series is dedicated to exploring little-known—and occasionally useful—trinkets lurking in the dusty corners of UNIX-like operating systems. I would imagine that most users of UNIX-like systems have heard of cron —certainly any system administrator should have. Briefly, cron is a way of running a job repeatedly based on the time and date; for example, a job could run every hour, at 5:00am every Tuesday, or the 3rd of every month. It is commonly used for administrative or maintenance tasks that should be done on a regular schedule, such as checking for software updates, rotating log files, or updating the database for the locate command. As well-known as cron is, there is a similar utility that very few seem to be aware of: at . This is the word "at", and has nothing to do with the at symbol "@". An at job is very much like a cron job, except that an at job only runs one time. A job is submitted by running at timespec 1 , where timespec is the time and date the job is to be run. The linked POSIX specification page describes acceptable formats for timespec ; some examples are " now ", " 14:00 ", " noon tomorrow ", " 14:00 + 3 months ", and " 14:00 January 19, 2038 ". The utility then waits on standard input for you to enter a set of commands to be run in the job. You end input by typing Control-D to mark the end of text. (As an alternative to typing in the job, you could instead use the "
La privacy è qualcosa di sospetto per Google. OpenSUSE vietata ai giovani. La fine del Trumpofono. Determinismo nei modelli. Cloudflare apre gli account agli agenti. Queste e molte altre le notizie tech commentate nella puntata di questa settimana.Dallo studio distribuito di digitalia:Franco Solerio, Michele Di Maio, Massimo De SantoProduttori esecutivi:Nicola Achille, Andrea Dell'agostino, Davide Maffoli, Marco Goglio, Manuel Zavatta, Stefano Minardi, Alessio Conforto, Massimo Dalla Motta, Vittorio Coppe, Stefano Cutellè, Simone Andreozzi, Giovanni Priolo, Francesco Paolo Sileno, Giuliano Arcinotti, Massimiliano Casamento, Matteo Tarabini, Massimo Passerini, Davide Capra, Nicola Pedonese, Arnoud Van Der Giessen, ma7u, Matteo Masconale, Massimiliano Saggia, Maurizio Galluzzo, Christophe Sollami, Pasquale Maffei, Consultech Srl, Matteo De Lucia, Paolo Bernardini, Andrea Sinigaglia, Michele Olivieri, Alessandro Lazzarini, Matteo Arrighi, Roberto Barison, Raffaele Viero, Renato Battistin, Stefano Orso, Davide Tinti, Fiorenzo Pilla, Yoandy Herrera Gutierrez, Ivan, Raffaele Marco Della Monica, Paolo Lucciola, Matteo CarpentieriSponsor:Ari - AI Made Really Easy - L'AI che lavora nei tuoi processi. E ci rimane.Links:Google Broke reCAPTCHA for De-Googled Android UsersGoogle now treats privacy as suspicious behavior by defaultEU calls VPNs a loophole that needs closingYoung people explicitly banned from openSUSEMAGAs Are Fuming - They Will Never Get Their $500 Trump PhonesSomeone out-Trumped the Trump phoneResistanceL'UE semplifica l'AI Act: meno burocrazia o meno diritti?New mechanistic interpretability tool lets you debug LLMsAnthropic's Claude Managed Agents can now "dream" sort ofAdvanced language processing in the unconscious human brainHalupedia HalupediaVentenne si isola e parla solo con l'algoritmoGoogle Owns a Big Chunk of AnthropicHigher usage limits for Claude and a compute deal with SpaceXAgents can now create Cloudflare accounts, buy domainsApple reportedly has a deal to use Intel-made chips againCon Amazon tutti micropadroni di casa - Jacobin ItaliaIl campanello che ti raggiunge anche con la cancellazione del rumoreGingilli del giorno:FamilySearch - una piattaforma di ricerca genealogicaLLM Playground - Prova gratuitamente modelli LLMBottleneck - il videogame della crisi di HormuzSupporta Digitalia, diventa produttore esecutivo.
Due to a broken embargo, this severe root exploit has no patches available for any Linux distribution. Ubuntu, RHEL, openSUSE... they're all vulnerable.More from The Lunduke Journal:https://lunduke.com/ This is a public episode. If you'd like to discuss this with other subscribers or get access to bonus episodes, visit lunduke.substack.com/subscribe
Matt is back in the driver's seat, and it feels like coming home to a homelab with a few extra blinking lights. In this episode of Linux Out Loud, he, Wendy, and Nate catch up on VDO.Ninja recording experiments, robotics‑world travel plans, and why old Surface hardware is happier running openSUSE than “almost‑retired” Windows. Nate walks through upgrading Home Assistant from an overworked Raspberry Pi 3 to a Lenovo ThinkCentre with over 115 devices, plus his plans for fully local smart‑home control and a Star Trek‑style “red alert” scene. Matt dives into CasaOS for easy containerized media hosting, GameVault as a self‑hosted Steam‑like library for GOG and DRM‑free games, and Pegasus Frontend for building your own living‑room console UI—then talks about reviving Game Sphere with a focus on digital ownership and realistic budget gaming. Show Links: VDO.Ninja – browser‑based P2P video rooms – https://vdo.ninja/ FIRST Tech Challenge World Championship venue – George R. Brown Convention Center – https://www.grbhouston.com/ openSUSE Tumbleweed – rolling release Linux – https://get.opensuse.org/tumbleweed/ Home Assistant – open‑source home automation – https://www.home-assistant.io/ HACS – Home Assistant Community Store – https://hacs.xyz/ Tasmota – open‑source firmware for smart devices – https://tasmota.github.io/docs/ Framework founder Nirav Patel compares Apple “Neo” vs Framework Laptop 12 – https://youtu.be/uvYt1GgcsUI Framework Laptop 12 – modular, repairable laptop – https://frame.work/laptop12 iFixit Surface Pro 7 battery replacement guide (right‑to‑repair context) – https://www.ifixit.com/Guide/Microsoft+Surface+Pro+7+Battery+Replacement/144417 CasaOS – simple home cloud / container UI – https://www.casaos.io/ GameVault – self‑hosted game library / launcher – https://github.com/Phalcode/gamevault Pegasus Frontend – cross‑platform game frontend – https://pegasus-frontend.org/ GOG.com – DRM‑free games (source for Matt's library) – https://www.gog.com/ Steam – PC game platform (and the piracy vs preservation discussion) – https://store.steampowered.com/ Connect with the Hosts on Discord: Matt – @Dark1ltg Wendy – @Wendy.sh Nate – CubicleNate.com @CubicleNate
In this spring‑cleaned episode of Linux Out Loud, Wendy, Bill, and Nate dust off their homelabs and see just how far Linux can push “retired” hardware. Bill talks about guiding a Linux‑first startup, Fyra Stack, as they build a colo and VPS business in downtown Chicago, wiring it all together with Proxmox, PostgreSQL, Snipe‑IT, and osTicket—plus a few cursed Zigbee light bulbs along the way. Nate dives into one of his favorite pastimes: installing openSUSE Tumbleweed on everything from a 2007 white MacBook to a 2015 MacBook Air and a pair of well‑worn Surface Pros, comparing battery life, sleep quirks, and how “modern” Plasma feels on ancient gear. Wendy rounds things out with creative test‑taking workarounds using ChromeOS Flex and a quick look at VDO.Ninja for remote recording, before the trio wraps up the cleaning spree. Show Links: Fyra Stack – Linux‑focused startup (colo and VPS) – https://fyrastack.com/ Proxmox VE – virtual environment and homelab hypervisor – https://www.proxmox.com/en/proxmox-ve PostgreSQL – open‑source relational database – https://www.postgresql.org/ Snipe‑IT – open‑source IT asset management – https://snipeitapp.com/ osTicket – open‑source support ticket system – https://osticket.com/ openSUSE Tumbleweed – rolling release Linux – https://get.opensuse.org/tumbleweed/ MX Linux – lightweight Linux for older hardware – https://mxlinux.org/ Arch Linux – general‑purpose rolling Linux distribution – https://archlinux.org/ ChromeOS Flex – ChromeOS for older PCs and Macs – https://chromeenterprise.google/os/chromeos-flex/ iFixit – repair guides (example: Surface Pro 7 battery replacement) – https://www.ifixit.com/Guide/Microsoft+Surface+Pro+7+Battery+Replacement/144417 Framework Laptop 12 – modular, repairable laptop – https://frame.work/laptop12 StarLabs Starlite – Linux laptop – https://us.starlabs.systems/products/starlite VDO.Ninja – peer‑to‑peer live video – https://vdo.ninja/Special Guest: Bill.
We decided to give openSUSE a try. We had a great time. Honest. Support us on Patreon and get an ad-free RSS feed with early episodes sometimes See our contact page for ways to get in touch. Subscribe to the RSS feed.
We decided to give openSUSE a try. We had a great time. Honest. Support us on Patreon and get an ad-free RSS feed with early episodes sometimes See our contact page for ways to get in touch. Subscribe to the RSS feed.
We make our big Linux predictions for 2026, but first, we score how we did for 2025.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. CrowdHealth: Discover a Better Way to Pay for Healthcare with Crowdfunded Memberships. Join CrowdHealth to get started today for $99 for your first three months using UNPLUGGED.Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:
Valve is going to attempt the Linux trifecta, Firefox is adding more AI and people aren't happy, and the kernel is refining its own AI guidelines. FFmpeg is tired of AI generated CVEs, no matter how good they are! Rust isn't always more secure, your Ubuntu desktop can last for 15 years now, and OpenSUSE Tumbleweed has some surprises. For Tips, we cover Webmin, btrfs-rescue, a function to center-print text in the terminal, and go down the rabbit-hole of detecting dual server PSUs. You can find the show notes at https://bit.ly/4pbm35E and see you next time! Host: Jonathan Bennett Co-Hosts: Jeff Massie, Rob Campbell, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
Valve is going to attempt the Linux trifecta, Firefox is adding more AI and people aren't happy, and the kernel is refining its own AI guidelines. FFmpeg is tired of AI generated CVEs, no matter how good they are! Rust isn't always more secure, your Ubuntu desktop can last for 15 years now, and OpenSUSE Tumbleweed has some surprises. For Tips, we cover Webmin, btrfs-rescue, a function to center-print text in the terminal, and go down the rabbit-hole of detecting dual server PSUs. You can find the show notes at https://bit.ly/4pbm35E and see you next time! Host: Jonathan Bennett Co-Hosts: Jeff Massie, Rob Campbell, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
After all the AI hype is over, one change for Linux will be sticking around; we put it to the test.Sponsored By:Managed Nebula: Meet Managed Nebula from Defined Networking. A decentralized VPN built on the open-source Nebula platform that we love. 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. CrowdHealth: Discover a Better Way to Pay for Healthcare with Crowdfunded Memberships. Join CrowdHealth to get started today for $99 for your first three months using UNPLUGGED.Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:
Coming up in this episode * We took a break over the break * Windows 10 pulls a fast one * Firefox brings in another clanker 0:00 Cold Open 2:27 A Distro, a Router and a Choice 25:26 Windows 10 Isn't Dead Yet... 43:45 Browser Watch (feat. Firefox) 1:09:58 Next Time! 1:14:57 Stinger The Video Version! (https://youtu.be/Rsn57QtNsiI) https://youtu.be/Rsn57QtNsiI
LibreOffice is dumping Windows (OK, not all of Windows), there's anime catgirls keeping the kernel safe, and FFmpeg makes a major new release. Kdenlive has a release, Thunderbird has announced ThunderMail, and one of the hosts gives CachyOS a spin. For tips we're covering Gnome System Extensions, using WirePlumber for volume control, hacks for waking your monitor back up, and unbuffer for keeping your colors where they belong. You can find the show tips at http://bit.ly/45Nszrr and come back next week for more! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
Xfce running on Wayland on openSUSE, Canonical laid off the printing guy, Mozilla pisses people off with AI tab groups, and what the post-x86 world will look like for desktop Linux. Plus a handy way to save and run project-specific commands, turning any device into a file server, and a convoluted way to get wind... Read More
Xfce running on Wayland on openSUSE, Canonical laid off the printing guy, Mozilla pisses people off with AI tab groups, and what the post-x86 world will look like for desktop Linux. Plus a handy way to save and run project-specific commands, turning any device into a file server, and a convoluted way to get wind... Read More
Canonical is giving back through thanks.dev, AMD is Hiring for Ryzen Linux work, and Rust celebrates 10 years! Then There's the End of Ten project, a Flatpak update, and AMD really hitting it out of the park with Laptop processors. Elementary OS shines, KDE does better HDR, and Live Upgrade Orchestrator is posed to be a whole new way to update your kernel. For tips we have vipe for editing piped data, pw-cli for managing remote clients, taskset for managing which CPU core a process runs on, and a quick primer on capabilities for using priveleged ports. You can find the show notes at https://bit.ly/433AdOk and see you next week! Host: Jonathan Bennett Co-Hosts: Ken McDonald, Rob Campbell, and Jeff Massie Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
video: https://youtu.be/BPO50JSnLCU Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a ton of news. In fact, sometimes I have to push stuff off a week, but we're going to do something a little different. We're going to do a bunch of extra topics. We're going to start off with Nobara 42 release. We also have a beta release of KDE Plasma's next version with Plasma 6.4. Then we have some stuff to talk about related to the Deepin desktop and OpenSUSE. And also we have some news for the installer for Arch Linux, as well as a bunch of other things, including whether or not Steam had a data breach. All of this and more on This Week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and Open Source world. So let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/1092b02e-4c36-4706-a400-4472d1808b55.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:58 Nobara 42 Released 03:56 Housekeeping 05:38 KDE Plasma 6.4 Beta 12:15 Removal of Deepin Desktop from openSUSE 16:15 Arch Linux Installer Adds Labwc & Niri Wayland Compositor Options 19:13 Sandfly Security, agentless Linux security 21:52 Steam Data Breach and Valve's Response 26:03 Steam Deck gets a Battery Charge Limit control in the in the latest Beta 28:19 SteamOS Compatibility Rating System 31:42 Podman 5.5 Released 35:42 10 Years of the Rust Language 38:12 Kdenlive 25.04 Video Editor Released 41:40 Shotcut 25.05 Video Editor Released 45:06 Outro Links: Nobara 42 https://nobaraproject.org/2025/05/13/may-132025/ (https://nobaraproject.org/2025/05/13/may-132025/) KDE Plasma 6.4 Beta https://kde.org/announcements/plasma/6/6.3.90/ (https://kde.org/announcements/plasma/6/6.3.90/) https://kde.org/announcements/changelogs/plasma/6/6.3.5-6.3.90 (https://kde.org/announcements/changelogs/plasma/6/6.3.5-6.3.90) Removal of Deepin Desktop from openSUSE https://security.opensuse.org/2025/05/07/deepin-desktop-removal.html (https://security.opensuse.org/2025/05/07/deepin-desktop-removal.html) Arch Linux Installer Adds Labwc & Niri Wayland Compositor Options https://github.com/archlinux/archinstall/releases/tag/3.0.5 (https://github.com/archlinux/archinstall/releases/tag/3.0.5) https://www.phoronix.com/news/Archinstall-3.0.5-Released (https://www.phoronix.com/news/Archinstall-3.0.5-Released) Sandfly Security https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) Steam Data Breach and Valve's Response https://steamcommunity.com/games/593110/announcements/detail/533224478739530146 (https://steamcommunity.com/games/593110/announcements/detail/533224478739530146) https://www.gamingonlinux.com/2025/05/heres-a-statement-from-valve-on-the-reported-steam-data-breach/ (https://www.gamingonlinux.com/2025/05/heres-a-statement-from-valve-on-the-reported-steam-data-breach/) Steam Deck Beta gets a Battery Charge Limit control https://store.steampowered.com/news/app/1675200/view/529845510803030569 (https://store.steampowered.com/news/app/1675200/view/529845510803030569) https://www.gamingonlinux.com/2025/05/steam-deck-gets-a-battery-charge-limit-control-in-the-latest-beta/ (https://www.gamingonlinux.com/2025/05/steam-deck-gets-a-battery-charge-limit-control-in-the-latest-beta/) SteamOS Compatibility Rating System https://steamcommunity.com/groups/steamworks/announcements/detail/532097310616717411 (https://steamcommunity.com/groups/steamworks/announcements/detail/532097310616717411) https://www.gamingonlinux.com/2025/05/valve-announce-steamos-compatibility-ratings-an-extension-of-steam-deck-verified-for-more-devices/ (https://www.gamingonlinux.com/2025/05/valve-announce-steamos-compatibility-ratings-an-extension-of-steam-deck-verified-for-more-devices/) Podman 5.5 https://podman.io/ (https://podman.io/) https://github.com/containers/podman/releases/tag/v5.5.0 (https://github.com/containers/podman/releases/tag/v5.5.0) 10 Years of the Rust Language https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/ (https://blog.rust-lang.org/2025/05/15/Rust-1.87.0/) Kdenlive 25.04 https://kdenlive.org/news/releases/25.04.0/ (https://kdenlive.org/news/releases/25.04.0/) Shotcut 25.05 https://www.shotcut.org/blog/new-release-250511/ (https://www.shotcut.org/blog/new-release-250511/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
First up in the news: Mint Monthly News, BackBlaze backups may be in trouble, you can run Arch inside Windows, Linux kernel drops 486 and early 586 support, and a new RaspberryPiOS release, and the end of Windows 10 support brings new opportunities In security and privacy: openSUSE removes Deepin Desktop over security issues, Proton threatens to quit Switzerland over new surveillance law Then in our Wanderings: Bill goes mobile, Moss plays with a Pangolin, Eric finally fixes his WiFi. In our Innards section: we talk about Virtual Machines In Bodhi Corner, just a bit about theming
video: https://youtu.be/PtP_jOlAIHE Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a lot of cool stuff to talk about. First, we're going to talk about the future of KDE Plasma. Then we're going to go into the future of OpenSUSE because Leap 16 beta has been released and the final version will be coming out this year. Then we'll also have a new version of Mozilla Firefox. And also we have some interesting news from the Oregon State University because there's some potential risk of closure of their Open Source Lab, which would be a shame. And then we're also going to talk about Redis because they're back in the news this week because they want to redo with Open Source. All of this and more on This Week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and Open Source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/7cb90299-be53-43c6-90d5-019ad4489590.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:52 Future of KDE Plasma: LTS, Telementry, & more 07:45 openSUSE Leap 16 Beta Released 13:49 Trinity Desktop R14.1.4 Released 17:17 Sandfly Security, agentless Linux security 19:15 Mozilla Firefox 138 Released 27:09 OSU Open Source Lab At Risk Of Closure 31:46 Redis wants a Redo with Open Source 37:28 Red Hat Summit 2025 39:47 Support the show Links: Future of KDE Plasma: LTS, Telementry, & more https://pointieststick.com/2025/05/01/notes-from-the-graz-plasma-sprint/ (https://pointieststick.com/2025/05/01/notes-from-the-graz-plasma-sprint/) openSUSE Leap 16 Beta Released https://news.opensuse.org/2025/04/30/leap-16-enters-beta/ (https://news.opensuse.org/2025/04/30/leap-16-enters-beta/) https://news.opensuse.org/2025/05/02/tw-monthly-update-april/ (https://news.opensuse.org/2025/05/02/tw-monthly-update-april/) Trinity Desktop R14.1.4 Released https://www.trinitydesktop.org/ (https://www.trinitydesktop.org/) https://www.trinitydesktop.org/newsentry.php?entry=2025.04.27 (https://www.trinitydesktop.org/newsentry.php?entry=2025.04.27) Sandfly Security, agentless Linux security https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) https://destinationlinux.net/409 (https://destinationlinux.net/409) Mozilla Firefox 138 Released https://www.mozilla.org/en-US/firefox/138.0/releasenotes/ (https://www.mozilla.org/en-US/firefox/138.0/releasenotes/) https://blog.mozilla.org/en/firefox/tab-groups-community/ (https://blog.mozilla.org/en/firefox/tab-groups-community/) https://www.howtogeek.com/235670/organize-manage-your-firefox-tabs-like-a-pro-with-the-tab-groups-add-on/ (https://www.howtogeek.com/235670/organize-manage-your-firefox-tabs-like-a-pro-with-the-tab-groups-add-on/) OSU Open Source Lab At Risk Of Closure https://osuosl.org/blog/osl-future/ (https://osuosl.org/blog/osl-future/) Redis wants a Redo with Open Source https://redis.io/blog/agplv3/ (https://redis.io/blog/agplv3/) https://antirez.com/news/151 (https://antirez.com/news/151) https://youtu.be/r67MRruNhow (https://youtu.be/r67MRruNhow) Red Hat Summit 2025 https://www.redhat.com/en/summit (https://www.redhat.com/en/summit) https://www.redhat.com/en/blog/red-hat-summit-ansiblefest-2025-ansible-sessions-you-dont-want-miss (https://www.redhat.com/en/blog/red-hat-summit-ansiblefest-2025-ansible-sessions-you-dont-want-miss) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
video: https://youtu.be/LvEB5lGUqaw Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a brand new version of the Linux kernel, including a boost for gaming performance and GPU workload protection in the Linux 6.14 release. There are some new distro releases to talk about with Zorin OS and EndeavourOS, as well as some beta releases from Fedora and Ubuntu. Plus, openSUSE is adding a long-requested feature to their Zypper Package Manager, and so much more on this episode of This Week in Linux. This is the weekly news show that will keep you up to date with what's going on in the Linux and Open Source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/80747735-291f-4f6b-a6c4-1f3607cbe048.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:45 Linux 6.14 Released 07:01 Zorin OS 17.3 Released 13:11 EndeavourOS Mercury Neo Released 14:58 Sandfly Security, agentless Linux security [ad] 16:54 Rescuezilla 13 Released 17:54 Finnix 250 Released 19:14 Fedora 42 Beta Released 22:14 Ubuntu 25.04 Beta Released 23:23 openSUSE Adds Experimental Parallel Downloads to Zypper 24:21 HP considers SteamOS for their next Gaming Handheld 26:56 Suppor the show Links: Linux 6.14 Released https://lore.kernel.org/lkml/CAHk-=wg7TO09Si5tTPyhdrLLvyYtVmCf+GGN4kVJ0=Xk=5TE3g@mail.gmail.com/T/#u (https://lore.kernel.org/lkml/CAHk-=wg7TO09Si5tTPyhdrLLvyYtVmCf+GGN4kVJ0=Xk=5TE3g@mail.gmail.com/T/#u) https://www.kernel.org/category/releases.html (https://www.kernel.org/category/releases.html) https://bsky.app/profile/plagman.bsky.social/post/3lkp26xmco22k (https://bsky.app/profile/plagman.bsky.social/post/3lkp26xmco22k) https://kernelnewbies.org/Linux_6.14 (https://kernelnewbies.org/Linux_6.14) Zorin OS 17.3 Released [https://blog.zorin.com/2025/03/26/zorin-os-17.3-is-here/](https://blog.zorin.com/2025/03/26/zorin-os-17.3-is-here/) https://kdeconnect.kde.org/ (https://kdeconnect.kde.org/) EndeavourOS Mercury Neo Released https://endeavouros.com/news/mercury-neo-with-linux-6-13-7-and-arch-mirror-ranking-bug-fix/ (https://endeavouros.com/news/mercury-neo-with-linux-6-13-7-and-arch-mirror-ranking-bug-fix/) Sandfly Security, agentless Linux security [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) https://destinationlinux.net/409 (https://destinationlinux.net/409) Rescuezilla 13 Released https://rescuezilla.com/ (https://rescuezilla.com/) https://github.com/rescuezilla/rescuezilla/releases/tag/2.6 (https://github.com/rescuezilla/rescuezilla/releases/tag/2.6) Finnix 250 Released https://blog.finnix.org/2025/03/22/finnix-250-released/ (https://blog.finnix.org/2025/03/22/finnix-250-released/) https://www.finnix.org/ (https://www.finnix.org/) Fedora 42 Beta Released https://fedoramagazine.org/announcing-fedora-linux-42-beta/ (https://fedoramagazine.org/announcing-fedora-linux-42-beta/) Ubuntu 25.04 Beta Released https://www.omgubuntu.co.uk/2025/03/ubuntu-25-04-beta-download (https://www.omgubuntu.co.uk/2025/03/ubuntu-25-04-beta-download) https://www.phoronix.com/news/Ubuntu-25.04-Beta (https://www.phoronix.com/news/Ubuntu-25.04-Beta) GNOME 48 https://thisweekinlinux.com/303 (https://thisweekinlinux.com/303) openSUSE Adds Experimental Parallel Downloads to Zypper https://news.opensuse.org/2025/03/27/zypper-adds-experimental-parallel-downloads/ (https://news.opensuse.org/2025/03/27/zypper-adds-experimental-parallel-downloads/) HP considers SteamOS for their next Gaming Handheld https://www.xda-developers.com/hp-hasnt-made-omen-gaming-handheld/ (https://www.xda-developers.com/hp-hasnt-made-omen-gaming-handheld/) https://www.gamingonlinux.com/2025/03/hp-are-interested-in-making-a-steamos-handheld-as-the-windows-experience-sucks/ (https://www.gamingonlinux.com/2025/03/hp-are-interested-in-making-a-steamos-handheld-as-the-windows-experience-sucks/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
This show has been flagged as Explicit by the host. mumble: Official website of the Mumble project wikipedia:) Mumble (software) from Wikipedia ncbi: Generalisable 3D printing error detection and correction via multi-head neural networks liqcreate: Resin 3D-printing: Ec, Dp, cure depth & more explained tomshardware: How to Fix 3D Prints Not Sticking to the Bed simplify3d: Not Sticking to the Bed tinkercad: Tinkercad is a free web app for 3D design, electronics, and coding. etherpad: Etherpad is a highly customizable open source online editor providing collaborative editing in really real-time. jitsi: More secure, more flexible, and completely free video conferencing openai: Whisper is an automatic speech recognition (ASR) system raspberrypi: We are Raspberry Pi. We make computers. wikipedia: ESP32 hamuniverse: Tools, test equipment and shack accessories for the new ham radio operator dxzone: Radio Tools and Utilities for amateur radio operators dxengineering: Amateur Radio Equipment & Tools morsecode: Morse Code Keyer wikipedia: Morse code inksystem: CISS - continuous ink supply system wikipedia: Continuous ink system wikipedia: Three-phase electric power archives: Housing in New Zealand teara: Early houses... of New Zealand freedesktop: PulseAudio Volume Control kde: Plasma is a Desktop f-droid: What is F-Droid? i3wm: i3 is a tiling window manager, completely written from scratch. samsung: Galaxy S23 android: Android Debug Bridge (adb) wikipedia: Android Debug Bridge (adb) dolby: Dolby On: Record Dolby Sound and Video slackware: The Slackware Linux Project fedoraproject: Fedora Linux | The Fedora Project qtractor: Qtractor An Audio/MIDI multi-track sequencer ardour: Recording - Ardour DAW snapcraft: Snapcraft - Snaps are universal Linux packages wikipedia:) Advanced Package Tool (APT) is a free-software user interface that works with core libraries... discord: Discord - Group Chat That's All Fun & Games telegram: Telegram Messenger mumla-app: Mumble app for Android kd4c: HamClock – A Shack's Best Friend wikipedia: New Jersey Pine Barrens wikipedia:) Piney (Pine Barrens resident) blackriflecoffee: Veteran Founded - Black Rifle Coffee Company gfs: Beverages - Gordon Food Service homegoods: Home Decor Store and More | HomeGoods deathwishcoffee: Death Wish Coffee creality: Ender-5 Pro is a cubic-constructure 3D printer kit oggcamp: OGGCAMP southeastlinuxfest: SouthEast LinuxFest | Linux in the GNU/South dev: BSD / OS conferences 2025 / 2026 olfconference: OLF (formerly known as Ohio LinuxFest) is a grassroots conference for the GNU/Linux... wikipedia: Security clearance state: Security Clearances - United States Department of State wikipedia: Underground soft-rock mining investopedia: Day Trading: The Basics and How To Get Started investor: Thinking of Day Trading? Know the Risks. wikipedia: Peter Zeihan youtube: Zeihan on Geopolitics britannica: F-4, two-seat, twin-engine jet fighter-bomber wikipedia: Lockheed C-130 Hercules monroeengineering: Ball Bearings: Inner vs Outer Races Explained ibm: Tape storage is used for data backup in case of... q4os: Q4OS - desktop operating system opensuse: openSUSE is a Linux distribution that offers... wikipedia: OS/2 is a proprietary computer operating system for... selinc: SEL-3351 System Computing Platform wikipedia: List of Microsoft Windows versions mxlinux: MX Linux is a Linux distribution based on Debian stable wikipedia: Squid Game - Wikipedia starlabs: Linux Laptops - Powered by Open Source – Star Labs® xubuntu: Xubuntu is a stable, light and configurable desktop... Provide feedback on this episode.
video: https://youtu.be/7MiImqaw6k8 Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a jam packed episode. We have the new version of the Mesa graphics drivers. There's some changes happening with Serpent OS project. There's a new release of the Rust programming language and that perfectly flows into some updates we have for Rust for Linux. All of this and more on this week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and open source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/f164ab6e-0c9f-4386-9a2c-8ba2ccfe5b13.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:34 TWIL 300 Live Next Week!!! 01:57 Mesa 25 Released 03:56 Serpent OS Rebranding As AerynOS 11:32 Pi-hole v6 Released 13:31 Sandfly Security, agentless security platform for Linux [ad] 15:00 Rust 1.85 Released 16:02 Greg KH on Rust for Linux 23:11 Reproducible-openSUSE Project Hits Milestone 26:21 Marvel's Spider-Man 2 is Steam Deck Verified! 27:54 Support the show 28:50 Reminder about TWIL 300 Live! 29:35 Outro Links: TWIL 300 Live Next Week!!! https://thisweekinlinux.com/live (https://thisweekinlinux.com/live) Mesa 25 Released https://lists.freedesktop.org/archives/mesa-dev/2025-February/226464.html (https://lists.freedesktop.org/archives/mesa-dev/2025-February/226464.html) https://www.mesa3d.org/ (https://www.mesa3d.org/) https://www.phoronix.com/news/Zink-clkhrgl_sharing (https://www.phoronix.com/news/Zink-cl_khr_gl_sharing) Serpent OS Rebranding As AerynOS https://serpentos.com/ (https://serpentos.com/) https://serpentos.com/blog/2025/02/14/evolve-this-os/ (https://serpentos.com/blog/2025/02/14/evolve-this-os/) Pi-hole v6 Released https://pi-hole.net/ (https://pi-hole.net/) https://pi-hole.net/blog/2025/02/18/introducing-pi-hole-v6/#page-content (https://pi-hole.net/blog/2025/02/18/introducing-pi-hole-v6/#page-content) Sandfly Security, agentless security platform for Linux [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) Rust 1.85 Released https://blog.rust-lang.org/2025/02/20/Rust-1.85.0.html (https://blog.rust-lang.org/2025/02/20/Rust-1.85.0.html) https://doc.rust-lang.org/edition-guide/editions/index.html (https://doc.rust-lang.org/edition-guide/editions/index.html) Greg KH on Rust for Linux https://lore.kernel.org/rust-for-linux/2025021954-flaccid-pucker-f7d9@gregkh/ (https://lore.kernel.org/rust-for-linux/2025021954-flaccid-pucker-f7d9@gregkh/) https://www.phoronix.com/news/Greg-KH-On-New-Rust-Code (https://www.phoronix.com/news/Greg-KH-On-New-Rust-Code) Reproducible-openSUSE Project Hits Milestone https://news.opensuse.org/2025/02/18/rbos-project-hits-milestone/ (https://news.opensuse.org/2025/02/18/rbos-project-hits-milestone/) Marvel's Spider-Man 2 is Steam Deck Verified! https://steamcommunity.com/games/2651280/announcements/detail/508447074436513949 (https://steamcommunity.com/games/2651280/announcements/detail/508447074436513949) https://www.gamingonlinux.com/2025/02/marvels-spider-man-2-is-now-steam-deck-verified/ (https://www.gamingonlinux.com/2025/02/marvels-spider-man-2-is-now-steam-deck-verified/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
This week the Rust controversy continues, and a kernel maintainer stirs up some political drama on the way out the door. NTSYNC and Wayland HDR finally land... and you can't use them yet. KDE Plasma pushes 6.3 out the door, OBS threatens to sue Fedora, and OpenSUSE surprises us all by moving to SELinux. For tips we have etckeeper for versioning your /etc files, pw-config for querying your Pipewire config, and a more detailed guide to using jq to manipulate JSON data. You can find the show notes at https://bit.ly/4gHNvng and enjoy! Host: Jonathan Bennett Co-Hosts: Rob Campbell and Ken McDonald Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
video: https://youtu.be/BwQQ9Kj9gwU This week we have a special guest joining us, CubicleNate and we're going to be talking about his almost unhealthy obsession with openSUSE. Welcome to Destination Linux, where we discuss the latest news, hot topics, gaming, mobile, and all things Open Source & Linux. We will also be discussing how OpenAI's CEO admitted they're on the wrong side of history when it comes to open source. Now let's get this show on the road toward Destination Linux! Forum Discussion Thread (https://destinationlinux.net/forum) Download as MP3 (https://aphid.fireside.fm/d/1437767933/32f28071-0b08-4ea1-afcc-37af75bd83d6/671628aa-5a62-4f89-8e34-e254cc294409.mp3) Support the show by becoming a patron at tuxdigital.com/membership (https://tuxdigital.com/membership) or get some swag at tuxdigital.com/store (https://tuxdigital.com/store) Hosted by: Ryan (DasGeek) = dasgeek.net (https://dasgeek.net) Jill Bryant = jilllinuxgirl.com (https://jilllinuxgirl.com) Michael Tunnell = michaeltunnell.com (https://michaeltunnell.com) Chapters: 00:00:00 Intro 00:01:01 Our special guest for this week... 00:04:25 Nate's journey to Linux 00:10:15 Sandfly Security, agentless security for Linux [ad] 00:11:49 The story behind Nate's "almost unhealthy" obsession with openSUSE 00:33:36 Nate's Linux hobby turning into his career 00:53:22 OpenAI admits wrong side of history on Open Source 01:01:16 Linux Running Inside a PDF 01:04:05 Framework's RISC-V Mainboard Is Now Available 01:11:42 Gaming: Flathub loves games 01:19:02 Tip of the Week: fixing keyboard input in Flatpaks 01:25:12 Support the show 01:28:47 Outro Links: CubicleNate https://cubiclenate.com/ (https://cubiclenate.com/) https://tuxdigital.com/podcasts/linux-out-loud (https://tuxdigital.com/podcasts/linux-out-loud) https://tuxdigital.com/podcasts/linux-saloon/ (https://tuxdigital.com/podcasts/linux-saloon/) Sandfly Security, agentless security for Linux [ad] https://destinationlinux.net/sandfly (https://destinationlinux.net/sandfly) openSUSE https://www.opensuse.org/ (https://www.opensuse.org/) OpenAI admits wrong side of history on Open Source https://techcrunch.com/2025/01/31/sam-altman-believes-openai-has-been-on-the-wrong-side-of-history-concerning-open-source/ (https://techcrunch.com/2025/01/31/sam-altman-believes-openai-has-been-on-the-wrong-side-of-history-concerning-open-source/) Linux Running Inside a PDF https://www.xda-developers.com/linux-running-inside-pdf-file/ (https://www.xda-developers.com/linux-running-inside-pdf-file/) Framework's RISC-V Mainboard Is Now Available https://liliputing.com/risc-v-mainboard-for-the-framework-laptop-13-is-now-available-for-199/ (https://liliputing.com/risc-v-mainboard-for-the-framework-laptop-13-is-now-available-for-199/) https://www.hackster.io/news/the-commodore-is-keeping-up-with-linux-as-a-clever-risc-v-hack-brings-support-to-the-commodore-64-bbc7874898f0 (https://www.hackster.io/news/the-commodore-is-keeping-up-with-linux-as-a-clever-risc-v-hack-brings-support-to-the-commodore-64-bbc7874898f0) Gaming: Flathub loves games https://flathub.org/ (https://flathub.org/) https://www.gamingonlinux.com/2025/02/flathub-adds-we-love-games-and-on-the-go-sections-plus-details-on-whats-next-for-their-infrastructure/ (https://www.gamingonlinux.com/2025/02/flathub-adds-we-love-games-and-on-the-go-sections-plus-details-on-whats-next-for-their-infrastructure/) Tip of the Week: fixing keyboard input in Flatpaks https://cubiclenate.com/2025/01/28/no-keyboard-input-on-some-flatpak-games/ (https://cubiclenate.com/2025/01/28/no-keyboard-input-on-some-flatpak-games/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
We're celebrating the 1.7 release of Gparted, the new hybrid approach to a queueing problem in the Linux kernel, and musing over the news that GTK5 won't have any X11 support. Then there's KDE news, a Thunderbird update, OpenAI's troubled relationship with that "open" element of their name, and the kernel's maintainer worries. For tips we have pw-v4l2 for Pipewire fun, certbot for HTTPS certificate wrangling, and rocminfo for examining your system's ROCM status. You can find the show notes at https://bit.ly/3Emasia and happy Linuxing! Host: Jonathan Bennett Co-Hosts: Ken McDonald and David Ruggles Download or subscribe to Untitled Linux Show at https://twit.tv/shows/untitled-linux-show Want access to the ad-free video and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
video: https://youtu.be/qAHxogc8QTc Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a brand new version of the Linux kernel to talk about. Well, maybe. Technically, the 6.13 release is not until this Sunday, and I'm recording this before Sunday, so we're just going to roll the dice, and hopefully it doesn't get delayed. Also, we have some distro news this week to talk about with a new release from Linux Mint, MX Linux, and OpenSUSE. We also have some security news related to the rsync project, as well as a big flaw that was found in the Linux kernel. We're gonna talk about all of this and so much more on This Week in Linux, your weekly news show that keeps you up to date with what's going on in the Linux and Open Source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/00615b4f-cf0a-4492-8793-7862cca4c6d2.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:47 News for TWIL & TuxDigital 01:57 Linux 6.13 Released 05:48 Linux Mint 22.1 Released 13:59 openSUSE Slowroll and LXQt on Wayland 17:44 Rsync 3.4 Released due to Critical Security Bugs 19:15 Sandfly Security, agentless Linux security [ad] 21:04 MX Linux 23.5 Released 22:53 Enlightenment 0.27 Released 26:00 Flatpak release and mobile apps 31:06 Support the show Links: News for TWIL & TuxDigital https://www.youtube.com/@michael_tunnell (https://www.youtube.com/@michael_tunnell) https://destinationlinux.net/ (https://destinationlinux.net/) Linux 6.13 Released https://kernelnewbies.org/Linux_6.13 (https://kernelnewbies.org/Linux_6.13) https://omgubuntu.co.uk (https://omgubuntu.co.uk) Linux Mint 22.1 Released https://blog.linuxmint.com/?p=4793 (https://blog.linuxmint.com/?p=4793) https://www.omgubuntu.co.uk/2025/01/linux-mint-22-1-released-heres-everything-new (https://www.omgubuntu.co.uk/2025/01/linux-mint-22-1-released-heres-everything-new) openSUSE Slowroll and LXQt on Wayland https://news.opensuse.org/2025/01/09/ny-starts-with-slowroll-vb/ (https://news.opensuse.org/2025/01/09/ny-starts-with-slowroll-vb/) https://news.opensuse.org/2025/01/13/LXQt-Wayland-support-is-now-here/ (https://news.opensuse.org/2025/01/13/LXQt-Wayland-support-is-now-here/) Rsync 3.4 Released due to Critical Security Bugs https://rsync.samba.org/ (https://rsync.samba.org/) https://www.phoronix.com/news/Rsync-3.4-Released (https://www.phoronix.com/news/Rsync-3.4-Released) https://www.omgubuntu.co.uk/2025/01/rsync-secuity-bugs-ubuntu-updates (https://www.omgubuntu.co.uk/2025/01/rsync-secuity-bugs-ubuntu-updates) https://ubuntu.com//blog/rsync-remote-code-execution (https://ubuntu.com//blog/rsync-remote-code-execution) Sandfly Security, agentless Linux security [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) MX Linux 23.5 Released https://mxlinux.org/blog/mx-23-5-now-available/ (https://mxlinux.org/blog/mx-23-5-now-available/) Enlightenment 0.27 Released https://www.enlightenment.org/news/2025-01-11-enlightenment-0.27.0 (https://www.enlightenment.org/news/2025-01-11-enlightenment-0.27.0) https://www.phoronix.com/news/Enlightenment-0.27 (https://www.phoronix.com/news/Enlightenment-0.27) https://www.omgubuntu.co.uk/2025/01/enlightenment-0-27-released (https://www.omgubuntu.co.uk/2025/01/enlightenment-0-27-released) Flatpak release and mobile apps https://feaneron.com/2025/01/14/flatpak-1-16-is-out/ (https://feaneron.com/2025/01/14/flatpak-1-16-is-out/) https://github.com/flatpak/flatpak/releases/tag/1.16.0 (https://github.com/flatpak/flatpak/releases/tag/1.16.0) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
It's the year-in-review show, and the Steam survey, and the Linux Kernel commit review. There's also Proxmox news, news on Debian 13, and questions about x.org. Then the guys dove into their predictions from last year, and made new predictions for 2025. Check it out to see how they did! You can find the show notes at https://bit.ly/4fMbHnK and happy new year! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and Ken McDonald Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
video: https://youtu.be/Za_MPfQ9Zdo Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, we have a ton to talk about. So much happened. I took last week off because of the holidays, and there's just a lot happened in that period of time. So let's talk about it. First, we have Xfce because Xfce 4.20 has been released. openSUSE has announced a new package management tool. There is now an alpha release for the Serpent OS distribution. There's also a Steam Winter Sale that's going on right now. And we've got news from DreamWorks. Yes, that DreamWorks. All of this and more on This Week in Linux, the weekly news show that keeps you up to date with what's going on in the Linux and open source world. Now let's jump right into Your Source for Linux GNews. Download as MP3 (https://aphid.fireside.fm/d/1437767933/2389be04-5c79-485e-b1ca-3a5b2cebb006/1ede6654-d4ab-4e43-a0b9-ed9895bd442f.mp3) Support the Show Become a Patron = tuxdigital.com/membership (https://tuxdigital.com/membership) Store = tuxdigital.com/store (https://tuxdigital.com/store) Chapters: 00:00 Intro 00:50 Xfce 4.20 Released 07:35 openSUSE Announces New "YQPkg" Package Management Tool 11:23 Serpent OS Alpha Release 13:30 Sandfly Security, agentless security platform [ad] 14:54 Fedora Asahi Remix 41 Released 18:00 Darktable 5.0 Released 21:28 Steam Winter Sale & more from Valve 22:14 Valve joining Lenovo at CES 2025 23:02 Steam Replay 2024 23:40 New Steam Record of 39 Million Concurrent Users 24:26 OpenMoonRay 1.7 Released 25:46 MakuluLinux LinDoz 2025 Released 29:20 Support the show Links: Xfce 4.20 Released https://xfce.org/about/news/?post=1734220800 (https://xfce.org/about/news/?post=1734220800) openSUSE Announces New "YQPkg" Package Management Tool https://news.opensuse.org/2024/12/20/new-pkg-mgmt-tool-debuts/ (https://news.opensuse.org/2024/12/20/new-pkg-mgmt-tool-debuts/) Serpent OS Alpha Release https://serpentos.com/blog/2024/12/23/serpent-os-enters-alpha/ (https://serpentos.com/blog/2024/12/23/serpent-os-enters-alpha/) Sandfly Security, agentless security platform [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) Fedora Asahi Remix 41 Released https://fedoramagazine.org/fedora-asahi-remix-41-is-now-available/ (https://fedoramagazine.org/fedora-asahi-remix-41-is-now-available/) Darktable 5.0 Released https://www.darktable.org/2024/12/darktable-5.0.0-released/ (https://www.darktable.org/2024/12/darktable-5.0.0-released/) https://lwn.net/Articles/1003200/ (https://lwn.net/Articles/1003200/) Steam Winter Sale & more from Valve https://store.steampowered.com/ (https://store.steampowered.com/) https://www.gamingonlinux.com/2024/12/valve-will-join-lenovo-at-ces-2025-for-the-future-of-gaming-handhelds/ (https://www.gamingonlinux.com/2024/12/valve-will-join-lenovo-at-ces-2025-for-the-future-of-gaming-handhelds/) https://www.gamingonlinux.com/2024/12/steam-winter-sale-is-live-and-steam-awards-voting-is-now-open/ (https://www.gamingonlinux.com/2024/12/steam-winter-sale-is-live-and-steam-awards-voting-is-now-open/) https://www.gamingonlinux.com/2024/12/steam-replay-for-2024-is-live-to-show-off-all-those-hours-you-played/ (https://www.gamingonlinux.com/2024/12/steam-replay-for-2024-is-live-to-show-off-all-those-hours-you-played/) https://www.gamingonlinux.com/2024/12/steam-sets-a-new-record-with-39-million-concurrent-users-online/ (https://www.gamingonlinux.com/2024/12/steam-sets-a-new-record-with-39-million-concurrent-users-online/) OpenMoonRay 1.7 Released https://openmoonray.org/ (https://openmoonray.org/) https://github.com/dreamworksanimation/openmoonray/releases/tag/openmoonray-1.7.0.0 (https://github.com/dreamworksanimation/openmoonray/releases/tag/openmoonray-1.7.0.0) https://www.phoronix.com/news/OpenMoonRay-1.7 (https://www.phoronix.com/news/OpenMoonRay-1.7) https://destinationlinux.net/352 (https://destinationlinux.net/352) MakuluLinux LinDoz 2025 Released https://www.makululinux.com/wp/2024/12/24/lindoz-2025-is-live/ (https://www.makululinux.com/wp/2024/12/24/lindoz-2025-is-live/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com (https://store.tuxdigital.com)
The guys are back, this time with Intel news, Microsoft's new open source tool, and the dust-up between bottles and OpenSuse. We finally cover the Pi 500 and Pi monitor, review the latest Framework laptops, and take a look at Microsoft's new Open Source MarkItDown tool. For tips we have comm for comparing files, a tip on bash expansion, fbi for displaying images right on the frame buffer, and abcde for super simple audio CD extraction. The show notes are at https://bit.ly/4gtMyQ0 Merry Christmas, and we'll see you next year! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Jeff Massie, and David Ruggles Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
In Linux Out Loud episode 102, the hosts discuss the existence of new Linux users and the impact of atypical content creators. Bash scripting and AppImage tools, new apps to play with, and Matt shows his angel and demon. It's a blend of helpful insights, Linux community growth, and tech discoveries, delivered with the usual humor and camaraderie! Find the rest of the show notes at https://tuxdigital.com/podcasts/linux-out-loud/lol-102/ Contact info Matt (Twitter @MattTDN (https://twitter.com/MattTDN)) Wendy (Mastodon @WendyDLN (https://mastodon.online/@WendyDLN)) Nate (Website CubicleNate.com (https://cubiclenate.com/))
We go back in time to revisit our favorite classic SUSE release and then fix Brent's broken box the hard way.Sponsored By:Jupiter Party Annual Membership: Put your support on automatic with our annual plan, and get one month of membership for free!Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Support LINUX UnpluggedLinks:
Fedora 41 is here! We break down the best new features, then branch out for a three-way spin showdown. Which flavor will come out on top?Sponsored By:Jupiter Party Annual Membership: Put your support on automatic with our annual plan, and get one month of membership for free!Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Support LINUX UnpluggedLinks:
In Linux Out Loud episode 99, titled "Match Made in Arch Heaven", the hosts dive into tech adventures, from upgrading laptops for kids and scoring grants to managing multiple kernel versions in Tumbleweed. Matt shows off his new portable monitor, and the crew discusses the exciting collaboration between Valve and Arch Linux. With plenty of laughs and insights into gaming, open-source tech, and community-driven projects, this episode is packed with fun and techy goodness! Find the rest of the show notes at https://tuxdigital.com/podcasts/linux-out-loud/lol-99/ Contact info Matt (Twitter @MattTDN (https://twitter.com/MattTDN)) Wendy (Mastodon @WendyDLN (https://mastodon.online/@WendyDLN)) Nate (Website CubicleNate.com (https://cubiclenate.com/))
This week in Linux, there was a brand new version of the Linux kernel. Windows users have suffered a massive outage that continues to cause problem for a of people. There's some drama brewing related to the openSUSE brand and SUSE asking the project to rename. The Executive Director of the GNOME Foundation announced they […]
This week We chat about AMD's drive for Raytracing performance, Nvidia's push towards open kernel drivers, what Fedora did to help make that possible, and what's new in Kernel 6.10. Then Linux is making Rust safer, OpenSUSE is having a crisis, and oh yeah, the world's computers were bricked this weekend. It was a good day to be Linux users. For tips we have shuf for text suffling and mr for managing repositories en masse. Find the show notes at https://bit.ly/46cWzwA and have a great week! Host: Jonathan Bennett Co-Host: Jeff Massie Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
The EU are close to adopting a law to scan messages, Switzerland blazes the public money public code trail, Chromium-based browsers have a “special feature” to interact with Google sites, Mozilla shows that it needs advertising, and openSUSE might be getting a new (terrible) name. News EU chat control law proposes scanning your messages... Read More
The EU are close to adopting a law to scan messages, Switzerland blazes the public money public code trail, Chromium-based browsers have a “special feature” to interact with Google sites, Mozilla shows that it needs advertising, and openSUSE might be getting a new (terrible) name. News EU chat control law proposes scanning your messages... Read More
Sponsored By:Core Contributor Membership: Take $1 a month of your membership for a lifetime!Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices! 1Password Extended Access Management: 1Password Extended Access Management is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps. Support LINUX UnpluggedLinks:
Why do you use Linux and what problems do you run into? Both Noah and Steve make a value based decision when approaching tech, this week we dig deeper into why we choose to run Linux on the desktop. Could you power a 12v light, or 100 watt Ham Radio with a USB-C battery pack? Noah will tell you how doing so gave him light in his garage. Buckle your seat-belt, it's a packed show! -- During The Show -- 00:50 Intro Deepin Desktop Why do we run what we run Ownership of skills and resources 3 Categories Disposable Service Owned Linux is the only OS that allows you to own your computer Main stream wants "IT as a service" Why are you using Linux? 08:50 Alternative Phone OS - Don ATT installed apps GrapheneOS (https://grapheneos.org/) Used to rough edges App issues SeLinux ANS 368 (https://podcast.asknoahshow.com/368) GrapheneOS privacy features LineageOS (https://lineageos.org/) 15:38 ProxMox and OPNSense Passing the NIC solves the problem 16:39 Protecting Hard drives (encryption?) - Markus LUKS (https://en.wikipedia.org/wiki/Linux_Unified_Key_Setup) Key can be separated from the drive Layered encryption ZFS encryption GPG 20:23 Generating Your Own Power - Jim Pedal power Favorite feedback yet 22:22 Generating Your Own Power - Jim Dry contact 2 ways Shellys work CHECK YOUR MANUAL Typical wiring 27:30 Steve's Home Automation failure What do you do when critical automations fail 2.4 GHz WiFi keeps dropping Reach out to community/someone smarter Have a "fallback" Everything operates independently Home Assistant "stitches it all together" 31:30 News Wire Debian 12.6 - Debian (https://www.debian.org/News/2024/20240629) Plasma 6.1 on Endeavor OS - EndeavorOS (https://endeavouros.com/news/our-fifth-anniversary-the-return-of-arm-and-the-endeavour-release-with-plasma-6-1-is-here/) Leap Micro 6.0 - openSUSE (https://news.opensuse.org/2024/06/25/leap-micro-60-availability/) Pipewire 1.2 - freedesktop.org (https://gitlab.freedesktop.org/pipewire/pipewire/-/releases) OpenShot 3.2 OpenShot (https://www.openshot.org/blog/2024/06/24/new_openshot_release_320/) Wine 9.12 - WineHQ.org (https://gitlab.winehq.org/wine/wine/-/releases/wine-9.12) WSL2 Upgraded to Linux 6.6 - Phoronix (https://www.phoronix.com/news/Microsoft-WSL2-Linux-6.6-Kernel) SSHD Vulnerability - Developer-Tech.com (https://www.developer-tech.com/news/2024/jul/01/critical-openssh-vulnerability-threatens-millions-linux-systems/) CocoaPods Vulnerability - PC Mag (https://www.pcmag.com/news/flaws-in-open-source-software-exposed-almost-every-apple-device-to-hacking) Memory Unsafe Code - Tech Republic (https://www.techrepublic.com/article/open-source-projects-memory-unsafe-code-cisa/) Ladybird Browser - Ladybird (https://ladybird.org/announcement.html) 33:22 Owning USB-C Power Noah's garage light M4 LEDs (https://m4products.com/) Designed to be left on High quality chips 10-30v USA Warranty INIU Powerbank (https://www.amazon.com/INIU-27000mAh-Capacity-Powerbank-Compatible/dp/B0CB1FWNMK) 12v trigger (https://www.amazon.com/AITRIP-Charging-Trigger-Detector-Terminal/dp/B098WPSMV9) 38:08 Supreme Court Decision Texas and Florida laws challenged Art Gallery comparison Supreme Court (https://www.supremecourt.gov/opinions/23pdf/22-277_d18f.pdf) You are either responsible or not Moderation Violation of law vs Editorial Write in, what do you think? Network effect The Register (https://www.theregister.com/2024/07/01/supreme_court_social_media/?td=rt-3a) 49:30 Chevron Case 40 year precedent reversed The Register (https://www.theregister.com/2024/07/01/supreme_court_social_media/?td=rt-3a) 51:40 Element X Sign in via QR code Biggest PITA & Blessing True E2EE -- The Extra Credit Section -- For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard! This Episode's Podcast Dashboard (http://podcast.asknoahshow.com/397) Phone Systems for Ask Noah provided by Voxtelesys (http://www.voxtelesys.com/asknoah) Join us in our dedicated chatroom #GeekLab:linuxdelta.com on Matrix (https://element.linuxdelta.com/#/room/#geeklab:linuxdelta.com) -- Stay In Touch -- Find all the resources for this show on the Ask Noah Dashboard Ask Noah Dashboard (http://www.asknoahshow.com) Need more help than a radio show can offer? Altispeed provides commercial IT services and they're excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show! Altispeed Technologies (http://www.altispeed.com/) Contact Noah live [at] asknoahshow.com -- Twitter -- Noah - Kernellinux (https://twitter.com/kernellinux) Ask Noah Show (https://twitter.com/asknoahshow) Altispeed Technologies (https://twitter.com/altispeed)
This week we talk about network documentation and alerts! What makes a good alert? When should you tap a human on the shoulder, and what should be left to the backlog? -- During The Show -- 01:50 Music Production On Linux - William MuseScore (https://musescore.org/en) LMMS (https://lmms.io/) Audacity (https://www.audacityteam.org/) Write in if you do music on Linux! 05:45 DIY Smart Plug - Charlie Instructables (https://www.instructables.com/Plug-It-Open-Source-Smart-Plug/) TH3D Studio (https://www.th3dstudio.com/product/ezplug-open-source-wifi-smart-plug/) Enough electricity it could kill you 09:15 Thoughts from the AMA - Steve S "good enough" "Class of tool" vs "disposable" CLECs moving away from copper Convert to VOIP and ATA Cell companies not held to the same standard Right tool for the right job 17:30 Frappe.io - theendbeta Frappe.io (https://frappe.io/products) Looks cool Lots of apps Haven't used it 22:00 News Wire Perl 5.40 - Perl Doc (https://perldoc.perl.org/perldelta) Tor Browser 13.0.16 - Tor Project (https://blog.torproject.org/new-release-tor-browser-13016/) Firefox 127 - Mozilla (https://www.mozilla.org/en-US/firefox/127.0/releasenotes/) ICEWM 3.6 - Github (https://github.com/ice-wm/icewm/releases/tag/3.6.0) Cinnamon 6.2 - OMG Ubuntu (https://www.omgubuntu.co.uk/2024/06/cinnamon-6-2-desktop-whats-new) Opensuse Leap 15.6 - Opensuse (https://get.opensuse.org/leap/15.6/) Open Standards - Health Care IT News (https://www.healthcareitnews.com/news/linux-foundation-seeks-collaborators-new-interoperability-open-standard) Open Source Summit - PR News Wire (https://www.prnewswire.com/news-releases/the-linux-foundation-announces-schedule-for-open-source-summit-europe-2024-302172461.html) In-Vehicle Linux Milestone - Businesswire (https://www.businesswire.com/news/home/20240617966014/en/Red-Hat-Achieves-Major-Milestone-for-In-Vehicle-Linux-with-Functional-Safety-Assessment-and-Certification-for-Linux-Math-Library) DISGOMOJI - Bleeping Computer (https://www.bleepingcomputer.com/news/security/new-linux-malware-is-controlled-through-emojis-sent-from-discord/) Unity Catalog - Datanami (https://www.datanami.com/this-just-in/databricks-open-sources-unity-catalog-creating-the-industrys-only-universal-catalog-for-data-and-ai/) OpenVLA - Venture Beat (https://venturebeat.com/ai/openvla-is-an-open-source-generalist-robotics-model/) OpenSora - GitHub (https://github.com/hpcaitech/Open-Sora) Stable Difusion 3 Medium - Stability.ai (https://stability.ai/news/stable-diffusion-3-medium) 23:20 NetBox Interview Adam Kennedy - Senior Network Admin Network documentation NetBox Single source of truth DCIM (Data Center Infrastructure Management) Holds tons of information Documenting changes Importing/Exporting information Netbox and Ansible Extra information 34:00 Best Practices OS Ticket - Client notes Markdown docs Plain text Explorable and discoverable GNS3 (https://www.gns3.com/) NetBox falls down with multiple clients Menu Bar hides What is standard documentation? 3 Choices Plain text Wiki system Purpose built software Good to re-evaluate from time to time Cost of up ending the apple cart 48:00 Alerts What is a good alert? They need to be actionable What the problem is How it happened Where do I go Why dashboards are bad Ticket back log Human attention -- The Extra Credit Section -- For links to the articles and material referenced in this week's episode check out this week's page from our podcast dashboard! This Episode's Podcast Dashboard (http://podcast.asknoahshow.com/395) Phone Systems for Ask Noah provided by Voxtelesys (http://www.voxtelesys.com/asknoah) Join us in our dedicated chatroom #GeekLab:linuxdelta.com on Matrix (https://element.linuxdelta.com/#/room/#geeklab:linuxdelta.com) -- Stay In Touch -- Find all the resources for this show on the Ask Noah Dashboard Ask Noah Dashboard (http://www.asknoahshow.com) Need more help than a radio show can offer? Altispeed provides commercial IT services and they're excited to offer you a great deal for listening to the Ask Noah Show. Call today and ask about the discount for listeners of the Ask Noah Show! Altispeed Technologies (http://www.altispeed.com/) Contact Noah live [at] asknoahshow.com -- Twitter -- Noah - Kernellinux (https://twitter.com/kernellinux) Ask Noah Show (https://twitter.com/asknoahshow) Altispeed Technologies (https://twitter.com/altispeed)
Need a Linux distro to clean up after a ransomware incident? We've got CSI Linux! Want to run a newer mainline kernel with a RHEL derivitave? Rocky's doing it! And Nvidia has hired a Nouveau developer, the 6.10 kernel may have a blue screen of death, and Gentoo bans AI code! For tips we have nmon to build-your-own top, the final staps to re-sizing a virtual machine drive, and obfuscate for doing a bit of image redaction. Find the show notes at https://bit.ly/3Ju3l6G and see you next week! Host: Jonathan Bennett Co-Hosts: Rob Campbell and Jeff Massie Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
We're breaking down the attack: how it works, how it was hidden, and why time was running out for the attacker.Sponsored By:Tailscale: Tailscale is a programmable networking software that is private and secure by default - get it free on up to 100 devices!Kolide: Kolide is a device trust solution for companies with Okta, and they ensure that if a device isn't trusted and secure, it can't log into your cloud apps.Support LINUX UnpluggedLinks:
Happy 20th Birthday to Canonical, let's give OpenSuse and Warp a spin, and NTFS might get dropped from the kernel! Both AMD and Nvidia are making strides in opening more GPU code, there's a killer Linux laptop for real power users, and it might be time to retire the older NTFS driver from the Linux kernel. There's Wayland, desktops, and plenty more! For tips we have puter going open source, parted for growing your virtual partitions, dosage for keeping track of medication, and test for scripting goodness. Find the show notes at https://bit.ly/3PgU59f and enjoy! Host: Jonathan Bennett Co-Hosts: Rob Campbell, Ken McDonald, and Jeff Massie Want access to the video version and exclusive features? Become a member of Club TWiT today! https://twit.tv/clubtwit Club TWiT members can discuss this episode and leave feedback in the Club TWiT Discord.
Data-hoard with purpose and manage your audiobooks and podcasts with one application, plus the lone Linux box that remains on Mars.
OpenSUSE goes private. Android to get satellite comms. SanDisk and Western Digital in hot water. You're asking for it: YouTube children's privacy. Whoopsie! 8Base. Where the money is. The TSSHOCK vulnerability. BitForge. A Quantum resilient security key. Removed Chrome extensions notifications. HTTPS by default? WinRAR 6.23 final released. Closing the Loop. When Heuristics Backfire. Show Notes - https://www.grc.com/sn/SN-936-Notes.pdf Hosts: Steve Gibson and Leo Laporte Download or subscribe to this show at https://twit.tv/shows/security-now. Get episodes ad-free with Club TWiT at https://twit.tv/clubtwit You can submit a question to Security Now at the GRC Feedback Page. For 16kbps versions, transcripts, and notes (including fixes), visit Steve's site: grc.com, also the home of the best disk maintenance and recovery utility ever written Spinrite 6. Sponsors: panoptica.app kolide.com/securitynow joindeleteme.com/twit promo code TWIT