Podcasts about embedded linux

  • 17PODCASTS
  • 53EPISODES
  • 38mAVG DURATION
  • 1MONTHLY NEW EPISODE
  • Feb 21, 2025LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about embedded linux

Latest podcast episodes about embedded linux

52 Weeks of Cloud
Rise of Microcontainers

52 Weeks of Cloud

Play Episode Listen Later Feb 21, 2025 7:23


The Rise of Micro-Containers: When Less is MorePodcast Episode NotesOpening (0:00 - 0:40)Introduction to micro-containers: containers under 100KBContrast with typical Python containers (5GB+)Languages enabling micro-containers: Rust, Zig, GoZig Code Example (0:40 - 1:10)// 16KB HTTP server exampleconst std = @import("std");pub fn main() !void { var server = try std.net.StreamServer.init(.{}); defer server.deinit(); try server.listen(try std.net.Address.parseIp("0.0.0.0", 8080)); while (true) { const conn = try server.accept(); try handleRequest(conn); }}Key Use Cases Discussed (1:10 - 5:55)1. Edge IoT (1:14)ESP32 with 4MB flash constraintsTemperature sensor example: 60KB total with MQTTA/B firmware updates within 2MB limit2. WASM Integration (2:37)Millisecond-loading micro-frontendsComponent isolation per containerZero initialization overhead for routing3. Serverless Performance (3:11)Traditional: 300ms cold startMicro-container: 50ms startDirect memory mapping benefits4. Security Benefits (3:38)No shell = no injection surfaceSingle binary audit scopeZero trust architecture approach5. Embedded Linux (3:58)Raspberry Pi (512MB RAM) use case50+ concurrent services under 50KB eachHome automation applications6. CI/CD Improvements (4:19)Base image: 300MB → 20KB10-15x faster pipelinesReduced bandwidth costs7. Mesh Networks (4:40)P2P container distributionMinimal bandwidth requirementsResilient to network partitions8. FPGA Integration (5:05)Bitstream wrapper containersAlgorithm switching efficiencyHardware-software bridge9. Unikernel Comparison (5:30)Container vs specialized OSSecurity model differencesPerformance considerations10. Cost Analysis (5:41)Lambda container: 140MB vs 50KB2800x storage reductionCold start cost implicationsClosing Thoughts (6:06 - 7:21)Historical context: Solaris containers in 2000sNew paradigm: thinking in kilobytesScratch container benefitsFuture of minimal containerizationTechnical Implementation Note// Example of stripped Zig binary for scratch containerconst builtin = @import("builtin");pub fn main() void { // No stdlib import needed asm volatile ("syscall" :: [syscall] "{rax}" (1), // write [fd] "{rdi}" (1), // stdout [buf] "{rsi}" ("okn"), [count] "{rdx}" (3) );}Episode Duration: 7:21

The ST Podcast
Effective Security on Embedded Linux with STM32MP1 and STM32MP2: 3 Powerful Lessons for Today's Decision-Makers

The ST Podcast

Play Episode Listen Later Feb 13, 2025 17:56


The Agile Embedded Podcast
Buzzword Bingo (or: which modern technologies make sense for embedded?)

The Agile Embedded Podcast

Play Episode Listen Later Nov 13, 2024 49:09


Discussing Modern Development Techniques in Embedded SystemsIn this episode of the Agile Embedded Podcast, hosts Jeff Gable and Luca Ingianni play buzzword bingo, discussing various modern development techniques, tools, and methodologies in the context of embedded systems. They explore the relevance and applicability of terms like microservices, serverless, Kubernetes, Docker, continuous integration, continuous delivery, continuous deployment, A/B testing, API-first design, behavior-driven development, and modern languages such as Rust and C++. They also touch upon the use of AI in development and deployment processes, along with debugging, observability, monitoring, and simulation tools like Memfault, Mender, and Renode. The conversation seeks to provide insights and opinions on which of these techniques and tools are worth investigating or applying to embedded projects.00:00 Introduction to the Agile Embedded Podcast00:06 Exploring Modern Development Buzzwords01:26 Web Technologies in Embedded Systems05:28 Diving into Docker for Embedded Development07:49 Understanding Immutable Infrastructure13:32 Continuous Integration, Delivery, and Deployment19:53 A/B Testing in IoT Devices23:06 API First Design in Embedded Systems26:08 Modern Languages: The Case for Rust27:54 Exploring Rust in Embedded Systems28:37 Challenges with Modern C Programming30:10 Embedded Linux and Language Flexibility32:27 Model-Based Development with Simulink33:53 Modern Tooling for Embedded Systems40:25 AI in Embedded Systems44:05 AI-Assisted Development47:36 Conclusion and Contact Information You can find Jeff at https://jeffgable.com.You can find Luca at https://luca.engineer.Want to join the agile Embedded Slack? Click here

Linux Action News
Linux Action News 299

Linux Action News

Play Episode Listen Later Jul 6, 2023 13:13


Recent advances in embedded Linux, Canonical takes full control of LXD, ZFS gets a handy Btrfs feature, and updates on the show's production.

Linux Action News
Linux Action News 299

Linux Action News

Play Episode Listen Later Jul 6, 2023 13:13


Recent advances in embedded Linux, Canonical takes full control of LXD, ZFS gets a handy Btrfs feature, and updates on the show's production.

Embedded Insiders
Embedded Insiders Podcast: Would You Trust An Open Source OS in Your Safety Application?

Embedded Insiders

Play Episode Listen Later Dec 2, 2021 30:14


On this episode, the Insiders discuss safety-critical open source operating systems. Do the rigid requirements of safety-critical embedded applications force users to reduce the flexibility many believe is the biggest advantage of open source? And if so, why not just license a commercial offering?Next, Kate Stewart, Vice President of Dependable Embedded Systems at the Linux Foundation, provides her take on the evolution of embedded operating systems, from RTOSs to Linux. And what does that mean for systems engineering today?Finally, Embedded Computing Design's Assistant Editor Taryn Engmark, gives us the rundown on BrakTooth, a group of security vulnerabilities in more than 1,400 Bluetooth-enabled devices, and what you can do about them.

Low Code Ninjas
Low Code Legends: 5 minutes with Oleg Oksyuk, CEO of AllRight.io

Low Code Ninjas

Play Episode Listen Later Apr 13, 2021 5:15


This is Low Code Legends: quick hits with top people in low and no code. Today: Oleg Oksyuk. While working in startups on the engineering side I created cool things like Adobe Flash Player for Embedded Linux and MPEG/H264 Video Streaming with Fast Forward and Rewind without bitrate increase (according to Apple engineers that was impossible). Then I started to found startups and switched to the business side with many ideas that failed after fast trials of 2-6 months (including Ethereal Lite - Create art with your bare fingers in the air) and modest success in LiveExpert (an expert advice marketplace). I've been working on AllRight, an online English School for kids for the last 4 years, where I've built the team to 80 people ... not counting 700 teachers.

The TMPDIR podcast
Embedded Linux Application Development

The TMPDIR podcast

Play Episode Listen Later Dec 21, 2020 63:23


In this episode, we discuss Embedded Linux application development.

The Amp Hour Electronics Podcast
#515 – Embedded Linux with Jay Carlson

The Amp Hour Electronics Podcast

Play Episode Listen Later Nov 2, 2020 133:07


Jay Carlson joins Chris to talk about his recently released opus on building embedded Linux for microprocessors and the process of building 10 different boards to showcase the required steps.

carlson linux embedded linux
Embedded
349: Open Down to the Transistor

Embedded

Play Episode Listen Later Oct 23, 2020 74:00


Drew Fustini (@pdp7) spoke with us about building Linux, RISC-V cores, and many other things. Links, so many links! Drew is a board member of the BeagleBoard.org Foundation and of the Open Source Hardware Association (OSHWA.org). He is an open source hardware designer at OSHPark (he recommends their blog!). He writes a monthly column for Hackspace Magazine, for example The Rise of the FPGA in Issue 26 and  Intro to RISC-V.  Yocto is a tool to help build a Linux distribution specific to your board and application! Bootlin offers free training material for Yocto and OpenEmbedded (as well as many other things such as Embedded Linux and Linux kernel development). Or there is a video: Buildroot vs Yocto: Differences for Your Daily Job - Luca Ceresoli at Embedded Linux Conference. Or look at Embedded Apprentice Linux Engineer (e-ale.org). Or maybe another video: “Yocto Project Dev Day Virtual 2020 #3: Yocto Project Kernel Lab, Hands-On, Part 1” by Trevor Woerner. RISC-V is an open source processor core. Well, cores. But you can try them out in hardware even if you don’t want to play with an FPGA. The SiSpeed Longan Nano has a GigaDevices microcontroller dev board (with an OLED on board!, more info). Did you know you can run Linux on RISC-V? The cheapest method is emulation and Renode is brilliant for that. Here is Drew using it on the train (twitter). Sipeed boards with Kendryte K210 start at only $13 and can even run Linux (tutorial). There are also affordable open hardware FPGA with free software toolchain support like the ICE40 based Icebreaker and Fomu. For a bit more money, the bigger ECP5 can run Linux. Or look at Greg Davill’s wonderful Orange Crab. For a lot more money but on silicon, the Icicle with Microchip PolarFire SoC is aimed at corporate use. Or you can produce your own physical chips. For free (for a limited time). See the talk from Tim Ansell - Skywater PDK: Fully open source manufacturable PDK for a 130nm process Drew attends a lot of conferences, here are highlights from the past: OHS 2020 wrist badge  OHS 2018 epaper badge  ELC-2018 EALE Buildroot - Thomas Petazzoni  ELC-2018 EALE Bitbake YP - Behan Webster Linux on RISC-V with open hardware and open FPGA tools Sldies for Embedded Linux Conference Video from FOSS North Linaro Connect BoF: gpio and pinctrl in Linux kernel (Slides) RISC-V: How an open ISA benefits hardware security (Slides) (Hardwear.io video)   Here are some future conferences he’s planning to attend: Embedded Linux Conference Europe ($50) October 26-29, 2020 (Virtual) Yocto Project Virtual Summit ($40) October 29-30, 2020 (Virtual) Open Hardware Summit March 13, 2020

The ST Podcast
OpenSTLinux: 7 Questions to Help You Evaluate an Embedded Linux Distribution

The ST Podcast

Play Episode Listen Later Oct 13, 2020 19:02


What questions should engineers ask before they choose their next microprocessor and embedded Linux platform? Working on an MPU is quite complex and choosing the right solution goes a long way. Here are seven questions to consider. This is the audio version of a blog post. --- Send in a voice message: https://anchor.fm/stmicroelectronics-blog/message

The TMPDIR podcast
Interview With Thomas Petazzoni

The TMPDIR podcast

Play Episode Listen Later Sep 21, 2020 60:15


Learn how Thomas Petazzoni got into Embedded Linux and his thoughts on Buildroot, Open Source, running a small company, etc.

open source embedded linux petazzoni
The TMPDIR podcast
More About the Yoe Distribution

The TMPDIR podcast

Play Episode Listen Later Jul 17, 2020 50:00


Join Khem and Cliff to learn more about Yoe and how it can help you develop Embedded Linux systems easier and faster.

cliff distribution yoe embedded linux
Embedded Insiders
Let's Settle This. What's More Secure, Proprietary or Open Source?

Embedded Insiders

Play Episode Listen Later Jun 26, 2020 19:01


This week on the Embedded Insiders, Brandon and Rich discuss an age-old controversy: What’s more secure? Proprietary or open-source software?That discussion leads into an interview with Kate Stewart, Senior Director of Strategic Programs at the Linux Foundation, who joins the program to explain how the Zephyr Project responded to 25 vulnerabilities recently uncovered in its open-source code base by the NCC Group, an independent security analysis firm. After reassuring the Insiders by detailing the steps taken to remedy those bugs and explaining the security practices in place at the Zephyr Project, Stewart continues to introduce the Embedded Linux in Safety Applications, or ELISA, project, which seeks to better align Linux software and tools with the requirements of safety-critical industries. Where does ELISA fit in with other projects like RTLinux, and how can the software test community help accelerate the expansion of Linux into platforms ranging from road vehicles to rockets?For more information on the Zephyr vulnerabilities, read “Another IoT Security "Uh-Oh": 26 Flaws in Open-Source Zephyr and MCUboot Stacks” on www.embedded-computing.com.To learn more about the ELISA Project and updates to the Zephyr Project, attend one of Kate Stewarts presentations during the Linux Foundation’s Open Source Summit North America, a virtual event taking place from June 29th to July 2nd. For more information or to register, visit https://ossna2020.sched.com/event/c3ZE.

Crosstalk Podcast
Як кують Embedded

Crosstalk Podcast

Play Episode Listen Later Sep 16, 2019 86:22


Цей випуск подкасту повністю присвячено розробці під вбудовані пристрої. Тут ми говоримо про різні сфери та напрями Embedded розробки, про їх особливості, а також про те, як краще почати свій шлях у цій сфері. Таймкод: 00:02:37 ⋅⋅⋅ Інформація про ведучих. Досвід та сфера діяльності. 00:06:24 ⋅⋅⋅ Основні сфери та напрями Embedded розробки. Що таке Embedded. 00:23:24 ⋅⋅⋅ З чим має справу Embedded-розробник. 00:29:24 ⋅⋅⋅ Технічне завдання, планування та розподіл завдань. 00:38:39 ⋅⋅⋅ Початок розробки, створення прототипів та робота з прототипами. Цікаві історії роботи з прототипами. 00:51:49 ⋅⋅⋅ Специфіка розробки ПЗ під Bare Metal. 01:02:24 ⋅⋅⋅ Embedded Linux. 01:10:00 ⋅⋅⋅ Поради новачкам у Embedded. 01:18:06 ⋅⋅⋅ Література та джерела з теми. 01:25:04 ⋅⋅⋅ Завершення випуску. Errata до випуску: 00:04:40 ⋅⋅⋅ Втрачений фрагмент фрази - Усі важливі для керування компоненти та системи працюють не на Linux/Android, а на операційних системах реального часу (RTOS). Матеріали з теми: Kernighan, Ritchie - The C Programming Language Онлайн курс з C++ - https://stepik.org/course/3206/ Інший онлайн курс з C++ - https://stepik.org/course/7/ Koenig, Barbara E. Moo - Accelerated C++: Practical Programming by Example Meyers - Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14 Уильямс - "Параллельное программирование на С++ в действии" Kormanyos - Real-Time C++: Efficient Object-Oriented and Template Microcontroller Programming Таненбаум - "Архитектура компьютера" Харрис, Харрис - "Цифровая схемотехника и архитектура компьютера. Дополнение по архитектуре ARM" "Пастильда — открытый аппаратный менеджер паролей", статья на Хабре - https://habr.com/ru/post/305594/ Сато - "Без паники! Цифровая обработка сигналов" Hogben - Handbook of Linear Algebra Petrou, Petrou - Image Processing: The Fundamentals Noviello - Mastering STM32 Horowitz, Hill - The Art of Electronics Посилання: Сторінка лабораторії в Facebook: fb.me/lab301.ua Сторінка лабораторії в Telegram: t.me/lab301 Пошта для питань та зворотного зв'язку: crosstalk@s-kostyuk.me This episode features the song "Twisted" by Kevin MacLeod (incompetech.com). Licensed under Creative Commons: By Attribution 3.0 License. More info: http://creativecommons.org/licenses/by/3.0/.

Embedded
45: Yanking on a Cat's Tail Is the Only Way to Learn

Embedded

Play Episode Listen Later Apr 2, 2014 50:03


David Anders (Google+) joined Elecia to chat about open source hardware, what it means, how to do it, and why.  Dave will be speaking at the embedded Linux conference in San Jose, CA on April 30th: 9:00am: Panel: IoT and the Role of Embedded Linux and Android 4:20pm: Hardware Debugging Tools 5:20pm: Debugging - Panel Discussion  Open Source Hardware Association describes the gradient of open source hardware. Sigrok looks at open source and open source friendly tools Dave works for CircuitCo, manufacturers of the mysteriously elusive BeagleBone Black. While he didn't explain their absence (other than they are super popular for OEM'ing), he did announce the brand new Intel-based MinnowBoard MAX. Some open source tools we discussed included Tin Can Tool's 40 pin DIP Linux processor, Flyswatter, and Flyswatter 2. Also, check out Dave's past eLinux presentations.

android intel san jose tail linux flyswatter embedded linux beaglebone black elecia
/dev/radio
DR249: embedded (Linux|Systems|Linux-Development-Boards)

/dev/radio

Play Episode Listen Later Nov 3, 2013 106:29


Wir reden über embedded (Linux|Systems|Linux-Development-Boards)

development boards embedded linux
GeekRant
EDL #105 - The Dark Side of Embedded Linux

GeekRant

Play Episode Listen Later Jul 31, 2013 111:37


The guys have a look at some of the unexpected security implications of having Linux embedded on so many devices.

dark side linux embedded linux
IBM developerWorks podcasts
TWOdW: An "inside" look at Agile DevOps, easier embedded Linux, and more HTML5-based game building

IBM developerWorks podcasts

Play Episode Listen Later Sep 1, 2012 3:30


IBM.COM/DEVELOPERWORKS Scott Laningham takes a quick look at four new content pieces on developerWorks, IBM's premier resource for software developers and other IT professionals

game ibm easier inside look html5 agile devops embedded linux
LinuxLink Radio by TimeSys
Episode 35: 2.6.26 Discussion and MPatrol:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 4, 2008 29:52


After a bit of a break, Gene and Maciej talk about 2.6.26 from an embedded developer's perspective. The pair also discuss the ins and outs of using MPatrol: how it works, what it's good for, and some of its more nifty features.

maciej memory leak embedded linux
LinuxLink Radio by TimeSys
Episode 35: 2.6.26 Discussion and MPatrol:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 4, 2008 29:52


After a bit of a break, Gene and Maciej talk about 2.6.26 from an embedded developer's perspective. The pair also discuss the ins and outs of using MPatrol: how it works, what it's good for, and some of its more nifty features.

maciej memory leak embedded linux
LinuxLink Radio by TimeSys
Episode 34: Overview of 2.6.25 and Talk About debugfs:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jun 26, 2008 31:10


Maciej and Gene talk about what new in the 2.6.25 version of the kernel that's relevant to embedded developers, like CANBUS (thanks Volkswagen) and real time features that all allocation of processor time by process group. Gene also talks about debugfs and how engineers can use this light-weight file system to fetch data from kernel modules, like its name implies, it debugfs is a great debugging tool.

LinuxLink Radio by TimeSys
Episode 34: Overview of 2.6.25 and Talk About debugfs:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jun 26, 2008 31:10


Maciej and Gene talk about what new in the 2.6.25 version of the kernel that's relevant to embedded developers, like CANBUS (thanks Volkswagen) and real time features that all allocation of processor time by process group. Gene also talks about debugfs and how engineers can use this light-weight file system to fetch data from kernel modules, like its name implies, it debugfs is a great debugging tool.

LinuxLink Radio by TimeSys
Episode 33: The Propeller Chip:

LinuxLink Radio by TimeSys

Play Episode Listen Later May 13, 2008 30:12


Last month, TimeSys was at the ESC West show and brought along the LinuxLink radio gear. In this episode, Maciej and Gene interview Jeff Martin about the technology behind his company's product, the Propeller chip. What interested Maciej and Gene was the interruptless nature of the Propeller chip's design and how the chip handles some real-time requirements at the hardware level.

LinuxLink Radio by TimeSys
Episode 33: The Propeller Chip:

LinuxLink Radio by TimeSys

Play Episode Listen Later May 13, 2008 30:12


Last month, TimeSys was at the ESC West show and brought along the LinuxLink radio gear. In this episode, Maciej and Gene interview Jeff Martin about the technology behind his company's product, the Propeller chip. What interested Maciej and Gene was the interruptless nature of the Propeller chip's design and how the chip handles some real-time requirements at the hardware level.

LinuxLink Radio by TimeSys
Episode 32: Profiling on the Cheap:

LinuxLink Radio by TimeSys

Play Episode Listen Later Apr 4, 2008 36:33


Gene and reluctant guest host Jeremiah Lott talk about how to do basic system profiling when you're low on resources. By using some basic library functions, coding in an interrupt handler and using the proc filesystem, you can get a good look at how your application is using resources. Gene wastes time talking about how the Windows-running car wash POS system crashed last week.

LinuxLink Radio by TimeSys
Episode 32: Profiling on the Cheap:

LinuxLink Radio by TimeSys

Play Episode Listen Later Apr 4, 2008 36:33


Gene and reluctant guest host Jeremiah Lott talk about how to do basic system profiling when you're low on resources. By using some basic library functions, coding in an interrupt handler and using the proc filesystem, you can get a good look at how your application is using resources. Gene wastes time talking about how the Windows-running car wash POS system crashed last week.

LinuxLink Radio by TimeSys
Episode 23: Review of the CELF Embedded Linux Conference in Austria:

LinuxLink Radio by TimeSys

Play Episode Listen Later Nov 9, 2007 36:23


This week we are releasing a bonus episode where Maciej interviews Gene on his experience at the CELF Embedded Linux Conference where Gene was a guest speaker. His topics included GCC, embedded Linux for beginners, using RPM as a build system and a panel debating "what is the ideal Linux distribution."

LinuxLink Radio by TimeSys
Episode 23: Review of the CELF Embedded Linux Conference in Austria:

LinuxLink Radio by TimeSys

Play Episode Listen Later Nov 9, 2007 36:23


This week we are releasing a bonus episode where Maciej interviews Gene on his experience at the CELF Embedded Linux Conference where Gene was a guest speaker. His topics included GCC, embedded Linux for beginners, using RPM as a build system and a panel debating "what is the ideal Linux distribution."

LinuxLink Radio by TimeSys
Episode 16: Real-Time Embedded Linux Series - Part 3:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 15, 2007 46:38


Gene and Maciej continue their multi part series discussing real-time embedded Linux. In part 3, they discuss real-time concepts that are currently in the 2.6 kernel and how they were implemented. They also reviewed configuration option that track real-time behavior and predictability vs. throughput tradeoffs.

LinuxLink Radio by TimeSys
Episode 16: Real-Time Embedded Linux Series - Part 3:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 15, 2007 46:38


Gene and Maciej continue their multi part series discussing real-time embedded Linux. In part 3, they discuss real-time concepts that are currently in the 2.6 kernel and how they were implemented. They also reviewed configuration option that track real-time behavior and predictability vs. throughput tradeoffs.

LinuxLink Radio by TimeSys
Episode 15: Real-Time Embedded Linux Series - Part 2:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 1, 2007 38:10


Gene and Maciej continue their multi part series discussing real-time embedded Linux. In Part 2, they discuss more sources of latency in detail and new real time features of the 2.6 kernel. Also discussed are common coding practices that result in latency and some simple tactics for coding drivers and applications that play nice with each other and the kernel.

LinuxLink Radio by TimeSys
Episode 15: Real-Time Embedded Linux Series - Part 2:

LinuxLink Radio by TimeSys

Play Episode Listen Later Aug 1, 2007 38:10


Gene and Maciej continue their multi part series discussing real-time embedded Linux. In Part 2, they discuss more sources of latency in detail and new real time features of the 2.6 kernel. Also discussed are common coding practices that result in latency and some simple tactics for coding drivers and applications that play nice with each other and the kernel.

LinuxLink Radio by TimeSys
Episode 14: Real-Time Embedded Linux Series - Part 1:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jul 18, 2007 34:06


Gene and Maciej kick off a multi part series discussing real-time embedded Linux. In part 1, they discuss common real-time terminology, what real time is, what it is not and the difference between hard and soft real-time. They also begin discussing latency and what factors tend to be the major contributors to latency issues.

LinuxLink Radio by TimeSys
Episode 14: Real-Time Embedded Linux Series - Part 1:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jul 18, 2007 34:06


Gene and Maciej kick off a multi part series discussing real-time embedded Linux. In part 1, they discuss common real-time terminology, what real time is, what it is not and the difference between hard and soft real-time. They also begin discussing latency and what factors tend to be the major contributors to latency issues.

LinuxLink Radio by TimeSys
Episode 13: Review of the Ottawa Linux Symposium

LinuxLink Radio by TimeSys

Play Episode Listen Later Jul 5, 2007 15:16


Gene Sally recently returned from the Ottawa Linux Symposium held June 27-30th. In this podcast, Maciej Halasz interviews Gene about his experience at OLS and discusses some interesting trends he found happening in the world of Embedded Linux.

LinuxLink Radio by TimeSys
Episode 13: Review of the Ottawa Linux Symposium

LinuxLink Radio by TimeSys

Play Episode Listen Later Jul 5, 2007 15:16


Gene Sally recently returned from the Ottawa Linux Symposium held June 27-30th. In this podcast, Maciej Halasz interviews Gene about his experience at OLS and discusses some interesting trends he found happening in the world of Embedded Linux.

LinuxLink Radio by TimeSys
Episode 6: Rob Landley Interview - Self Professed Embedded Linux Geek

LinuxLink Radio by TimeSys

Play Episode Listen Later Mar 28, 2007 28:39


Special guest interview with Rob Landley, self professed embedded Linux geek, talks about a wide range of topics; how he got involved with embedded Linux and later the ubiquitous BusyBox project, the philosophy of "security through simplicity", and the new firmware Linux project he's been working on lately to name a few.

LinuxLink Radio by TimeSys
Episode 6: Rob Landley Interview - Self Professed Embedded Linux Geek

LinuxLink Radio by TimeSys

Play Episode Listen Later Mar 28, 2007 28:39


Special guest interview with Rob Landley, self professed embedded Linux geek, talks about a wide range of topics; how he got involved with embedded Linux and later the ubiquitous BusyBox project, the philosophy of "security through simplicity", and the new firmware Linux project he's been working on lately to name a few.

LinuxLink Radio by TimeSys
Episode 4: Getting Started with Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Mar 7, 2007 39:12


Discussion of the basics of getting started with Embedded Linux including: Host environment set up, what works and what doesnt work, using Cygwin and some common challenges and pitfalls of embedded Linux.

LinuxLink Radio by TimeSys
Episode 4: Getting Started with Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Mar 7, 2007 39:12


Discussion of the basics of getting started with Embedded Linux including: Host environment set up, what works and what doesnt work, using Cygwin and some common challenges and pitfalls of embedded Linux.

LinuxLink Radio by TimeSys
Episode 3: The State of Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Feb 16, 2007 35:06


Gene Sally and Maciej Halasz discuss where embedded Linux was 5 years ago, where it is Today and where they think it is going.

LinuxLink Radio by TimeSys
Episode 3: The State of Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Feb 16, 2007 35:06


Gene Sally and Maciej Halasz discuss where embedded Linux was 5 years ago, where it is Today and where they think it is going.

LinuxLink Radio by TimeSys
Episode 2: Thomas Gleixner Interview - Realtime Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Feb 9, 2007 35:06


Special guest interview with Thomas Gleixner, Founder of Linutronix and works mainly on kernel related topics. He is one of the main contributors to the realtime preemption patch and has extensive expertise in embedded and realtime Linux.

LinuxLink Radio by TimeSys
Episode 2: Thomas Gleixner Interview - Realtime Embedded Linux

LinuxLink Radio by TimeSys

Play Episode Listen Later Feb 9, 2007 35:06


Special guest interview with Thomas Gleixner, Founder of Linutronix and works mainly on kernel related topics. He is one of the main contributors to the realtime preemption patch and has extensive expertise in embedded and realtime Linux.

LinuxLink Radio by TimeSys
Episode 1: What is Embedded Linux and why should you care?

LinuxLink Radio by TimeSys

Play Episode Listen Later Jan 31, 2007 31:26


What and why is embedded Linux? Why should you care? What is the business reason for embedded Linux? What is the technical reason for embedded Linux? How do you get started with embedded Linux?

LinuxLink Radio by TimeSys
Episode 1: What is Embedded Linux and why should you care?

LinuxLink Radio by TimeSys

Play Episode Listen Later Jan 31, 2007 31:26


What and why is embedded Linux? Why should you care? What is the business reason for embedded Linux? What is the technical reason for embedded Linux? How do you get started with embedded Linux?

LinuxLink Radio by TimeSys
Episode 30: Profiling Tools - Hardware Efficiency:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jan 1, 1970 26:42


Gene and guest host Jeremiah Lott discuss various profiling tools to get the most efficiency out of your hardware. In this episode they focus on using profiling tools to optimize the kernel.

LinuxLink Radio by TimeSys
Episode 31: Review of Embedded World Conference in Nurnberg:

LinuxLink Radio by TimeSys

Play Episode Listen Later Jan 1, 1970 14:38


Maciej and guest host Scott Gilbertson discuss their experience at the Embedded World Conference in Nurnberg, Germany.

LinuxLink Radio by TimeSys
Episode 30: Profiling Tools - Hardware Efficiency:

LinuxLink Radio by TimeSys

Play Episode Listen Later Dec 31, 1969 26:42


Gene and guest host Jeremiah Lott discuss various profiling tools to get the most efficiency out of your hardware. In this episode they focus on using profiling tools to optimize the kernel.

LinuxLink Radio by TimeSys
Episode 31: Review of Embedded World Conference in Nurnberg:

LinuxLink Radio by TimeSys

Play Episode Listen Later Dec 31, 1969 14:38


Maciej and guest host Scott Gilbertson discuss their experience at the Embedded World Conference in Nurnberg, Germany.