|
Just Beginning
Introduction Is Ubuntu for You?* Which Ubuntu to pick? Installing Ubuntu inside XP Plan Partitions Download and Burn Ubuntu Burn ISO from Mac Install Desktop CD Ubuntu Install Alternate CD Ubuntu* Modest Specs Where's the Terminal? Password in Terminal Install Software Extra Repositories* File Permissions Security in Ubuntu Next Steps Beyond the Basics Playing Around Troubleshooting * Off-site link |
Troubleshooting XSometimes new users, expecting a graphical environment after installing Ubuntu, end up at a black screen with some white text that has a login prompt. When they log in, they see this: username@ubuntu:~$
I haven't experienced this myself, but I've seen it happen to other new users, either because they accidentally did a server install... or Ubuntu just did something funky.
Do you have a graphical environment installed? sudo apt-cdrom add This will add the CD as a software package source since you can't get packages from the internet. To make sure you have a graphical environment installed:
sudo aptitude update
sudo aptitude install ubuntu-desktop If you didn't already have it installed, you'll notice Ubuntu downloading and installing a whole bunch of packages, either from the internet or from your CD. If you did have it installed, you'll simply be told ubuntu-desktop is already the newest version.
Run the graphical environment
sudo /etc/init.d/gdm start
This should get you to a graphical login screen. If it says it's starting the GNOME Display Manager but after ten seconds or so... it doesn't actually appear to start, try pressing Control-Alt-F7, which should get you to the graphical login screen.
You have a graphical environment, but it won't show the way I want it to Well, then press Control-Alt-F1 and try this:
sudo dpkg-reconfigure xserver-xorg
This will pop up a text-based graphical "wizard" that will ask you questions about your keyboard, your mouse, your graphics card, and your monitor. Answer the questions as best you can. If you don't know the answer to a question, just go with the default and press Enter. When you're done, press Control-Alt-F7 to get back to graphical mode and then Control-Alt-Backspace to reset the X server (so your changes can take effect).
Next steps If you're still stuck at the command prompt but want to do some research on how to fix the problem, boot up the Desktop CD or install and use the text-only web browser called Lynx: sudo apt-get update
sudo apt-get install lynx lynx
Other variations If you're using Xubuntu, it's the same deal--just replace ubuntu-desktop with xubuntu-desktop.
|