Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix external drive connection check to always return true #1993

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

sabbajohn
Copy link

@sabbajohn sabbajohn commented Feb 28, 2025

Don't cripple the community for the sake of a commercial agenda!

Umbrel was built by the community, is maintained by the community, and thrives because of the community. Developers, contributors, and users actively port, test, and improve apps, debug issues, enhance security, and optimize performance—all without paywalls or restrictions.

One of the most discussed and requested features in the community has been seamless external storage support for non-technical users. And yet, you decided to disable it?! Are you serious?

If you truly intend to block external storage for non-Umbrel hardware, at least do it properly instead of making a lazy change like this:

async isExternalDriveConnectedOnNonUmbrelHome() {
    const isHome = await isUmbrelHome(); // Just hardcode this to `true`
    const { disks } = await getDisksAndPartitions();

    // Exclude any external disks that include the current data directory.
    // This prevents USB storage-based Raspberry Pi setups from detecting
    // their primary storage as an external drive.
    const df = await $`df ${this.#umbreld.dataDirectory} --output=source`;
    const dataDirDisk = df.stdout.split('\n').pop()?.split('/').pop()?.replace(/\d+$/, '');
    const externalDisks = disks.filter((disk) => disk.id !== dataDirDisk);

    return !isHome && externalDisks.length > 0;
}

I_Dare_YOU

This move alienates the very people who helped make Umbrel what it is today. If there’s a valid technical reason behind this change, communicate it transparently. Otherwise, it just looks like an anti-community decision disguised as an “update.”

Think about the long-term impact before taking away a feature that many in the community rely on.

https://community.umbrel.com/t/why-did-umbrel-disabled-external-devices-storage-for-raspberry-devices/21613

@BlueWolfKenji
Copy link

Thanks for raising your voice, discriminating users like this is crazy. Umbrel devs should change their mind.

@nirvanameow
Copy link

100% Agreed.

@sabbajohn
Copy link
Author

sabbajohn commented Feb 28, 2025

image

Now, this is a democratic feature! To all that would like to enable the feature
you just need to update these files at /opt/umbreld/source/modules/ directory...

And if Umbrel update and implement another way to block it.

I'll crack it again!

See ya, MF!
image

@nirvanameow
Copy link

image Now, this is a democratic feature! To all that would like to enable the feature you just need to update these files at `/opt/umbreld/source/modules/` directory...

And if Umbrel update and implement another way to block it.

I'll crack it again!

See ya, MF! image

resilience
resilience
resilience
resilience
resilience
resilience
resilience
resilience
resilience
resilience
Thank you!

@brcly
Copy link

brcly commented Mar 1, 2025

You can also enable sharing on the device by editing

if (path.startsWith('/External/') && (operation === 'share' || operation === 'favorite')) { return false }
in
umbrel/packages/ui/src/features/files/utils /allowed-filesystem-operation.ts

It's possible on the umbrel by editing one the the index-*.js files in /opt/umbreld/ui/assets on the machine while it's running.

It's obfuscated, but searchable thanks to the strings.

Simply
if (path.startsWith('/External/') && operation === 'favorite') { return false }

Will suffice.

If you require favourites, just remove it completely.

@jihemezes
Copy link

Hello
How can I modify these files on my existing Pi4 Umbrel ? There's no terminal and when I mount the SD card on my imac, I don't see the files to modify.
Thanks to help a noob.

@sabbajohn
Copy link
Author

Hello How can I modify these files on my existing Pi4 Umbrel ? There's no terminal and when I mount the SD card on my imac, I don't see the files to modify. Thanks to help a noob.

You must connect to it using SSH. install a text editor like Nano or Vim. Nano is a little bit more friendly. Don't forget to use sudo to have the write permissions.

@jihemezes
Copy link

Thanks a lot for your answer.
I can connect with SSH now. :)

@mosconileo
Copy link

I'm just such a layman that even with this post I don't know how to do it on my umbrel.
Because I tried to paste the code into my umbrel@umbrel terminal and I couldn't.
It's really frustrating for the company to do this to the community

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants