I am not a friend of virtualization or emulation on the desktop, but I decided to try.
Linux is not a Thema in this forum, but the emulation
I did:
And now I am trying to mount the virtual filesystem named in
docs.freebsd.org
The following commandos fail (in the chroot):
And /dev/fd is filled without mounting anything.
I did
and
Any hint?
Linux is not a Thema in this forum, but the emulation

I did:
Code:
# pkg install debootstrap
# mkdir /compat/debian
# kldload linux64
# debootstrap bullseye /compat/debian http://deb.debian.org/debian/
# chroot /compat/debian /bin/bash
And now I am trying to mount the virtual filesystem named in
Chapter 12. Linux Binary Compatibility
FreeBSD provides binary compatibility with Linux, allowing users to install and run most Linux binaries on a FreeBSD system without having to first modify the binary
The following commandos fail (in the chroot):
Code:
# mount -t sysfs sysfs /sys
mount: /sys: unknown filesystem type 'sysfs'.
# mount -t tmpfs tmpfs /dev/shm -osize=100m,mode=1777
mount: /dev/shm: unknown filesystem type 'tmpfs'.
And /dev/fd is filled without mounting anything.
I did
apt-get install xterm
, but get the error:
Code:
# xterm
Warning: locale not supported by C library, locale unchanged
xterm: Error 32, errno 2: No such file or directory
Reason: get_pty: not enough ptys
and
Code:
# mount -t devpts devpts /dev/pts
mount: /dev/pts: unknown filesystem type 'devpts'.
# ls /dev/pts/
0 1 2 3
Any hint?