











CompTIA
Exam Vouchers
Save money on CompTIA exams
| Question of the day
Sign up to receive
interactive practice questions
for MCSE, CompTIA
Cisco and other exams
| TestKing
Get MCSE, MCSD, CCNA, CCNP,A+, N+ and many more | * ExamSheets *
Guide for Success!
Actual Questions & Answers
MCSE, MCSD, A+ ,CCNA, CCNP
Oracle 8i, Oracle 9i Online practice tests
Certification sites Online university Online college Online education Distance learning Software forum Server administration forum Programming resources
|
|  |
Pages (3): [1] 2 3 »
iggy4270
Seriously

Registered: May 2002 Location: Cambridge Country: United States State: Certifications: A+ Working on: Procrastination, and inner peace still.
Total Posts: 869
|
|
ISP set up
Back to trying to configure my ISP. As I stated earlier I have the Instructions from earthlink. Here's the first 2 steps that they sent 1. First make sure that you have the two programs pppd and chat by doing a whereis command. I did and I do have them. 2. Once you locate the files, we'll need to manually edit them in vi, you'll need to change to the /etc directory first. then locate the following files: /etc/resolv.conf
and /etc/HOSTNAME. Now here's the problem. whether I try in root or logged on as iggy I get the following after I type in /etc/resolv.conf.... bash: /etc/resolv.conf: permission denied. I'm confused, as the sole administrator do I not have the right to edit files or is this a security feature that I am unaware of. 
__________________
Learn the rules so you can break them properly...
Report this post to a moderator
|
|
12-15-02 05:05 AM
|
|
Boulware5
Moderator M

Registered: Mar 2001 Location: Country: USA State: Certifications: A+, Network+, Linux+, CST, A.A.S degree in CIS LAN concentration Working on: BS degree, CCNA, Security+
Total Posts: 3283
|
|
root should be able to open it. As root, cd to that directory and give a ls -l. Then you can use the chmod command to change its permission. Let me know how it turns out.
__________________
"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
-- Ben Franklin
http://www.stopfcc.com/
Report this post to a moderator
|
|
12-15-02 05:10 AM
|
|
mikop
Supa SUPA MAN!

Registered: Mar 2002 Location: Gimpville Country: United States State: Certifications: USDA Certified Worthless Organic Matter Working on: USDA Certified Grade A SPAM
Total Posts: 2250
|
|
|
12-15-02 05:11 AM
|
|
Boulware5
Moderator M

Registered: Mar 2001 Location: Country: USA State: Certifications: A+, Network+, Linux+, CST, A.A.S degree in CIS LAN concentration Working on: BS degree, CCNA, Security+
Total Posts: 3283
|
|
LOL, good eyes, mikeop. I didn't notice he just typed "/etc/resolv.conf". To edit a file, iggy, it's "editor [name of file]".
__________________
"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
-- Ben Franklin
http://www.stopfcc.com/
Report this post to a moderator
|
|
12-15-02 05:13 AM
|
|
ccieToBe
Wireless Fanatic

Registered: Jul 2000 Location: Blue Ridge, North Georgia Country: US State: Certifications: CCDA, CNA, MCP, Network+, A+, BSIT Working on: Security+
Total Posts: 2210
|
|
What's happening is that you're trying to execute a configuration file. To edit it, use the command "program filename" where program is the name of the editer you want to use. vi works, but if you're not familiar with it, ee and pico are much more intuitive. It seems like most OSS OSs come with one or the other.
Report this post to a moderator
|
|
12-15-02 05:13 AM
|
|
mikop
Supa SUPA MAN!

Registered: Mar 2002 Location: Gimpville Country: United States State: Certifications: USDA Certified Worthless Organic Matter Working on: USDA Certified Grade A SPAM
Total Posts: 2250
|
|
he is trying to execute them by typing it in bash
[root@eva3 etc]# /etc/resolv.conf
bash: /etc/resolv.conf: Permission denied
[root@eva3 etc]# ls -l resolv.conf
-rw-r--r-- 1 root root 24 Dec 10 05:42 resolv.conf
[root@eva3 etc]#
Report this post to a moderator
|
|
12-15-02 05:15 AM
|
|
mikop
Supa SUPA MAN!

Registered: Mar 2002 Location: Gimpville Country: United States State: Certifications: USDA Certified Worthless Organic Matter Working on: USDA Certified Grade A SPAM
Total Posts: 2250
|
|
|
12-15-02 05:16 AM
|
|
Boulware5
Moderator M

Registered: Mar 2001 Location: Country: USA State: Certifications: A+, Network+, Linux+, CST, A.A.S degree in CIS LAN concentration Working on: BS degree, CCNA, Security+
Total Posts: 3283
|
|
quote: Originally posted by ccieToBe
What's happening is that you're trying to execute a configuration file. To edit it, use the command "program filename" where program is the name of the editer you want to use. vi works, but if you're not familiar with it, ee and pico are much more intuitive. It seems like most OSS OSs come with one or the other.
Yeah, use PICO. It's a lot easier than vi. With vi you have to know some commands, but pico is very straightforward.
# pico /etc/resolv.conf
__________________
"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
-- Ben Franklin
http://www.stopfcc.com/
Report this post to a moderator
|
|
12-15-02 05:17 AM
|
|
iggy4270
Seriously

Registered: May 2002 Location: Cambridge Country: United States State: Certifications: A+ Working on: Procrastination, and inner peace still.
Total Posts: 869
|
|
Hey great response guys thanks. But what I understood from the instructions was that I first had to change to /etc ,pull the file and then go into vi and edit it. Bare with me.
__________________
Learn the rules so you can break them properly...
Report this post to a moderator
|
|
12-15-02 05:18 AM
|
|
Boulware5
Moderator M

Registered: Mar 2001 Location: Country: USA State: Certifications: A+, Network+, Linux+, CST, A.A.S degree in CIS LAN concentration Working on: BS degree, CCNA, Security+
Total Posts: 3283
|
|
quote: Originally posted by iggy4270
Hey great response guys thanks. But what I understood from the instructions was that I first had to change to /etc ,pull the file and then go into vi and edit it. Bare with me.
You can do that -or- you can type pico /etc/resolv.conf. Does the same. If you feel more comfortable, do:
# cd /etc
# pico resolv.conf
__________________
"They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety."
-- Ben Franklin
http://www.stopfcc.com/
Report this post to a moderator
|
|
12-15-02 05:19 AM
|
|
|
Featured site: MCSE, MCSD, CompTIA, CCNA training videos
Forum Rules: Who Can Read The Forum? Any registered user or guest.
Who Can Post New Topics? Any registered user.
Who Can Post Replies? Any registered user.
Changes: Messages can be edited by their author.
Posts: HTML code is OFF. Smilies are ON. vB code is ON. [IMG] code is ON. |
|
ExamNotes forum archive
|