* Arun Gupta (Arun.Gupta at Sun.COM) wrote: > I installed OpenSolaris 2008.05 and could not find "svn" command in > the path. Where is it located ?
Using pkg search is your friend: bash-3.2$ pkg search svn returns no results so it's not installed by default. So, we check the repository: bash-3.2$ pkg search -r svn NDEX ACTION VALUE PACKAGE basename file usr/bin/svn pkg:/SUNWsvn at 1.4.3-0.79 basename file usr/bin/svn pkg:/SUNWsvn at 1.4.3-0.75 basename file usr/bin/svn pkg:/SUNWsvn at 1.4.3-0.86 basename file usr/bin/svn pkg:/SUNWsvn at 1.4.3-0.86 <rest of output deleted> So, we want the SUNWsvn package. bash-3.2$ pfexec pkg install SUNWsvn And that's all there is to it. Cheers, -- Glenn
