Quote Originally Posted by gsn313 View Post
Awesome! Thanks for the help! So I went to /etc in the file manager and I only see modules-load.d, and inside of there is something called "cups-filters.conf" which has all of this in it:

# Parallel printer driver modules loading for cups
# LOAD_LP_MODULE was 'yes' in /etc/default/cups
lp
ppdev
parport_pc


There isn't a snd_powermac to comment out, so I'm thinking this is the wrong location. Am I right?
That's not the right file. Cups is for printing services.

it should be just /etc/modules. Maybe file manager hides it from you like windows since your normal user account probably doesn't have rights to it.

Open a terminal and try

Code:
ls -la /etc/modules
Then you should see the file. Then you can edit it with nano.

Code:
sudo cp /etc/modules /etc/modules.orig
sudo nano /etc/modules
You should be prompted for your password to "elevate" your rights to root for he commands.