📄 makefile
字号:
# A small and fast one process per port inetd replacement for TCP/IPv4# --------------------------------------------------------------------# # Instead of having a line like this in inetd.conf# # finger stream tcp nowait nobody /usr/sbin/tcpd /usr/sbin/in.fingerd# # Run the command below. Note that linetd will also change its uid# # linetd -p finger -u nobody /usr/sbin/in.fingerd in.fingerd# # To bind only the localhost address and limit the number of children # to 5 at a time# # linetd -p finger -i 5 -b localhost -u nobody /usr/sbin/in.fingerd in.fingerd# # To stop linetd use fuser## fuser -n tcp -s -k -TERM finger## To see all the other switches and more examples type## linetd -h# # Linetd can idsa for access control and logging, but this is optional.# Idsa can be downloaded from http://jade.cs.uct.ac.za/idsa/ # You will need version 0.93.8 or newerlinetd: linetd.c gcc -s -Wall -O2 -fomit-frame-pointer -DVERSION=\"1.3\" $(shell which idsalog > /dev/null && echo "-DUSE_IDSA -lidsa") linetd.c -o linetdinstall: linetd install linetd /usr/local/sbin# auto{make,conf} is overkill. I believe in readable makefiles ;)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -