This week’s episode of Destination Linux, we’re going to make Pipewire Face the Music, which by that we mean we’re going to discuss whether or not Pipewire is ready for the masses. Later in the show, we’re bringing back a fan favorite segment. That’s right. Jill is going to pull out another gem from her […]

https://youtu.be/jBrsW6eancA

This week’s episode of Destination Linux, we’re going to make Pipewire Face the Music, which by that we mean we’re going to discuss whether or not Pipewire is ready for the masses. Later in the show, we’re bringing back a fan favorite segment. That’s right. Jill is going to pull out another gem from her computer vault in Jill’s Treasure Hunt. Plus we’ve also got our famous tips, tricks and software picks. All of this and so much more this week on Destination Linux. So whether you’re brand new to Linux and open source or a guru of sudo. This is the podcast for you.

Sponsored by: do.co/dln-mongo

Sponsored by: bitwarden.com/dln

Hosts of Destination Linux:

Ryan (DasGeek) = dasgeekcommunity.com
Michael Tunnell = tuxdigital.com
Jill Bryant = jilllinuxgirl.com

Want to Support the Show?

Support us on Patreon = https://destinationlinux.org/patreon
Support us on Sponsus = https://destinationlinux.org/sponsus
Destination Linux Network Store = http://dlnstore.com

Want to follow the show and hosts on social media?

You can find all of our social accounts at https://destinationlinux.org/contact

Segment Index

00:00:00 = Welcome to DL 23300:01:12 = Announcement: DLN Hangout on Sunday July 11th00:02:08 = Editors Note: Technical Difficulties Happen Sometimes00:02:40 = Community Feedback: Security Questions About The Web & IT Job Search Tips00:12:21 = Digital Ocean: Managed MongoDB ( https://do.co/dln-mongo )00:13:37 = Discussion: It’s Time Pipewire Faces The Music00:31:54 = Bitwarden Password Manager ( https://bitwarden.com/dln )00:34:11 = Jill’s Treasure Hunt: Cool Retro Keyboards with Built-in Speakers00:49:57 = Linux Gaming: Wildermyth00:54:41 = Software Spotlight: DBeaver00:57:14 = Tip of the Week: How To Create a System Backup Image of Your Rasperry Pi01:00:55 = Outro

Tip of the Week: Create a Full Backup Image of an SD Card for a Raspberry Pi

There are many ways to accomplish a full SD card backup image but we’re going to show you one of the easiest:First take the SD card out of your PiBefore you insert your SD card into your PC run the command:dfor you can use sudo fdisk -lThis command will list out all your current drives.Next insert the SD card from the Pi and run the ‘df’ command once more.Now you’ll be able to see the drive path assigned to the SD card ex: /dev/mmcblk01 and 02.TIP: if you don’t see any changes interact with the drive in your file manager and then run the command again in the terminalFinally, run this command:sudo dd bs=4M if=/dev/mmcblk0 of=MyPi.imgreplacing the /dev/mmcblk0 with the path your PC assigned your SD card.Note we didn’t designate the 1 or 2 on the end we just wrote the path up to the mmcblk0.That’s it. Now you’ve made a complete backup image of your SD card that you can restore to another SD card in case of corruption or loss.