It does not download anything just adds the architecture - and the command wine64 that you ran does not install any 32 Bit files and it is the older 5.0 version
Here is how I install Wine 6.0.1 from start to finish on Ubuntu or Ubuntu based OS 20.04
If your system is 64 bit, you first need to enable the 32 bit architecture - run
Code:
sudo dpkg --add-architecture i386
Download the official Wine repository key and add it:
Code:
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
Now use this command to add repository:
Code:
sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu/ $(lsb_release -cs) main"
Now that you have added the correct repository, you can install Wine 6.0 using this command:
Code:
sudo apt install --install-recommends winehq-stable
After it has finished installing we need to configure WINE - run -
This will install Wine Grecko twice one is 32 the other 64 and Wine Mono after this is done you are now finished with the installation. Only one last thing to do you will need to associate the ".exe" file extension to the WINE installer - simply right click the ".exe" file and select Properties, now select the "Open With" drop down tab and select "Wine Windows Program Loader"
Doing it the above way also grabs the 32 Bit Files -
I would first remove the version of Wine you have then do it this way as posted - this will also grab any updates to Wine 6 from WineHQ should there be any
----------------------------------------------------
This will create a new wineprefix (.wine32 in your home) and configure it as 32 bits:
To set your enviroment variable and also to create your new 32-bit WINEPREFIX go ahead and type:
Code:
WINEARCH=win32 WINEPREFIX=~/.wine32 winecfg
Now you can Install Winetricks and use that
to install 32 Bit only software into that directory