I installed VeraCrypt GUI on my RPi 4 running Raspian 10 Buster using the package veracrypt-1.25.4-Debian-10-armhf.deb on the VeraCrypt website. After checking the signature and successfully installing, clicking on the VeraCrypt application icon does nothing.
When I attempt to mount an external SSD on the command line:
veracrypt /dev/sda2 /mnt/sda2/
I get:
veracrypt: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `GLIBCXX_3.4.26' not found (required by veracrypt)
veracrypt: /usr/lib/arm-linux-gnueabihf/libwx_gtk3u_core-3.0.so.0: version `WXU_3.0.5' not found (required by veracrypt)
Based on this answer, I tried:
apt-file find libwx_gtk3u_core-3.0.so.0
which returned:
libwxgtk3.0-gtk3-0v5: /usr/lib/arm-linux-gnueabihf/libwx_gtk3u_core-3.0.so.0
libwxgtk3.0-gtk3-0v5: /usr/lib/arm-linux-gnueabihf/libwx_gtk3u_core-3.0.so.0.4.0
apt installing libwxgtk3.0-gtk3-0v5 returns:
libwxgtk3.0-gtk3-0v5 is already the newest version (3.0.4+dfsg-8).
libwxgtk3.0-gtk3-0v5 set to manually installed.
Running apt-file find on the other library returns over a hundred results.
To confirm that I'm on a 32-bit system, I ran uname -a, which told me I'm on armv7l.
How do I show VeraCrypt where the libraries are?