You are not logged in.
I installed clear archlinux system from CD
now I want to install serveral packages
I add line in some conf file about
http_proxy = "http://10.0.3.1:4000"
Yesterday i succsessful downloaded several packages,but now
i receive
network is unreachable
I looked to ifconfig - everything is perfect, proxy server squid on 10.0.3.1 works without any authentication,
the resolv.conf didn't changed.
Offline
grep is your friend.
-n Prefix each line of output with line number
-i Ignore case distinctions
-R Search all subdirectories (recurse)
http://10.0.3.1:4000 The pattern you want to search for
/etc The directory you want to look in (in Arch, most configuration files will be in the /etc directory)
grep -n -i -R http://10.0.3.1:4000 /etc
Offline
by default there is a line in rc.conf
gateway="default gw 10.0.3.1"
ROUTES=(!gateway)
it needs to be changed on ROUTES=(gateway)
Offline