Apt-get on solaris

opensolarissolarisunix

I am looking a file to download from the Internet. On Debian it can be installed using aptitude install librrd-dev or yum install librrd-dev on Ubuntu. I am looking the same file for Solaris but I couldn't find the exact file. is there any comparable command on Solaris to download this dev file?

Best Answer

Not unless you install Blastwave and use their repositories. Traditionally, Solaris packages are distributed either as tarballs (which must be downloaded and un-tarred) or SystemV package files, .pkg. To install a *.pkg file you would run "pkgadd .pkg".

If you want more online-repo style software installs, such as most (all?) Linux system support, configure blastwave. http://www.blastwave.org/jir/blastwave.fam Then you can do something along the lines of "pkgutil apache2" and it will download the pre-built/packaged file and install it.

Ah, yea, I kinda missed the part where you wanted a specific package. Sunfreeware.com nor Blastwave seem to have it, but OpenCSW seems to. Check out http://opencsw.oxdrove.co.uk/packages/unstable/i386/5.10/search/?cswq=rrd . It has "rrdtool_dev: Development files for librrd.so.4"

Related Topic