You should be able to remake your Lazarus install, cd into the lazarus source dir and type :
But I don't use fpupdeluxe so cannot vouch for how safe that is in your case. But, as a test, you could download the Lazarus source to some other new directory, run that command above, define a new place for its config so it does not, in any way, interfere with your existing install. To define that separate, independent config dir, just put a file in the lazarus dir that contains something like -
--pcp=/home/curt/new-laz-configMake those words suit your layout of course.
Start lazarus in that directory -
And go to that help location setting again, set to whee your files are.
Davo
Edit :
Here is a list of command (not a script) that might help if you put the right dir nams in -
$> cd
$> mkdir New-Lazarus
$> cd New-Lazarus
$> mkdir Configs
$> wget https://gitlab.com/freepascal.org/lazarus/lazarus/-/archive/lazarus_4_4/lazarus-lazarus_4_4.zip?ref_type=tags
$> unzip lazarus-lazarus_4_4.zip
$> mv lazarus-lazarus_4_4 lazarus_4_4
$> cd lazarus_4_4
$> make clean bigide
$> echo "--pcp=/home/curt/New-Lazarus/Configs/lazarus_4_4" > lazarus.cfg
$> ./lazarus
Make sure you get that .cfg file right or it may interfere with your existing install. You could import your existing lazarus config but you may well also import the cause of your problem !
Davo