1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-23 17:32:59 +01:00

Add manual for netmap on FreeBSD

This commit is contained in:
Pavel Odintsov 2015-02-12 16:04:35 +03:00
parent 74e8fe2c3e
commit b869d7a2ee

@ -0,0 +1,35 @@
Installing netmap in FreeBSD
Try to build kernel module for current kernel:
```bash
cd /usr/src/sys/modules/netmap
make
make install
kldload netmap
```
But you could hit this bug:
```bash
KLD netmap.ko: depends on kernel - not available or version mismatch
linker_load_file: Unsupported file type
```
And should rebuild kernel manually.
Install SVN:
```bash
pkg install devel/subversion
```
Download base repository for FreeBSD 10 stable (replace 10 by your FreeBSD version):
```svn checkput https://svn0.ru.freebsd.org/base/stable/10 /usr/src```
Build and install new kernel:
```bash
cd /usr/src/sys/amd64/conf
cp GENERIC KERNELWITHNETMAP
cd /usr/src
make buildkernel KERNCONF=KERNELWITHNETMAP
make installkernel KERNCONF=KERNELWITHNETMAP
```