Search results

  1. oops

    HEADS UP: FreeBSD is stopping all 32-bit Hardware support except ARMv7

    According to KNOWN_ARCHES in /usr/src/Makefile.inc1 on -CURRENT both armv6 and i386 are still supported. The removal plan has yet to be acted on.
  2. oops

    Is the production environment using FreeBSD 13.2 or FreeBSD 14.0?

    More like around 50 TiB total, saved in hosting fees. 6 architectures: aarch64, amd64, armv7, i386, powerpc, powerpc64 7 sets: /latest, /quarterly, /release_0, /release_1, /release_2, /release_3, /release_4 12 mirrors: nyi, bbt, bra, fmt, fra, jinx, kul, kwc, sjb, syd, tuk, twn
  3. oops

    Solved Failed to compile any C++ using std::ranges::reverse with clang

    std::ranges requires libc++ >= 16 shipped as part of base system in FreeBSD >= 13.3/14.0. Clang version doesn't matter, so installing devel/llvm16 won't help.
  4. oops

    Unable to delete dev/{fd|pts} in jail

    As files under /dev are created by devfs what's visible is controlled by devfs utility. devfs -m /path/to/jail/dev rule apply path 'fd' hide devfs -m /path/to/jail/dev rule apply path 'pts' hide
  5. oops

    What do you think about the move of RHEL ?

    For non-Linux what matters are upstream contributions, not the sauce used by RHEL to give "certified" flavor. This drama (unlike systemd and intensified by GPL) destabilizes vendor lock in Linux, making it easier to adopt FreeBSD.
  6. oops

    What do you think about the move of RHEL ?

    Makes me glad for choosing FreeBSD. No GPL - no drama.
  7. oops

    C++ error: no member named 'boyer_moore_searcher' in namespace 'std' - FreeBSD 12.3 and 12.4

    std::boyer_moore_searcher requires libc++15, to be shipped in FreeBSD 13.3 or 14.0. Either switch to std::experimental::boyer_moore_searcher, bundle newer libc++ or use libstdc++ via GCC. Prefer experimental workaround as mixing different C++ libraries can cause crashes e.g., when a project...
  8. oops

    Is there a real interest in pushing FreeBSD on the desktop space?

    Desktop support was recently discussed at BSDCan2023 DevSummit.
  9. oops

    Favorite linux distro

    Android. On my phone, all the time. It's a whole OS without GNU bits and systemd, properly sandboxed and has good support for proprietary (including paid) apps. Besides, libc/libm has lots of FreeBSD code. Why settle for something only slightly better than FreeBSD?
  10. oops

    Other How do I get freebsd on orange pi 5 with working gpu

    drm-subtree has some.
  11. oops

    systemd gets inetd functions

    elogind can be replaced by consolekit2 (predecessor) or seatd. See list of distros.
  12. oops

    drm-fbsd13-kmod is gone (in favor of drm-510-kmod)

    Already happens since pkg 1.10.4.
  13. oops

    Volume Per Channel (VPC)

    Mostly https://people.freebsd.org/~ariff/SOUND_4.TXT.html (pay attention to "OSSv4 Compatibility"), looking through ariff's patches/scripts, comparing with audio/oss and reading small parts of the kernel code.
  14. oops

    Volume Per Channel (VPC)

    VPC is transparent. Either an application uses OSSv4 API (like SNDCTL_DSP_SETPLAYVOL) or opens /dev/mixer after /dev/dsp (aka hw.snd.vpc_mixer_bypass=1). To inspect or change VPC outside of applications use mixer -f /dev/dsp%d.vp%d (substitute %d with real values) or try the following: $ sysctl...
  15. oops

    C cannot find -lasan when doing -fsanitize=address using GCC/g++/etc

    -fsanitize=address on FreeBSD is only supported on amd64 and i386 by Clang (default compiler) and GCC >= 11 (e.g., lang/gcc11-devel). https://github.com/freebsd/freebsd-src/blob/releng/13.0/lib/libclang_rt/Makefile#L5 https://github.com/gcc-mirror/gcc/commit/d730fd95eebaecad8e26f9e089c7df4630e94f1c
  16. oops

    Solved How to force the linker to search in /usr/local/lib globally?

    If linking is done via compiler (e.g., GCC, Clang) the following may help: export CPATH=/usr/local/include LIBRARY_PATH=/usr/local/lib
  17. oops

    [drm-kmod] Help completing the compatibility matrix "Intel GPUs vs FreeBSD versions"

    https://gitlab.freedesktop.org/xorg/driver/xf86-video-intel/-/blob/master/src/intel_module.c#L428-433 via #if UMS guard suggests only Gen1 can be used without kernel drivers.
  18. oops

    Is FreeBSD for me?

    Why not sysutils/fusefs-smbnetfs? SMB2+ is supported via libsmbclient.so from net/samba412 (for newer add DEFAULT_VERSIONS+=samba=4.13 to /etc/make.conf).
  19. oops

    Regulate process volume with base OSS subsystem

    $ sysctl hw.snd.verbose=2 $ mkdir -p ~/bin $ fetch -o ~/bin/ https://people.freebsd.org/~ariff/utils/appsmixer $ chmod +x ~/bin/appsmixer $ appsmixer wine (dsp0.vp0): Mixer pcm is currently set to 45:45 mpv (dsp0.vp1): Mixer pcm is currently set to 45:45 firefox...
Back
Top