Advertisement
j0h

WindLDR on Linux

j0h
Aug 17th, 2024
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. Installing WindLDR in wine, or crossover:
  2. before making your bottle, install cups, cups-pdf before making the WindLDR bottle
  3. make sure cups is running.
  4. else WindLDR isnt smart enough to find a virtual printer.
  5.  
  6. $ln-s /var/spool/cups-pdf/$USER ~/.cxoffice/[YOUR_BOTTLE]/dosdevices/c:
  7.  
  8. this takes care of the inability to print.
  9. WindLDR is the only component of the suite with this issue.
  10.  
  11.  
  12. sudo apt install ttf-mscorefonts-installer
  13. sudo apt install winetricks
  14. $ winetricks corefonts
  15. $ winetricks allfonts
  16.  
  17. how to use wintricks in crossover:
  18. Enviornmental Variable:
  19. WINEPREFIX=~/.cxoffice/YOUR_BOTTLE_NAME winetricks
  20.  
  21. This (should ) take care of various issues related to missing fonts.
  22. most notable: Veranda is the default, although we are using Western.
  23.  
  24. sudo apt install libusb-dev libusb-1.0-0-dev
  25. sudo apt install linux-tools-virtual hwdata
  26.  
  27. add user to plugdev if not previously there:
  28. $sudo usermod -aG plugdev $USER
  29.  
  30. Write a udev rule:
  31. /etc/udev/rules.d/99-usb.rules
  32. SUBSYSTEM=="usb", MODE=0666
  33.  
  34. Save file, reload udev rules:
  35. $sudo udevadm control --reload-rules
  36.  
  37.  
  38. ## WHY 99-rules file? NN-device-rules, NN sets priority, 99 is a low priority.
  39.  
  40.  
  41. link the device to com1 in wine or crossover:
  42. $ ln -s /dev/ttyACM0 ~/.cxoffice/[YOUR_BOTTLE]/dosdevices/com1
  43.  
  44.  
  45. previus error was like USB port not found:
  46. (IT basic instructions)
  47.  
  48. Current error:
  49. lol none fixed it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement