zsh-users
 help / color / mirror / code / Atom feed
* Zsh on Solaris 2.6
@ 2001-12-26 15:14 erlamarque
  2001-12-26 16:03 ` Clint Adams
  2001-12-26 18:22 ` Will Yardley
  0 siblings, 2 replies; 3+ messages in thread
From: erlamarque @ 2001-12-26 15:14 UTC (permalink / raw)
  To: webadm, zsh-users

Hi.

I have downloaded the Zsh shell that I have founded on your website
(http://chronos.cs.msu.su/).
the file I have donwloaded is :

-rw-r--r--   1 m091712  staff     976037 Dec 26 13:57 zsh-3.1.9g-pkg.tgz


I have done a pkgadd -d . as root and the installation was fine.

I am running a Solaris 2.6 on E450 Sun microsystems computer.

# pkginfo -l zsh
   PKGINST:  zsh
      NAME:  The Z shell
  CATEGORY:  utility
      ARCH:  sparc
   VERSION:  3.1.9g
   BASEDIR:  /usr/local
    VENDOR:  zsh.org
    PSTAMP:  07thJul00
  INSTDATE:  Dec 26 2001 14:18
     EMAIL:  frbrgeorge@intelligencia.com
    STATUS:  completely installed
     FILES:    398 installed pathnames
                 4 shared pathnames
                 1 linked files
                12 directories
                42 executables
              5715 blocks used (approx)

Unfortunately, when i try to run that shell, i obtain the following error.

# /usr/local/bin/zsh
ld.so.1: /usr/local/bin/zsh: fatal: libcurses.so.1: open failed: No such file or directory
Killed.

There is no Readme file and i have'nt see anything on your website like bugs reports in the ZSH FAQ or on the website : http://www.zsh.org

--------------------------------------------------------------------------------------------------------------------------------------

Futher more, I have found the library libcurses.so.1located in the directory /usr/xpg4/lib

# cd /usr

# find . -name libcurses.so.1
./xpg4/lib/libcurses.so.1

So i have added this directory to my LD_LIBARY_PATH

m091712@qvgweb2 pts/7 /export/home/m091712% echo $LD_LIBRARY_PATH
/usr/ccs/lib:/usr/dt/lib:/usr/openwin/lib:/usr/ucblib:/usr/dt/lib:/usr/lib:/usr/xpg4/lib

and then I obtain this following error:

m091712@qvgweb2 pts/7 /export/home/m091712% zsh
Segmentation Fault (core dumped)

Do you have some explanation, or is the package zsh-3.1.9g-pkg.tgz,  the right one to install ZSH Shell on a Sun computer under Solaris 2.6 ?

Thanks a lot.

Cordialement,

     Lamarque Eric  (DI.MD / BD - Air France - Vilgénis)

     Tél  : 01 64 4 (7 76 03)
     Email     : erlamarque@airfrance.fr

=========================================================



---------------

Les données et renseignements contenus dans ce message sont personnels, confidentiels et secrets. Ce message est adressé à l'individu ou l'entité dont les coordonnées figurent ci-dessus. Si vous n'êtes pas le bon destinataire, nous vous demandons de ne pas lire, copier, utiliser ou divulguer cette communication. Nous vous prions de notifier cette erreur à l'expéditeur et d'effacer immediatement cette communication de votre système.

The information contained in this message is privileged, confidential, and protected from disclosure. This message is intended for the individual or entity adressed herein. If you are not the intended recipient, please do not read, copy, use or disclose this communication to others ;also please notify the sender by replying to this message, and then delete it from your system.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Zsh on Solaris 2.6
  2001-12-26 15:14 Zsh on Solaris 2.6 erlamarque
@ 2001-12-26 16:03 ` Clint Adams
  2001-12-26 18:22 ` Will Yardley
  1 sibling, 0 replies; 3+ messages in thread
From: Clint Adams @ 2001-12-26 16:03 UTC (permalink / raw)
  To: erlamarque; +Cc: webadm, zsh-users

> I have downloaded the Zsh shell that I have founded on your website
> (http://chronos.cs.msu.su/).
> the file I have donwloaded is :
> # /usr/local/bin/zsh
> 
> m091712@qvgweb2 pts/7 /export/home/m091712% zsh
> Segmentation Fault (core dumped)
> 
> Do you have some explanation, or is the package zsh-3.1.9g-pkg.tgz,  the right one to install ZSH Shell on a Sun computer under Solaris 2.6 ?

I have no idea which libcurses the binary in question was linked
against, but 3.1.9 is a bit old.

A quick search didn't reveal any modern zsh packages for Solaris 2.6, so
I recommend grabbing the source for zsh 4.0.4 (available at
ftp://ftp.zsh.org/), and doing the following once you've unpacked and
entered the source directory:

./configure
make
mkdir ../MYzsh
make install DESTDIR=`pwd`/../MYzsh
cd ../MYzsh
mv usr/local/* .
rmdir usr/local usr
(echo "i pkginfo=myinfo" ; find . | pkgproto | awk '{$5="root";$6="bin";print}') >prototype
cat >myinfo <<EOF
PKG="MYzsh"
NAME="Z-Shell"
VERSION="4.0.4"
ARCH="sparc"
VENDOR="My Company"
EMAIL="me@mycompany.com"
CATEGORY="shells"
BASEDIR="/usr/local"
EOF
pkgmk -r .

That was off the top of my head, so it may need some tweaking, but it
might give you a usable zsh package.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Zsh on Solaris 2.6
  2001-12-26 15:14 Zsh on Solaris 2.6 erlamarque
  2001-12-26 16:03 ` Clint Adams
@ 2001-12-26 18:22 ` Will Yardley
  1 sibling, 0 replies; 3+ messages in thread
From: Will Yardley @ 2001-12-26 18:22 UTC (permalink / raw)
  To: zsh-users

erlamarque@airfrance.fr wrote:
> 
> I have downloaded the Zsh shell that I have founded on your website
> (http://chronos.cs.msu.su/).
> the file I have donwloaded is :
> 
[...] 
> Unfortunately, when i try to run that shell, i obtain the following error.
> 
> # /usr/local/bin/zsh
> ld.so.1: /usr/local/bin/zsh: fatal: libcurses.so.1: open failed: No such file or directory
> Killed.

it looks like the package requires ncurses shared libraries, so you
might either look for a statically compiled package, or you might
install a package which provides the ncurses libraries.  you might check
the sunfreeware site for this.

sun has a vendor supplied zsh package with solaris 8, but i don't know
if there's one for the version of solaris you're running. it didn't look
like there was a zsh package on the sunfreeware site for 2.6 either.

w


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2001-12-26 18:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-12-26 15:14 Zsh on Solaris 2.6 erlamarque
2001-12-26 16:03 ` Clint Adams
2001-12-26 18:22 ` Will Yardley

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).