Originally posted by: iamaelephant
I'm not an idiot, I'm just new to this. You shouldn't expect people to just know something with no experience, it's ridiculous. This is why no one likes the Linux community - your extreme elitist attitudes. Thanks to the people who gave me sensible, coherent answers. I'm now aware that a totally unrestricted root account is not only unnecessary but also pretty much impossible.
I think the problem is that linux, and unix-style operating systems in general, have some very different paradigms than the windows operating system. which means you may be a very clever windows user, but that might not help you when you move to linux, because the way things are done will seem a bit alien or odd.
to edit that text file, the typical approach would be to do it from the command line. In other words, you will need to open up a "terminal window" (can do this from the menu) and enter in some commands.
to change to the right directory, you use the "cd" command:
e.g.,
cd /etc/X11
type this in the terminal window, hit return, and you should be taken to the correct directory.
To list the contents of the directory you are in, type:
ls
To move up one level in the directory structure:
cd ..
To edit a text file, you could use any number of text editing programs (nano, gedit, vi, etc). I think nano is in ubuntu, so you could type:
nano xorg.conf
and a small text editor will open in the command window and allow you to edit the text.
If you prefer a gui text editor, you could try "gedit" by typing:
gedit xorg.conf
This should open up a new application window which will allow you to edit the test using the full mouse/ windows gui experience. You should be able to save changes by choosing the "save" option from the menu.