Manjaro multilib or 32 bit ARM binaries?
#2
It's possible to install 32-bit Debian with debootstrap into a directory and then log into it with chroot. Also possible with systemd-nspawn. Also, with Docker.

Chroot is probably the easiest to understand, and is useful to learn when you need to recover an unbootable system.

Code:
sudo mkdir /debian-armhf
sudo debootstrap --arch armhf testing /debian-armhf

This will download Debian/testing into a directory, I don't know which Debian version Raspbian is based on, so you can change that, probably to better match the library versions.

Then you need to mount some directories, you only need to do this every time you reboot:

Code:
for f in {proc,sys,dev}; do sudo mount --bind /${f} /debian-armhf/${f}; done

This will mount some needed directories into the chroot, I've written it in a single line so it's easier to find in history with CTRL-R.

By this point you are ready to log into your Debian:

Code:
sudo chroot /debian-armhf su -

You can add your own user, too, with adduser username. Then the login would be with su - username.


Messages In This Thread
RE: Manjaro multilib or 32 bit ARM binaries? - by slyecho - 07-26-2020, 01:31 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Manjaro Sway Theme Broken Eighty8 1 347 03-08-2024, 08:41 AM
Last Post: tophneal
Question Manjaro with Full Disk Encryption and GRUB dumetrulo 1 1,819 02-02-2024, 02:45 AM
Last Post: frankkinney
  Manjaro network problem late 2023 acruhl 1 391 01-19-2024, 11:32 PM
Last Post: Kevin Kofler
  Help installing Manjaro on eMMC of Pinebook Pro pine4546464 4 2,272 12-13-2023, 07:22 PM
Last Post: trillobite
  Need Help Recovering Manjaro /boot Contents on Pinebook Pro calinb 6 2,369 12-11-2023, 03:47 AM
Last Post: calinb
  Manjaro 20.04 not loading from SD (with Manjaro on eMMC) zaius 1 466 12-07-2023, 03:11 PM
Last Post: wdt
  Manjaro ARM: enabling external monitors & fixing Broadcom WiFi after updating trifleneurotic 2 974 11-14-2023, 10:57 AM
Last Post: trifleneurotic
  Manjaro [ARM Stable Update] 2021-07-23 issues Bocanila 1 2,073 08-21-2023, 09:10 PM
Last Post: vanessadonald
  [Manjaro] u-boot won't boot from eMMC with (unbootable) SD card present zackw 1 2,043 08-21-2023, 09:08 PM
Last Post: vanessadonald
  Manjaro - HIbernate - brcmfmac clk issue pompeyPinePro 1 818 08-18-2023, 02:06 AM
Last Post: juliamenendez

Forum Jump:


Users browsing this thread: 1 Guest(s)