Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

curl or wget 2

Status
Not open for further replies.

ddrillich

Technical User
Jun 11, 2003
546
US
Good Day,

On this Sun Solaris server, neither curl nor wget seem to work -

Code:
(ddril00)>uname -a
SunOS slsudv48 5.9 Generic_122300-47 sun4u sparc SUNW,Sun-Fire-V240
[slsudv48]/export/home/ddril00/dan
(ddril00)>curl
sh: curl:  not found
[slsudv48]/export/home/ddril00/dan
(ddril00)>wget
sh: wget:  not found
[slsudv48]/export/home/ddril00/dan

Any ideas, by any chance?

Regards,
Dan
 
They are either not installed, or not in your [tt]PATH[/tt].

Try the following...

Code:
pkginfo | egrep 'curl|wget'

 
Many thanks -

Code:
(ddril00)>pkginfo | egrep 'curl|wget'
system      SUNWwgetr            GNU wget - utility to retrieve files from the World Wide Web (root)
system      SUNWwgetu            wget - GNU wget

I guess the next step is the path. How can I find them out?

Regards,
Dan
 
How to find
# find / -name wget -print

location is
/usr/sfw/bin/wget
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top