Changes between Version 1 and Version 2 of OpenSolaris


Ignore:
Timestamp:
Oct 19, 2009, 5:17:51 PM (15 years ago)
Author:
Bruno Cornec
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenSolaris

    v1 v2  
    33These notes are taken as the Solaris port is occuring
    44
    5 * Working on a pre-installed Solaris 10 machine
    6 *
     5 * Working on a pre-installed Solaris 10 machine
     6 * Download the mirror package and install it on the system from sources. You'll need the GNU make package from the below mirror server (make-3.81-sol10-x86-local.gz)
     7 * Create a conf file in /usr/local/etc/mirror.conf containing:
     8{{{
     9package=sunfreeware
     10        comment=Sun GNU tools
     11        site=ftp.sunfreeware.com
     12        remote_dir=/pub/freeware/i386/10/
     13        local_dir+sunfreeware
     14        passive_ftp=true
     15}}}
     16 * Start the mirror
     17{{{
     18mirror /usr/local/etc/mirror.conf
     19}}}
     20 * Install then additional useful applications
     21{{{
     22cd /export/home/sunfreeware/
     23
     24for i in
     25# Nice to have
     26imagemagick-6.5.1-sol10-x86-local.gz less-436-sol10-x86-local.gz lftp-3.7.3-sol10-x86-local.gz autoconf-2.64-sol10-x86-local.gz automake-1.9-sol10-intel-local.gz rsync-3.0.6-sol10-x86-local.gz afio-2.5-sol10-x86-local.gz bzip2-1.0.5-sol10-x86-local.gz screen-4.0.3-sol10-x86-local.gz sed-4.2.1-sol10-x86-local.gz cpio-2.10-sol10-x86-local.gz curl-7.19.6-sol10-x86-local.gz links-2.2-sol10-x86-local.gz lsof_0508-4.80-sol10-x86-local.gz lzma-4.32.7-sol10-x86-local.gz lzo-2.03-sol10-x86-local.gz lzop-1.01-sol10-x86-local.gz m4-1.4.7-sol10-x86-local.gz star-1.5a78-sol10-x86-local.gz mercurial-1.3.1-sol10-x86-local.gz mktemp-1.6-sol10-x86-local.gz mutt-1.5.20-sol10-x86-local.gz tar-1.22-sol10-x86-local.gz ncftp-3.2.1-sol10-x86-local.gz top-3.6.1-sol10-x86-local.gz gawk-3.1.7-sol10-x86-local.gz gcc-3.4.6-sol10-x86-local.gz vim-7.2-sol10-x86-local.gz which-2.20-sol10-x86-local.gz patch-2.5.9-sol10-x86-local.gz
     27# Mandatory
     28subversion-1.6.5-sol10-x86-local.gz sudo-1.7.2p1-sol10-x86-local.gz wget-1.12-sol10-x86-local.gz openssl-0.9.8k-sol10-x86-local.gz libiconv-1.11-sol10-x86-local.gz libintl-3.4.0-sol10-x86-local.gz libidn-1.14-sol10-x86-local.gz libgcc-3.4.6-sol10-x86-local.gz ; do
     29    gzip -cd $i > $HOME/`basename $i gz`
     30    pkgadd -d $HOME/`basename $i gz`
     31done
     32}}}
     33 * Download the source of project-builder.org
     34{{{
     35wget ftp://ftp.project-builder.org/src/project-builder-latest.tar.gz
     36wget ftp://ftp.project-builder.org/src/ProjectBuilder-latest.tar.gz
     37}}}
     38