Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free.
ok.. when i installed fedora core 2, i selected the firewall enabled, now i wanta add ports to the allowed thingie, how i do that? or how i disable or remove the firewall it self//
By default iptables is in /sbin not /bin which is not in your path by default.
I would recommend adding the line:
PATH="/sbin:/usr/sbin:$PATH"
to ~/.bashrc
/sbin/iptables -L lists the filter rules
/sbin/iptables -t nat -L lists the NAT table
/sbin/iptables -t mangle -L for the mangle table. (prob never use those)
If you want to shutoff iptables just run:
/sbin/service iptables stop
If you want to shutoff iptables from starting at boot up run:
/sbin/chkconfig iptables off
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.