i did all that, with the ctrl key rather than the option key.Cameron_Syd wrote:Yeap all that plus the 65.54 crap as well
Then Option O (this will write the file)
And or Option X and answer yes to safe
then i get a permission error?
a.
i did all that, with the ctrl key rather than the option key.Cameron_Syd wrote:Yeap all that plus the 65.54 crap as well
Then Option O (this will write the file)
And or Option X and answer yes to safe
I got the same thing here.alaero wrote:i did all that, with the ctrl key rather than the option key.Cameron_Syd wrote:Yeap all that plus the 65.54 crap as well
Then Option O (this will write the file)
And or Option X and answer yes to safe
then i get a permission error?
a.
I asked my friend, he helped and now I've got it working fine.Cameron_Syd wrote:Again if you do not know these basic unix commands, I would ask a mate to help you .. as you can stuff things up!
Code: Select all
sudo cp /etc/hosts /etc/hosts.bak
sudo nano /etc/hostsCode: Select all
65.54.239.210 messenger.hotmail.comCode: Select all
sudo cp /etc/hosts.bak /etc/hostsabrenecki wrote:To the geeks here: I herald from Ubuntu, so hence my use of sudo instead of su.
Here's how foodtastenice and I solved his problem over Jabber. (Slightly modified to back up /etc/hosts in case you screw something up.)
1. Open Terminal.
2. Type this:When you type the first command you will be asked for your password. (Note: You must be an administrator)Code: Select all
sudo cp /etc/hosts /etc/hosts.bak sudo nano /etc/hosts
When you type the second command, you will open a command-line text editor called 'nano'.
3. Find the first line of Messenger garbage, and move the cursor to it. All the stuff we want to remove looks like this:To move the cursor (the grey box), press the arrow key down until it's over the '6'.Code: Select all
65.54.239.210 messenger.hotmail.com
4. Now press the forwards-delete key until all the lines referencing 'hotmail', 'messenger', 'live', or 'passport' are gone.
5. Press Control + O (letter) to save the file. (Note Control, not Command.) Press return to confirm the file name.
6. Press Control + X to exit.
7. Check that everything works. If it does, yay.
If you broke something, run:to revert to the backup we made in Step 1.Code: Select all
sudo cp /etc/hosts.bak /etc/hosts
Thanks very much, you helped me! Thanks again.abrenecki wrote:To the geeks here: I herald from Ubuntu, so hence my use of sudo instead of su.
Here's how foodtastenice and I solved his problem over Jabber. (Slightly modified to back up /etc/hosts in case you screw something up.)
1. Open Terminal.
2. Type this:When you type the first command you will be asked for your password. (Note: You must be an administrator)Code: Select all
sudo cp /etc/hosts /etc/hosts.bak sudo nano /etc/hosts
When you type the second command, you will open a command-line text editor called 'nano'.
3. Find the first line of Messenger garbage, and move the cursor to it. All the stuff we want to remove looks like this:To move the cursor (the grey box), press the arrow key down until it's over the '6'.Code: Select all
65.54.239.210 messenger.hotmail.com
4. Now press the forwards-delete key until all the lines referencing 'hotmail', 'messenger', 'live', or 'passport' are gone.
5. Press Control + O (letter) to save the file. (Note Control, not Command.) Press return to confirm the file name.
6. Press Control + X to exit.
7. Check that everything works. If it does, yay.
If you broke something, run:to revert to the backup we made in Step 1.Code: Select all
sudo cp /etc/hosts.bak /etc/hosts