Last active
January 1, 2025 22:25
-
-
Save daniw/7439488 to your computer and use it in GitHub Desktop.
install ltspice on ubuntu (arch commented)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install wine and ltspice | |
sudo apt-get install wine | |
# sudo pacman -S wine | |
cd /tmp/ | |
wget http://ltspice.linear-tech.com/software/LTspiceIV.exe | |
wine LTspiceIV.exe | |
rm LTspiceIV.exe | |
# start lstpice through wine | |
wine ~/.wine/drive_c/Program\ Files/LTC/LTspiceIV/scad3.exe | |
# start ltspice through wine with /tmp/example.asc | |
wine ~/.wine/drive_c/Program\ Files/LTC/LTspiceIV/scad3.exe /tmp/example.asc |
Using Linux Mint 20.2, I used sudo apt-get install wine-stable
as mentioned in comment above. I got messages saying I should install wine32-development so did sudo apt-get install wine32-development
. After that it works! Thanks!
Works in KDE and everything worked out, thank you!
is there a way to remove it after installed?
So it's like a compatibility layer for running Windows applications on Linux
I installed, but after close, the comands to start didn't works:
what shows to me: wine: cannot find L"/home/saulo/.wine/drive_c/Program Files/LTC/LTspiceIV/scad3.exe"
There is another description for the newer version: https://github.com/joaocarvalhoopen/LTSpice_on_Linux_Ubuntu__How_to_install_and_use
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks works fine