我想将一些linux命令转换为OSX。(小牛队10.9.4)
root@bt:/# /etc/init.d/apache2 start (will "sudo apachectl start" do the same?)
root@bt:/# echo “some Site Goes Here!” > /var/www/index.html
现在我有一个我在macbook本地主机(8080)上托管的站点。那么echo localhost:8080 > /var/www/index.html
在OSX中也会如上所述吗?
下一组cammands我不知道如何在OSX中替换。请帮忙
root@bt:/# iptables -t nat --flush
root@bt:/# iptables --zero
root@bt:/# iptables -A FORWARD --in-interface eth0 -j ACCEPT
root@bt:/# iptables -t nat --append POSTROUTING --out-interface eth0 -j MASQUERADE
# Forward to our site
root@bt:/# iptables -t nat -A PREROUTING -p tcp --dport 80 --jump DNAT --to-destination <Proxy’s IP>
iptable
这些东西感到困惑。你介意我通过我在问题中发布的命令告诉我他们在做什么吗?你的命令在做什么?