Hi! ----
Can someone of the i18n/l10n people please take a look at the tarballs (see annoucement below) and check whether... 1. ... the localisation files (e.g. usr/lib/locale/C/LC_MESSAGES/libcmd usr/lib/locale/C/LC_MESSAGES/libdll usr/lib/locale/C/LC_MESSAGES/libshell usr/lib/locale/C/LC_MESSAGES/libast ) included there are Ok (e.g. is the file format Ok etc.) for you 2. ... the ksh93 binaries included are responding properly to any translated message catalogs. -------- Original Message -------- Subject: ksh93-integration 2006-08-27 test binaries available for download Date: Thu, 31 Aug 2006 23:55:10 +0200 From: Roland Mainz <roland.ma...@nrubsig.org> Reply-To: ksh93-integration-discuss <ksh93-integration-discuss at opensolaris.org> To: ksh93-integration-discuss <ksh93-integration-discuss at opensolaris.org>,OpenSolaris Announce Mailinglist <opensolaris-announce at opensolaris.org> CC: OpenSolaris Shell discussions <shell-discuss at opensolaris.org>,opensolaris-discuss <opensolaris-discuss at opensolaris.org> Hi! ---- A new set of tarballs containing an OS/Net version of ksh93 [1] (based on ksh93r+_alpha_20060724 [2]) is now available from http://www.opensolaris.org/os/project/ksh93-integration/downloads/2006-08-27/ These tarballs are intended to be installed over an existing OpenSolaris i386, AMD64 or SPARC installation and provide ksh93r+_alpha_20060724 as /usr/bin/ksh93 for testing and evaluation purposed ONLY. Please report any problems/errors/bugs/comments to the ksh93-integration mailinglist (see [4]). Install instructions: (please check http://www.opensolaris.org/os/project/ksh93-integration/downloads/2006-08-27/ for any updates/changes) 1. Download the tarball: + i386/AMD64: ksh93_integration_20060827_snapshot_i386.tar.bz2 (list files) + SPARC: ksh93_integration_20060827_snapshot_sparc.tar.bz2 ( list files) 2. Verify the Md5 checksum: + i386/AMD64: MD5 (ksh93_integration_20060827_snapshot_i386.tar.bz2)= 23e3342f3dc4f27077974017d14f2410 + SPARC: MD5 (ksh93_integration_20060827_snapshot_sparc.tar.bz2)= c0426a12c84983e4913a13042315c742 3. Login as user "root": 4. Change directory to / and unpack the tarball with /usr/bin/tar using the "xvof" option ("o" is very important to set the file ownership to "root") Example for i386/AMD64: % cd /tmp % wget http://www.opensolaris.org/os/project/ksh93-integration/downloads/ksh93_integration_20060827_snapshot_i386.tar.bz2 % /usr/sfw/bin/openssl md5 ksh93_integration_20060827_snapshot_i386.tar.bz2 MD5(ksh93_integration_20060827_snapshot_i386.tar.bz2)= 23e3342f3dc4f27077974017d14f2410 % cd / % sync ; sync % bzcat /tmp/ksh93_integration_20060827_snapshot_i386.tar.bz2 | tar -xvof - Example for SPARC: % cd /tmp % wget http://www.opensolaris.org/os/project/ksh93-integration/downloads/ksh93_integration_20060827_snapshot_sparc.tar.bz2 % /usr/sfw/bin/openssl md5 ksh93_integration_20060827_snapshot_sparc.tar.bz2 MD5(ksh93_integration_20060827_snapshot_sparc.tar.bz2)= c0426a12c84983e4913a13042315c742 % cd / % sync ; sync % bzcat /tmp/ksh93_integration_20060827_snapshot_sparc.tar.bz2 | tar -xvof - Notes: * 64bit binaries and libraries are now included (and used by default if the hardware is 64bit capable) * If you wish to use ksh93 as login shell you have to create the file /etc/shells (see shells(4) manual page) to include it in the list of "allowed" system login shells: Example /etc/shells file (created using % cat lib/libc/port/gen/getusershell.c | egrep '.*".*bin.*".*' | sed 's/[",]//g' | sort -u #): /bin/bash /bin/csh /bin/jsh /bin/krsh /bin/krsh93 /bin/ksh /bin/ksh93 /bin/pfcsh /bin/pfksh /bin/pfksh93 /bin/pfsh /bin/rksh /bin/rksh93 /bin/sh /bin/tcsh /bin/zsh /sbin/jsh /sbin/krsh93 /sbin/ksh /sbin/ksh93 /sbin/pfksh93 /sbin/pfsh /sbin/rksh93 /sbin/sh /usr/bin/bash /usr/bin/csh /usr/bin/jsh /usr/bin/krsh /usr/bin/krsh93 /usr/bin/ksh /usr/bin/ksh93 /usr/bin/pfcsh /usr/bin/pfksh /usr/bin/pfksh93 /usr/bin/pfsh /usr/bin/rksh /usr/bin/rksh93 /usr/bin/sh /usr/bin/tcsh /usr/bin/zsh /usr/xpg4/bin/sh * libcmd.so is replaced with a version which includes both the ksh93 builtin commands and the private Solaris API if previous libcmd version * The tarball was simply created from an OS/Net B37 proto/ subdir via collecting the files listed by % find $ROOT '!' -type d | sed 's/.*\/root_sparc\///' | egrep "/(lib|llib-l)(cmd|ast|shell |dll)|/(ksh|krsh|rksh|pfksh)|include/ast" | egrep -v cmdutils. * The tarballs do not provide a manual page for ksh93. Please use the manual page for ksh93r in the meantime. * "multiline" input mode is temporary disabled on SPARC due a small issue * The ksh93 binaries can be build from source like this: 1. Pull sources and extract closed bin stuff (files can be obtained from opensolaris.org): $ mkdir test_x86 ; cd test_x86 $ svn checkout -r 407 svn://svn.genunix.org/on/branches/ksh93/gisburn/prototype002/m1_ast_ast_imported/usr $ bzcat ../download/on-closed-bins-b37.i386.tar.bz2 | tar -xf - $ cd .. 2. Create opensolaris.sh. 3. Run "bldenv": $ env - SHELL=$SHELL TERM=$TERM HOME=$HOME LOGNAME=$LOGNAME DISPLAY=$DISPLAY LANG=C LC_ALL=C PAGER=less MANPATH= $MANPATH /opt/onbld/bin/bldenv opensolaris.sh 4. Build it (the quick way): $ cd test_x86/usr/src $ time nice make setup 2>&1 | tee -a buildlog_setup.log $ time nice dmake install >buildlog.log 2>&1 Links/References: [1]=ksh93-integration/migration project home page: http://www.opensolaris.org/os/project/ksh93-integration/ [2]=ksh93r+_alpha_20060724 release annoucement: http://mail.opensolaris.org/pipermail/ksh93-integration-discuss/2006-July/000571.html [3]=ksh93r manual page: http://www.opensolaris.org/os/project/ksh93-integration/docs/ksh93r/man/man1/sh/ [4]=ksh93-integration mailinglist: http://mail.opensolaris.org/mailman/listinfo/ksh93-integration-discuss/ ; please subscribe before posting (and please avoid flamewars) !! Happy testing! :-) ---- Bye, Roland P.S.: Reply-To: set to ksh93-integration-discuss at opensolaris.org (please subscribe before posting [4]) -- __ . . __ (o.\ \/ /.o) roland.mainz at nrubsig.org \__\/\/__/ MPEG specialist, C&&JAVA&&Sun&&Unix programmer /O /==\ O\ TEL +49 641 7950090 (;O/ \/ \O;)