-
Notifications
You must be signed in to change notification settings - Fork 0
Migration from Windows
Want to move your mods from Windows (MO2) to Linux (Anvil Organizer)? This guide covers all available methods.
- Anvil Organizer installed on Linux
- Access to your MO2 data (via one of the methods below)
GoodbyeWindows is a free tool that automates the migration process.
- Windows: Run GoodbyeWindows Exporter
- Windows: Select MO2 instance → export
- Transfer: Move .gbw file via USB, cloud, or network
- Linux: Run GoodbyeWindows Importer → import into Anvil
| Mode | Size | What gets transferred? |
|---|---|---|
| Metadata only (.gbw) | ~KB | Load order, Nexus IDs, categories — mods must be re-downloaded on Linux |
| Full export | Several GB | All mod files + metadata to USB/external drive |
| Network | Several GB | Direct transfer over LAN (no USB needed) |
If you have Windows and Linux on the same machine, you can read MO2 data directly from the Windows partition.
1. Find your partition:
lsblk -fLook for partitions with ntfs or ntfs3 as filesystem. Typically: /dev/sda1, /dev/nvme0n1p3, etc.
2. Create a mount point:
sudo mkdir -p /mnt/windows3. Mount the partition:
sudo mount -t ntfs3 /dev/sda2 /mnt/windowsReplace /dev/sda2 with your actual partition.
4. Set permissions (if access is denied):
sudo mount -t ntfs3 -o uid=$(id -u),gid=$(id -g),fmask=0022,dmask=0022 /dev/sda2 /mnt/windows5. Auto-mount on boot (optional):
Add this line to /etc/fstab:
/dev/sda2 /mnt/windows ntfs3 defaults,uid=1000,gid=1000,fmask=0022,dmask=0022 0 0
Tip: Use the UUID instead of
/dev/sdXfor more reliable mounting:blkid /dev/sda2Then in fstab:
UUID=XXXX-XXXX /mnt/windows ntfs3 defaults,uid=1000,gid=1000 0 0
After mounting, MO2 is typically found at:
/mnt/windows/Users/<Name>/AppData/Local/ModOrganizer/
/mnt/windows/Modding/MO2/
/mnt/windows/Program Files/Mod Organizer 2/
# Copy mods
cp -r "/mnt/windows/Users/<Name>/AppData/Local/ModOrganizer/Skyrim/mods/" ~/Mods/
# Check load order
cat "/mnt/windows/Users/<Name>/AppData/Local/ModOrganizer/Skyrim/profiles/Default/modlist.txt"-
Windows: Copy MO2 folder to USB:
-
mods/— all mod folders -
profiles/— load order and settings -
ModOrganizer.ini— instance configuration
-
- Linux: Plug in USB (usually auto-mounts)
- Linux: Copy mods into Anvil instance or use GoodbyeWindows Importer
Using the GoodbyeWindows Toolkit:
- Windows: Start Exporter → choose "Network transfer"
- Windows: IP address and PIN are displayed
- Linux: Start Importer → choose "Network" → enter IP + PIN
- Data transfers directly over your local network
Requirement: Both PCs must be on the same network.
| Data | Automatic? | Notes |
|---|---|---|
| Load order (modlist.txt) | Yes | Converted to Anvil v2 format |
| Mod files | Depends on method | Metadata-only export requires re-downloading |
| Nexus IDs | Yes | Enables re-download from Nexus Mods |
| Categories | Yes | Mapped to Anvil categories |
| Profiles | Yes | All profiles are imported |
| Plugin order | Yes | For games with plugin systems (Skyrim, Fallout) |
| INI tweaks | No | Must be transferred manually |
| FNIS/Nemesis data | No | Must be regenerated on Linux |
| Savegames | No | Must be copied manually |
- All desired mods noted/exported on Windows
- Nexus Mod Manager API key ready (for re-downloads)
- Linux distro installed with Anvil Organizer
- Game installed on Linux (Steam/GOG with Proton)
- Enough disk space for mods
- For NTFS: Windows fully shut down (no Hibernate/Fast Startup!)
Important: Disable Windows Fast Startup, otherwise the NTFS partition cannot be safely mounted! Setting: Control Panel → Power Options → Choose what the power buttons do → Turn off fast startup.
# Check if Windows was fully shut down
sudo ntfsfix /dev/sda2
# Remount with explicit permissions
sudo mount -t ntfs3 -o uid=$(id -u),gid=$(id -g) /dev/sda2 /mnt/windowsWindows Fast Startup was active. Solution:
- Boot Windows → disable Fast Startup → shut down
- Or:
sudo ntfsfix -d /dev/sda2(removes the hibernate flag)
Linux is case-sensitive, Windows is not. Anvil Organizer handles this automatically during deployment.
- Anvil Organizer
- Deployment Methods & OverlayFS
- Installation
- Storage Management
- Ghost Recon Breakpoint
- Create Game Plugin
- Migration from Windows
- Proton Tools