This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Error Message during Silent Uninstall
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 14, 2006
04:54 AM
Error Message during Silent Uninstall
Uninstalling from the shell gives the following error message
cat: /tmp/istemp29850251142147/chunk2: No such file or directory
rm: cannot remove `/tmp/istemp29850251142147/chunk1': No such file or directory
rm: cannot remove `/tmp/istemp29850251142147/chunk2': No such file or directory
But the uninstallation is successful.
Can anybody please tell me the reason for this error. Please let me know as soon as possible.
Regards,
Anitha
cat: /tmp/istemp29850251142147/chunk2: No such file or directory
rm: cannot remove `/tmp/istemp29850251142147/chunk1': No such file or directory
rm: cannot remove `/tmp/istemp29850251142147/chunk2': No such file or directory
But the uninstallation is successful.
Can anybody please tell me the reason for this error. Please let me know as soon as possible.
Regards,
Anitha
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 18, 2006
12:31 AM
Hello,
Can anybody please respond to this query!!
Regards,
Anitha
Can anybody please respond to this query!!
Regards,
Anitha
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 18, 2006
11:19 PM
Has anybody faced a similar error message ? Please respond.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 07, 2006
03:15 PM
We have also seen it on AIX uninstalls. When I did a Google on it, I found that the message is listed under Known Limitations for the Tivoli Directory Integrator: http://publib.boulder.ibm.com/infocenter/tivihelp/v2r1/index.jsp?topic=/com.ibm.IBMDI.doc_6.1/pdguide18.htm
Also, there are similar posts against Linux in this ISMP forum. It sounds like this is a Unix bug in ISMP. But, it apparently does not cause any real problems in the uninstall process so my guess is that it is lower priority than other issues.
Also, there are similar posts against Linux in this ISMP forum. It sounds like this is a Unix bug in ISMP. But, it apparently does not cause any real problems in the uninstall process so my guess is that it is lower priority than other issues.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 11, 2006
12:12 PM
These massages come from the same function call, extractAFile(), in all of the script launchers for UNIX and Linux installs. I'm not sure how the messages should even happen because looking at the section of the function that throws the messages:
[ \( -f "$CHUNK1" -a -f "$CHUNK2" \) ] && {
cat "$CHUNK2" >> "$NAME"
rm $CHUNK1 $CHUNK2
}
So somehow this, '-f "$CHUNK2" ', is returning true when it is not there! This ‘if [] && {}’ statement was added from 10.5 to 11.5 (I went from 10.5 to 11.5 so do not know if they added this to 11) to fix these messages!
If still getting these messages I would just go into all the scriptlauncherstub.sh files in the $A(IS_HOME)/Resources/reslib/platform/ and change the cat and rm statements to:
cat -s "$CHUNK2" >> "$NAME"
rm -f $CHUNK1 $CHUNK2
The -s and -f suppress any messages from the commands!
Regards,
Tom
[ \( -f "$CHUNK1" -a -f "$CHUNK2" \) ] && {
cat "$CHUNK2" >> "$NAME"
rm $CHUNK1 $CHUNK2
}
So somehow this, '-f "$CHUNK2" ', is returning true when it is not there! This ‘if [] && {}’ statement was added from 10.5 to 11.5 (I went from 10.5 to 11.5 so do not know if they added this to 11) to fix these messages!
If still getting these messages I would just go into all the scriptlauncherstub.sh files in the $A(IS_HOME)/Resources/reslib/platform/ and change the cat and rm statements to:
cat -s "$CHUNK2" >> "$NAME"
rm -f $CHUNK1 $CHUNK2
The -s and -f suppress any messages from the commands!
Regards,
Tom