mirror of https://github.com/F-Stack/f-stack.git
Fix #3: Compiling errors on Ubuntu.
On Ubuntu, you should use gawk instead of the default mawk.And use bash to excute `./configure --prefix=/usr/local/nginx_fstack --with-ff_module`.
This commit is contained in:
parent
8c0855abf9
commit
82aa761e87
|
@ -59,6 +59,9 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
|
|||
ifconfig eth0 down
|
||||
python dpdk-devbind.py --bind=igb_uio eth0 # assuming that use 10GE NIC and eth0
|
||||
|
||||
# On Ubuntu, use gawk instead of the default mawk.
|
||||
#sudo apt-get install gawk # or execute `sudo update-alternatives --config awk` to choose gawk.
|
||||
|
||||
# Compile F-Stack
|
||||
cd ../../lib/
|
||||
make
|
||||
|
@ -68,7 +71,7 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
|
|||
#### Nginx
|
||||
|
||||
cd app/nginx-1.11.10
|
||||
./configure --prefix=/usr/local/nginx_fstack --with-ff_module
|
||||
bash ./configure --prefix=/usr/local/nginx_fstack --with-ff_module
|
||||
make
|
||||
make install
|
||||
cd ../..
|
||||
|
|
Loading…
Reference in New Issue