Installing DbExport
DbExport is distributed from the GitHub Releases page:
https://github.com/michelmbem/DbExport/releases
Download the package that matches your operating system and CPU architecture, then follow the platform-specific steps below.
1. Choose the Right Package
Release assets use names similar to these:
dbexport-x.y.z-win-x64.msidbexport-x.y.z-win-arm64.msidbexport-x.y.z-linux-x64.tar.gzdbexport-x.y.z-linux-arm64.tar.gzdbexport-x.y.z-osx-x64.dmgdbexport-x.y.z-osx-arm64.dmg
Architecture guidance:
x64: Most Intel and AMD 64-bit PCsarm64: Apple Silicon Macs and Windows/Linux ARM devicesosx-x64: Intel-based Macosx-arm64: Apple Silicon Mac
If you are unsure which package to pick:
- Windows: Open
Settings > System > Aboutand checkSystem type - macOS: Open
Apple menu > About This Mac - Linux: Run
uname -m
2. Windows Installation
Package to download:
dbexport-x.y.z-win-x64.msifor Intel/AMD 64-bit Windowsdbexport-x.y.z-win-arm64.msifor Windows on ARM
Installation steps:
- Download the
.msipackage from the Releases page. - Double-click the file to launch the installer.
- If Windows prompts for permission, allow the installer to run.
- Follow the setup wizard until installation completes.
Notes:
- The MSI installs DbExport system-wide, so administrator rights may be required.
- The installer creates Start Menu and Desktop shortcuts.
- The application is installed under
Program Files\DbExport.
3. Linux Installation
Package to download:
dbexport-x.y.z-linux-x64.tar.gzfor Intel/AMD 64-bit Linuxdbexport-x.y.z-linux-arm64.tar.gzfor ARM 64-bit Linux
Installation steps:
- Download the
.tar.gzarchive from the Releases page. - Extract it to a folder of your choice.
- Open a terminal in the extracted folder.
- If needed, make the binary executable:
chmod +x dbexport
- Start the application:
./dbexport
Notes:
- Linux packages are distributed as compressed application folders, not native
.debor.rpminstallers. - You can move the extracted folder anywhere you want, for example under
/opt/DbExportor inside your home directory. - If you want a launcher entry in your desktop environment, create it manually according to your distribution's conventions.
4. macOS Installation
Package to download:
dbexport-x.y.z-osx-x64.dmgfor Intel Macsdbexport-x.y.z-osx-arm64.dmgfor Apple Silicon Macs
Installation steps:
- Download the
.dmgfile from the Releases page. - Open the disk image.
- Drag
DbExport.appinto theApplicationsfolder. - Eject the mounted disk image.
First Launch on macOS
The macOS application bundle is currently not signed. Because of that, macOS may block it the first time you try to open it.
Run this command once in Terminal after copying the app to Applications:
xattr -dr com.apple.quarantine /Applications/DbExport.app
Then launch DbExport again from Applications.
Notes:
- This step removes the quarantine attribute added by macOS for downloaded apps.
- If you install the app in a different folder, replace
/Applications/DbExport.appwith the actual path.
5. After Installation
When DbExport starts, you can configure your source and target database connections and begin the migration workflow.
Platform notes:
- Microsoft Access connections are supported on Windows only.
- On Linux and macOS, use the platform package that matches your CPU architecture exactly.
6. Troubleshooting
- If the downloaded package does not start, confirm that you selected the correct OS and architecture from the Releases page.
- On macOS, re-run the
xattrcommand if the app was moved after installation. - On Linux, ensure the
dbexportfile has execute permission. - On Windows, re-run the MSI installer with administrative privileges if installation is blocked.