lxzndr
Group: Members
Posts: 4
Joined: Sep. 2006 |
|
Posted: Sep. 26 2006,16:41 |
|
You need to change two of your lines: ok: echo nameserver xxx.xx.xxx.2 > /etc/resolv.conf change: echo nameserver xxx.xx.xxx.4 >> /etc/resolv.conf change: echo nameserver xxx.xx.xxx.6 >> /etc/resolv.conf
> means put the output into this file (and replace everything in it) >> means to APPEND the output into this file.
you can also put it all as one line
Code Sample | echo nameserver xxx.xx.xxx.2 xxx.xx.xxx.4 xxx.xx.xxx.6 > /etc/resolv.conf
|
I have only just started working with DSL for a very specific project this past week, and I've been doing alot of remastering tests, including using fixed IP addresses. One item you may want to add to that is
Code Sample | echo search yourdomain.com > (or >> if it follows others) /etc/resolv.conf
|
-Mike
|