PLAY PODCASTS
DistroTube on Odysee

DistroTube on Odysee

61 episodes — Page 1 of 2

Features Linux Has...But Windows Doesn't!

May 15, 202611 min

7 Aliases That Make The Terminal Great Again

May 12, 202613 min

Does Open Source Have A Pedo Problem?

May 9, 202620 min

Linux...So Much Has Changed In The Last 20 Years

May 6, 202628 min

5 Open Source Apps I'd Install Even On Windows

May 3, 202611 min

A New Folder Just Appeared In Your Home Directory

Apr 30, 20265 min

A Quick Look At Ubuntu 26.04 "Resolute Raccoon"

Apr 27, 202623 min

I'm Always Right And You're Always Wrong (A Message To Non-Idiots!)

Apr 24, 20267 min

Non-Programmer Builds Web App In Minutes

Apr 21, 202613 min

Is Artix Linux Just A Protest Distro?

Apr 18, 202620 min

Hey, DT! Would You Use Snaps On Ubuntu?

Apr 15, 20261h 19m

CuerdOS Is Not Just Another Distro! (Or Is It?)

CuerdOS is a GNU/Linux distribution of Spanish origin focused on stability, efficiency, and performance. Today, I'm taking a look at their KDE Plasma edition.REFERENCED:► https://cuerdos.github.io/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=Bh4cQJ5aTUg

Apr 12, 202616 min

Incognito Web Browsing Is NOT Private! (Well...Sort Of)

Every major web browser has an incognito mode or a private mode. Many (possibly most) users think that this keeps them "private" while viewing the web. And it absolutely does not!WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=soN2EVOh1O8

Apr 9, 20268 min

Has A.I. Made The Web Obsolete?

I'm surfing the web less and less now, thanks to my increasing use of A.I. tools like Claude and ChatGPT.WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=GPcM_MKIfXs

Apr 6, 20267 min

'date' - print or set date and time - Video Man Pages

The 'date' command prints or sets the date and time.- Print the current date/time, using the default locale's format: date +%c - Print the current date/time in UTC, using default format: date -u - Print the current date/time in UTC, using the ISO 8601 format: date -u +%Y-%m-%dT%H:%M:%S%Z- Print the date only using the ISO 8601 format: date +%F -or- date +"%Y-%m-%d"- Print the date in MM/DD/YY format: date +%D -or- date +"%m/%d/%y" - Print the time in HH:MM:SS format: date +%T -or- date +"%H:%M:%S"- Print the current date as a Unix timestamp (seconds since the Unix epoch): date +%s - Convert a Unix timestamp date (ex: 1773665635) to the default format: date -d @1773665635 - Convert a given date to the Unix timestamp format: date -d "2020-03-01 00:00" +%s -u - Display the current date using the RFC-3339 format (YYYY-MM-DD hh:mm:ss TZ) and printing seconds (s): date --rfc-3339 s NOTE Instead of 's' for seconds, you could use 'n' for nanoseconds of 'd' for printing date only. - Set the current date providing a full timestamp in quotes (requires sudo privileges): date -s "2026-03-16 14:30:00" - Set the current time while keeping the current date (requires sudo privleges). date +%T -s "10:15:30"REFERENCED:► https://gitlab.com/dwt1/vidman - Video Man PagesWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=WZMf-fC45ak

Apr 3, 20266 min

'cal' - display a calendar - Video Man Pages

The 'cal' command displays the calendar.- Display the 'single month' (current month) calendar: cal -1- The 'single month' calendar is the default: cal - Display three months spanning the date: cal -3- Display the whole calendar for the 'current' year: cal -y- Display a calendar for a specific year (4 digits): cal 2026- Display the next twelve months: cal -Y- Use 'Monday' as the first day of the week and display week numbers: cal -m -w- Display a calendar for a specific month and year: cal April 2026 cal Apr 2026 cal 04 2026 NOTE: 'cal 04 26' would seen as April of the year '0026'.- Display calendar in 'vertical' layout using three month calendar: cal -v -3- Use 'julian' numbering (ordinal numbering) for days: cal -jREFERENCED:► https://gitlab.com/dwt1/vidmanWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=G9bWGPlcZmI

Apr 2, 20263 min

'cal' - display a calendar - Video Man Pages

The 'cal' command displays a calendar in your terminal. - Display the 'single month' (current month) calendar: cal -1- The 'single month' calendar is the default: cal - Display three months spanning the date: cal -3- Display the whole calendar for the 'current' year: cal -y- Display a calendar for a specific year (4 digits): cal 2026- Display the next twelve months: cal -Y- Use 'Monday' as the first day of the week and display week numbers: cal -m -w- Display a calendar for a specific month and year: cal April 2026 cal Apr 2026 cal 04 26 - Display calendar in 'vertical' layout using three month calendar: cal -v -3- Use 'julian' numbering (ordinal numbering) for days: cal -jREFERENCED:► https://gitlab.com/dwt1/vidman - Video Man PagesWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=bGkV384sSog

Apr 2, 20263 min

Fuzzel Is A Run Launcher For Wayland Desktops

Fuzzel is a Wayland-native application launcher and fuzzy finder, inspired by rofi and dmenu.REFERENCED:► https://codeberg.org/dnkl/fuzzelWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=4am_n25wOuI

Mar 30, 202611 min

Installation and First Look at LinuxHub Prime

LinuxHub Prime is an Arch-based Linux distribution with a customised Openbox window manager as the default desktop environment. Its main feature is a unique installer that provides one-click installation options for several popular window managers and desktop environments.REFERENCED:► https://linuxhub.link/index.phpWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=K5J4LG4detc

Mar 27, 202626 min

Create Beautiful Websites With Hugo

Hugo is one of the most popular open-source static site generators. With its amazing speed and flexibility, Hugo makes building websites simple and fun. And you get to write the content using either Markdown or Org Mode. How cool is that!REFERENCED:► https://gohugo.io/► https://github.com/devcows/hugo-universal-themeWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=onw826NsgWQ

Mar 24, 202616 min

Taking Notes With Emacs Org Mode (It's Easy!)

Some people are "note takers." And most of these people are forever searching for the ultimate note taking app. Well, look no further. Emacs Org Mode has been the de facto standard for note taking for decades!WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=NebhEVR44Jc

Mar 21, 202615 min

CachyOS Dethrones Arch As Top Gaming Distro

In a recent survey, CachyOS was the most popular distro for gamers using protondb, overtaking Arch Linux. Why has CachyOS become so popular so fast? REFERENCED:► https://www.xda-developers.com/cachyos-dethrones-arch-as-the-top-desktop-distro-for-linux-gamers-on-protondb/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=CPsMqjjsyhI

Mar 18, 202610 min

'tail' - print the ending of files - Video Man Pages

The 'tail' command is used to print the ending lines of a file.- Print last 10 lines in a file: tail path/to/file- Print last 10 lines of multiple files: tail path/to/file1 path/to/file2 ...- Print last 5 lines (-n 5) in file: tail -n 5 path/to/file- Print a file starting from line number 5 (-n +5): tail -n +5 path/to/file- Print the first 12 bytes (-c 12) from the end of a given file: tail -c 12 path/to/file- Print the last lines of a given file and keep reading it (following it) until CTRL-C: tail -f path/to/file NOTE Useful if running 'tail' on a file that is being appended constantly.- Show last 5 lines (-n 5) in a file, follow for changes (-f), and check every 5 seconds (-s 5): tail -n 5 -s 5 -f path/to/file- Use verbose mode (-v) to print headers giving file names: head -v file1 NOTE When running 'tail' on multiple files, verbose is the default mode.- Use quiet mode (-q) to suppress the printing of headers giving file names: head -q file1 file2 NOTE When running 'tail' on a single file, quiet is the default mode.REFERENCED:► https://gitlab.com/dwt1/vidman - Video Man PagesWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=Ug5u1OT1sxQ

Mar 16, 20265 min

'head'- print the beginning of files - Video Man Pages

The 'head' command is used to print the beginning lines of a file.- Print first 10 lines in a file: head path/to/file- Print first 10 lines of multiple files: head path/to/file1 path/to/file2 ...- Print the first 5 lines (-n 5) of a file: head -n 5 path/to/file- Print everything but the last 5 lines (-n -5) of a file: head -n -5 path/to/file- Print the first 12 bytes (-c) of a file: head -c 12 path/to/file- Print everything but the last few bytes of a file: head -c -12 path/to/file- Use verbose mode (-v) to print headers giving file names: head -v file1 NOTE When running 'head' on multiple files, verbose is the default mode.- Use quiet mode (-q) to suppress the printing of headers giving file names: head -q file1 file2 NOTE When running 'head' on a single file, quiet is the default mode.REFERENCED:► https://gitlab.com/dwt1/vidman - Video Man PagesWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=2bI-HlSG3_I

Mar 15, 20263 min

Origami Linux Is Both Elegant And Opinionated (And I Like It!)

Origami is a next-generation Linux distribution built on Fedora Atomic. It uses the Cosmic Desktop that was developed by PopOS. It also uses the CachyOS kernel. Oh...and it replaces a lot of the standard shell utilities with modern Rust alternatives! REFERENCED:► https://gitlab.com/origami-linuxWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=1STCtfTNKvk

Mar 12, 202625 min

Replacing Native Apps With Snaps And Flatpaks? (Don't Do It!)

Since doing a fresh Linux installation on my office workstation three months ago, I've been doing a little experiment. I've only installed native Arch packages on this machine. That's right! No snaps or flatpaks or any of that sort of thing. And it's been GREAT!WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=58jkfpJ3j0E

Mar 9, 20268 min

Mediocrity Is Destroying Everything...Including Our Software

I see nothing but mediocrity in the world. Mediocrity is in our music, movies, sports, culture, software, etc. And it frustrates the hell out of me.WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=fjI0IRsjizA

Mar 7, 202610 min

A First Look At NebiOS (Ubuntu-Based Linux With Wayfire)

NebiOS is a new Linux distribution based on Ubuntu. It uses its own NebiDE desktop environment based on the Wayfire compositor.REFERENCED:► https://nebios.org/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=J_PfMreLxA0

Mar 5, 202619 min

'wc' - count words lines and bytes - Video Man Pages

The 'wc' command counts the number of lines, words or bytes in a file.- Count lines (-l) in a file: wc -l path/to/file- Count words (-w) in a file: wc -w path/to/file- Count bytes in a file: wc -c path/to/file- Count characters (-m) in a file, taking multi-byte characters into account: wc -m path/to/file- Count lines, words, and bytes in a file: wc path/to/file - Count lines, words, and bytes from stdin: cat path/to/file | wc NOTE This is NOT a "useless use of cat" since the output is slightly different than 'wc file'. - Get character length of the longest line in a file: wc -L path/to/fileREFERENCED:► https://gitlab.com/dwt1/vidman - Video Man PagesWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=ODkPRwd3l8w

Mar 2, 20263 min

'xargs' - execute command lines from standard input - Video Man Pages

'xargs' takes the output of one command (or contents of a file), converts it into a list of arguments, and passes that list to another command to execute. - Run a command using the input data as arguments: command1 | xargs command2 - Count lines in multiple files: ls *.txt | xargs wc -l- Cat a file and use the input data as an argument: cat file | xargs NOTE If no xargs command is given, xargs uses 'echo' as the command.- The same as above except it executes the command once per argument (-n 1): cat file | xargs -n 1- Create 10 sequential .txt files. The '-I {}' symbolizes all the input: seq 10 | xargs -I {} touch {}.txt- Delete files with '.log' extension found by 'find'. The -print0 in 'find' and -0 in 'xargs' use a null character as a delimiter, ensuring filenames with spaces or special characters are handled correctly. find . -name "*.log" -print0 | xargs -0 rm -f - Find and delete all backup files (.bak). The '-p' option is useful for destructive operations, as it displays the command to be executed and asks for user confirmation (y/n). find . -type f -name "*.bak" | xargs -p rm- The '-d' option sets the delimiter (spaces by default): ls | xargs -n 1 (Files/directories with spaces are a problem.) ls | xargs -n 1 -d \n (Uses new line as delimiter and problem solved!) - xargs can print (-a) the contents of a file to stdout. We can use '-p' to prompt for 'y/n' before executing. We can use '-r' to only execute if stdin is not empty. xargs -a 1.txt xargs -p -a 1.txt xargs -r -p -a 1.txtREFERENCED:► https://gitlab.com/dwt1/vidmanWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=tUkQcvytVtw

Feb 28, 20269 min

Cheap Fix For Sinking Computer Chairs And Office Chairs

Ever had a computer chair or office chair that was no longer able to maintain its height? There's a few DIY fixes that involve cutting PVC pipe and using metal clamps, but if you're like me, you probably would prefer a ready-made, out-of-the-box fix. I found a cheap product that works!► https://amzn.to/3ZWguh4 - Office Chair Hero ClampsWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=I_urqL2bEX8

Feb 26, 20263 min

KaOS Ditches KDE Plasma For Niri

KaOS is an independent, built from-scratch Linux distribution, that for many years was built using KDE Plasma, but they've now dropped Plasma in favor of Niri wth the Noctalia shell.REFERENCED:► https://kaosx.us/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=XOmc0Q_NX-o

Feb 23, 202620 min

Pacman Slow In Arch Linux? Here's The Fix!

The 'pacman' package manager is one of the major distinguishing features of Arch Linux, but it does have issues on occasion, such as becoming really slow when installing software or updating the system. But these issues are easily fixed.REFERENCED:► https://wiki.archlinux.org/title/PacmanWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=KcHcQHl8U8k

Feb 20, 20266 min

A Quick First Look AT iDeal OS

Today, I'm taking a look at the latest release of iDeal OS, based on MX Linux 25.1 and Debian 13.3 Trixie, with KDE Plasma 6 desktop environment.REFERENCED:► https://ideal-os.xyz/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=7HW1c-_mrrg

Feb 16, 202624 min

Hey, DT! You're Not Bald...But You Are Wide! (Plus Other Comments)

On this episode of Hey DT:0:00 Intro0:18 What do you think about Niri?3:00 I know that you're not bald, but why are you wider now?5:41 How do I properly erase everything on my SSD? Complete wipe.7:43 Are you really editing videos in one take?9:25 It's been 5 years since your last Guix video.11:52 Do you have any footage of you using it (Kensington Orbit Trackball)?12:44 Why don't you mount your /home separately? Like from a btrfs subvolume?14:55 Don't you think you make linux more complicated and elitist?23:44 Thanks to PatronsWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=uGJ1Nao0E1Q

Feb 13, 202624 min

An Arch Linux Installation Guide (2026) [Re-Uploaded]

How to install Arch Linux via the command line installation process. I will use UEFI, btrfs, zram, and install a popular Wayland compositor (niri). NOTE:This video was re-uploaded in order to correct a major mistake (by omission) made in the first version of this video. I did not run the command to create the 'fstab' file. Oops! REFERENCED:► https://wiki.archlinux.org/title/Installation_guideWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=BUYFe5ejxfo

Feb 10, 202623 min

Arch Linux Installation Guide (2026 Edition)

How to install Arch Linux via the command line installation process. I will use UEFI, btrfs, zram, and install a popular Wayland compositor (niri). REFERENCED:► https://wiki.archlinux.org/title/Installation_guideWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=L1NHHIa5Xig

Feb 9, 202622 min

Transform Arch Linux Into XeroLinux

Introducing the new Xero Arch Installer, which is a beautiful, streamlined Arch Linux installer with a easy-to-use, modern TUI interface.REFERENCED:► https://github.com/xerolinux/XeroInstallWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=eJag0014isw

Feb 6, 202615 min

Digital Detox And Being Self Sufficient

After a severe winter storm, I've spent the last 8 days without power. And that got me thinking...WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=RQppXZ6H-J0

Feb 2, 202617 min

Not Bald Boomer Rants About Bad Weather

A quick update after the ice storm that has left me without power for several days.WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=iN-J51qDzpk

Jan 30, 20263 min

My Xonsh Shell Experiment Failed! (...Kind Of)

Xonsh (sounds like "consh") is a modern, full-featured and cross-platform python shell. I recently switched to using Xonsh as my default user shell, but I ran into a big problem with it, mainly because I installed it the wrong way!REFERENCED:► https://xon.sh/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=Iif4GpL6yrQ

Jan 26, 20266 min

The Dank Material Shell - A Wayland Desktop Suite

DankMaterialShell is a complete desktop shell for niri, Hyprland, MangoWC, Sway, labwc, Scroll, and other Wayland compositors. It replaces waybar, swaylock, swayidle, mako, fuzzel, polkit, and everything else you'd normally stitch together to make a desktop.REFERENCED:► https://github.com/AvengeMedia/DankMaterialShellWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=1ILZevPGgJw

Jan 23, 202614 min

The Kensington Orbit Trackball Mouse (Will It Solve My Hand Pain?)

I switched to the Kensington Expert trackball about 5 years ago. I even did a video about it (https://www.youtube.com/watch?v=VaG4sCXTkrw). But recently I have been having a bit of hand pain, and I suspected that the mouse was the problem. So...I decided to try a different Kensington trackball--the Orbit! REFERENCED:► https://amzn.to/45eSLvF - Kensington Orbit Trackball MouseWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=BZqHn8w0MGg

Jan 19, 202611 min

A Quick First Look At The Niri Window Manager

I'm taking a quick first look at Niri, which is a scrollable-tiling Wayland compositor.REFERENCED:► https://github.com/YaLTeR/niri/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=uiXiD5foFCI

Jan 16, 202616 min

Fair Source Software Is Incredibly Unfair

There is a new "software movement" that seems to be gaining ground. It's the "fair source" movement, and it's quite discriminatory in nature. Sadly, I see some within the FOSS community actually advocating for "fair source."REFERENCED:► https://fair.io/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=V_L0MNy8Mpg

Jan 12, 202615 min

Qtile On Wayland...It Kinda Works!

I've been using Qtile on-and-off again for probably a decade or longer. Qtile is a full-featured, hackable tiling window manager written and configured in Python. It was originally written for X11 but it does have a Wayland session. Let's try it out!REFERENCED:► https://qtile.org/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=8YdBCIqhzs8

Jan 8, 202617 min

Vibe Coding Is The Evolution Of Programming

We have entered a new age of programming. It is the age of "vibe coding," which is using A.I. tools like ChatGPT or Gemini to write your programs.WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=2wfs0A94_T4

Jan 4, 202614 min

'awk' - a programming language for working on files - Video Man Pages

The 'awk command' is really an entire programming language used for working with files and text.- Print a file (similar to 'cat'): awk '{print}' path/to/file OR awk '{print $0}' path/to/file- Print the 2nd field of each line: awk '{print $2}' path/to/file- Print the last field of each line: awk '{print $NF}' path/to/file- Search for lines containing 'string' and print the second field of those lines: awk '/string/ {print $2}' path/to/file- Use a different field separator (instead of space) and print 1st and 7th fields with a TAB in between: awk -F ":" '{print $1 "\t" $7}' /etc/passwd- Find a specific string in any column: ps -ef | awk '{ if($NF == "/usr/bin/pipewire") print $0};' NOTE We search if the last field is '/usr/bin/pipewire' and print the line.- Search 1st field if it starts with 'b' or 'c', then prints the line: awk '$1 ~ /^[b,c]/ {print $0}' .bashrc NOTE The '~' character is the regex match operator.- Use the 'substr' function to print each record from the 2nd character onward: awk '{print substr($0, 2)}' .bashrc NOTE It essentially prints the document but omits the first character of each line.REFERENCED:► https://gitlab.com/dwt1/vidmanWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=cK1JMK7Ckq0

Jan 1, 20268 min

'cut' - cut sections from lines of text - Video Man Pages

The 'cut' command is used to cut sections from lines of text.- Print the third character (-c) on each line: cut -c 3 /path/to/file command | cut -c 3- Print characters 5-10 of each line of a file: cut -c 5-10 path/to/file- Split each line using a delimiter into fields, and print fields (-f) 2 and 5: cut -f 2,5 path/to/file NOTE The default delimiter is the TAB.- Split each line using a specified delimiter (-d) and print field 4 and all fields after: cut -d ":" -f 4- /etc/passwd NOTE The /etc/passwd file uses colons to separate fields of information.- Split each line using a specified delimiter (-d) and print field 4 and all fields previous: cut -d ":" -f -4 /etc/passwd- Do not print lines that do not contain the delimiter (-s): cut -d " " -f -4 -s .bashrcREFERENCED:► https://gitlab.com/dwt1/vidmanWANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=9hoTL0GP2uQ

Dec 30, 20254 min

A "Fresh" New Terminal Text Editor (Better Than Nano!)

Fresh is a terminal text editor you can just use. It's lightweight, fast and easy to learn. It includes features such as tabs, splits, LSP support and a file tree!REFERENCED:► https://sinelaw.github.io/fresh/WANT TO SUPPORT THE CHANNEL? 💰 Patreon: https://www.patreon.com/distrotube 💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW🛍️ Amazon: https://amzn.to/2RotFFi👕 Teespring: https://teespring.com/stores/distrotubeDT ON THE WEB:🕸️ Website: http://distro.tube📁 GitLab: https://gitlab.com/dwt1 🗨️ Mastodon: https://fosstodon.org/@distrotube👫 Reddit: https://www.reddit.com/r/DistroTube/📽️ Odysee: https://odysee.com/@DistroTube:2FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:🌐 Brave Browser - https://brave.com/📽️ Open Broadcaster Software: https://obsproject.com/🎬 Kdenlive: https://kdenlive.org🎨 GIMP: https://www.gimp.org/💻 VirtualBox: https://www.virtualbox.org/🗒️ Doom Emacs: https://github.com/hlissner/doom-emacsYour support is very much appreciated. Thanks, guys!...https://www.youtube.com/watch?v=dspEVA8eoUg

Dec 25, 202511 min