Our installers are not code-signed yet, on any of the three platforms. That is
a gap on our side, not a problem with the file you downloaded — but your computer cannot tell the
difference, so it will warn you, and it is right to.
We publish a SHA-256 for every file (above) so you can check the download
yourself in the meantime. Signing is being worked on. When it lands, this section goes away and we
will say so in the release notes.
Windows
Windows SmartScreen will say “Windows protected your PC” and
offer only a Don’t run button. Click More info, then
Run anyway.
File Manager installs for your user account only, so it never asks for an
administrator password.
macOS
macOS will say the app “cannot be opened because it is from an
unidentified developer”, or that it “cannot be opened because Apple cannot
check it for malicious software”. Two ways past it, both fine.
The click-only way. Find the downloaded file in Finder,
right-click (or Control-click) it, choose Open, and confirm Open
in the dialog that follows. Do this once and macOS remembers.
The Terminal way. Clear the quarantine flag macOS stamps on
anything downloaded:
xattr -dr com.apple.quarantine ~/Downloads/FileManager-<version>-osx-arm64.pkg
If you already installed and the app itself is being blocked, the same command
works on the installed app:
xattr -dr com.apple.quarantine "/Applications/File Manager.app"
Linux
The .deb — install it the usual
way:
sudo dpkg -i file-manager_<version>_amd64.deb
sudo apt-get -f install
The second line is only needed if dpkg reports a
missing dependency; it pulls them in and finishes the install.
The portable archive — extract it anywhere and run the
launcher inside:
tar -xzf FileManager-<version>-linux-x64.tar.gz
cd FileManager-<version>-linux-x64
./file-manager
The archive keeps the executable bit. If your unpacker dropped it,
chmod +x file-manager puts it back.