[Tools] utools installation error on ubuntu2204

utools does not work on ubuntu 22.04

utools is a very good tool that can be used on various platforms.

Official website link https://u.tools/

insert image description here

There is no problem with the installation on windows 10/11. Recently, the ubuntu computer has been upgraded, and the ubuntu 22.04LTS version is used. There is no error in the installation, but it cannot run. An error message utoolsappears

libcrypto.so.1.1: cannot open shared object file: No such file or directory

The file was indeed not found in the system. The system was upgraded and a newer version was used libcrypto.so.3.

Install the old version from sourcelibcrypto.so.1.1

wget https://www.openssl.org/source/openssl-1.1.0k.tar.gz
tar xvf openssl-1.1.0k.tar.gz
cd openssl-1.1.0l
./config
make -j`nproc`
sudo make install
sudo ln -s /usr/local/lib/libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
sudo ln -s /usr/local/lib/libssl.so.1.1 /usr/lib/x86_64-linux-gnu/libssl.so.1.1

After completing the above operations, you can use the current terminal input utoolsto open the software, but the software still cannot run normally after starting from the launcher or restarting.

By searching for the problem, it was found make installthat the above two files were not installed /usr/local/libin the directory,

enforce:

sudo cp libcrypto.so.1.1 /usr/local/lib
sudo cp libssl.so.1.1 /usr/local/lib

then execute

sudo ln -s /usr/local/lib/libcrypto.so.1.1 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
sudo ln -s /usr/local/lib/libssl.so.1.1 /usr/lib/x86_64-linux-gnu/libssl.so.1.1

If it prompts that the soft link exists, delete the soft link first, and then perform the above operation again. At this point, utoolsthe software .

Guess you like

Origin blog.csdn.net/zhoujinwang/article/details/130462612