hi, i have trid to install this
but i have this error:
Failed to install org.winepak.Platform.Extension.d3dx9: While trying to apply extra data: runtime/org.winepak.Platform/x86_64/3.0 not installed
domenico@endless:~$
thank you
hi, i have trid to install this
but i have this error:
Failed to install org.winepak.Platform.Extension.d3dx9: While trying to apply extra data: runtime/org.winepak.Platform/x86_64/3.0 not installed
domenico@endless:~$
thank you
With current EOS (3.6.2), i personally no longer use the WinePak approach to run Windows applications. Instead i’ll use toolbox
to run Fedora 29 inside a container. In this container (which has full access to your home directory), i install the latest Wine to run Windows applications. Works by far better than the outdated Winepak
@egrath, thank you!
it is work fine, only minor problem after logout: container not start
solved with:
sudo chown -R $USER ~/.local/share/containers/storage/overlay-containers
some usefull tricks:
Once toolbox is installed, two simple commands are required to get started:
$ toolbox create
This will download an OCI image and create a toolbox container from it. Once this is complete, run:
$ toolbox enter
Once inside the toolbox, you can access common command line tools, and install new ones using DNF.
When the prompt is inside a toolbox, it is prepended with a diamond: this indicates that the prompt is inside a toolbox container.
toolbox create [--container <name>]
Creates a toolbox container. This will download an OCI image if one isn’t available (this is required to create the container). By default a Fedora image matching the version of the host is used. Used without options, toolbox create
will automatically name the container it creates. To create additional toolboxes, use the --container <name>
option.
toolbox enter [--container <name>]
Enters a toolbox for interactive use. Used without options, toolbox enter
opens the default toolbox. If there is more than one toolbox, use the --container name
option to specify the toolbox to enter.
toolbox list
Lists local toolbox images and containers. Note: it is typical to see two images listed, one with a localhost
prefix and one with a registry.fedoraproject.org
prefix. These are a normal result of the toolbox creation process.
toolbox rm [--force] <name>
Removes one or more toolbox containers. The --force
option removes the container even if it is running.
toolbox rmi [--force] <name>
Removes one or more toolbox images.
toolbox --help
Lists available commands.
To return to the host environment, either run exit
or quit the current shell (typically Ctrl+D).
An additional convenience tip would be to create a .desktop file for your most often used windows applications:
[Desktop Entry]
Name=MyApplication
Type=Application
Icon=/sysroot/home/egon/tmp/M/MyApplication.png
Terminal=true
Exec=/usr/bin/toolbox run --container WindowsContainer wine /sysroot/home/egon/tmp/M/MyApplication.exe
eos-add-to-desktop MyApplication
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.