Quote:
Originally Posted by pirmas
I gave it a short but there were two main issues: the link in that post is for ubuntu, I don't know how to translate ubuntu-speak into fedora-speak so I don't have an "options" command (or so says my terminal). p/quote]
Yeah, I should have done a simple fast howto that has only what you need to do.
pquote]Then I don't have an /etc/modprobe.d/sound.conf so there is nothing to be done there.
|
You'll have to create it, it's just a simple text file, as root or by using sudo, using whatever editor you prefer. All you need in it is these lines:
Code:
options snd-hda-intel enable_msi=0 probe_mask=0xffff,0xfff2
options snd-hda-intel model=auto
Quote:
|
Later, when editing /etc/pulse/default.pa it just causes sound to disappear entirely
|
That's okay...pulse is like that...it'll start working properly once everything is set and after a reboot. you really only need to add just one more line in /etc/pulse/default.pa, put it at the location described in that post, that's the best place::
Code:
load-module module-alsa-sink device=hw:1,3
Quote:
|
and when I attempt to run alsamixer I am just told that I have been rejected even when I use sudo or am set as root.
|
Probably a groups issue, you'll probably need to add your user to a couple of groups. you can use system-config-users to do it, though the UI is a bit confusing, or use usermod on the commandline as root:
Code:
usermod -G GROUPS -a USERNAME
Most likely it will be:
Code:
usermod -G audio pulse-access pulse -a USERNAME
I am using a PNY graphics card if that makes a difference. I am very irked that the broken car worked find with sound (but not video) and the new graphics card works fine with video (but not audio).
Quote:
|
This was supposed to help us with netflix and stuff, but has become just a hassle.
|
Netflix doesn't work on Linux, as far as I know.
Quote:
|
I assume the drivers on the CD are easily obtainable via a simple yum update.
|
Not exactly. You should have at least limited or better 3D support right now via Nouveau, but for some cards and some use cases the Linux version of the proprietary driver obtained via RPMFusion (not the nvidia site itself) is better.
Install the RPMfusion repos as normal, via the web browser, it's easy:
http://rpmfusion.org/Configuration
Then you will need to blacklist nouveau, find /etc/default/grub and see if there's a GRUB_CMDLINE_LINUX line full of options in quotes. if there is, as root or sudo add a
Code:
rdblacklist=nouveau
at the end of it inside the quotes
and then:
Code:
grub2-mkconfig -o /boot/grub2/grub.cfg
Then since you're using a GT210 simply do a:
Code:
yum install akmod-nvidia
Then reboot...voila.
CronoCloud