Arabic Network Howto for any distro:
The following is just a quick draft. Not even in Arabic. But eventually should be. Needs to be translated.
Use lspci to know your ethernet card controller. Look in this howto for the driver and load it. http://tldp.org/HOWTO/Ethernet-HOWTO.html
After loading your driver you can get sure that it is recognized by typing
ifconfig
Usually your card will have network interface name eth0. If your router/modem is running a DHCP server (in other words is set to automaticly give ip addressses to devices connected to it) just use
dhcpcd eth0
Here you must know mainly three things:
ifconfig eth0 192.168.1.1
Where 192.168.1.1 is your IP.
route add default gw 192.168.1.0 eth0
Where 192.168.1.0 is the IP of your router or DSL Modem.
Edit /etc/resolve.conf and put some DNS servers. Put the following
nameserver 192.168.1.0
Where again 192.168.1.0 is the IP of your router or DSL Modem.