Changes between Version 19 and Version 20 of OpenSolaris


Ignore:
Timestamp:
Nov 24, 2009, 1:58:49 PM (14 years ago)
Author:
Bruno Cornec
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenSolaris

    v19 v20  
    77
    88 [http://docs.sun.com/app/docs/doc/817-0406/ch5pkgcasestudies-80583?a=view Case Studies of Package Creation]
     9
     10== Port from scratch ==
    911
    1012These notes are taken as the Solaris port is occuring
     
    116118$ sudo /usr/sbin/pkgadd -d pb/build/project-builder-devel.pkg
    117119}}}
    118  * In order to setup a Solaris VM/VE, after its installation from media in QEMU, you have to check that 3 components are installed and activated (sshd, sudo and wget)
     120
     121== VM setup ==
     122
     123 * In order to setup a Solaris VM/VE, after its installation from media in QEMU, you have to check that some components are installed and activated (sshd, sudo, wget, libintl)
    119124{{{
    120125# svcadm enable ssh
     
    139144# gzip -d make-3.81-sol10-sparc-local.gz
    140145# pkgadd -d make-3.81-sol10-sparc-local
    141 # pkginfo -l | grep -E 'make|sudo'
     146# wget ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libintl-3.4.0-sol10-x86-local.gz
     147# gzip -d libintl-3.4.0-sol10-x86-local.gz
     148# pkgadd -d libintl-3.4.0-sol10-x86-local
     149# wget ftp://ftp.sunfreeware.com/pub/freeware/intel/10/libiconv-1.9.2-sol10-x86-local.gz
     150# gzip -d libiconv-1.9.2-sol10-x86-local.gz
     151# pkgadd -d libiconv-1.9.2-sol10-x86-local
     152# pkginfo -l | egrep 'make|sudo|intl'
    142153}}}
    143154 * The VM/VE is then ready to be setup by pb. From the host executes: