Skip to content

Instantly share code, notes, and snippets.

@abdumu
Last active June 5, 2024 16:24
Show Gist options
  • Save abdumu/7d71668e8ceab4005a396898af801430 to your computer and use it in GitHub Desktop.
Save abdumu/7d71668e8ceab4005a396898af801430 to your computer and use it in GitHub Desktop.
Display large dwg on linux | DWG + CAD viewer linux
  1. Download de.caff viwer: https://caff.de/projects/caffviewer/

  2. Copy downloaned caffviewer.jar file to /home/YOUR-NAME/opt

  3. Create a desktop file /home/YOUR-NAME/.local/share/applications/decaff.desktop

  4. Open the created desktop file and paste this

[Desktop Entry]
Version=1.0
Type=Application
Name=DeCaff
Comment=Cad viwer
Exec=java -mx3g -jar /home/YOUR-NAME/opt/caffviewer.jar %f
Icon=image-x-3ds
Path=/home/YOUR-NAME
Terminal=false
StartupNotify=false

note: YOUR-NAME must be changed above to your username.

  1. Open thae app, got to settings, from Miscellaneous tab, toggle Restart the viewer with improved memory settings.

  2. Enjoy.

@abdumu
Copy link
Author

abdumu commented Aug 8, 2023

make sure to install java

@irmoktran
Copy link

In Fedora 39 flavors(and possible other versions) by default only the java-17-openjdk-headless is installed. You will need to install the complete jdk:

sudo dnf install java-17-openjdk

Thanks for sharing about this amazing software!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment