Skip to main content
Clarify what we’re doing.
Source Link
Stephen Kitt
  • 481.7k
  • 60
  • 1.2k
  • 1.4k

There are two ways to go about thismake Wine programs available from a path.

  1. You can make the Windows program executable, and add its containing directory to your PATH; see Transparently run wine programs and How is Mono magical? for details. You’d then run

     PDFXCview.exe
    

    to start the program.

  2. You can add the Wine directory containing the executable to the Wine path. To do this, run wine regedit, find the HKEY_CURRENT_USER/Environment entry, and edit the Path value (using ; to separate directories). You can use winepath to convert Linux paths to Wine paths. You’d then run

     wine PDFXCview
    

    to start the program.

There are two ways to go about this.

  1. You can make the Windows program executable, and add its containing directory to your PATH; see Transparently run wine programs and How is Mono magical? for details. You’d then run

     PDFXCview.exe
    

    to start the program.

  2. You can add the Wine directory containing the executable to the Wine path. To do this, run wine regedit, find the HKEY_CURRENT_USER/Environment entry, and edit the Path value (using ; to separate directories). You can use winepath to convert Linux paths to Wine paths. You’d then run

     wine PDFXCview
    

    to start the program.

There are two ways to make Wine programs available from a path.

  1. You can make the Windows program executable, and add its containing directory to your PATH; see Transparently run wine programs and How is Mono magical? for details. You’d then run

     PDFXCview.exe
    

    to start the program.

  2. You can add the Wine directory containing the executable to the Wine path. To do this, run wine regedit, find the HKEY_CURRENT_USER/Environment entry, and edit the Path value (using ; to separate directories). You can use winepath to convert Linux paths to Wine paths. You’d then run

     wine PDFXCview
    

    to start the program.

Source Link
Stephen Kitt
  • 481.7k
  • 60
  • 1.2k
  • 1.4k

There are two ways to go about this.

  1. You can make the Windows program executable, and add its containing directory to your PATH; see Transparently run wine programs and How is Mono magical? for details. You’d then run

     PDFXCview.exe
    

    to start the program.

  2. You can add the Wine directory containing the executable to the Wine path. To do this, run wine regedit, find the HKEY_CURRENT_USER/Environment entry, and edit the Path value (using ; to separate directories). You can use winepath to convert Linux paths to Wine paths. You’d then run

     wine PDFXCview
    

    to start the program.