- make
- gcc
- g++
To install those two, you can run
apt-get update && apt-get install make gcc g++
.
(Alternatively, you can install the package build-essential
)
diff --git a/L2jOne_C6_Interlude/data/html/admin/server_menu.htm b/L2jOne_C6_Interlude/data/html/admin/server_menu.htm | |
index 1814604..f289e41 100644 | |
--- a/L2jOne_C6_Interlude/data/html/admin/server_menu.htm | |
+++ b/L2jOne_C6_Interlude/data/html/admin/server_menu.htm | |
@@ -18,7 +18,7 @@ | |
Reload | |
<table width=240> | |
<tr> | |
- <td><combobox width=160 height=21 var="cb" list=admin;announcement;buylist;config;crest;cw;door;htm;item;multisell;npc;npcwalker;script;skill;teleport;zone;></td> | |
+ <td><combobox width=160 height=21 var="cb" list=admin;announcement;buylist;config;crest;cw;door;dress;htm;item;multisell;npc;npcwalker;script;skill;teleport;zone;></td> |
### 1: Drop invalid packets ### | |
/sbin/iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP | |
### 2: Drop TCP packets that are new and are not SYN ### | |
/sbin/iptables -t mangle -A PREROUTING -p tcp ! --syn -m conntrack --ctstate NEW -j DROP | |
### 3: Drop SYN packets with suspicious MSS value ### | |
/sbin/iptables -t mangle -A PREROUTING -p tcp -m conntrack --ctstate NEW -m tcpmss ! --mss 536:65535 -j DROP | |
### 4: Block packets with bogus TCP flags ### |
#!/bin/bash | |
# Based on: http://www.systutorials.com/5450/improving-sshscp-performance-by-choosing-ciphers/#comment-28725 | |
# | |
# You should set up PublicKey authentication so that you don't have to type your | |
# password for every cipher tested. | |
set -o pipefail | |
ciphers="$@" |