LINUX- Centos deactivate firewall

Centos deactivate firewall

Just type the follwing :

/sbin/service iptables save /sbin/service ip6tables save /sbin/service iptables off /sbin/service ip6tables off /sbin/service iptables stop /sbin/service ip6tables stop

off -> turn off the firewall. stop -> stop the firewall and open system. iptables -> IPv4 firewall. ip6tables -> IPv6 firewall.

Possibly Related Posts:

Linux local privilege escalation via SUID
How to uninstall Vmware workstation v 8.0.0.471780.bundle
Linux : Flash fullscreen doesn’t work on Ubuntu 10.10
VCP Home LAB : Part -3
VCP Home LAB – part-2

aptitude versus apt-get

Important Update Apparently the new version of apt-get in Edgy Eft (Ubuntu 6.10) has a function that allows you to remove unused dependencies when removing an application: sudo apt-get autoremove applicationname

So the points outlined on this page about using aptitude over apt-get are largely irrelevant if you’re using Edgy Eft (6.10), Feisty Fawn (7.04), [...]