Quote:
|
Question 1 : How do i install / login to "root"
|
You really just need to change the 'root' password.
You can change the 'root' account password the following way:
i) open a command terminal (click on Applications menu, then click Accessories, then click Terminal)
ii) type in the following:
You will be first prompted for your own password, so type that password in.
Then you will be prompted (twice) to enter a new password for the root account.
Now you will be able to login as root, here are two ways you can do that:
i) Type 'su' into a terminal window and enter the new root password that you had set earlier.
OR
ii) Hold down CTRL+ALT+F1 and then type in the user name 'root' and then type in the new password that you created for 'root' earlier. To return to the Gnome desktop, simply hold down CTRL+ALT+F7
IMPORTANT: You should avoid logging in as 'root' as much as possible, and should further avoid leaving yourself signed in as 'root' for extended periods of time. Use the 'exit' command when your finished 'root'ing.
Quote:
Question 2 : When I try to start alot of games it goes to a black screen
like its going to start up but then it goes back to desktop.
|
Which games?
Quote:
|
Question 3 : When i try to change screen resolution The higest It can go it is 800 by 600
|
You will need to edit the xorg.conf file, do the following:
i) i) open a command terminal (click on Applications menu, then click Accessories, then click Terminal), and then type:
Code:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
sudo pico /etc/X11/xorg.conf
enter your own password and then scroll through the file, make sure you have the following lines in there:
Code:
Section "Screen"
Identifier "Default Screen"
Device "<name of your graphics card>"
Monitor "<name of your monitor>"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Basically, for each depth, there is a list of screen resolutions, you should make sure that the screen resolution that you want to use is listed for each display depth.
If you want to run at a reolution of "1280x1024", then you will need to have it listed as shown above.
Edit the file as required and then save out the file using CTRL+O to save and then CTRL+X to exit.
Regards,
Greengrocer