• ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
  • ×
    Information
    Windows update impacting certain printer icons and names. Microsoft is working on a solution.
    Click here to learn more
    Information
    Need Windows 11 help?
    Check documents on compatibility, FAQs, upgrade information and available fixes.
    Windows 11 Support Center.
  • post a message
Guidelines
We have new content about Hotkey issue, Click here to check it out!
Check out our WINDOWS 11 Support Center info about: OPTIMIZATION, KNOWN ISSUES, FAQs, VIDEOS AND MORE.
HP Recommended
HP T510
Other

Hi,

 

I try to reinstall ThinPro 5.2.0 on my T510, but I have error message when I boot my USB Key.

It appears after SYLINUX message on boot.

 

ERROR Unable to mount USB KEY

 

I try 2 differents usb key, same problem

I try to mount manually usb key, it runs, but I do not know folder to mount usb key and how continuing installation.

 

Help.

 

1 ACCEPTED SOLUTION

Accepted Solutions
HP Recommended

I found.

 

Il is necessary to mount usb key on :

 

/mnt/usbkey/

 

To point correctly to settings.ini and other options.

 

Thank you itsmyname.

View solution in original post

12 REPLIES 12
HP Recommended

@McAneyth -- are your two USB memory-sticks formatted as "FAT32" or "HPFS" ?  SYLINUX may not be able to interact with either file-system.

 

HP Recommended

@itsmyname

 

Thanks,

 

I used thinupdate for creating usb key.

What could i change ?

HP Recommended

@Itsmyname --

 

I mount manually USB key and starts /mnt/init.sh, but I have a new error message.

What can I do ?

HP Recommended

@McAneyth --  I have a new error message.

 

What is the exact wording of that message?

 

HP Recommended

20211225_075138.jpg

@itsmyname --

 

Unary operator expected

Image write mode is disabled 

HP Recommended

@McAneyth -- please show lines #340 through #350 of that "init.sh" file.

 

There is a syntax-error in the code.  Compare to writing FORTRAN 66 code:  if X = Y  rather than if X .EQ. Y 

-- namely using the operator for "assignment" rather than the operator for "comparison".

 

HP Recommended

@Itsmyname --

 

Thanks,

 

But I do not see what is wrong in these lines :

 

write_image () {
clear
if [ $enableWriteMode = "1" ]; then
if [ x"$1" != "x" ]; then
image_filename=$1
else
create_image_list $images_dir dd
display_image_list
unset new_images_dir
get_image_filename
if [ $user_selection -eq 0 ]; then
return 0
fi
fi
if [ $confirmWrites = "1" ]; then
echo ""
echo_red "WARNING: The image on \"$flash_device\" is about to be overwritten."
echo -n "Do you wish to proceed with the update? [yes/no] "
read result
else
result="yes"
fi

HP Recommended

I found.

 

Il is necessary to mount usb key on :

 

/mnt/usbkey/

 

To point correctly to settings.ini and other options.

 

Thank you itsmyname.

HP Recommended

@McAneyth  --  I do not see what is wrong in these lines

 

if [ x"$1" != "x" ]; then

....
if [ $user_selection -eq 0 ]; then

 

The first IF statement uses the "not-equal" BINARY comparator, namely <bang><equal>

while the second IF statement uses the UNARY operator "minus".

Are you sure that the "minus" character is correct syntax?

 

† The opinions expressed above are the personal opinions of the authors, not of HP. By using this site, you accept the <a href="https://www8.hp.com/us/en/terms-of-use.html" class="udrlinesmall">Terms of Use</a> and <a href="/t5/custom/page/page-id/hp.rulespage" class="udrlinesmall"> Rules of Participation</a>.