Changes between Version 19 and Version 20 of OpenSolaris
- Timestamp:
- Nov 24, 2009, 1:58:49 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenSolaris
v19 v20 7 7 8 8 [http://docs.sun.com/app/docs/doc/817-0406/ch5pkgcasestudies-80583?a=view Case Studies of Package Creation] 9 10 == Port from scratch == 9 11 10 12 These notes are taken as the Solaris port is occuring … … 116 118 $ sudo /usr/sbin/pkgadd -d pb/build/project-builder-devel.pkg 117 119 }}} 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) 119 124 {{{ 120 125 # svcadm enable ssh … … 139 144 # gzip -d make-3.81-sol10-sparc-local.gz 140 145 # 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' 142 153 }}} 143 154 * The VM/VE is then ready to be setup by pb. From the host executes: