From: Karel Zak Date: Fri, 12 Feb 2010 18:58:45 +0000 (+0100) Subject: mount: advise users to use "modprobe", not "insmod" X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e11397aba1586df10a57ea30b598aca4dddc7b2;p=util-linux mount: advise users to use "modprobe", not "insmod" Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=562394 Signed-off-by: Karel Zak --- diff --git a/mount/mount.c b/mount/mount.c index f7312676..efe11654 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -1556,7 +1556,7 @@ mount_retry: error (_("mount: %s is not a block device, and stat fails?"), spec); else if (S_ISBLK(statbuf.st_mode)) error (_("mount: the kernel does not recognize %s as a block device\n" - " (maybe `insmod driver'?)"), spec); + " (maybe `modprobe driver'?)"), spec); else if (S_ISREG(statbuf.st_mode)) error (_("mount: %s is not a block device (maybe try `-o loop'?)"), spec);