|
本帖最后由 cyberwillis 于 2025-8-18 01:13 编辑
Folks, do you want to use a car without knowing how to change their tires, or do you depend of a mechanic to do it?
Please locate where in your system if you have this file: /lib64/libkrb5.so.3
- sudo ldconfig -p | grep libkrb5
复制代码
Then verify if the application also has a "special" same file for it or if it exists in another path in your systems
- sudo find / | grep -iF "libkrb5.so.*"
复制代码
If exists the file do exists inside the applicaton path or somewhere else, just create a new configuration to make that customization be prioritized by the system.
- echo '<path TO THE FOLDER where the correct file exists>' | sudo tee /etc/ld.so.conf.d/syn_pt_vV2023_12_sp2.conf
- sudo ldconfig
复制代码
check if the customization become the first priority, it should appear at the top
- sudo ldcondig -p | grep libkrb5
复制代码
Try run the app again...
if the file don't exists anywhere try to mock the application. Find among other files if any of them has the string 'krb5int_c_deprecated_enctype' or 'k5crypto_3_MIT' at the same time
- for FILE in $(find / 2>/dev/null | grep 'libkrb5.so.*' )
- do
- echo "[${FILE}]: $(sudo strings $FILE | grep -iE 'k5crypto_3_MIT|krb5int_c_deprecated_enctype' | column)"
- done
复制代码
when you find some that has the exact function then you can create a symlink to it to MOC the application....
- ...code to create a symlink....
- sudo ldconfig
复制代码
Try again...
|
|