From derek at ihtfp.com Fri Jul 2 12:17:10 2021 From: derek at ihtfp.com (Derek Atkins) Date: Fri, 2 Jul 2021 12:17:10 -0400 Subject: [Discuss] Come work with me -- looking for software engineers! Message-ID: <1f1ab35203f2d83285f6c973ac5560e1.squirrel@mail2.ihtfp.org> Hi, My company is hiring. Come work with me to build leading-edge security solutions for the Internet of Things. We're looking for full-stack developers (generally in Java and AWS) and embedded developers working on embedded linux platforms. Contact me if you have more questions! https://www.veridify.com/employment/ -derek -- Derek Atkins 617-623-3745 derek at ihtfp.com www.ihtfp.com Computer and Internet Security Consultant From me at mattgillen.net Sat Jul 3 14:51:20 2021 From: me at mattgillen.net (Matthew Gillen) Date: Sat, 3 Jul 2021 14:51:20 -0400 Subject: [Discuss] btrfs tip Message-ID: <2665135f-a7cb-93ba-a1fb-84f8c4bf10fd@mattgillen.net> Came back from vacation to a dead disk in my main linux server. Disk had been dying for a while, and we had a power outage at some point while I was gone which must have finished it off. Kernel had been stuck trying to initialize the disks on boot for 3 days. Protip: if you use btrfs as your root filesystem, and use a RAID1/mirroring configuration, then add the 'degraded' flag to your grub kernel command line. That will allow it to mount (and boot) even if a disk dies. Don't know why this isn't the default... If you don't do that (or manually edit the command line to add it if you have console access) you have to boot off a rescue USB that understands btrfs in order to start the 'btrfs replace' operation. To do this, you add to the rootflags parameter: rootflags=subvol=root,degraded Where do you set that? The grub config keeps moving around. Currently my Fedora33 box the actual command lines for the kernel are in: /boot/loader/entries/*.conf (note that it needs to be on the kernel command line, having it as an option in /etc/fstab is not sufficient, at least when it comes to the root filesystem) Matt From me at mattgillen.net Sun Jul 4 16:58:21 2021 From: me at mattgillen.net (Matthew Gillen) Date: Sun, 4 Jul 2021 16:58:21 -0400 Subject: [Discuss] btrfs tip In-Reply-To: <877di6m3cy.fsf@fsf.org> References: <2665135f-a7cb-93ba-a1fb-84f8c4bf10fd@mattgillen.net> <877di6m3cy.fsf@fsf.org> Message-ID: On 7/4/2021 12:46 PM, Ian Kelling wrote: > > Matthew Gillen writes: > >> Came back from vacation to a dead disk in my main linux server. Disk >> had been dying for a while, and we had a power outage at some point >> while I was gone which must have finished it off. Kernel had been stuck >> trying to initialize the disks on boot for 3 days. >> >> Protip: if you use btrfs as your root filesystem, and use a >> RAID1/mirroring configuration, then add the 'degraded' flag to your grub >> kernel command line. That will allow it to mount (and boot) even if a >> disk dies. Don't know why this isn't the default... > > Will you know if a disk dies in that case? A major problem with linux > filesystems I've had is that they just try to keep working without any > notification of things going wrong until they simply don't work, as if > everyone has some dmesg parsing daemon that magically notifies them of > anything important, but no one does. If that is the case, then it makes > sense for it to not be the default. Good point, but it isn't really different than if the disk dies while the system is up. Not certain what happens when it dies online, but I suspect you'd need some cron job (or logcheck) checking with a notification mechanism. The linux software RAID mechanism has it's own e-mailing notification system that doesn't rely on watching syslog or polling /proc/mdstat, I don't think btrfs has something like that yet. (there are some nice cron-friendly scripts here https://github.com/kdave/btrfsmaintenance but they don't seem to cover the case of monitoring mirrors) I can kind of understand why, RAID-1/mirroring is only one of many things you can do with btrfs, whereas the software-RAID system has one thing that it does. The problem is that unless you have hot-swap HD chassis in your server, you /have/ to bring the system down to replace the disk, and you can't do the 'btrfs replace' operation until you have the new disk online. So at some point you're going to need to mount with the 'degraded' option in order to fix it. A cron job to check status could look something like btrfs filesystem show | grep missing --- Further investigation turned up this thread that explains why the default is to not allow degraded mounts: https://www.reddit.com/r/btrfs/comments/kguqsg/degraded_boot_with_systemd/ The key comment is by 'cmmurf' and the issue is about timing of device discovery (the current age of multiple hot-plug interfaces makes this harder than it used to be). I'm not sure how to interpret his comment though, it sounds as if 'degraded' at boot time always runs the risk of doing the 'split brain' thing, which seems unfortunate; it would mean that the only safe way to replace a drive on a btrfs root filesystem involves booting from a rescue environment. I would have to understand how udevadm works in /usr/lib/udev/rules.d/64-btrfs.rules to say for sure if the 'split brain' is a problem with the udev rules as they are, but I am now less certain that 'degraded' is a good thing to put in your default grub linux command lines. 'cmmurf' did explain why my system was happily waiting for three days for the disk to become ready though... (those very udev rules that prevent problems for btrfs) Matt From david at thekramers.net Sun Jul 4 17:31:37 2021 From: david at thekramers.net (David Kramer) Date: Sun, 4 Jul 2021 17:31:37 -0400 Subject: [Discuss] Audacity EULA change for the worse Message-ID: <3179cbd1-fd7b-3112-b71b-721fe3e15b24@thekramers.net> From my twitter feed: PSA: If you use Audacity, the new owners just updated the terms of service so they can collect data on you, including for very open-ended "legal enforcement"; and then sell it to "potential buyers" all without your consent https://www.ghacks.net/2021/07/04/audacity-controversy-continues-with-newly-published-privacy-notice/ The last couple of months have been anything but pleasant for the new owners of the open source audio editor Audacity. It all began in May 2020 with news that Audacity was acquired by MuseGroup; what acquired meant exactly was not made clear back then, considering that Audacity was an open source project. An update to the Desktop Privacy Notice was published in July 2021, and it too is generating uproar.? The note lists the data that Audacity is collecting as well as the reason for collecting the data, with whom the data is shared and under which circumstances, how the data is protected, and how it is stored and deleted. The following data is or may be collected by Audacity: * App Analytics and App Improvements: o OS version o User country based on IP address o OS name and version o CPU o Non-fatal error codes and messages (i.e. project failed to open) o Crash reports in Breakpad MiniDump format * For legal enforcement o Data necessary for law enforcement, litigation and authorities? requests (if any) From eric.chadbourne at icloud.com Tue Jul 6 15:25:19 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Tue, 6 Jul 2021 15:25:19 -0400 Subject: [Discuss] EFF's 30th Anniversary Videos Message-ID: Hi, I'm probably the last to see this but have you seen this? https://www.eff.org/tags/eff30 I've just started working my way through. Good background noise while working. -- Eric Chadbourne The one who is using Thunderbird again because Apple web mail is horrible and breaks things. From agabriel2 at gmail.com Thu Jul 8 12:35:38 2021 From: agabriel2 at gmail.com (Dr. Anthony Gabrielson) Date: Thu, 8 Jul 2021 12:35:38 -0400 Subject: [Discuss] Revive Adserver Message-ID: Hi, I'm working on a project with the Revive adserver and having a few issues. The server appears to leave all tracking off by default. I would like to turn everything on for the analysis underway. Does anyone have any experience with Revive? If so, have you enabled the full range of tracking options? If you have, a few pointers would be appreciated. Thank you, Anthony From eric.chadbourne at icloud.com Fri Jul 9 15:02:31 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Fri, 9 Jul 2021 15:02:31 -0400 Subject: [Discuss] external drive not showing such as sdcard Message-ID: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> On my HP Envy laptop running Ubuntu 20.04.2 LTS, the Files application doesn't show USB or sdcards. I can see USB in terminal in /dev. However I can't see the sdcard. eric at dragonEnvy:/media/eric$ ls -la /dev/sd* brw-rw---- 1 root disk 8, 0 Jul 9 12:54 /dev/sda brw-rw---- 1 root disk 8, 1 Jul 9 12:54 /dev/sda1 brw-rw---- 1 root disk 8, 2 Jul 9 12:54 /dev/sda2 brw-rw---- 1 root disk 8, 3 Jul 9 12:54 /dev/sda3 brw-rw---- 1 root disk 8, 16 Jul 9 13:19 /dev/sdb // the USB dongle Is the sdcard card reader recognized? I _think_ yes. sudo lspci -v -nn 02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS522A PCI Express Card Reader [10ec:522a] (rev 01) Subsystem: Hewlett-Packard Company RTS522A PCI Express Card Reader [103c:81ad] Flags: bus master, fast devsel, latency 0, IRQ 125 Memory at b1000000 (32-bit, non-prefetchable) [size=4K] Capabilities: [40] Power Management version 3 Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ Capabilities: [70] Express Endpoint, MSI 00 Capabilities: [100] Advanced Error Reporting Capabilities: [140] Device Serial Number 00-00-00-01-00-4c-e0-00 Capabilities: [150] Latency Tolerance Reporting Capabilities: [158] L1 PM Substates Kernel driver in use: rtsx_pci Kernel modules: rtsx_pci I tried a rescan but no help. echo 1 | sudo tee /sys/bus/pci/rescan Shouldn't the drives be shown in /media? eric at dragonEnvy:/media/eric$ ls -lah /media total 12K drwxr-xr-x 3 root root 4.0K Apr 25 2020 . drwxr-xr-x 24 root root 4.0K Apr 7 2020 .. drwxr-x---+ 2 root root 4.0K Jun 8 16:28 eric eric at dragonEnvy:/media/eric$ ls -lah /media/eric total 8.0K drwxr-x---+ 2 root root 4.0K Jun 8 16:28 . drwxr-xr-x 3 root root 4.0K Apr 25 2020 .. I see a little plus sign. Maybe I changed something here a while back and forgot. Maybe this is an acl or permission issue? So now I'm thinking maybe just leave the USB and sdcard in and reboot. Maybe root will set them up on initialization. Didn't work. Interesting errors on reboot in auth.log but after investigation I think it is cruft from pam that can be ignored. Jul 9 13:41:09 dragonEnvy gdm-password]: pam_unix(gdm-password:auth): Couldn't open /etc/securetty: No such file or directory Jul 9 13:41:16 dragonEnvy gdm-password]: pam_unix(gdm-password:auth): Couldn't open /etc/securetty: No such file or directory Jul 9 13:41:16 dragonEnvy gdm-password]: gkr-pam: unable to locate daemon control file Jul 9 13:41:16 dragonEnvy gdm-password]: gkr-pam: stashed password to try later in open session Let's check media directory permissions. eric at dragonEnvy:/media$ getfacl eric # file: eric # owner: root # group: root user::rwx user:eric:r-x group::--- mask::r-x other::--- Oddly I can plug in a mouse or my iPad and everything works fine. I plug in an USB dongle or my little SandDisk card and nothing. What do you think? Where else to look? Thanks for any tips! Eric C From jbk at kjkelra.com Fri Jul 9 15:39:37 2021 From: jbk at kjkelra.com (jbk) Date: Fri, 9 Jul 2021 15:39:37 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> Message-ID: <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> On 7/9/21 3:02 PM, Eric Chadbourne wrote: > On my HP Envy laptop running Ubuntu 20.04.2 LTS, the Files > application doesn't show USB or sdcards. > > I can see USB in terminal in /dev.? However I can't see > the sdcard. > > ????eric at dragonEnvy:/media/eric$ ls -la /dev/sd* > ????brw-rw---- 1 root disk 8,? 0 Jul? 9 12:54 /dev/sda > ????brw-rw---- 1 root disk 8,? 1 Jul? 9 12:54 /dev/sda1 > ????brw-rw---- 1 root disk 8,? 2 Jul? 9 12:54 /dev/sda2 > ????brw-rw---- 1 root disk 8,? 3 Jul? 9 12:54 /dev/sda3 > ????brw-rw---- 1 root disk 8, 16 Jul? 9 13:19 /dev/sdb? // > the USB dongle What is the partition type on the card, ntfs? If it is ntfs then maybe you need to install a helper program to be able to mount and read the partition on the card. -- Jim Kelly-Rand jbk at kjkelra.com From david at thekramers.net Fri Jul 9 17:15:21 2021 From: david at thekramers.net (David Kramer) Date: Fri, 9 Jul 2021 17:15:21 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> Message-ID: <9148dbee-c3ec-c629-93ea-618490c406aa@thekramers.net> I would try "sudo fdisk -l /dev/sdb" If it does not show any suitable filesystems, then that's the problem and not any file permissions. On 7/9/21 3:02 PM, Eric Chadbourne wrote: > On my HP Envy laptop running Ubuntu 20.04.2 LTS, the Files application > doesn't show USB or sdcards. > > I can see USB in terminal in /dev.? However I can't see the sdcard. > > ????eric at dragonEnvy:/media/eric$ ls -la /dev/sd* > ????brw-rw---- 1 root disk 8,? 0 Jul? 9 12:54 /dev/sda > ????brw-rw---- 1 root disk 8,? 1 Jul? 9 12:54 /dev/sda1 > ????brw-rw---- 1 root disk 8,? 2 Jul? 9 12:54 /dev/sda2 > ????brw-rw---- 1 root disk 8,? 3 Jul? 9 12:54 /dev/sda3 > ????brw-rw---- 1 root disk 8, 16 Jul? 9 13:19 /dev/sdb? // the USB dongle > > Is the sdcard card reader recognized?? I _think_ yes. > > ????sudo lspci -v -nn > > ????02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. > RTS522A PCI Express Card Reader [10ec:522a] (rev 01) > ??????? Subsystem: Hewlett-Packard Company RTS522A PCI Express Card > Reader [103c:81ad] > ??????? Flags: bus master, fast devsel, latency 0, IRQ 125 > ??????? Memory at b1000000 (32-bit, non-prefetchable) [size=4K] > ??????? Capabilities: [40] Power Management version 3 > ??????? Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+ > ??????? Capabilities: [70] Express Endpoint, MSI 00 > ??????? Capabilities: [100] Advanced Error Reporting > ??????? Capabilities: [140] Device Serial Number 00-00-00-01-00-4c-e0-00 > ??????? Capabilities: [150] Latency Tolerance Reporting > ??????? Capabilities: [158] L1 PM Substates > ??????? Kernel driver in use: rtsx_pci > ??????? Kernel modules: rtsx_pci > > I tried a rescan but no help. > > ????echo 1 | sudo tee /sys/bus/pci/rescan > > Shouldn't the drives be shown in /media? > > ????eric at dragonEnvy:/media/eric$ ls -lah /media > ????total 12K > ????drwxr-xr-x?? 3 root root 4.0K Apr 25? 2020 . > ????drwxr-xr-x? 24 root root 4.0K Apr? 7? 2020 .. > ????drwxr-x---+? 2 root root 4.0K Jun? 8 16:28 eric > > ????eric at dragonEnvy:/media/eric$ ls -lah /media/eric > ????total 8.0K > ????drwxr-x---+ 2 root root 4.0K Jun? 8 16:28 . > ????drwxr-xr-x? 3 root root 4.0K Apr 25? 2020 .. > > I see a little plus sign.? Maybe I changed something here a while back > and forgot.? Maybe this is an acl or permission issue?? So now I'm > thinking maybe just leave the USB and sdcard in and reboot.? Maybe > root will set them up on initialization.? Didn't work. > > Interesting errors on reboot in auth.log but after investigation I > think it is cruft from pam that can be ignored. > > ????Jul? 9 13:41:09 dragonEnvy gdm-password]: > pam_unix(gdm-password:auth): Couldn't open /etc/securetty: No such > file or directory > ????Jul? 9 13:41:16 dragonEnvy gdm-password]: > pam_unix(gdm-password:auth): Couldn't open /etc/securetty: No such > file or directory > ????Jul? 9 13:41:16 dragonEnvy gdm-password]: gkr-pam: unable to > locate daemon control file > ????Jul? 9 13:41:16 dragonEnvy gdm-password]: gkr-pam: stashed > password to try later in open session > > Let's check media directory permissions. > > ????eric at dragonEnvy:/media$ getfacl eric > ????# file: eric > ????# owner: root > ????# group: root > ????user::rwx > ????user:eric:r-x > ????group::--- > ????mask::r-x > ????other::--- > > Oddly I can plug in a mouse or my iPad and everything works fine. I > plug in an USB dongle or my little SandDisk card and nothing. What do > you think?? Where else to look? > > Thanks for any tips! > > Eric C > > _______________________________________________ > Discuss mailing list > Discuss at lists.blu.org > http://lists.blu.org/mailman/listinfo/discuss From eric.chadbourne at icloud.com Fri Jul 9 20:17:46 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Fri, 9 Jul 2021 20:17:46 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <9148dbee-c3ec-c629-93ea-618490c406aa@thekramers.net> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <9148dbee-c3ec-c629-93ea-618490c406aa@thekramers.net> Message-ID: On 7/9/21 5:15 PM, David Kramer wrote: > I would try "sudo fdisk -l /dev/sdb" > > If it does not show any suitable filesystems, then that's the problem > and not any file permissions. > Hi, I deleted the 'eric' directory in /media as I may have done something weird to it a while back. I'm always screwing with things. Then I did your suggestion. eric at dragonEnvy:/dev$ sudo fdisk -l /dev/sdb Disk /dev/sdb: 57.86 GiB, 62109253632 bytes, 121307136 sectors Disk model: Ultra Fit Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes I couldn't see sdb in the Disks GUI which runs as root earlier today but now I can. In Disks the volume is seen but unknown. I reformatted / partitioned the volume as EXT3. I told it to overwrite everything with zeros and it looks like it's going to take about an hour. However this is all a very good sign. Now back to trying to figure out the sdcard. I wager the issue is similar. Thanks all! Eric C - The one who is happy the rain is gone and the redsox are on. From eric.chadbourne at icloud.com Fri Jul 9 21:01:24 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Fri, 9 Jul 2021 21:01:24 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> Message-ID: <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> On 7/9/21 3:39 PM, jbk wrote: > On 7/9/21 3:02 PM, Eric Chadbourne wrote: >> On my HP Envy laptop running Ubuntu 20.04.2 LTS, the Files application >> doesn't show USB or sdcards. >> >> I can see USB in terminal in /dev.? However I can't see the sdcard. >> >> ????eric at dragonEnvy:/media/eric$ ls -la /dev/sd* >> ????brw-rw---- 1 root disk 8,? 0 Jul? 9 12:54 /dev/sda >> ????brw-rw---- 1 root disk 8,? 1 Jul? 9 12:54 /dev/sda1 >> ????brw-rw---- 1 root disk 8,? 2 Jul? 9 12:54 /dev/sda2 >> ????brw-rw---- 1 root disk 8,? 3 Jul? 9 12:54 /dev/sda3 >> ????brw-rw---- 1 root disk 8, 16 Jul? 9 13:19 /dev/sdb? // the USB dongle > > What is the partition type on the card, ntfs? If it is ntfs then maybe > you need to install a helper program to be able to mount and read the > partition on the card. > For the life of me I can't get the laptop to show sdcards. I give up. Maybe a driver issue. It's been a couple of hours. As a workaround I have a neat little Vivitar sdcard to USB A & C adapter. Using this I have no issues. Thanks again for the suggestions! Eric C. From ecs at d2evs.net Fri Jul 9 22:52:52 2021 From: ecs at d2evs.net (Eyal Sawady) Date: Sat, 10 Jul 2021 02:52:52 +0000 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> Message-ID: On Sat Jul 10, 2021 at 1:01 AM UTC, Eric Chadbourne wrote: > As a workaround I have a neat little Vivitar sdcard to USB A & C > adapter. Using this I have no issues. If you're connecting an SD card directly to your computer, it'll show up as /dev/mmcblkX rather than /dev/sdX, with partitions as /dev/mmcblkXpY. If you can't find anything there, you should check dmesg(1) to see what errors, if any, the mmcblk driver is reporting. From eric.chadbourne at icloud.com Sat Jul 10 10:54:47 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Sat, 10 Jul 2021 10:54:47 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> Message-ID: <46b5786b-3b99-599c-0f3c-140457e41d89@icloud.com> On 7/9/21 10:52 PM, Eyal Sawady wrote: > On Sat Jul 10, 2021 at 1:01 AM UTC, Eric Chadbourne wrote: >> As a workaround I have a neat little Vivitar sdcard to USB A & C >> adapter. Using this I have no issues. > > If you're connecting an SD card directly to your computer, it'll show up > as /dev/mmcblkX rather than /dev/sdX, with partitions as /dev/mmcblkXpY. > If you can't find anything there, you should check dmesg(1) to see what > errors, if any, the mmcblk driver is reporting. > Hi, Nothing in /var/log/dmesg on startup or when inserting / removing the sdcard. Also nothing in /dev starting 'mm' when inserted. I suspect the driver is not functional. Currently having a cup of tea and searching around to see if one exists. Great suggestion though. Thanks, Eric C From eric.chadbourne at icloud.com Sat Jul 10 11:34:05 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Sat, 10 Jul 2021 11:34:05 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: <46b5786b-3b99-599c-0f3c-140457e41d89@icloud.com> References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> <46b5786b-3b99-599c-0f3c-140457e41d89@icloud.com> Message-ID: On 7/10/21 10:54 AM, Eric Chadbourne wrote: > On 7/9/21 10:52 PM, Eyal Sawady wrote: >> On Sat Jul 10, 2021 at 1:01 AM UTC, Eric Chadbourne wrote: >>> As a workaround I have a neat little Vivitar sdcard to USB A & C >>> adapter. Using this I have no issues. >> >> If you're connecting an SD card directly to your computer, it'll show up >> as /dev/mmcblkX rather than /dev/sdX, with partitions as /dev/mmcblkXpY. >> If you can't find anything there, you should check dmesg(1) to see what >> errors, if any, the mmcblk driver is reporting. >> > > Hi, > > Nothing in /var/log/dmesg on startup or when inserting / removing the > sdcard.? Also nothing in /dev starting 'mm' when inserted. > > I suspect the driver is not functional.? Currently having a cup of tea > and searching around to see if one exists. > > Great suggestion though. > > Thanks, > > Eric C > Actually I think the issue has something to do with which kernel modules are being used. Might take me a while to figure it out as I rarely play with those. Fun side note, I just did man lsmod and see Jon Masters is one of the authors. We know him! He gave a great talk at a BLU meeting. Small world. Thanks, Eric C From eric.chadbourne at icloud.com Sat Jul 10 13:54:47 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Sat, 10 Jul 2021 13:54:47 -0400 Subject: [Discuss] external drive not showing such as sdcard In-Reply-To: References: <98798782-a804-1cc3-3cfb-0937b9a13484@icloud.com> <17fca479-cc61-13b4-9d88-2dd9bb4f6d51@kjkelra.com> <4bba0f62-b264-92e9-2d8d-d17e3bb51483@icloud.com> <46b5786b-3b99-599c-0f3c-140457e41d89@icloud.com> Message-ID: After further digging there is a known regression with rts5229 on kernel.org. I think that is the issue. Oh well. At least we got the USB working. I can live without the sdcard. Thanks again all! Eric C From gaf.linux at gmail.com Mon Jul 19 08:33:34 2021 From: gaf.linux at gmail.com (Jerry Feldman) Date: Mon, 19 Jul 2021 08:33:34 -0400 Subject: [Discuss] Boston Linux VIRTUAL Meeting Wednesday, July 21, 2021 - SBC Roundup Message-ID: <7557cd1a-1a23-1414-b63c-a3bd4f1fa528@gmail.com> When: July 21, 2021 7:00PM EDT (6:30PM for Q&A) Topic: SBC Roundup Moderators: Kurt Keville,? Federico Lucifredi, Jason Kridner Location: Online: https://meet.jit.si/blu.org Live stream: https://youtu.be/jf7W_yFkaTo Summary: Retrospective look at a decade of Single Board Computing Abstract: Please join us for a walk down memory lane as we look at the history of Single Board Computers (SBCs), Systems-on-chip (SOCs), Systems-on-chip (SOMs), and dev boards as members talk about the ones that they used most. We will discuss the history of embedded Linux in advance of the ELC and HPEC conferences and talk about how the embedded hardware hacking community supported the larger Linux movement and vice versa. Bio Federico Lucifredi is The Ceph Storage Product Management Director at Red Hat, formerly the Ubuntu Server PM at Canonical, and the Linux ?Systems Management Czar? at SUSE. Jason Kridner is Open Platforms Technologist/Evangelist for Texas Instruments, where he focuses on defining strategy for growing TI's open platform ecosystem for developers and customers. Jason is the co-founder and community manager for BeagleBoard.org, designers of BeagleBone Black. Jason is named on 11 patents and has been programming personal computers since 1979 as a hobbyist and professional. He worked on the first wave of MP3 player designs in 1998. Jason will talk about his experiences developing BeagleBone into an open computing platform that is powered by a 1GHz ARMv7 CPU and 2 200MHz 32-bit microcontrollers with real-time capabilities. For further information and directions please consult the BLU Web site: http://www.blu.org -- Jerry Feldman > Boston Linux and Unix http://www.blu.org PGP key id: 6F6BB6E7 PGP Key fingerprint: 0EDC 2FF5 53A6 8EED 84D1? 3050 5715 B88D 6F6 B B6E7 _______________________________________________ Announce mailing list Announce at lists.blu.org http://lists.blu.org/mailman/listinfo/announce From gaf.linux at gmail.com Wed Jul 21 10:29:29 2021 From: gaf.linux at gmail.com (Jerry Feldman) Date: Wed, 21 Jul 2021 10:29:29 -0400 Subject: [Discuss] Boston Linux VIRTUAL Meeting Today Wednesday, July 21, 2021 - SBC Roundup Message-ID: <02a1a366-669a-df20-73b4-7933d7fbbdc5@gmail.com> When: July 21, 2021 7:00PM EDT (6:30PM for Q&A) Topic: SBC Roundup Moderators: Kurt Keville,? Federico Lucifredi, Jason Kridner Location: Online: https://meet.jit.si/blu.org Live stream:? https://youtu.be/jf7W_yFkaTo Summary: Retrospective look at a decade of Single Board Computing Abstract: Please join us for a walk down memory lane as we look at the history of Single Board Computers (SBCs), Systems-on-chip (SOCs), Systems-on-chip (SOMs), and dev boards as members talk about the ones that they used most. We will discuss the history of embedded Linux in advance of the ELC and HPEC conferences and talk about how the embedded hardware hacking community supported the larger Linux movement and vice versa. Bio Federico Lucifredi is The Ceph Storage Product Management Director at Red Hat, formerly the Ubuntu Server PM at Canonical, and the Linux ?Systems Management Czar? at SUSE. Jason Kridner is Open Platforms Technologist/Evangelist for Texas Instruments, where he focuses on defining strategy for growing TI's open platform ecosystem for developers and customers. Jason is the co-founder and community manager for BeagleBoard.org, designers of BeagleBone Black. Jason is named on 11 patents and has been programming personal computers since 1979 as a hobbyist and professional. He worked on the first wave of MP3 player designs in 1998. Jason will talk about his experiences developing BeagleBone into an open computing platform that is powered by a 1GHz ARMv7 CPU and 2 200MHz 32-bit microcontrollers with real-time capabilities. For further information and directions please consult the BLU Web site: http://www.blu.org -- Jerry Feldman > Boston Linux and Unix http://www.blu.org PGP key id: 6F6BB6E7 PGP Key fingerprint: 0EDC 2FF5 53A6 8EED 84D1? 3050 5715 B88D 6F6 B B6E7 _______________________________________________ Announce mailing list Announce at lists.blu.org http://lists.blu.org/mailman/listinfo/announce From eric.chadbourne at icloud.com Wed Jul 21 21:46:57 2021 From: eric.chadbourne at icloud.com (Eric Chadbourne) Date: Wed, 21 Jul 2021 21:46:57 -0400 Subject: [Discuss] uefi / bios - fertile supply chain attacks Message-ID: <32BC451D-8731-404C-BBD2-E46EE76DB1AF@icloud.com> In the meeting there was a discussion on supply chain attacks. The bios seems like a good attack vector. https://eclypsium.com/2021/06/24/biosdisconnect/ Eric C