Reputation: 4819
Can any one suggest a command to download the package from the interent in the solaris box?
Thanks in advance.
Upvotes: 2
Views: 3760
Reputation: 1035
I once needed to get wget
installed on old remote Solaris 8 server (there is no /usr/sfw/
on Solaris 8).
So, after some web surfing, I did the following:
pkgadd -d wget-1.10.2-sol8-sparc-local
Right away you can start using it as wget <URL>
.
Upvotes: 0
Reputation: 1122
See https://stackoverflow.com/a/14584664/141978 from RaamEE:
The wget command in Solaris 10 is somewhat hidden from sight.
You can find it here
/usr/sfw/bin/wget
This was checked on s10u10
Then use /usr/sfw/bin/wget <url>
Upvotes: 2
Reputation: 30843
It's hard to tell as you provide few information but wget
is a common tool to retrieve things from the Internet.
wget http://server/package.zip
If a Solaris package, pkgadd
also supports URLs:
pkgadd -d http://server/package.pkg
Upvotes: 1