[SOLVED] External USB drive not detected under mOode 6.4.0 - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Support (https://moodeaudio.org/forum/forumdisplay.php?fid=7) +--- Thread: [SOLVED] External USB drive not detected under mOode 6.4.0 (/showthread.php?tid=2079) Pages:
1
2
|
External USB drive not detected under mOode 6.4.0 - Smallwire - 01-14-2020 Hi all, I have come to this forum to see if anyone is able to shed some possible insight to the problem I have been experiencing. I have recently updated to mOode version 6.4.0. Since updating to this version, I have encountered a problem where my external USB drive cannot be detected, thus I am unable to play songs that I have stored on this drive through mOode Audio and I am only able to play via streaming radio sources. Oddly enough, I did not experience this issue on older versions (around version ~5-ish). Has anyone experienced similar issues where the external USB source cannot be detected? Could this be a software issue, or perhaps a hardware issue? I would like to add a few more details: - I have a Pi3 with a Katana DAC on top of the Pi. - I am reluctant to say it is an issue with my external USB drive, since I can recognize it on my computer. Any assistance/insight is greatly appreciated. Thank you. RE: External USB drive not detected under mOode 6.4.0 - Tim Curtis - 01-14-2020 For a start, with your USB drive plugged in, reboot then post the output from the commands below. Code: lsusb RE: External USB drive not detected under mOode 6.4.0 - Smallwire - 01-14-2020 (01-14-2020, 04:00 AM)Tim Curtis Wrote: For a start, with your USB drive plugged in, reboot then post the output from the commands below. Hi Tim, This is the output that I get after issuing those commands: Code: $ lsusb I can see the external drive through the command (Toshiba) but it is not detected on the mOode UI. RE: External USB drive not detected under mOode 6.4.0 - TookaFace - 01-14-2020 Did you update mpd database ? RE: External USB drive not detected under mOode 6.4.0 - Tim Curtis - 01-14-2020 (01-14-2020, 06:00 PM)Smallwire Wrote:(01-14-2020, 04:00 AM)Tim Curtis Wrote: For a start, with your USB drive plugged in, reboot then post the output from the commands below. The empty /media directory indicates the drive was not auto-mounted by udisks-glue. Couple thoughts: - udisks-glue does not run on arm6 platforms (Pi-Zero, 1B). You can switch to devmon auto-mounter in System Config - the drive needs to have a disk label to be auto-mounted - some drives need to be externally powered RE: External USB drive not detected under mOode 6.4.0 - Smallwire - 01-14-2020 (01-14-2020, 06:21 PM)TookaFace Wrote: Did you update mpd database ? Yes, I have. RE: External USB drive not detected under mOode 6.4.0 - Smallwire - 01-14-2020 (01-14-2020, 06:27 PM)Tim Curtis Wrote:(01-14-2020, 06:00 PM)Smallwire Wrote:(01-14-2020, 04:00 AM)Tim Curtis Wrote: For a start, with your USB drive plugged in, reboot then post the output from the commands below. I see, thanks for your reply. You're right, I do not see the drive under /media. In response to your thoughts: - So, I've tried Devmon today, and that still did not work. - I also gave it a disk label via ntfslabel on my computer (since it is an NTFS drive). Even after doing that, I couldn't get it to show up on my Pi under /media, or even looking at /dev/disk/by-label (and the other options)... - My drive should be an internally powered drive. I also tried looking at the mpd logs (/var/logs/mpd/log) and system logs (/var/logs/syslog), but didn't really see anything pertaining to my drive there either. Though, the system log did mention that my "Toshiba" drive was detected but nothing more. Is it the case that I simply cannot listen to the music through an external source on this version, then? Is there some sort of manual mounting procedure or something? RE: External USB drive not detected under mOode 6.4.0 - TheOldPresbyope - 01-14-2020 @Smallwire No, this version---6.4.0---works just fine with an external USB drive. You said you have an RPi3 (model A, B, B+?) with a Katana DAC on it. The devmon fix isn't necessary because udisks-glue works fine with this model. You said "My drive should be an internally powered drive." Does this mean your drive has its own power supply? Tim's point is that some drives draw too much current to be powered by the Pi via the USB cable so that either a self-powered disk or a disk connected via a powered USB hub is required. If a hard disk, the worst case is during spin up. The USB interface could be working but the disk itself not responding properly. The disk should be seen in a variety of system output. For example, considering a small USB-connected SSD on one of my moOde players, hostname moodeLR: 1. it's a partition in fdisk output Code: pi@moodeLR:~ $ sudo fdisk -l 2. It shows up in /var/log/syslog (similar lines will be found in dmesg output) Code: pi@moodeLR:~ $ var /var/log/syslog Note that messages are output to syslog asynchronously so may not be in strictly sequential order. 3. It's in the list of filesystems in Linux Code: pi@moodeLR:~ $ mount I'm curious if you see one or more "Mass Storage" bInterface Class occurences in the voluminous output from this lsusb command (where I took the vendorID:deviceID values from your lsusb output and assumed your Pi's hostname is "moode") Code: pi@moode:~ $ sudo lsusb -v -d 0480:0202 Regards, Kent RE: External USB drive not detected under mOode 6.4.0 - vinnn - 01-15-2020 A nice simple command to list block devices is 'lsblk'. As Kent is saying OP, if you can't see the device listed in the output lsusb or lsblk then it's most likely that the disk requires more power to spin up than the Pi or it's power supply can supply. RE: External USB drive not detected under mOode 6.4.0 - TheOldPresbyope - 01-15-2020 Doh. I keep forgetting lsblk (in my defense, it was created long after I "learned" Linux). As @vinnn says, it's nice and simple. Adding it to my previous post Code: pi@moodeLR:~ $ lsblk sda1 is the sole partition on my USB SSD and sdb1 is the sole partition on a USB memory stick. Neat! Regards, Kent |