Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Problems with /etc/modprobe.conf

103 views
Skip to first unread message

Rodolfo Medina

unread,
Nov 11, 2010, 11:00:01 AM11/11/10
to
Hi all.

Installing the driver for my new printer Samsung ML-1915 (the official Samsung
driver) created the file /etc/modprobe.conf, containing the following stuff:

options parport_pc io=0x378 irq=7 dma=3

Since then, at every boot the following warning message appears:

/etc/modprobe.conf exists but does not include /etc/modprobe.d!

Besides, in the virtual consoles the characters have got smaller, and a few
more strange things happen. So I want to get rid of that file. But if I
remove it, or even only append to it the line:

include /etc/modprobe.d/

, the error message disappear but the printer does not work. It may have
something to do with the load of /dev/mfp4, the printer port.

Please help with this issue.

Thanks for any help
Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org
Archive: http://lists.debian.org/871v6ra...@gmail.com

Rob Owens

unread,
Nov 11, 2010, 11:30:02 AM11/11/10
to
On Thu, Nov 11, 2010 at 03:55:47PM +0000, Rodolfo Medina wrote:
> Hi all.
>
> Installing the driver for my new printer Samsung ML-1915 (the official Samsung
> driver) created the file /etc/modprobe.conf, containing the following stuff:
>
My older Samsung ML-2010 works with the open source "splix" driver. Not
sure if it'll work with yours, but may be worth a try.

-Rob


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/20101111162...@aurora.owens.net

Stephen Powell

unread,
Nov 11, 2010, 11:50:01 AM11/11/10
to
On Thu, 11 Nov 2010 10:55:47 -0500 (EST), Rodolfo Medina wrote:
>
> Installing the driver for my new printer Samsung ML-1915 (the official
> Samsung driver) created the file /etc/modprobe.conf, containing the
> following stuff:
>
> options parport_pc io=0x378 irq=7 dma=3
>
> Since then, at every boot the following warning message appears:
>
> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>
> Besides, in the virtual consoles the characters have got smaller, and a few
> more strange things happen. So I want to get rid of that file. But if I
> remove it, or even only append to it the line:
>
> include /etc/modprobe.d/
>
> , the error message disappear but the printer does not work. It may have
> something to do with the load of /dev/mfp4, the printer port.
>

This is one reason why I do my best to only install Debianized packages
(i.e. packages that have been customized specifically for the Debian
environment, even if they are not official, as opposed to generic
install scripts from vendors that supposedly work with all distributions).

module-init-tools can be configured in one of two ways: you can put everything
in a single file called /etc/modprobe.conf or you can create one or more
files in directory /etc/modprobe.d, such as /etc/modprobe.d/parport.conf,
/etc/modprobe.d/comport.conf, etc. (For compatibility with recent versions
of initramfs-tools, the files in directory /etc/modprobe.d should have an
extension of ".conf".)

If the file /etc/modprobe.conf exists, then all the files in /etc/modprobe.d
are ignored. The Debian distribution prefers the second method, multiple
files in /etc/modprobe.d, and all the official Debian packages are designed
to use that method.

What I would do is something like this. First, eliminate the "include"
record that you added to /etc/modprobe.conf. Then issue the following
commands:

# mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
# update-initramfs -uk `uname -r`
# shutdown -r now

That should do it.

--
.''`. Stephen Powell
: :' :
`. `'`
`-


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/1815883482.309870.1289...@md01.wow.synacor.com

Rob Owens

unread,
Nov 11, 2010, 12:20:02 PM11/11/10
to
On Thu, Nov 11, 2010 at 11:40:15AM -0500, Stephen Powell wrote:
> If the file /etc/modprobe.conf exists, then all the files in /etc/modprobe.d
> are ignored. The Debian distribution prefers the second method, multiple
> files in /etc/modprobe.d, and all the official Debian packages are designed
> to use that method.
>
Are you sure about that? I've used modprobe.conf for stuff like lirc.
If that caused modprobe.d to be ignored, I would have thought something
would have broken. But my systems work fine like that (at least 3 of
them are like this -- all Lenny installs).

-Rob


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/20101111171...@aurora.owens.net

Rodolfo Medina

unread,
Nov 11, 2010, 12:30:02 PM11/11/10
to
Stephen Powell <zlin...@wowway.com> writes:

> On Thu, 11 Nov 2010 10:55:47 -0500 (EST), Rodolfo Medina wrote:
>>
>> Installing the driver for my new printer Samsung ML-1915 (the official
>> Samsung driver) created the file /etc/modprobe.conf, containing the
>> following stuff:
>>
>> options parport_pc io=0x378 irq=7 dma=3
>>
>> Since then, at every boot the following warning message appears:
>>
>> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>>
>> Besides, in the virtual consoles the characters have got smaller, and a few
>> more strange things happen. So I want to get rid of that file. But if I
>> remove it, or even only append to it the line:
>>
>> include /etc/modprobe.d/
>>
>> , the error message disappear but the printer does not work. It may have
>> something to do with the load of /dev/mfp4, the printer port.
>>
>

> [...] First, eliminate the "include"


> record that you added to /etc/modprobe.conf. Then issue the following
> commands:
>
> # mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
> # update-initramfs -uk `uname -r`
> # shutdown -r now


Unfortunately, it doesn't work.


> This is one reason why I do my best to only install Debianized packages
> (i.e. packages that have been customized specifically for the Debian
> environment, even if they are not official, as opposed to generic
> install scripts from vendors that supposedly work with all distributions).


Yes, I agree. After installing the Samsung official driver, I found this:

http://ubuntuforums.org/showthread.php?t=341621

, where Debianized packages are reported. If I can't solve the problem with
/etc/modprobe.conf, I'll try it. Only, there doesn't seem to be support for
ink level checking, which is important, I think.

Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87aalfw...@gmail.com

Stephen Powell

unread,
Nov 11, 2010, 1:10:03 PM11/11/10
to
On Thu, 11 Nov 2010 12:11:12 -0500 (EST), Rob Owens wrote:
> On Thu, Nov 11, 2010 at 11:40:15AM -0500, Stephen Powell wrote:
>> If the file /etc/modprobe.conf exists, then all the files in /etc/modprobe.d
>> are ignored. The Debian distribution prefers the second method, multiple
>> files in /etc/modprobe.d, and all the official Debian packages are designed
>> to use that method.
>
> Are you sure about that? I've used modprobe.conf for stuff like lirc.
> If that caused modprobe.d to be ignored, I would have thought something
> would have broken. But my systems work fine like that (at least 3 of
> them are like this -- all Lenny installs).

Well, that's the way it used to work when module-init-tools first came out,
replacing the older modutils package that was used with 2.4 kernels.
The man page for modprobe.d in Lenny seems to imply this as well. The
second sentence under DESCRIPTION says ...

"/etc/modprobe.conf (or, if that does not exist, all files under the
/etc/modprobe.d directory) specifies those options, as required."

But that is changing. The Squeeze version of the man page reads differently.

"All files underneath the /etc/modprobe.d directory which end with the
.conf extension specify those options as required. (the /etc/modprobe.conf
file can also be used if it exists, but that will be removed in a future
version)."

It's not clear from the Squeeze man page if /etc/modprobe.conf supersedes
or merely supplements the files in /etc/modprobe.d, but I'm guessing based on
historic behavior that it supersedes it. In any case, it looks like a
future version of module-init-tools will eliminate /etc/modprobe.conf;
so it might be a good idea to wean yourself off of it.

--
.''`. Stephen Powell
: :' :
`. `'`
`-

--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/1724612000.312607.1289...@md01.wow.synacor.com

Stephen Powell

unread,
Nov 11, 2010, 1:20:02 PM11/11/10
to
On Thu, 11 Nov 2010 12:25:25 -0500 (EST), Rodolfo Medina wrote:
> Stephen Powell <zlin...@wowway.com> writes:
>> [...] First, eliminate the "include"
>> record that you added to /etc/modprobe.conf. Then issue the following
>> commands:
>>
>> # mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
>> # update-initramfs -uk `uname -r`
>> # shutdown -r now
>
> Unfortunately, it doesn't work.

Can you be a little more specific about that? What are the failure
symptoms?

--
.''`. Stephen Powell
: :' :
`. `'`
`-

--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/371193644.312787.12894...@md01.wow.synacor.com

Rodolfo Medina

unread,
Nov 11, 2010, 1:40:02 PM11/11/10
to
On Thu, 11 Nov 2010 10:55:47 -0500 (EST), Rodolfo Medina wrote:

>> Installing the driver for my new printer Samsung ML-1915 (the official
>> Samsung driver) created the file /etc/modprobe.conf, containing the
>> following stuff:
>>
>> options parport_pc io=0x378 irq=7 dma=3
>>
>> Since then, at every boot the following warning message appears:
>>
>> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>>
>> Besides, in the virtual consoles the characters have got smaller, and a few
>> more strange things happen. So I want to get rid of that file. But if I
>> remove it, or even only append to it the line:
>>
>> include /etc/modprobe.d/
>>
>> , the error message disappear but the printer does not work. It may have
>> something to do with the load of /dev/mfp4, the printer port.


Stephen Powell <zlin...@wowway.com> writes:

>>> [...] First, eliminate the "include" record that you added to
>>> /etc/modprobe.conf. Then issue the following commands:
>>>
>>> # mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
>>> # update-initramfs -uk `uname -r`
>>> # shutdown -r now


Rodolfo Medina wrote:

>> Unfortunately, it doesn't work.


Stephen Powell <zlin...@wowway.com> writes:

> Can you be a little more specific about that? What are the failure
> symptoms?


It's what I reported at first: the warning message disappears but the printer
doesn't work. With /etc/modprobe.conf, the printer works normally.

Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87sjz7v...@gmail.com

Stephen Powell

unread,
Nov 11, 2010, 7:50:02 PM11/11/10
to
On Thu, 11 Nov 2010 13:38:28 -0500 (EST), Rodolfo Medina wrote:
> It's what I reported at first: the warning message disappears but the printer
> doesn't work. With /etc/modprobe.conf, the printer works normally.

So the warning message disappears. Good. But what about the virtual console
characters? Are the characters still smaller than they were before? What
about the other "strange things"? Are they still strange? In other words,
is the failure of the printer to work the only symptom of moving
/etc/modprobe.conf to the /etc/modprobe.d directory and naming it
parport.conf? Does everything else in your system behave the way it did
before you installed the printer driver? Or is something else different?

--
.''`. Stephen Powell
: :' :
`. `'`
`-

--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/1574980059.322368.1289...@md01.wow.synacor.com

Rodolfo Medina

unread,
Nov 12, 2010, 5:30:02 AM11/12/10
to
On Thu, 11 Nov 2010 10:55:47 -0500 (EST), Rodolfo Medina wrote:

>> Installing the driver for my new printer Samsung ML-1915 (the official
>> Samsung driver) created the file /etc/modprobe.conf, containing the
>> following stuff:
>>
>> options parport_pc io=0x378 irq=7 dma=3
>>
>> Since then, at every boot the following warning message appears:
>>
>> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>>
>> Besides, in the virtual consoles the characters have got smaller, and a few
>> more strange things happen. So I want to get rid of that file. But if I
>> remove it, or even only append to it the line:
>>
>> include /etc/modprobe.d/
>>
>> , the error message disappear but the printer does not work. It may have
>> something to do with the load of /dev/mfp4, the printer port.


Stephen Powell <zlin...@wowway.com> writes:

>>> [...] First, eliminate the "include" record that you added to
>>> /etc/modprobe.conf. Then issue the following commands:
>>>
>>> # mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
>>> # update-initramfs -uk `uname -r`
>>> # shutdown -r now

On Thu, 11 Nov 2010 13:38:28 -0500 (EST), Rodolfo Medina wrote:

>> [...] the warning message disappears but the printer


>> doesn't work. With /etc/modprobe.conf, the printer works normally.


Stephen Powell <zlin...@wowway.com> writes:

> So the warning message disappears. Good. But what about the virtual console
> characters? Are the characters still smaller than they were before? What
> about the other "strange things"? Are they still strange? In other words,
> is the failure of the printer to work the only symptom of moving
> /etc/modprobe.conf to the /etc/modprobe.d directory and naming it
> parport.conf? Does everything else in your system behave the way it did
> before you installed the printer driver? Or is something else different?


After moving /etc/modprobe.conf to the /etc/modprobe.d directory and naming it
parport.conf and rebooting, apparently everything else in my system behaves the
way it did before I installed the printer driver. The only problem is that the
printer doesn't work. If I want it to work, I have to leave /etc/modprobe.conf
there where Samsung put it.

Thanks
Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87oc9ua...@gmail.com

Stephen Powell

unread,
Nov 12, 2010, 9:50:02 AM11/12/10
to
On Fri, 12 Nov 2010 05:29:44 -0500 (EST), Rodolfo Medina wrote:
> Stephen Powell <zlin...@wowway.com> writes:
>> So the warning message disappears. Good. But what about the virtual console
>> characters? Are the characters still smaller than they were before? What
>> about the other "strange things"? Are they still strange? In other words,
>> is the failure of the printer to work the only symptom of moving
>> /etc/modprobe.conf to the /etc/modprobe.d directory and naming it
>> parport.conf? Does everything else in your system behave the way it did
>> before you installed the printer driver? Or is something else different?
>
> After moving /etc/modprobe.conf to the /etc/modprobe.d directory and naming it
> parport.conf and rebooting, apparently everything else in my system behaves the
> way it did before I installed the printer driver. The only problem is that the
> printer doesn't work. If I want it to work, I have to leave /etc/modprobe.conf
> there where Samsung put it.

OK, good. The rest of your system is working as before. That's what I wanted
to know. Now look for evidence that the parport_pc module is getting the options
passed to it in the options statement in /etc/modprobe.d/parport.conf. For
example:

dmesg|grep parport

You should see a message that identifies the I/O port address, the interrupt
level (IRQ) and the DMA channel that was specified in
/etc/modprobe.d/parport.conf.

If you do, then it is safe to assume that the correct options are being
passed to the kernel module. And that, after all, is the intended purpose
of /etc/modprobe.d/parport.conf. If the correct options are being passed
to kernel module parport_pc, then the problem must be that something in the
printer driver, perhaps a boot-up script, perhaps not, is explicitly looking
for /etc/modprobe.conf and trying to parse its data. If that is the case,
you may be able to find the script and edit it to look in
/etc/modprobe.d/parport.conf instead. If the logic is in a compiled program,
and the manufacturer does not provide source code for their driver, then
you are pretty much out of luck.

--
.''`. Stephen Powell
: :' :
`. `'`
`-

--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/786888053.333064.12895...@md01.wow.synacor.com

Rodolfo Medina

unread,
Nov 12, 2010, 12:20:01 PM11/12/10
to
On Thu, 11 Nov 2010 10:55:47 -0500 (EST), Rodolfo Medina wrote:

>> Installing the driver for my new printer Samsung ML-1915 (the official
>> Samsung driver) created the file /etc/modprobe.conf, containing the
>> following stuff:
>>
>> options parport_pc io=0x378 irq=7 dma=3
>>
>> Since then, at every boot the following warning message appears:
>>
>> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>>
>> Besides, in the virtual consoles the characters have got smaller, and a few
>> more strange things happen. So I want to get rid of that file. But if I
>> remove it, or even only append to it the line:
>>
>> include /etc/modprobe.d/
>>
>> , the error message disappear but the printer does not work. It may have
>> something to do with the load of /dev/mfp4, the printer port.


Stephen Powell <zlin...@wowway.com> writes:

>>> [...] First, eliminate the "include" record that you added to
>>> /etc/modprobe.conf. Then issue the following commands:
>>>
>>> # mv /etc/modprobe.conf /etc/modprobe.d/parport.conf
>>> # update-initramfs -uk `uname -r`
>>> # shutdown -r now


Stephen Powell <zlin...@wowway.com> writes:

> Now look for evidence that the parport_pc module is getting the options
> passed to it in the options statement in /etc/modprobe.d/parport.conf. For
> example:
>
> dmesg|grep parport
>
> You should see a message that identifies the I/O port address, the interrupt
> level (IRQ) and the DMA channel that was specified in
> /etc/modprobe.d/parport.conf.
>
> If you do, then it is safe to assume that the correct options are being
> passed to the kernel module. And that, after all, is the intended purpose
> of /etc/modprobe.d/parport.conf. If the correct options are being passed
> to kernel module parport_pc, then the problem must be that something in the
> printer driver, perhaps a boot-up script, perhaps not, is explicitly looking
> for /etc/modprobe.conf and trying to parse its data. If that is the case,
> you may be able to find the script and edit it to look in
> /etc/modprobe.d/parport.conf instead. If the logic is in a compiled program,
> and the manufacturer does not provide source code for their driver, then
> you are pretty much out of luck.


# dmesg|grep parport
[ 11.593036] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
[ 71.028713] lp0: using parport0 (interrupt-driven).


Then I edited the `install.sh' script as you suggested. I'm pretty sure to
have replaced all the possible occurrences of any expression resulting in
/etc/modprobe.conf with the corrispondent instance that gives
/etc/modprobe.d/parport.conf in a clever manner. Then I reinstalled and
rebooted, but the printer is dead. It lives up again if I restore things as
the manufacturer wants: /etc/modprobe.conf. Editing that script is just the
same as merely replacing by hand /etc/modprobe.conf with
/etc/modprobe.d/parport.conf.

Now I wish to uninstall all and use the debianized packages at:

http://www.bchemnet.com/suldr/

Are they the same that you use? Can you check the toner level with them?
That's the only reason Samsung software is useful. If there's another way, I'm
going to uninstall it.

Thanks
Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87wroi1...@gmail.com

Stephen Powell

unread,
Nov 13, 2010, 11:00:02 AM11/13/10
to
On Fri, 12 Nov 2010 12:15:31 -0500 (EST), Rodolfo Medina wrote:
> # dmesg|grep parport
> [ 11.593036] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
> [ 71.028713] lp0: using parport0 (interrupt-driven).

These are the defaults; so that's not proof that the options are being
processed. Those are the messages that my system issues too, and
I'm not using an options statement for parport_pc. You might try
changing the options to non-default values, just for grins,
and see what happens.

> Then I edited the `install.sh' script as you suggested. I'm pretty sure to
> have replaced all the possible occurrences of any expression resulting in
> /etc/modprobe.conf with the corrispondent instance that gives
> /etc/modprobe.d/parport.conf in a clever manner. Then I reinstalled and
> rebooted, but the printer is dead. It lives up again if I restore things as
> the manufacturer wants: /etc/modprobe.conf. Editing that script is just the
> same as merely replacing by hand /etc/modprobe.conf with
> /etc/modprobe.d/parport.conf.

Not necessarily. There may be other scripts besides install.sh that
contain references to /etc/modprobe.conf. For example, there may be
a script in /etc/init.d. There may also be a reference to /etc/modprobe.conf
in compiled code than you cannot see.


>
> Now I wish to uninstall all and use the debianized packages at:
>
> http://www.bchemnet.com/suldr/
>
> Are they the same that you use? Can you check the toner level with them?
> That's the only reason Samsung software is useful. If there's another way, I'm
> going to uninstall it.

I don't have or use that model of printer; so I don't know. So far, all the
printers I have attempted to use with Debian are old enough that there are
Debianized drivers built into CUPS/foomatic that work just fine. As for checking
the toner level, most printers I have used have a "toner low" light on the
printer itself which warns me that the toner is about to run out, and that
has always been adequate enough for my purposes.

I can't speak for the drivers to which you are referring, but in general
I would recommend using a driver package that has been customized for
the Debian environment.

--
.''`. Stephen Powell
: :' :
`. `'`
`-

--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/1063856571.360422.1289...@md01.wow.synacor.com

Rodolfo Medina

unread,
Nov 15, 2010, 7:00:02 AM11/15/10
to
Rodolfo Medina <rodolfo...@gmail.com> writes:

> Installing the driver for my new printer Samsung ML-1915 (the official
> Samsung driver) created the file /etc/modprobe.conf, containing the following
> stuff:
>
> options parport_pc io=0x378 irq=7 dma=3
>
> Since then, at every boot the following warning message appears:
>
> /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>
> Besides, in the virtual consoles the characters have got smaller, and a few
> more strange things happen. So I want to get rid of that file. But if I
> remove it, or even only append to it the line:
>
> include /etc/modprobe.d/
>
> , the error message disappear but the printer does not work. It may have
> something to do with the load of /dev/mfp4, the printer port.


The problem was due to the fact that, following the (wrong) suggestion at:

https://bbs.archlinux.org/viewtopic.php?id=97460

, I had appended to /etc/modprobe.d/blacklist the following line:

blacklist usblp

Now it is solved removing that line from /etc/modprobe.d/blacklist and
appending to /etc/modprobe.conf the following:

include /etc/modprobe.d/

, as reported above. Thanks to all and particularly to Stephen Powell.

Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87oc9qi...@gmail.com

Rodolfo Medina

unread,
Nov 15, 2010, 7:00:03 AM11/15/10
to
Stephen Powell <zlin...@wowway.com> writes:


The problem occurs for me with 2.6.32-bpo.4-686 and 2.6.32-bpo.5-686 but not
with 2.6.32-bpo.3-686. This seems to confirm for newer kernels what Stephen
says.

Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87r5emi...@gmail.com

Lisi

unread,
Dec 22, 2010, 6:30:01 PM12/22/10
to
On Thursday 11 November 2010 15:55:47 Rodolfo Medina wrote:
> Installing the driver for my new printer Samsung ML-1915 (the official
> Samsung driver) created the file /etc/modprobe.conf, containing the
> following stuff:
>
>  options parport_pc io=0x378 irq=7 dma=3
>
> Since then, at every boot the following warning message appears:
>
>  /etc/modprobe.conf exists but does not include /etc/modprobe.d!
>
> Besides, in the virtual consoles the characters have got smaller, and a few
> more strange things happen.  So I want to get rid of that file.  But if I
> remove it, or even only append to it the line:
>
>  include /etc/modprobe.d/
>
> , the error message disappear but the printer does not work.  It may have
> something to do with the load of /dev/mfp4, the printer port.

I have splix for my Samsung, and I have no /etc/modprobe.conf. Does splix not
cover the ML-1915? It might be worth a try anyway? Uninstall the driver and
install splix?

Lisi


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/201012222323.3...@gmail.com

Rodolfo Medina

unread,
Dec 23, 2010, 9:30:02 AM12/23/10
to
Lisi <lisi....@gmail.com> writes:

> On Thursday 11 November 2010 15:55:47 Rodolfo Medina wrote:
>> Installing the driver for my new printer Samsung ML-1915 (the official
>> Samsung driver) created the file /etc/modprobe.conf, containing the
>> following stuff:

> I have splix for my Samsung, and I have no /etc/modprobe.conf. Does splix


> not cover the ML-1915? It might be worth a try anyway? Uninstall the driver
> and install splix?


I think the best solution is the one that I finally reported here:

http://forums.debian.net/viewtopic.php?f=16&t=57364


Rodolfo


--
To UNSUBSCRIBE, email to debian-us...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listm...@lists.debian.org

Archive: http://lists.debian.org/87r5d8y...@gmail.com

0 new messages