I found this error in pfind and the solution I found was to delete the following folder /root/.pfilesearch
Gonna check more close the full script of pfind to see what i can come up with
Moderator: Forum moderators
I found this error in pfind and the solution I found was to delete the following folder /root/.pfilesearch
Gonna check more close the full script of pfind to see what i can come up with
Why astronauts use Linux
Because you can't open windows in space
What version of Pfind?
What specific Puppy version?
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected
Was in FossaPup64, pfind version 6.3 but buster and Bionic both use the some code in the path usr/local/pfind.
i dont know yet what happen but im guessing puupy went down just like that and damage some files in /root/.filesearch but not 100% sure yet
Why astronauts use Linux
Because you can't open windows in space
AntonioPt wrote: Sat Jan 22, 2022 8:46 ami dont know yet what happen but im guessing puupy went down just like that and damage some files in /root/.filesearch
Unlikely.
The error messages mean that the variables $RADIOBUTTON_PATH_PUPPY , $RADIOBUTTON_PATH_MNT etc. are empty.
This triggers
a) a bash syntax error ./pfind: line 111: [: =: unary operator expected
because bash "sees" [ = true ] ,i.e. an operation with only one operand (true). For such operations a handful of unary operators can be used, e.g. '!' , but not '=' , which can only be used in binary operations.
and
b) a gtkdialog error "near token '</default>'" because gtkdialog doesn't allow empty defaults.
Somehow in your case Pfind can't properly execute line 524:
Code: Select all
[ -s $HOME/.pfind/pfindrc ] && . $HOME/.pfind/pfindrc #read config file
It is supposed to read the config file $HOME/.pfind/pfindrc where the values for the variables are stored, but either the file doesn't exist , the values inside the files are invalid, your $HOME variable points to the wrong folder or .... you'll find out.
In any case I can replicate your errors when I comment out line 524.
MochiMoppel wrote: Sat Jan 22, 2022 12:09 pmAntonioPt wrote: Sat Jan 22, 2022 8:46 ami dont know yet what happen but im guessing puupy went down just like that and damage some files in /root/.filesearch
Unlikely.
The error messages mean that the variables $RADIOBUTTON_PATH_PUPPY , $RADIOBUTTON_PATH_MNT etc. are empty.
This triggers
a) a bash syntax error ./pfind: line 111: [: =: unary operator expected
because bash "sees" [ = true ] ,i.e. an operation with only one operand (true). For such operations a handful of unary operators can be used, e.g. '!' , but not '=' , which can only be used in binary operations.
and
b) a gtkdialog error "near token '</default>'" because gtkdialog doesn't allow empty defaults.Somehow in your case Pfind can't properly execute line 524:
Code: Select all
[ -s $HOME/.pfind/pfindrc ] && . $HOME/.pfind/pfindrc #read config file
It is supposed to read the config file $HOME/.pfind/pfindrc where the values for the variables are stored, but either the file doesn't exist , the values inside the files are invalid, your $HOME variable points to the wrong folder or .... you'll find out.
In any case I can replicate your errors when I comment out line 524.
Thxx for you replay i just check my old pc where i got this issue. I have saved the 2 folder that pfind creates in Root and i realize that the issue is the temp script called pfindrc in /root/.pfind but of course the main script pfind need to do some updates anyway to avoid this error again in the future.
gonna see what i can come up with
gonna share pfindrc the good one and the damage
Why astronauts use Linux
Because you can't open windows in space
AntonioPt wrote: Sun Jan 23, 2022 9:15 pmthe main script pfind need to do some updates anyway to avoid this error again in the future.
Unless you can describe the steps that lead to such "bad" config file so that anyone can reproduce the errors it will be difficult to fix the code. The 2 errors you encountered can certainly be fixed by adding obviously missing quotation marks but I'm afraid that this is not all that needs to be done.
MochiMoppel wrote: Mon Jan 24, 2022 1:11 amAntonioPt wrote: Sun Jan 23, 2022 9:15 pmthe main script pfind need to do some updates anyway to avoid this error again in the future.
Unless you can describe the steps that lead to such "bad" config file so that anyone can reproduce the errors it will be difficult to fix the code. The 2 errors you encountered can certainly be fixed by adding obviously missing quotation marks but I'm afraid that this is not all that needs to be done.
What Really happen i dont remember but i guessing i made a force sutdown , all i can tell is that i deleted the folder /root/.pfind and pfind start working again.
but first i made a backup of the folder /root/.pfind and today i analize both folders and notice that the file pfindrc add difrent size and missing code meaning that when this happen pfindrc or didnt wrote full code again or.... i manager for now to add a function to write full pfindrc everytime pfind is lunch.
$PROGPATH/func -write_config <-- add this in pfind script
[ $RADIOBUTTON_PATH_PUPPY = true ] && echo "$PATH_PUPPY" > $HOME/.pfilesearch/tmp/SEARCHPATHS
[ $RADIOBUTTON_PATH_MNT = true ] && echo "$PATH_MNT" > $HOME/.pfilesearch/tmp/SEARCHPATHS
[ $RADIOBUTTON_PATH_CURRENT = true ] && echo "$CURDIR" > $HOME/.pfilesearch/tmp/SEARCHPATHS
[ $RADIOBUTTON_PATH_ALL = true ] && echo '/' > $HOME/.pfilesearch/tmp/SEARCHPATHS
Why astronauts use Linux
Because you can't open windows in space