/etc/modprobe.d/ "custom file" how do I make one in a terminal?

Soldato
Joined
7 Jan 2007
Posts
10,607
Location
Sussex, UK
hI,

Im trying to install my hvr-3000 Tv card. Im using the guide below:

http://www.linuxtv.org/wiki/index.ph...WinTV-HVR-3000



Code:
Single Frontend Diff (sfe)

Now all you need to do is edit /etc/modprobe.conf to have

This option will load the DVB-S/S2 frontend and is the default:
options cx88-dvb frontend=0

This option will load the DVB-T frontend:
options cx88-dvb frontend=1

NOTE: On Debian and Ubuntu Systems you will have to enter /etc/modprobe.d/ and create a custom named file that holds the above mentioned content.

It says I have to "NOTE: On Debian and Ubuntu Systems you will have to enter /etc/modprobe.d/ and create a custom named file that holds the above mentioned content"

How do i create this custom file in a terminal?

Hope you can help.
 
most linux systems just have one file, /etc/modprobe.conf that holds modprobe information.

Ubuntu/Debian have a folder called /etc/modprobe.d/ and any files in there will be read as entries for modprobe config.

So:
cd /etc/modprobe.d/
sudo gedit whatever
(or 'sudo vi whatever' if you feel like a man ;) )
and add your stuff in there.

//TrX
 
Back
Top Bottom