rdbo / libmem

Advanced Game Hacking Library for C, Modern C++, Rust and Python (Windows/Linux/FreeBSD) (Process/Memory Hacking) (Hooking/Detouring) (Cross Platform) (x86/x64/ARM/ARM64) (DLL/SO Injection) (Internal/External) (Assembler/Disassembler)
GNU Affero General Public License v3.0
786 stars 91 forks source link

libmem not working on freebsd #9

Closed rdbo closed 3 years ago

rdbo commented 3 years ago

That might be due to your procfs not being mounted. You'd have to manually do so by running the following command: mount -t procfs proc /proc To automatically mount the procfs on boot, you'd have to add the following line to /etc/fstab: proc /proc procfs rw 0 0 If your problem is not solved, open another issue.

Source: https://stackoverflow.com/questions/5486317/could-not-find-proc-self-maps

rdbo commented 6 months ago

From V5 onwards, mounting the procfs is no longer necessary on FreeBSD. All handling that could be done with the procfs is handled with libprocstat now.