-
1. Re: want to unzip database s/w on redhat5
GTS (DBA) Sep 22, 2013 11:21 PM (in response to GTS (DBA))I am not able to unzip any other zip files. how can i crack this ?
# unzip DBA_REF_DOCS.zipbash: unzip: command not found
-
2. Re: want to unzip database s/w on redhat5
DK2010 Sep 23, 2013 8:28 AM (in response to GTS (DBA))Hi,
You can try
$ whereis unzip
unzip: /usr/bin/unzip /usr/share/man/man1/unzip.1.gz
and then check the path from above ans use(like above path)
/usr/bin/unzip DBA_REF_DOCS.zip
HTH
-
3. Re: want to unzip database s/w on redhat5
EdStevens Sep 23, 2013 9:51 AM (in response to GTS (DBA))1 person found this helpful8f953842-815b-4d8c-833d-f2a3dd51e602 wrote:
I am not able to unzip any other zip files. how can i crack this ?
# unzip DBA_REF_DOCS.zipbash: unzip: command not found
When you enter a command (such as 'unzip') the shell has to locate the code for that command. That means locating an executable file by that name ('unzip'). Where will it find that file? It checks the directories that are listed in the PATH environment variable. So in your case the directory containing the 'unzip' executable is is not listed in the PATH. Thus 'bash" (the shell processor) issues an error that the file 'unzip' "cannot be found".
And for unzip in particular, not being included in the PATH is pretty suspicious. Sounds like you've got some fairly serious shortcomings in your setup, and these have nothing whatsoever to do with Oracle.
-
4. Re: want to unzip database s/w on redhat5
HDeiby Sep 23, 2013 3:07 PM (in response to GTS (DBA))1 person found this helpfulyou should not unzip the file with root user "#". You need unzip and install with "oracle" user or other user.
# unzip -qd 10.2.0.1_database_software_linux32.zip
bash: unzip: command not found
please follow the next steps:
find / -name unzipyou will get something like:
/path/path/path/unzip
$/path/path/path/unzip 10.2.0.1_database_software_linux32.zip
-
-
6. Re: want to unzip database s/w on redhat5
GTS (DBA) Sep 24, 2013 7:36 AM (in response to EdStevens)@ Edstevens
Yes you are right. I could NOT solve this problem. so i am installing 10g r2 on OEL 5.5 but here also i am getting some error.
Thanks ..
-
7. Re: want to unzip database s/w on redhat5
HDeiby Sep 24, 2013 2:14 PM (in response to GTS (DBA))I think zip/unzip is include in OEL 5.5 but if not, you can follow the next steps: