This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
hi all, I need to unjar the jar in unix platform I was trying like below, it is giving error "ksh: jar: not found" $ jar xvf xyz.jar Pls help me out. Thanks regards jowsaki
i think u need to install jar.rpm. mount ur first linux cd and ls INDEX.gz | grep jar.rpm (or some command like that). find the path to jar.rpm and rpm -ivh jar.rpm to install...
Sham Jowsaki
Ranch Hand
Joined: May 22, 2001
Posts: 146
posted
0
Originally posted by patrick tang: i think u need to install jar.rpm. mount ur first linux cd and ls INDEX.gz | grep jar.rpm (or some command like that). find the path to jar.rpm and rpm -ivh jar.rpm to install...
The jar command is distributed with the jdk. The problem you have is that the bin directory of the jdk installation is not in your path. Don't know abouth ksh but usually you do something like the following: PATH=$PATH:/path/to/jdk/bin export PATH