Linux distribution based on free and open-source software
POPULARITY
Categories
Si eres usuario de Linux, seguramente find y grep son herramientas que utilizas a diario, casi por inercia. Son pilares del sistema, sí, pero... ¿y si te dijera que hay una forma mucho más eficiente, más rápida y, sobre todo, mucho más simple de buscar archivos y texto en tu sistema?En este episodio, te guiare por un camino de modernización de tu terminal que te ahorrará horas y frustraciones. Olvídate de esas sintaxis complejas y de los tiempos de espera interminables cuando buscas en grandes volúmenes de código o en directorios llenos de archivos. Ha llegado el momento de dar la bienvenida a dos herramientas modernas, escritas en el potente lenguaje Rust, que están redefiniendo la productividad en la línea de comandos: fd y ripgrep.Todos hemos estado allí: tratando de recordar la combinación exacta de opciones para find (-name, -iname, -path, -exec, etc.), o lidiando con la lentitud de grep -r en un proyecto con miles de archivos. Estas herramientas clásicas, aunque potentes, nacieron en una era diferente del software. No ignoran por defecto directorios de Git, no colorean la salida para hacerla más legible, y su enfoque en la flexibilidad a menudo se traduce en complejidad para el usuario medio.Pero no te preocupes, ¡tenemos la solución! fd se presenta como el reemplazo definitivo para find. Es increíblemente rápido, tiene una sintaxis que parece leer la mente y, por defecto, sabe qué ignorar (¡adiós a los resultados de .git o node_modules en tus búsquedas!). Por otro lado, ripgrep (rg) es el nuevo rey de la búsqueda de texto, dejando a grep en el polvo en términos de velocidad y facilidad de uso. Incorpora Smart Case, colorea las coincidencias y es un verdadero bólido a la hora de rastrear patrones de texto, incluso en archivos enormes.En los próximos minutos, desglosaremos todo lo que necesitas saber para empezar a usar fd y ripgrep hoy mismo:Introducción al Problema: Exploraremos las razones por las que find y grep pueden ralentizar tu trabajo y por qué es crucial adoptar alternativas modernas.Presentación de fd: Descubriremos cómo esta joya escrita en Rust simplifica la búsqueda de archivos. Hablaremos de su sintaxis intuitiva, su capacidad para ignorar archivos ocultos y directorios .git automáticamente, y cómo su salida coloreada hace que encontrar lo que buscas sea un placer visual.Presentación de ripgrep (rg): Sumérgete en el mundo de la búsqueda de texto ultrarrápida. Conocerás por qué ripgrep es tan eficiente, su soporte para expresiones regulares (PCRE2), el inteligente Smart Case que te ahorra pulsaciones y cómo su salida te da contexto inmediato.Instalación Sencilla: Te proporcionaremos los comandos exactos para instalar fd y ripgrep en las distribuciones más populares, como Ubuntu (y derivados de Debian) y Arch Linux (incluido Manjaro). ¡Estarás operativo en minutos!Cinco Usos Básicos (Comparativa find/grep vs fd/ripgrep):Buscar un archivo por nombre.Localizar archivos ocultos.Buscar una cadena de texto recursivamente.Realizar búsquedas ignorando mayúsculas/minúsculas.Filtrar por tipo de archivo.Cinco Trucos Imprescindibles (Llevando tu productividad al siguiente nivel):El "Santo Grial"Encuentra y ejecutaBúsqueda inversa de textoFiltrado por tipo de archivo en ripgrepBúsquedas exactas con fdMás información y enlaces en las notas del episodio
Si eres usuario de Linux, seguramente find y grep son herramientas que utilizas a diario, casi por inercia. Son pilares del sistema, sí, pero... ¿y si te dijera que hay una forma mucho más eficiente, más rápida y, sobre todo, mucho más simple de buscar archivos y texto en tu sistema?En este episodio, te guiare por un camino de modernización de tu terminal que te ahorrará horas y frustraciones. Olvídate de esas sintaxis complejas y de los tiempos de espera interminables cuando buscas en grandes volúmenes de código o en directorios llenos de archivos. Ha llegado el momento de dar la bienvenida a dos herramientas modernas, escritas en el potente lenguaje Rust, que están redefiniendo la productividad en la línea de comandos: fd y ripgrep.Todos hemos estado allí: tratando de recordar la combinación exacta de opciones para find (-name, -iname, -path, -exec, etc.), o lidiando con la lentitud de grep -r en un proyecto con miles de archivos. Estas herramientas clásicas, aunque potentes, nacieron en una era diferente del software. No ignoran por defecto directorios de Git, no colorean la salida para hacerla más legible, y su enfoque en la flexibilidad a menudo se traduce en complejidad para el usuario medio.Pero no te preocupes, ¡tenemos la solución! fd se presenta como el reemplazo definitivo para find. Es increíblemente rápido, tiene una sintaxis que parece leer la mente y, por defecto, sabe qué ignorar (¡adiós a los resultados de .git o node_modules en tus búsquedas!). Por otro lado, ripgrep (rg) es el nuevo rey de la búsqueda de texto, dejando a grep en el polvo en términos de velocidad y facilidad de uso. Incorpora Smart Case, colorea las coincidencias y es un verdadero bólido a la hora de rastrear patrones de texto, incluso en archivos enormes.En los próximos minutos, desglosaremos todo lo que necesitas saber para empezar a usar fd y ripgrep hoy mismo:Introducción al Problema: Exploraremos las razones por las que find y grep pueden ralentizar tu trabajo y por qué es crucial adoptar alternativas modernas.Presentación de fd: Descubriremos cómo esta joya escrita en Rust simplifica la búsqueda de archivos. Hablaremos de su sintaxis intuitiva, su capacidad para ignorar archivos ocultos y directorios .git automáticamente, y cómo su salida coloreada hace que encontrar lo que buscas sea un placer visual.Presentación de ripgrep (rg): Sumérgete en el mundo de la búsqueda de texto ultrarrápida. Conocerás por qué ripgrep es tan eficiente, su soporte para expresiones regulares (PCRE2), el inteligente Smart Case que te ahorra pulsaciones y cómo su salida te da contexto inmediato.Instalación Sencilla: Te proporcionaremos los comandos exactos para instalar fd y ripgrep en las distribuciones más populares, como Ubuntu (y derivados de Debian) y Arch Linux (incluido Manjaro). ¡Estarás operativo en minutos!Cinco Usos Básicos (Comparativa find/grep vs fd/ripgrep):Buscar un archivo por nombre.Localizar archivos ocultos.Buscar una cadena de texto recursivamente.Realizar búsquedas ignorando mayúsculas/minúsculas.Filtrar por tipo de archivo.Cinco Trucos Imprescindibles (Llevando tu productividad al siguiente nivel):El "Santo Grial"Encuentra y ejecutaBúsqueda inversa de textoFiltrado por tipo de archivo en ripgrepBúsquedas exactas con fdMás información y enlaces en las notas del episodio
Secure Boot for FreeBSD, Systems lie about their proper functioning, Teching the tech and rushing the endorphins, Passing a Device Into A FreeBSD Jail With A Stable Name, ZFS snapshots aren't as immutable as I thought, due to snapshot metadata, Let's write a peephole optimizer for QBE's arm64 backend, Migrate a Peertube instance from Debian to FreeBSD, and more NOTES This episode of BSDNow is brought to you by Tarsnap (https://www.tarsnap.com/bsdnow) and the BSDNow Patreon (https://www.patreon.com/bsdnow) Headlines Secure Boot for FreeBSD (https://forums.FreeBSD.org/threads/how-to-set-up-secure-boot-for-freebsd.99169/) The Fundamental Failure-Mode Theorem: Systems lie about their proper functioning (https://devblogs.microsoft.com/oldnewthing/20250716-00/?p=111383) News Roundup Teching the tech and rushing the endorphins (https://vulcanridr.mataroa.blog/blog/teching-the-tech-and-rushing-the-endorphins) Passing a Device Into A FreeBSD Jail With A Stable Name (https://blog.feld.me/posts/2025/09/passing-device-freebsd-jail-with-stable-name/) ZFS snapshots aren't as immutable as I thought, due to snapshot metadata (https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSSnapshotsNotFullyImmutable) Let's write a peephole optimizer for QBE's arm64 backend (https://briancallahan.net/blog/20250901.html) Migrate a Peertube instance from Debian to FreeBSD (https://www.tumfatig.net/2025/migrate-a-peertube-instance-from-debian-to-freebsd) Tarsnap This weeks episode of BSDNow was sponsored by our friends at Tarsnap, the only secure online backup you can trust your data to. Even paranoids need backups. Feedback/Questions -Steve - Interviews (https://github.com/BSDNow/bsdnow.tv/blob/master/631/feedback/Steve%20-%20Interviews.md) Send questions, comments, show ideas/topics, or stories you want mentioned on the show to feedback@bsdnow.tv (mailto:feedback@bsdnow.tv) Join us and other BSD Fans in our BSD Now Telegram channel (https://t.me/bsdnow)
En este episodio repasamos las noticias más potentes de la semana en hardware, informática y Linux:NVIDIA invierte 5.000 millones en Intel y abre una alianza histórica en centros de datos y PCs.GNOME 49 “Brescia” ya está disponible con mejoras en interfaz y usabilidad.Zorin OS 18 Beta sorprende con tiling avanzado y web apps integradas.LMDE 7 “Gigi” Beta, la alternativa de Mint con base Debian 13.Ubuntu 25.10 cambia a Dracut como generador de initramfs por defecto.Samba 4.23 mejora la interoperabilidad POSIX y añade SMB sobre QUIC.VirtualBox 7.2.2 trae correcciones clave para virtualización de escritorio.Un recorrido de 30 minutos para ponerte al día, con comentarios claros y enfoque práctico para autodidactas, sysadmins y curiosos de Linux.
This show has been flagged as Clean by the host. Hello, this is your host, Archer72 for another episode of Hacker Public Radio. In this episode, I continue to fall for the AI trap. Here I was, minding my own business, when I was bothered by the icon only showing a generic icon for the Beeper app. Now, I'm not saying that Duck.ai is not useful, but be very careful what you ask for. It was probably a combination of the early morning, and not reading completely through the AI suggestions, but I ended up losing all icons on the Gnome desktop except for a few like Firefox. I won't leave the problematic command so I don't trip up the listener, but it involved updating a desktop database. This in turn left a dash or blank where the icons should be. If that wasn't bad enough, it was suggested to reset Gnome settings, and nothing was as it seemed before. Things that I had taken for granted were not there. You forget what custom settings are there when mistakes like this are made. So the short answer is that the icons directory, located on my Debian system should be located in .local/share/icons. Instead it was in a sub-directory .local/share/icons/icons Correcting the directory location solved everything, but I was still left to reset my custom Gnome keybindings. • Swap Escape and Caps lock key I used this because I am a Vim user, and this feels more natural when I need to hit Escape to change modes. In Gnome, the setting is under Gnome Tweaks > Keyboard > Additional Layout Options > Swap Esc and Caps Lock Key As of this show release the current stable version is Trixie. Gnome Tweaks - Debian Trixie can be installed by sudo apt install gnome-tweaks on any Debian based system. • Compose key • Compose key shortcuts The Compose key is found at Settings > Keyboard > Compose Key. I selected the Menu key, because this is rarely used, and can still be accessed by the track pad. • Shortcut to open MPV with a clipboard URL from Youtube This can be found in Setting > Keyboard > View and Customize Shortcuts > Custom Shortcuts Shift+Ctrl+P Code placed in /usr/local/bin/ #!/bin/bash ## mpv-url url=`xsel -o -b` echo $url mpv $url Now I can get back to what I started in the first place, creating a .desktop file for Beeper. I created a beeper-desktop.desktop file in `~/.local/share/applications' with the follow contents. [Desktop Entry] Name=Beeper Desktop Exec=/home/mark/AppImages/Beeper-4.1.169.AppImage Icon=/home/mark/.local/share/icons/beeper.png Type=Application Categories=Network;InstantMessaging; Terminal=false StartupWMClass=Beeper The last part of the config file can be found by xprop | grep WM_CLASS Provide feedback on this episode.
This is a recap of the top 10 posts on Hacker News on September 12, 2025. This podcast was generated by wondercraft.ai (00:30): EU court rules nuclear energy is clean energyOriginal post: https://news.ycombinator.com/item?id=45224967&utm_source=wondercraft_ai(01:54): The treasury is expanding the Patriot Act to attack Bitcoin self custodyOriginal post: https://news.ycombinator.com/item?id=45221274&utm_source=wondercraft_ai(03:18): Qwen3-NextOriginal post: https://news.ycombinator.com/item?id=45219228&utm_source=wondercraft_ai(04:42): Many hard LeetCode problems are easy constraint problemsOriginal post: https://news.ycombinator.com/item?id=45222695&utm_source=wondercraft_ai(06:06): Corporations are trying to hide job openings from US citizensOriginal post: https://news.ycombinator.com/item?id=45223719&utm_source=wondercraft_ai(07:30): UTF-8 is a brilliant designOriginal post: https://news.ycombinator.com/item?id=45225098&utm_source=wondercraft_ai(08:54): Float ExposedOriginal post: https://news.ycombinator.com/item?id=45217415&utm_source=wondercraft_ai(10:18): Chat Control faces blocking minority in the EUOriginal post: https://news.ycombinator.com/item?id=45221580&utm_source=wondercraft_ai(11:42): QGIS is a free, open-source, cross platform geographical information systemOriginal post: https://news.ycombinator.com/item?id=45224156&utm_source=wondercraft_ai(13:06): Debian 13, Postgres, and the US time zonesOriginal post: https://news.ycombinator.com/item?id=45218111&utm_source=wondercraft_aiThis is a third-party project, independent from HN and YC. Text and audio generated using AI, by wondercraft.ai. Create your own studio quality podcast with text as the only input in seconds at app.wondercraft.ai. Issues or feedback? We'd love to hear from you: team@wondercraft.ai
En este episodio en formato monólogo repasamos lo más relevante de la semana en Linux y hardware: Debian 13.1 (primer point release de Trixie), el salto de Ubuntu 25.10 a Linux 6.17 y su beta inminente, el estado del kernel 6.17-rc5 y los movimientos alrededor de bcachefs. Además, novedades de la pila gráfica (Mesa 25.2.2, Wine 10.15), actualizaciones para Steam Deck/Proton, y en hardware las hojas de ruta de Intel (Arrow Lake Refresh / Nova Lake), el Ryzen 5 9500F de AMD y cambios recientes en drivers de NVIDIA.
Hauke und Micha begrüßen euch zu ihrer regelmäßigen Infotainment-Sendung rund um Linux und Open Source.Heute geht es mitunter um: Portainer, BCachefs, BTRFS, Matrix.org-Ausfall, Linux Mint, Debian und Twitch-Bots.
Google's sideloading lockdown has us pushing Wes' Pixel further than Google ever dreamed.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. Unraid: A powerful, easy operating system for servers and storage. Maximize your hardware with unmatched flexibility. Support LINUX UnpluggedLinks:
En este episodio cubrimos las noticias más destacadas del mundo Linux y Open Source del 17 al 23 de agosto de 2025. Hablamos sobre el persistente ataque DDoS a Arch Linux, el nuevo asistente KISS en KDE Plasma 6.5, los avances de GNOME con JPEG-XL, el soporte de mesh shaders en Mesa 25.3, y el lanzamiento oficial de Debian 13 “Trixie”. También comentamos el modelo de IA de NASA e IBM para clima solar, novedades en Calibre, Tails, LibreOffice y más. ¡Una semana cargada de lanzamientos, mejoras de software y desafíos para la comunidad!
Hauke und Micha begrüßen euch zu ihrer regelmäßigen Infotainment-Sendung rund um Linux und Open Source.Heute geht es mitunter um: Debian 13, Wayland, Fedora COPR, Xlibre, Firefox CRL, KieLux und KI
This show has been flagged as Clean by the host. Create a vm with Debian 12 and at least 4 Gb of RAM and say 20-30 Gb disc space. installation ============ sudo apt install -y gpg postgresql wget -q -O - https://nightly.odoo.com/odoo.key | sudo gpg --dearmor -o /usr/share/keyrings/odoo-archive-keyring.gpg echo 'deb [signed-by=/usr/share/keyrings/odoo-archive-keyring.gpg] https://nightly.odoo.com/18.0/nightly/deb/ ./' | sudo tee /etc/apt/sources.list.d/odoo.list Odoo CE latest nightly build https://nightly.odoo.com/18.0/nightly/deb/odoo_18.0.latest_all.deb sudo apt-get update && sudo apt-get install -y odoo Install wkhtmltopdf wget -O wkhtmltox_0.12.6.1-3.bookworm_amd64.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb dpkg -i wkhtmltox_0.12.6.1-3.bookworm_amd64.deb apt install -f -y apt install -y python3-xlwt python3-num2words python3-phonenumbers systemctl status odoo First use ========= http://:8069/ Will relocate to /web/database/selector Master Password to protect this form Database Name. Email: your email Password: your desired password Phone Number: optional Language: your desired language Country: select your country Demo Data: select to get demo data. Click "Create database" Wait. Login. You see /odoo/apps. Upper left square-icon shows 'Apps' and 'Settings'. Let's install a simple app: contacts Search in the search bar for "contacts" and when displayed, click the 'Activate' button of the "contacts" app. When done, the same menu now contains: Discuss, To-do, contacts, Project, Email Marketing, Surveys, Employees and the earlier mentioned Apps and Settings. Go back to 'Apps' and Activate the "Sales" app. This will also install the "Invoicing" app. Time to start playing around. Some tech stuff, interesting locations =============== /etc/odoo/odoo.conf Here you can add additional addons later: /var/lib/odoo/.local/share/Odoo/addons/18.0/ Here are all files uploaded to Odoo: find /var/lib/odoo/.local/share/Odoo/filestore/ This is where user sessions are administrated: find /var/lib/odoo/.local/share/Odoo/sessions/ And these are the main locations where the Odoo program can be found. ls -al /usr/lib/python3/dist-packages/odoo/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ ls -al /usr/lib/python3/dist-packages/odoo/addons/ | wcProvide feedback on this episode.
O Debian 13 acaba de chegar e, junto com ele, vem toda a bagagem de um projeto que carrega décadas de história e uma comunidade espalhada pelo mundo. Ele é fruto de um trabalho meticuloso, feito por voluntários que acreditam na importância da liberdade de software, da estabilidade e de um sistema transparente. Essa reputação foi construída com paciência e atenção aos detalhes, e é exatamente isso que faz tantos usuários confiarem nele.E ainda existe o universo das distribuições derivadas, criadas a partir do Debian. Elas oferecem instaladores mais simples, interfaces ajustadas e pacotes atualizados — caminhos que prometem reduzir a complexidade. Mas será que isso significa abrir mão de algo essencial presente no Debian original? Ou é apenas uma forma de aproveitar sua base sólida com menos obstáculos pelo caminho?O lançamento do Debian 13 é uma celebração, mas também um convite à reflexão.Escolher um sistema não é só sobre recursos técnicos, é sobre alinhar expectativas, pensar no tipo de experiência que você quer ter e na sua disposição para enfrentar desafios. No fim, a questão talvez não seja se o Debian 13 está pronto para você, mas se você está pronto para o Debian 13.--- https://diolinux.com.br/podcast/voce-esta-pronto-para-o-debian-13.html
This week we talk about the ethical use of Ai and the blurring between humans and code. We take your feedback and answer some questions about VoIP & SIP. -- During The Show -- 00:55 Dangers of AI AI ethics Leveraging AI responsibly Humans take the easiest path Noah's kid's and AI ANS AI adventure Notebook LM Ask Noah Show AI summary AI is only getting better Guard rails Effects of AI on the brain Guy who leaves his wife for AI Politeness and AI 23:54 News Wire Cmake 4.1 - cmake.org (https://cmake.org/download) Rust 1.89 - releases.rs (https://releases.rs/docs/1.89.0) GCC 15.2 - gcc.gnu.org (https://gcc.gnu.org/pipermail/gcc-announce/2025/000189.html) Peazip 10.6 - github.com (https://github.com/peazip/PeaZip/releases/tag/10.6.0) Handbrake 1.10 - handbrake.fr (https://handbrake.fr/news.php?article=59) Audacity 3.7.5 - audacityteam.org (https://support.audacityteam.org/additional-resources/changelog/audacity-3.7.5) Calibre 8.8 - calibre-ebook.com (https://calibre-ebook.com/whats-new) KDE Frameworks 6.17.0 - kde.org (https://kde.org/announcements/frameworks/6/6.17.0) KDE 6.4.4 - kde.org (https://kde.org/announcements/plasma/6/6.4.4) MESA 25.2 - ubuntu.com (https://fridge.ubuntu.com/2025/08/08/ubuntu-24-04-3-lts-released) Windows 11 Native UI Framework - windowscentral.com (https://www.windowscentral.com/microsoft/windows-11/microsoft-confirms-windows-app-sdk-winui-open-source) Debian 13 - debian.org (https://www.debian.org/News/2025/20250809) Ubuntu 24.04.3 - ubuntu.com (https://fridge.ubuntu.com/2025/08/08/ubuntu-24-04-3-lts-released) Proxmox 9.0 - proxmox.com (https://www.proxmox.com/en/about/company-details/press-releases/proxmox-virtual-environment-9-0) Linuxmint 22.2 linuxmint.com (https://www.linuxmint.com/rel_zara.php) Extix 25.8 - extix.se (https://www.extix.se/extix-deepin-25-8-live-based-on-deepin-25-0-1-stable-latest-with-refracta-snapshot-and-kernel-6-16-0-amd64-exton-build-250806) Tails 7.0 RC - torproject.org (https://blog.torproject.org/tails-7_0-rc1-testing) Alma Linux and Native Nvidia GPUs - almalinux.org (https://almalinux.org/blog/2025-08-06-announcing-native-nvidia-suport) BadCam - securityweek.com (https://www.securityweek.com/badcam-new-badusb-attack-turns-linux-webcams-into-persistent-threats) Big Sleep - techzine.eu (https://www.techzine.eu/news/security/133674/googles-ai-big-sleep-discovers-twenty-new-security-vulnerabilities-in-open-source) Grok 2 Going Open Source - reuters.com (https://www.reuters.com/business/musk-says-xai-will-open-source-grok-2-chatbot-2025-08-06) Roblox AI - abcnews.go.com (https://abcnews.go.com/Technology/wireStory/roblox-rolls-open-source-ai-system-protect-kids-124443058) NVIDIA 580 Drivers - phoronix.com (https://www.phoronix.com/news/NVIDIA-580.76.05-Linux) Gnome 48.4 - gnome.org (https://discourse.gnome.org/t/gnome-48-4-released/30706) Virtualbox 7.2 - virtualbox.org (https://www.virtualbox.org/wiki/Changelog-7.2) Podman 5.6 - github.com (https://github.com/containers/podman/releases) Mabox Linux 25.08 - maboxlinux.org (https://maboxlinux.org/mabox-25-08-chinese-japanese-and-korean-fonts) EasyOS 7.0 - bkhome.org (https://bkhome.org/news/202508/easyos-excalibur-series-version-70-released.html) Bluestar Linux 6.16 - sourceforge.net (https://sourceforge.net/projects/bluestarlinux) Zephix 8.0 - zephix-linux.sourceforge.io (https://zephix-linux.sourceforge.io) EasyOS 7.0 - bkhome.org (https://bkhome.org/news/202508/easyos-excalibur-series-version-70-released.html) ASMI Linux 13 - theregister.com (https://www.theregister.com/2025/08/15/asmi_13_debian_edition) UAT-7237 - thehackernews.com (https://thehackernews.com/2025/08/taiwan-web-servers-breached-by-uat-7237.html) Plague Malware - latesthackingnews.com (https://latesthackingnews.com/2025/08/13/newly-discovered-plague-linux-backdoor-malware-remained-undetected-for-a-year) Dropbox & 2 Year Old Apache Vulnerability - zdnet.com (https://www.zdnet.com/article/dripdropper-linux-malware-cleans-up-after-itself) Netfilter Flaw - gbhackers.com (https://gbhackers.com/linux-kernel-netfilter-flaw) CrossC2 - phoronix.com (https://www.phoronix.com/news/Linux-Bhyve-Detection) FireWood Backdoor - gbhackers.com (https://gbhackers.com/firewood-malware-targets-linux-systems) ASI Revived - webpronews.com (https://www.webpronews.com/google-revives-linux-asi-overhead-slashed-to-13-for-enhanced-security) Buttercup AI - helpnetsecurity.com (https://www.helpnetsecurity.com/2025/08/18/buttercup-ai-vulnerability-scanner-open-source) CANN Toolkit - artificialintelligence-news.com (https://www.artificialintelligence-news.com/news/huawei-nvidia-cann-cuda-open-source-challenge) 28:03 JMP Chat - Jordan Out going calls Reset sip credentials Use an asterisks Wizard Problem with binding things to phone numbers 33:14 SIP and Switches - Michael Mikrotik pros and cons Flashing alternative software 37:37 OpenWRT on Unifi - Fred OpenWRT Table of Hardware (https://toh.openwrt.org/?view=normal) UniFi AC Page (https://openwrt.org/toh/ubiquiti/unifiac) UniFi AC Pro Image (https://downloads.openwrt.org/releases/24.10.0/targets/ath79/generic/openwrt-24.10.0-ath79-generic-ubnt_unifiac-pro-squashfs-sysupgrade.bin) Noah already flashed a UniFi AP Fixing Steve's WiFi SCALE WiFi 49:24 Email Server Recommendations - Joshua Viability of self hosted email Mail in a Box & Nextcloud Mail cow -- 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/456) 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)
video: https://youtu.be/iGK5c99EnuY This week on Destination Linux, we dive into big updates across the Linux world — from Google pushing Android toward a desktop-class OS, to Ubuntu's latest point release packed with new hardware support, and the arrival of Debian 13 with thousands of improvements. Plus, we have software spotlight to help you kick some bad habits. All of this and more on this episode of Destination Linux. Forum Discussion Thread (https://destinationlinux.net/forum) Download as MP3 (https://aphid.fireside.fm/d/1437767933/32f28071-0b08-4ea1-afcc-37af75bd83d6/c85c8dee-25d2-4ab3-bce0-c294285c4294.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 Intro 02:58 Community Feedback 03:24 Listener Vincent: The Almighty Ryan 07:53 Listener John: Kove Interview & Jill's VAX Collection 12:35 Sandfly Security 14:46 Destination Android? 27:55 Ubuntu 24.04.3 LTS 34:37 Debian 13 41:23 Is Michael a REAL Fanboy? 43:16 Software Pick: Table Habit 50:37 Support the Show 53:37 Outro 54:23 Post Show Links: Community Feedback https://destinationlinux.net/comments (https://destinationlinux.net/comments) https://destinationlinux.net/forum (https://destinationlinux.net/forum) Sandfly Security https://destinationlinux.net/sandfly (https://destinationlinux.net/sandfly) Destination Android? https://www.androidauthority.com/android-linux-terminal-future-plans-3581752/ (https://www.androidauthority.com/android-linux-terminal-future-plans-3581752/) Ubuntu 24.04.3 LTS https://www.omgubuntu.co.uk/2025/08/ubuntu-24-04-3-lts-released (https://www.omgubuntu.co.uk/2025/08/ubuntu-24-04-3-lts-released) Debian 13 https://bits.debian.org/2025/08/trixie-released.html (https://bits.debian.org/2025/08/trixie-released.html) https://www.debian.org/releases/trixie/release-notes/ (https://www.debian.org/releases/trixie/release-notes/) https://www.omgubuntu.co.uk/2025/08/debian-13-trixie-released-with-2-years-worth-of-improvements (https://www.omgubuntu.co.uk/2025/08/debian-13-trixie-released-with-2-years-worth-of-improvements) Software Pick: Table Habit https://flathub.org/apps/io.github.friesi23.mhabit (https://flathub.org/apps/io.github.friesi23.mhabit) Support the Show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
En este episodio repasamos las 10 noticias más importantes del mundo Linux hasta el 17 de agosto de 2025. Hablamos del impacto de los despidos en Intel y cómo están dejando sin soporte a drivers clave del kernel. También exploramos las nuevas versiones de GNOME 48.4, GNOME 49 Beta y KDE Gear 25.08, junto con los lanzamientos de SparkyLinux 8.0 y Grml 2025.08. Debian celebra su 32.º aniversario, VirtualBox se actualiza con soporte para Linux 6.17, y NVIDIA lanza un nuevo driver con mejoras para Wayland. Finalmente, revisamos los avances del kernel Linux 6.17‑rc2. ¡Todo lo que necesitas saber en menos de 10 minutos!
SANS Internet Stormcenter Daily Network/Cyber Security and Information Security Stormcast
CVE-2017-11882 Will Never Die The (very) old equation editor vulnerability is still being exploited, as this recent sample analyzed by Xavier shows. The payload of the Excel file attempts to download and execute an infostealer to exfiltrate passwords via email. https://isc.sans.edu/diary/CVE-2017-11882%20Will%20Never%20Die/32196 Windows Kerberos Elevation of Privilege Vulnerability Yesterday, Microsoft released a patch for a vulnerability that had already been made public. This vulnerability refers to the privilege escalation taking advantage of a path traversal issue in Windows Kerberos affecting Exchange Server in hybrid mode. https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-53779 Persistent Risk: XZ Utils Backdoor Still Lurking in Docker Images Some old Debian Docker images containing the xz-utils backdoor are still available for download from Docker Hub via the official Debian account. https://www.binarly.io/blog/persistent-risk-xz-utils-backdoor-still-lurking-in-docker-images FortiSIEM / FortiWeb Vulnerablities Fortinet patched already exploited vulnerabilities in FortiWeb and FortiSIEM https://fortiguard.fortinet.com/psirt/FG-IR-25-152 https://fortiguard.fortinet.com/psirt/FG-IR-25-448
Ubuntu 24.04.3 brings a new kernel, updated graphics, and better support for old GPUs. Debian 13 improves real-time performance and hardware compatibility.
A new Debian version is out and it's the end of the 32-bit x86 era, an AWS user almost found out the hard way about the need for proper backups, GitHub is finally fully swallowed into Microsoft (having gone all in on AI), and a quick KDE Korner. With guest hosts Gary from Linux After... Read More
A new Debian version is out and it's the end of the 32-bit x86 era, an AWS user almost found out the hard way about the need for proper backups, GitHub is finally fully swallowed into Microsoft (having gone all in on AI), and a quick KDE Korner. With guest hosts Gary from Linux After... Read More
Hauke, Jean und Micha begrüßen euch zu ihrer regelmäßigen Infotainment-Sendung rund um Linux und Open Source.Heute geht es mitunter um: KiLux, Debian 13, Proxmox 9, openSUSE Leap 16 RC, AUR Malware und Karl Klammer
Pues cuando actualicé a Debian 13 Trixie, pasaron cosas raras y el resultado fue que me cargué mi instancia de Mastodon. Traté de resumir las más de 4 horas que estuve buscando y tratando de resolver el problema en unos pocos minutos, y aquí se los cuento.. Te invito a debatir sobre este tema en el Foro de la Comunidad de TuPodcast https://foro.tupodcast.com Y otras formas de contacto las encuentran en: https://ernestoacosta.me/contacto.html Todos los medios donde publico contenido los encuentras en: https://ernestoacosta.me/ Si quieres comprar productos de RØDE, este es mi link de afiliados: https://brandstore.rode.com/?sca_ref=5066237.YwvTR4eCu1
video: https://youtu.be/xbAxLonf9iQ Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, there's some big distro news because we got a brand new version of Debian, probably, and openSUSE Leap 16 just hit release candidate status. We've also got some cool news from Nvidia including their stance against adding backdoors to their hardware. Plus, we've got new app releases from the Mastodon client Tuba and the awesome screenshot tool Flameshot. 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/c097383d-e87d-43d4-92f5-31d64b7afb00.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 01:06 Debian 13 Trixie Released (maybe) 04:12 NVIDIA says NO! to Backdoors and Kill Switches 07:49 OpenSUSE Leap 16.0 reaches RC status 10:32 Sandfly Security, agentless Linux security [ad] 12:57 Automotive Industry wants Open Source Collaboration 15:38 Flameshot 13 released 18:43 Tuba v0.10.0 released 20:46 Humble Bundles 22:37 Outro Links: Debian 13 Trixie Released (maybe) https://www.debian.org (https://www.debian.org) https://www.debian.org/releases/trixie/release-notes.en.pdf (https://www.debian.org/releases/trixie/release-notes.en.pdf) https://www.phoronix.com/review/debian-13-benchmarks (https://www.phoronix.com/review/debian-13-benchmarks) NVIDIA says NO! to Backdoors and Kill Switches https://blogs.nvidia.com/blog/no-backdoors-no-kill-switches-no-spyware/ (https://blogs.nvidia.com/blog/no-backdoors-no-kill-switches-no-spyware/) https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html (https://docs.nvidia.com/cuda/cuda-toolkit-release-notes/index.html) https://www.gamingonlinux.com/2025/08/nvidia-are-working-on-a-general-optimization-for-vkd3d-directx12-games-on-linux/ (https://www.gamingonlinux.com/2025/08/nvidia-are-working-on-a-general-optimization-for-vkd3d-directx12-games-on-linux/) OpenSUSE Leap 16.0 reaches RC status https://news.opensuse.org/2025/08/04/leap-16-rc/ (https://news.opensuse.org/2025/08/04/leap-16-rc/) https://www.gamingonlinux.com/2025/08/opensuse-leap-16-0-will-need-steam-gamers-to-install-some-extras-due-to-no-32-bit/ (https://www.gamingonlinux.com/2025/08/opensuse-leap-16-0-will-need-steam-gamers-to-install-some-extras-due-to-no-32-bit/) https://www.theregister.com/2025/08/07/opensuseleap16reachesrc/ (https://www.theregister.com/2025/08/07/opensuse_leap_16_reaches_rc/) Sandfly Security, agentless Linux security [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) Automotive Industry wants Open Source Collaboration https://www.electrive.com/2025/06/25/automotive-industry-launches-alliance-for-software-development/ (https://www.electrive.com/2025/06/25/automotive-industry-launches-alliance-for-software-development/) https://www.sovereign.tech/tech (https://www.sovereign.tech/tech) https://www.opendesk.eu/en (https://www.opendesk.eu/en) https://opencode.de/en (https://opencode.de/en) https://news.ycombinator.com/item?id=44370494 (https://news.ycombinator.com/item?id=44370494) https://www.vda.de/en/press/press-releases/2025/250624PMAutomotiveindustrysignsMemorandumof_Understanding (https://www.vda.de/en/press/press-releases/2025/250624_PM_Automotive_industry_signs_Memorandum_of_Understanding) Flameshot 13 released https://flameshot.org/ (https://flameshot.org/) https://github.com/flameshot-org/flameshot/releases/tag/v13.0.0 (https://github.com/flameshot-org/flameshot/releases/tag/v13.0.0) https://www.omgubuntu.co.uk/2025/08/flameshot-13 (https://www.omgubuntu.co.uk/2025/08/flameshot-13) Tuba v0.10.0 released https://tuba.geopjr.dev/ (https://tuba.geopjr.dev/) https://www.omgubuntu.co.uk/2025/08/tuba-0-10-mastodon-client-linux-new-features (https://www.omgubuntu.co.uk/2025/08/tuba-0-10-mastodon-client-linux-new-features) Humble Bundles WB Games = https://humblebundleinc.sjv.io/09K6DE (https://humblebundleinc.sjv.io/09K6DE) Co-Op = https://humblebundleinc.sjv.io/3J0K3k (https://humblebundleinc.sjv.io/3J0K3k) Other Bundles = https://humblebundleinc.sjv.io/4Gn7Yr (https://humblebundleinc.sjv.io/4Gn7Yr)
Seit einem Jahr verwende ich #Linux als mein Hauptsystem für die tägliche Arbeit und den #Videoschnitt mit DaVinci Resolve. Ich liefere einen Erfahrungsbericht, erzähle über meinen außergewöhnlichen PC, den kommenden Wechsel meiner verwendeten Distribution und gebe einen Ausblick auf meinen neuen #Proxmox Server mit einer Win11 IoT Virtuellen Maschine. - ✘ Werbung: Mein Buch Politik für Wähler ► https://amazon.de/dp/B0F92V8BDW/ Mein Buch Katastrophenzyklen ► https://amazon.de/dp/B0C2SG8JGH/ Kunden werben Tesla-Kunden ► http://ts.la/theresia5687 Mein Buch Allgemeinbildung ► https://amazon.de/dp/B09RFZH4W1/ - Q1 Playlist IT und Computer ► https://www.youtube.com/playlist?list=PLqSQHoWVoIpCZjGEgI3xnofJFFL4M23ED Q2 Homelab Teil 1 ► https://youtu.be/WmpyuMqIBCU?list=PLqSQHoWVoIpCZjGEgI3xnofJFFL4M23ED Q3 KI und staatliche Schnüffelei ► https://youtu.be/YI1tSmsBb4w Q4 Dave's Garage ► https://www.youtube.com/@DavesGarage -
Discriminating against White Males, covering for registered sex offenders, virtue signaling by leaving X/Twitter, and now removing "offensive" packages and supporting anti-White racism. 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
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
A jury orders Tesla to pay more than $240 million in Autopilot crash Apple reports biggest revenue growth since December 2021 Apple's New 'Answers' Team Eyes ChatGPT-Like Product in AI Push Apple says DOJ's antitrust lawsuit would 'reduce consumer choice' Alphabet beats earnings expectations, raises spending forecast Australia widens teen social media ban to YouTube, scraps exemption YouTube rolls out age-estimation tech to identify US teens and apply additional protections Amazon to Pay New York Times $20 Million a Year in AI Deal A.I. Researchers Are Negotiating $250 Million Pay Packages. Just Like N.B.A. Stars. Anthropic studied what gives an AI system its 'personality' — and what makes it 'evil' AI Capex is Eating the Economy Will data centers crash the economy? What content strategy looks like in the age of AI Inside the LG G5's shocking last-place finish at the 2025 TV Shootout Senate confirms Sean Cairncross to be national cyber director under Trump How Podcast-Obsessed Tech Investors Made a New Media Industry Y2K38 bug? Debian switching to 64-bit time for everything Lina Kahn Takes a Victory Lap for Figma IPO Host: Leo Laporte Guests: Richard Campbell, Brian McCullough, and Mike Elgan Download or subscribe to This Week in Tech at https://twit.tv/shows/this-week-in-tech Join Club TWiT for Ad-Free Podcasts! Support what you love and get ad-free shows, a members-only Discord, and behind-the-scenes access. Join today: https://twit.tv/clubtwit Sponsors: canary.tools/twit - use code: TWIT ZipRecruiter.com/Twit zscaler.com/security miro.com uscloud.com
First up in the news: Mint 22.2 betas now in testing, Arch AUR Under Fire Once More as Malware Resurfaces, Debian 13 Trixie Release Date is Officially Confirmed, and Hyprland Hyprperks have been launched. In Security and Privacy, Introducing Proton Authenticator – secure 2FA, your way and Microsoft Recall issues In Check This Out, Ignition allows you to manage startup apps and scripts And finally, Vibrations From the Ether
This week, we discuss the AI hype cycle, Astronomer's viral moment, and yet another YAML flavor — KYAML. Plus, private equity is coming for your donuts. Watch the YouTube Live Recording of Episode (https://www.youtube.com/live/Lul4dCCIT24?si=qeBAZXHmFBdRuuAx) 531 (https://www.youtube.com/live/Lul4dCCIT24?si=qeBAZXHmFBdRuuAx) Runner-up Titles Sometimes it's hard to make money I've given into Big Donut Maybe you can fake your way through life At some point you have to have some expertise AI has no taste Can you fix my PowerPoint? There is a chance we're all going to be naked soon Gobbling up the dark fiber WHYAML Waymo for Babies Rundown Beloved Texas doughnut chain sold to California equity firm (https://www.khou.com/article/news/local/shipley-do-nuts-sold-private-equity-houston-texas/285-259116a6-8819-4b32-8ca8-20359bb4f1e1) AI Mid-Year Hype-Cycle Check-in Gartner hype cycle (https://en.wikipedia.org/wiki/Gartner_hype_cycle) Betting on AI: The Delusion Driving Big Tech - Last Week in AWS Podcast (https://www.lastweekinaws.com/podcast/screaming-in-the-cloud/betting-on-ai-the-delusion-driving-big-tech/) Clouded Judgement 7.25.25 - TAMs Lie (https://cloudedjudgement.substack.com/p/clouded-judgement-72525-tams-lie?utm_source=post-email-title&publication_id=56878&post_id=169176822&utm_campaign=email-post-title&isFreemail=true&r=2l9&triedRedirect=true&utm_medium=email) Microsoft's AI CEO thinks Copilot will age and ‘have a room that it lives in' (https://www.theverge.com/news/713715/microsoft-copilot-appearance-feature-age-mustafa-suleyman-interview) Flaw in Gemini CLI coding tool could allow hackers to run nasty commands (https://arstechnica.com/security/2025/07/flaw-in-gemini-cli-coding-tool-allowed-hackers-to-run-nasty-commands-on-user-devices/) Claude Code is a slot machine (https://rgoldfinger.com/blog/2025-07-26-claude-code-is-a-slot-machine/) The Hater's Guide to the AI Bubble (https://www.wheresyoured.at/the-haters-gui/) 2025 Stack Overflow Developer Survey (https://survey.stackoverflow.co/2025/) 2025 Stack Overflow sentiment and usage section (https://survey.stackoverflow.co/2025/ai/#sentiment-and-usage) Astronomer Data Pipelines with Apache Airflow (https://www.thecloudcast.net/2025/07/data-pipelines-with-apache-airflow.html) Astronomer (@astronomerio) on X (https://x.com/astronomerio/status/1948890827566317712?s=46&t=EoCoteGkQEahPpAJ_HYRpg) Ryan Reynolds' ad agency, was behind the Gwyneth Paltrow Astronomer ad (https://www.businessinsider.com/ryan-reynolds-maximum-effort-gwyneth-paltrow-astronomer-ad-2025-7) Introducing KYAML, a safer, less ambiguous YAML subset / encoding (https://github.com/kubernetes/enhancements/blob/master/keps/sig-cli/5295-kyaml/README.md#summary) Palo Alto Networks to acquire CyberArk in $25 billion deal (https://www.cnbc.com/2025/07/30/palo-alto-networks-cyberark-deal.html) Relevant to your Interests Microsoft's Satya Nadella says job cuts have been 'weighing heavily' on him (https://www.cnbc.com/2025/07/24/microsoft-satya-nadella-memo-layoffs.html) IBM shares drop as software revenue misses (https://www.cnbc.com/2025/07/23/ibm-q2-earnings-report-2025.html) MSFT Teams in your car? (https://www.theverge.com/news/708481/microsoft-teams-mercedes-benz-integration-in-car-camera-support) Y2K38 bug? Debian switching to 64-bit time for everything (https://www.theregister.com/2025/07/25/y2k38_bug_debian/) A.I.-Driven Education: Founded in Texas and Coming to a School Near You (https://www.nytimes.com/2025/07/27/us/politics/ai-alpha-school-austin-texas.html) How Anthropic teams use Claude Code (https://www.anthropic.com/news/how-anthropic-teams-use-claude-code?utm_source=changelog-news) Anthropic unveils new rate limits to curb Claude Code power users (https://techcrunch.com/2025/07/28/anthropic-unveils-new-rate-limits-to-curb-claude-code-power-users/) Alphabet's Q2 revenue beats estimates as cloud computing surges (https://www.fastcompany.com/91373657/alphabet-google-earnings-q2-cloud-ai) Listener Feedback Steve recommends Lessons from Production (https://podcast.techwithkunal.com) Podcast (https://podcast.techwithkunal.com) Conferences Sydney Wizdom Meet-Up (https://www.wiz.io/events/sydney-wizdom-meet-up-aug-2025), Sydney, August 7. Matt will be there. SpringOne (https://www.vmware.com/explore/us/springone?utm_source=organic&utm_medium=social&utm_campaign=cote), Las Vegas, August 25th to 28th, 2025. See Coté's pitch (https://www.youtube.com/watch?v=f_xOudsmUmk). Explore 2025 US (https://www.vmware.com/explore/us?utm_source=organic&utm_medium=social&utm_campaign=cote), Las Vegas, August 25th to 28th, 2025. See Coté's pitch (https://www.youtube.com/shorts/-COoeIJcFN4). Wiz Capture the Flag (https://www.wiz.io/events/capture-the-flag-brisbane-august-2025), Brisbane, August 26. Matt will be there. SREDay London (https://sreday.com/2025-london-q3/), Coté speaking, September 18th and 19th. Civo Navigate London (https://www.civo.com/navigate/london/2025), Coté speaking, September 30th. Texas Linux Fest (https://2025.texaslinuxfest.org), Austin, October 3rd to 4th. CFP closes August 3rd (https://www.papercall.io/txlf2025). CF Day EU (https://events.linuxfoundation.org/cloud-foundry-day-europe/), Frankfurt, October 7th, 2025. AI for the Rest of Us (https://aifortherestofus.live/london-2025), Coté speaking, October 15th to 16th, London. SDT News & Community Join our Slack community (https://softwaredefinedtalk.slack.com/join/shared_invite/zt-1hn55iv5d-UTfN7mVX1D9D5ExRt3ZJYQ#/shared-invite/email) Email the show: questions@softwaredefinedtalk.com (mailto:questions@softwaredefinedtalk.com) Free stickers: Email your address to stickers@softwaredefinedtalk.com (mailto:stickers@softwaredefinedtalk.com) Follow us on social media: Twitter (https://twitter.com/softwaredeftalk), Threads (https://www.threads.net/@softwaredefinedtalk), Mastodon (https://hachyderm.io/@softwaredefinedtalk), LinkedIn (https://www.linkedin.com/company/software-defined-talk/), BlueSky (https://bsky.app/profile/softwaredefinedtalk.com) Watch us on: Twitch (https://www.twitch.tv/sdtpodcast), YouTube (https://www.youtube.com/channel/UCi3OJPV6h9tp-hbsGBLGsDQ/featured), Instagram (https://www.instagram.com/softwaredefinedtalk/), TikTok (https://www.tiktok.com/@softwaredefinedtalk) Book offer: Use code SDT for $20 off "Digital WTF" by Coté (https://leanpub.com/digitalwtf/c/sdt) Sponsor the show (https://www.softwaredefinedtalk.com/ads): ads@softwaredefinedtalk.com (mailto:ads@softwaredefinedtalk.com) Recommendations Brandon: Uber Teen (https://www.uber.com/us/en/ride/teens/) Matt: Software Defined Interviews - Chris Dancy (https://www.softwaredefinedinterviews.com/105) Photo Credits Header (https://unsplash.com/photos/white-and-black-floral-round-decor-qZ6uvJHLHFc)
Joining the podcast this week is Mishi Choudhary, SVP and General Counsel at Virtru. Mishi shares with us some legal perspective on the privacy discussion including freedom of thought, the right to be forgotten, end-to-end encryption for protecting user data, finding a middle ground between meeting customer privacy demands and complying with legal requirements, getting to a federal privacy regulation, and so much more! You won't want to miss what is a truly spirited and candid conversation – in two parts! Mishi Choudhary SVP and General Counsel, Virtru A technology lawyer with over 17 years of legal experience, Mishi has served as a legal representative for many of the world's most prominent free and open source software developers and distributors, including the Free Software Foundation, Cloud Native Computing Foundation, Linux Foundation, Debian, the Apache Software Foundation, and OpenSSL. At Virtru, she leads all legal and compliance activities, builds internal processes to continue to accelerate growth, helps shape Virtru and open source strategy, and activates global business development efforts. For links and resources discussed in this episode, please visit our show notes at https://www.forcepoint.com/govpodcast/e343
Joining the podcast this week is Mishi Choudhary, SVP and General Counsel at Virtru. Mishi shares with us some legal perspective on the privacy discussion including freedom of thought, the right to be forgotten, end-to-end encryption for protecting user data, finding a middle ground between meeting customer privacy demands and complying with legal requirements, getting to a federal privacy regulation, and so much more! You won't want to miss what is a truly spirited and candid conversation – in two parts! Mishi Choudhary, SVP and General Counsel, Virtru A technology lawyer with over 17 years of legal experience, Mishi has served as a legal representative for many of the world's most prominent free and open source software developers and distributors, including the Free Software Foundation, Cloud Native Computing Foundation, Linux Foundation, Debian, the Apache Software Foundation, and OpenSSL. At Virtru, she leads all legal and compliance activities, builds internal processes to continue to accelerate growth, helps shape Virtru and open source strategy, and activates global business development efforts. For links and resources discussed in this episode, please visit our show notes at https://www.forcepoint.com/govpodcast/e342
This time the guys start off with a clever encryption bypass on Linux machines, cover AMD's HIP news, and mourn the passing of Clear Linux. Chrome is catching up to Firefox by adding HDR support for Wayland, Slackware turns 23, and Debian announces the imminent release of Trixie. RISC-V is growing up, and having growing pains, and the guys discuss the anti-cheat situation on Linux. For tips there's Packet for mobile file transfer, fastfetch for getting your neofetch fix, and a copy paste warning based on a Fake Homebrew attack. Catch the show notes at http://bit.ly/4lDGcjN and we'll see you next time! Host: Jonathan Bennett Co-Hosts: Jeff Massie and Rob Campbell 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.
Tonight on GeekNights, we consider why there, broadly, aren't major consumer technology developments lately. In the news, Debian reduces support for i386 and Chrome OS is combining with Android. Also we'll be live at PAX West!Related LinksForum ThreadWhy there's no big tech newsDiscord ChatWhy there's no big tech newsBluesky PostWhy there's no big tech newsThings of the DayRym - The ‘Goal' That Changed The NHL ForeverScott - Hot Spring Shark Attack
Martin Bagge alias br0ther anmälde sig som frivillig efter Barteks rop på hjälp att utöka podden med nya röster. Det blir ett härligt spontant och oplanerat samtal om självhosting, PHP, punkkodning och Debian. Länkar Martins hemsida Laravel Kompilator 076 om Laravel Glesys GraphQl-bibliotek
Some of our hot takes and some from other people. Your OS is a passive gateway to apps and services, OSTree sucks, when you need to reboot Ubuntu is a mystery, stop hiding things from users, Chris needs an “I use Debian by the way” t-shirt, and more. Zak's post on Mastodon Luke Miani's... Read More
Some of our hot takes and some from other people. Your OS is a passive gateway to apps and services, OSTree sucks, when you need to reboot Ubuntu is a mystery, stop hiding things from users, Chris needs an “I use Debian by the way” t-shirt, and more. Zak's post on Mastodon Luke Miani's … Continue reading "Linux After Dark – Episode 97"
Spin up, share, nuke. We each build a throwaway server, and then rate each others' setups.Sponsored By: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:💥 Gets Sats Quick and Easy with Strike📻 LINUX Unplugged on Fountain.FMTUI ChallengeTUI Challenge ScorecardSelf-Hosted 150: The Last One — Before hitting the road, we test the limits of local-first file sharing, debate what self-hosting really is, and share our all-time favorite apps.Pick: ws4kp — A web-based WeatherStar 4000Pick: ytdl-sub — Lightweight tool to automate downloading and metadata generation with yt-dlp.
ABOUT ANUSH ELANGOVANAnush Elangovan leads the Artificial Intelligence Group (AIG) as Corporate Vice President of AI software and solutions.Anush has 23 years of industry experience in AI, computer science, compilers, network security, operating systems, math, and its materialization on complex hardware systems. This co-founder and Chief Executive Officer of Nod.ai oversaw product strategy and the overall business until AMD acquired Nod.ai (see related article here) today.Anush will lead the acceleration of deploying AI solutions optimized for AMD products while aligning with AMD's AI growth strategy centered on an open software ecosystem. In the near term, he and his team will introduce the code generation (CodeGen) capabilities from the Nod.ai flagship software, Shark, to unlock customer engagements via the ROCm™ and Vitis™ AI platforms. Over time, Anush will lead the contributions of the Nod.ai team to the AMD Unified AI Stack.Before starting Nod.ai, Anush was instrumental in the graphics stack on the first ARM Chromebook. He led the movement of the Chrome operating system from Debian to Gentoo Linux to enable Google to gain full control of the shipping software. Previously, he was Principal Engineer for Agnilux, which Google acquired. The Agnilux team became crucial to the Chrome OS team, building a fusion of Android and Chrome OS.Previously, Anush was a technical lead at Cisco Systems in its Datacenter Group, creating the first distributed virtual switching platform. He has also been an early member of FireEye, where he led in-memory taint-check analysis for networking and security in virtualized environments. He started his career in an earlier stint at Cisco, contributing to metro Ethernet initiatives.Anush holds a Master of Science in computer science from Arizona State University and a Bachelor of Engineering in computer science from the Mepco Schlenk Engineering College at Madurai Kamaraj University in India. He has earned 10 patents. In his spare time, he enjoys skiing, mountaineering, and trail running. Anush lives with his family, including three children and two dogs, in the East Bay of the San Francisco Bay Area.This episode is brought to you by Side – delivering award-winning QA, localization, player support, and tech services for the world's leading games and technology brands.For over 30 years, Side has helped create unforgettable user experiences—from indies to AAA blockbusters like Silent Hill 2 and Baldur's Gate 3.Learn more about Side's global solutions at side.inc. SHOW NOTES:AMD's AI hardware + software strategy, explained (2:24)From startup founder to leading AI software at AMD (3:50)How AMD is unifying hardware through a shared AI stack (6:01)What the VP of AI Software @ AMD owns across software & customer enablement (7:17)AMD's daily standup and real-time prioritization rituals (10:32)Strategies for building a unified AI ecosystem from first principles (13:06)How to approach building for complex technical workflows (15:38)Navigating hardware ecosystem requirements & aligning AI software (17:48)Challenging legacy software assumptions & why AI requires a new mindset for software development (19:38)AMD's integration of community contributors into product cycles (21:21)AMD's approach to cultivating an open-source ecosystem & community experience (22:48)Open-source & AMD's ecosystem strategy: Building trust by building in public (26:57)How AMD collects and acts on user feedback fast within a community ecosystem (29:24)AI's impact on everyday human experiences (32:15)Rapid fire questions (34:50) This episode wouldn't have been possible without the help of our incredible production team:Patrick Gallagher - Producer & Co-HostJerry Li - Co-HostNoah Olberding - Associate Producer, Audio & Video Editor https://www.linkedin.com/in/noah-olberding/Dan Overheim - Audio Engineer, Dan's also an avid 3D printer - https://www.bnd3d.com/Ellie Coggins Angus - Copywriter, Check out her other work at https://elliecoggins.com/about/
This week, we cover the Snapdragon laptop Linux performance, the latest on the Raspberry Pi, and changes coming to Debian. Then Gnome has a new Executive Director, who isn't a professional shaman this time, Ubuntu 25.10 is going all in on Rust tooling, and the kernel is finally dropping support for i486. For tips we cover special variables, loading and unloading Pipewire Modules, and pdfjam for remixing PDF files on the command line. Find the show notes at https://bit.ly/4m6D80d and enjoy the show! 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.
First up in the news: Mint Monthly News, Linux 6.16 To Add Asahi UAPI Header For Apple Silicon, Switzerland battles privacy intrusions, Firefox adds HEVC playback in Linux, Debian releases APT 3.0, Apple may add Mx GCC core support, Git turns 20, ProtonMail adds advanced features, ArcoLinux ends it all Then in our Wanderings: Bill is having trouble on the road and won't be here, Joe returns to us, Moss juggles tablets, Majid learns things, and Eric is AWOL In our Innards section: we talk travel computing In Bodhi Corner, Robert Wiley releases a script which can be used to install Moksha on any version of Debian, including Trixie
video: https://youtu.be/ua-RPOtdcF8 Comment on the TWIL Forum (https://thisweekinlinux.com/forum) This week in Linux, App 3.0 drops, bringing big changes under the hood. Amiga OS, yes, that Amiga OS, is still alive and getting updates, apparently. Open SSL 3.5 and Open SSH 10.0 both rolled out new features this week with also some future-proofing involved. And Sony, yes, that Sony, has released The Last of Us Part II on PC and it's Steam Deck verified. All that and much more on This Week in Linux, the weekly news show that keeps you plugged into everything happening 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/c5514bc1-148c-43d2-a6eb-4d0fcbfd6966.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:39 APT 3.0 Released 02:48 Last of US Part 2 Verified for Steam Deck 05:47 MPV 0.40 Released 08:58 Sandfly Security [ad] 10:54 AmigaOS still exists and getting updates apparently 14:24 TUXEDO Provides Update On Their Snapdragon X Elite Linux Laptop 17:20 OpenSSL 3.5 Released 19:19 OpenSSH 10.0 Released 21:41 Support the show Links: APT 3.0 Released https://tracker.debian.org/news/1635519/accepted-apt-300-source-into-unstable/ (https://tracker.debian.org/news/1635519/accepted-apt-300-source-into-unstable/) https://9to5linux.com/apt-3-0-debian-package-manager-released-with-revamped-command-line-interface (https://9to5linux.com/apt-3-0-debian-package-manager-released-with-revamped-command-line-interface) https://www.phoronix.com/news/Debian-APT-3.0-Released (https://www.phoronix.com/news/Debian-APT-3.0-Released) Last of US Part 2 Verified for Steam Deck https://gameinformer.com/interview/2025/04/01/naughty-dog-and-nixxes-on-the-pc-port-of-the-last-of-us-part-ii-we-take-the (https://gameinformer.com/interview/2025/04/01/naughty-dog-and-nixxes-on-the-pc-port-of-the-last-of-us-part-ii-we-take-the) https://www.pcguide.com/news/steam-deck-support-is-so-important-says-the-last-of-us-part-2-pc-project-director/ (https://www.pcguide.com/news/steam-deck-support-is-so-important-says-the-last-of-us-part-2-pc-project-director/) MPV 0.40 Released https://mpv.io/ (https://mpv.io/) https://github.com/mpv-player/mpv/releases/tag/v0.40.0 (https://github.com/mpv-player/mpv/releases/tag/v0.40.0) https://www.phoronix.com/news/MPV-0.40-Released (https://www.phoronix.com/news/MPV-0.40-Released) https://9to5linux.com/mpv-0-40-open-source-video-player-released-with-native-hdr-support-on-linux (https://9to5linux.com/mpv-0-40-open-source-video-player-released-with-native-hdr-support-on-linux) Sandfly Security [ad] https://thisweekinlinux.com/sandfly (https://thisweekinlinux.com/sandfly) https://destinationlinux.net/409 (https://destinationlinux.net/409) discount code: destination50 (Home Edition) AmigaOS still exists and getting updates apparently https://www.hyperion-entertainment.com/index.php/news/1-latest-news/320-new-update-3-for-amigaos-32-available-for-download (https://www.hyperion-entertainment.com/index.php/news/1-latest-news/320-new-update-3-for-amigaos-32-available-for-download) https://www.theregister.com/2025/04/10/amigaos32_3/ (https://www.theregister.com/2025/04/10/amigaos_3_2_3/) TUXEDO Provides Update On Their Snapdragon X Elite Linux Laptop https://www.tuxedocomputers.com/en/How-is-TUXEDOCOes-ARM-Notebook-Coming-Along.tuxedo (https://www.tuxedocomputers.com/en/How-is-TUXEDOCOes-ARM-Notebook-Coming-Along.tuxedo) https://www.qualcomm.com/products/mobile/snapdragon/laptops-and-tablets/snapdragon-x-elite (https://www.qualcomm.com/products/mobile/snapdragon/laptops-and-tablets/snapdragon-x-elite) https://www.linaro.org/ (https://www.linaro.org/) https://www.phoronix.com/news/TUXEDO-Snapdragon-Laptop-Update (https://www.phoronix.com/news/TUXEDO-Snapdragon-Laptop-Update) OpenSSL 3.5 Released https://openssl-library.org/ (https://openssl-library.org/) https://github.com/openssl/openssl/releases/tag/openssl-3.5.0 (https://github.com/openssl/openssl/releases/tag/openssl-3.5.0) https://lwn.net/Articles/1016851/ (https://lwn.net/Articles/1016851/) https://9to5linux.com/openssl-3-5-released-with-support-for-pqc-algorithms-server-side-quic (https://9to5linux.com/openssl-3-5-released-with-support-for-pqc-algorithms-server-side-quic) https://www.phoronix.com/news/OpenSSL-3.5-Released (https://www.phoronix.com/news/OpenSSL-3.5-Released) OpenSSH 10.0 Released https://www.openssh.com/ (https://www.openssh.com/) https://www.openssh.com/releasenotes.html#10.0p1 (https://www.openssh.com/releasenotes.html#10.0p1) https://www.phoronix.com/news/OpenSSH-10.0-Released (https://www.phoronix.com/news/OpenSSH-10.0-Released) https://lwn.net/Articles/1016924/ (https://lwn.net/Articles/1016924/) Support the show https://tuxdigital.com/membership (https://tuxdigital.com/membership) https://store.tuxdigital.com/ (https://store.tuxdigital.com/)
First up in the news: New GIMP, Debian comes to a RISC-V tablet, Google explains why the are putting Terminal on Android, Asahi Linux loses another top dev, Plex goes for the gold – yours, meet EU OS, Kernel 6.14 is released, Gnome 48 released, new GRUB updates, AerynOS is released with GNOME 48 In security and privacy: “MyTerms” wants to let the user dictate privacy Then in our Wanderings: Moss plays Musical Tablets, Joe Moxes the Prox, Dale has a burpday, Majid is on holiday and Bill is off truckin' somewhere... In our Innards section: Dale takes us through Mobile Networks In Bodhi Corner, Moss covers new translations and work on the next version.
Q&A219: How can you keep your password manager safe from infostealing malware? Do we prefer Debian-based or RedHat-based Linux distros? How do we harden or customize our distros? How can you recreate Qubes' Disposable VMs on a non-Qubes device? Join our next Q&A on Patreon: https://www.patreon.com/collection/415684?view=expanded or XMR Chat: https://xmrchat.com/surveillancepodWelcome to the Surveillance Report Q&A - featuring Techlore & The New Oil answering your questions about privacy and security.❤️ Support us on Patreon: https://www.patreon.com/surveillancepod
Coming up in this episode * Oh GNOME! * Mozilla, Don't Watch * And a few high notes The Video Version! (https://youtu.be/FdHulOnBwEo) https://youtu.be/FdHulOnBwEo 0:00 Cold Open 1:07 Dash To Panel Needs Your Help! 27:21 Firefox's New Terms Of Use 51:33 Mark / Contact Button 1:00:34 Scott / Contact Button 1:03:22 Dan / Matrix 1:06:09 chraist / Matrix 1:08:07 bgt lover / Matrix 1:10:00 MarshMan / Discord 1:13:58 Next Time! 1:18:45 Stinger Dash to Panel Maintainer Quits Dash to panel maintainer quits (https://www.theregister.com/2025/03/14/dashtopanel_maintainer_quits/) The GitHub issue (https://github.com/home-sweet-gnome/dash-to-panel/issues/2259)
This week a community resource fell offline unexpectedly. Members from all over the internet banded together to restore a community resource! -- During The Show -- 01:00 Intro Noah brought the warm weather back We need your feedback Join Geeklab (https://matrix.to/#/#geeklab:linuxdelta.com) Tag Marlin 04:10 Smart Watches Original pebble inventor New pebble smartwatches available for preorder ArsTechnica (https://arstechnica.com/gadgets/2025/03/new-pebbleos-watches-with-more-battery-and-familiar-looks-are-up-for-preorder/) Steve's smartwatch use case Noah's watch Pine Time (https://pine64.com/product/pinetime-smartwatch-sealed/) Fitness Features Eric Migicovsky doesn't stick with companies AsteroidOS (https://asteroidos.org/) BangleJS (https://banglejs.com/) 28:32 News Wire GIMP 3.0 - gimp.org (https://www.gimp.org/news/2025/03/16/gimp-3-0-released/) Digikam 8.6 - digikam.org (https://www.digikam.org/news/2025-03-15-8.6.0_release_announcement/) Peertube 7.1 - joinpeertube.org (https://joinpeertube.org/news/release-7.1) Gstreamer 1.26 - freedesktop.org (https://gstreamer.freedesktop.org/releases/1.26/) KDE Frameworks 6.12 - kde.org (https://kde.org/announcements/frameworks/6/6.12.0/) End of Nouveau OpenGL Driver - itsfoss.com (https://news.itsfoss.com/mesa-zink-nvk-switch/) Debian Bookworm 12.10 - debian.org (https://www.debian.org/releases/bookworm/#:~:text=Debian%2012.10%20was%20released%20on,release%20and%20the%20Release%20Notes.) Ubuntu's Rust Coreutils - ubuntu.com (https://discourse.ubuntu.com/t/carefully-but-purposefully-oxidising-ubuntu/56995) GitHub Actions Hack - infoworld.com (https://www.infoworld.com/article/3847178/thousands-of-open-source-projects-at-risk-from-hack-of-github-actions-tool.html) Open Source OSV Scanner - gbhackers.com (https://gbhackers.com/google-launches-open-source-osv-scanner/) Linux Kernel Use-After-Free Vulnerability - gbhackers.com (https://gbhackers.com/poc-exploit-released-linux-kernel-vulnerability/) Kagent - thenewstack.io (https://thenewstack.io/meet-kagent-open-source-framework-for-ai-agents-in-kubernetes/) Tencent Open Source Model - bloomberg.com (https://www.bloomberg.com/news/articles/2025-03-18/tencent-touts-open-source-ai-models-to-turn-text-into-3d-visuals) Mistral Small 3.1 - techzine.eu (https://www.techzine.eu/news/applications/129697/mistral-ai-unveils-small-powerful-and-open-source-ai-model/) - venturebeat.com (https://venturebeat.com/ai/mistral-ai-drops-new-open-source-model-that-outperforms-gpt-4o-mini-with-fraction-of-parameters/) 29:50 Linuxrocks.online Outage Noah's travel story Awake for 30+ hours Wakes up to DMs, emails, online posts, etc Linux Rocks server is down Linux Rocks server grew organically Moved into Altispeed Egan MN data center SSH connected but then kicked you out Altispeed got pulled into it User wasn't in the libvertd group Organic way information spreads on the internet Glad to see people calm down after learning someone is in the hospital Linux Rocks is now monitored by LibreNMS Michael is donating a new server Thank you for polite and kind notification To those not so kind, please consider what you are getting for free Reddit post (https://www.reddit.com/r/Mastodon/comments/1jblofg/linuxrocksonline_been_down_for_nearly_48_hours/) Everything was documented 49:45 Continuity Plan Reach out to Nerd friends Interest Old laptops show up on Noah's desk Enabling people through technology -- 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/433) 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)
The joys and headaches of self-hosting, a new Zigbee routing trick, and the ongoing BcacheFS vs. Debian showdown. Plus, why we're liking Open WebUI.