Search results

  1. rbranco

    jails Security audit of jails (39c3) done by Ilja van Sprundel

    We kinda discussed it in this thread: https://forums.freebsd.org/threads/from-the-39c3-escaping-containment-a-security-analysis-of-freebsd-jails.100969/
  2. rbranco

    How to determine if SSD is faulty

    Install smartmontools and run `smartctl -x /dev/$disk` LLM's like ChatGPT turn out to be very good at interpreting the results.
  3. rbranco

    Wrapper around pkg(8) to automatically mount pkg cache in tmpfs and create a ZFS boot environment

    To avoid reinventing the wheel, there are the 3 workflows I know of: 1. Illumos pkg creates a new BE by default except when installing new packages. 2. openSUSE's zypper creates a Btrfs snapshot everytime, even when removing packages, keeping a configurable maximum of 10 snapshots. 3. GhostBSD...
  4. rbranco

    Wrapper around pkg(8) to automatically mount pkg cache in tmpfs and create a ZFS boot environment

    I know modern SSD's resist a bit more but I dunno about eMMC's. It's also faster to download to RAM. I'm even tempted to symlink /var/cache/pkg to /tmp which is already tmpfs in my case but want to do it in a secure way.
  5. rbranco

    Wrapper around pkg(8) to automatically mount pkg cache in tmpfs and create a ZFS boot environment

    I'm experimenting with this wrapper around pkg(8) to automatically mount the pkg cache in tmpfs and create a ZFS boot environment. The reason for using tmpfs is to prevent a eMMC/SSD from wearing. Any suggestions for improvements are welcome. #!/bin/sh # # Wrapper around FreeBSD pkg(8) to...
  6. rbranco

    Please recommend me a good free online course to learn linux or bsd console.

    You can't go wrong with the classics. In addition to The UNIX Programming Environment recommended above I'd also add Advanced Programming in the UNIX Environment by Richard W. Stevens. Any book by this author is a collectible item. Both explain the concepts as well as the implementation...
  7. rbranco

    Post an interesting thought

    I believe I can see the future / 'Cause I repeat the same routine NIN - Every Day Is Exactly the Same
  8. rbranco

    Reboot causes network card to fail

    I love & rely on WoL. Will have to dig thru the BIOS & loader settings.
  9. rbranco

    Reboot causes network card to fail

    igc: Intel(R) Ethernet Controller I226-V
  10. rbranco

    Reboot causes network card to fail

    On some systems I have to do a poweroff and manual power on because a reboot may leave me without network connectivity. Why is that?
  11. rbranco

    ccache and/or META_MODE for kernel dev

    I've been using META mode with success. I should probably try ccache to avoid loading the filemon kernel module.
  12. rbranco

    Manifesto www.rebuildworld.net

    This seems like an elaborate prank to make fun of minimalism or someone hasn't yet realized that the real world is orders of magnitude more complex than IT.
  13. rbranco

    From the 39c3: Escaping Containment: A Security Analysis of FreeBSD Jails

    Details will be available on https://github.com/iljavs/FreeBSD-Jail-Security-Research-Mirror
Back
Top