I've agreed its not worth risking. Mostly because My TV out put won't run through my PC speakers in Ubuntu and I could figure out how to fix that. And also I couldn't back up my windows since my external HD is formatted as FAT32. I'm thinking about buying another internal HD and installing it on that though although I haven't had any luck finding laptop mini HDs
Ah don't give up so quickly! What video card do you have? The problem with Ubuntu is that it doesn't load proprietary drivers on install, you have to install them separtately, which isn't always easy.
First go to a terminal and do:
sudo nano /etc/apt/sources.list
You will see a list of repositories beginning with 'deb' and some of them are escaped using the # mark. Delete the # in front of all of the repositiries that are escaped, and add a # mark to the one that says cd-rom in it, at the top of the page. Then save.
Then do:
sudo apt-get update
sudo apt-get upgrade
Then install Automatix, which provides the scripts that you'll need to load all of the drivers, in one easy to use program. I find Automatix to be the easiest way to do this, although you can also install them from scratch. Your video driver may be another issue, so we may have to hack you xorg.conf file!
Have fun!
Hi there,
Just out of curiosity and tell me if I'm wrong - wouldn't it easier to do this:
Open /etc/asound.conf and find:
# configuration file, you once again have access to unmixed analog output using
# the "analog" device.
pcm.!default {
type plug
## Uncomment the following to use "mixed-analog" by default
slave.pcm "dmix-analog"
## Uncomment the following to use (unmixed) "digital" by default
# slave.pcm "digital-hw"
## Uncomment the following to use "mixed-digital" by default
# slave.pcm "dmix-digital"
}
And change to this:
# configuration file, you once again have access to unmixed analog output using
# the "analog" device.
pcm.!default {
type plug
## Uncomment the following to use "mixed-analog" by default
# slave.pcm "dmix-analog"
## Uncomment the following to use (unmixed) "digital" by default
# slave.pcm "digital-hw"
## Uncomment the following to use "mixed-digital" by default
slave.pcm "dmix-digital"
}
"dmix-analog" line has been commented out and "dmix-digital" line has been uncommented from default. This would eliminate video card and chipset association and thwart the use of proprietary drivers.
I love Ubuntu and the way root has been disallowed
per se. If I had it my way - I would disable "Is" by default, but that's just me.
Also, regarding this line:
sudo nano /etc/apt/sources.list
Not everybody has nano installed. There's pico, vi, emacs, etc. As a programmer I use emacs for almost everything in relation to the Linux environment except for C and C#. I'm not saying you're wrong - I'm just saying.