Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: trapped in bash
- X-seq: zsh-users 22222
- From: Aaron Schrab <aaron.schrab@xxxxxxxxx>
- To: Ray Andrews <rayandrews@xxxxxxxxxxx>
- Subject: Re: trapped in bash
- Date: Fri, 16 Dec 2016 16:51:18 -0500
- Cc: Zsh Users <zsh-users@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to:user-agent; bh=zUKTTg6KH+T4t75cj7ZbKI0oUKkSgmKWQJ0ep6OGpCI=; b=vMhiowomlLChNNwqk9zy0xI8YrPUXh0Bxl2KmQ29Mx1b9FzXOHArEXtpfJ5q02dcYw 54Av1y9iKUyXxp8WvZnm3ApNS9WZRLavTIY02W2hlbO1SQHfh6uAfEteQw7lPxUEmQHp gMAQhNGbDFsODh1MollhjOjfKdol8W4UGPnLQVWZQJEFvLRdNk/SRFpPXD8PNkfxQzdZ 31VeDfxFQPRHd1Qzgj/1v+5NUdz/ZglSl5TpR+aAivPqAtNGeMiHRXLlJvKmmSoW25GA fAZo0vLTYUB/EAzw377KxjxDErEyKPu+xOLfn0JGgYSKWQy2/++7BRPtNvKNFOBe7WcB PaMg==
- In-reply-to: <58540944.3030706@eastlink.ca>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mail-followup-to: Ray Andrews <rayandrews@xxxxxxxxxxx>, Zsh Users <zsh-users@xxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <58540944.3030706@eastlink.ca>
At 07:33 -0800 16 Dec 2016, Ray Andrews <rayandrews@xxxxxxxxxxx> wrote:
So I'm setting up a new machine with Debian 64 (using Debian 32 still
on old machine) and I'm thinking to just copy over my whole zsh
install from here to there and ... nope ... I 'cd' to where the binary
is and type 'zsh' and bash reports that it can't find the file. Copy
it to '/bin' and it still can't find it. Even the desperate '. ./zsh'
reports 'cannot execute binary file'. I hope to gawd that an apt-get
install of zsh would work, but I'd like to use my existing setup
exactly as is. Do I have to rebuild? I'm new with 64 bit issues,
whatever they may happen to be, but I thought a 64 bit environment
could always run 32 bit apps. Or have I forgotten something simple?
The hardware and kernel are able to run 32bit binaries, but you can't
use 64bit shared libraries with 32bit executables (or vice-versa). You
also need the 32bit version of the run-time dynamic linker; lack of that
is why you're being told that a file isn't found.
Unless there was something really special about that build I'd either
just go with installing via apt or rebuilding.
If you *really* want to use the same build you can likely do that with a
multi-arch setup. To start with that would involve:
dpkg --add-architecture i386
apt update
apt install libc6:i386
Once that is done the system should at least recognize that the old zsh
build is executable. But you'll likely need to install several other
i386 libraries; depending on the age of the system where that was built
it's possible that the required versions won't be found for the current
version of Debian.
The number of i386 library packages needed for this shouldn't be large,
but a multi-arch system does mean that every `apt update` will fetch the
package list for both of the architectures.
Meanwhile I'm trapped in the pre-fire age of bash out of the box.
Even 'ls -l' doesn't work, filenames only.
That shouldn't have anything to do with bash vs. zsh.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author