Андрей Тр. aka RH писал(а):А ведь заработало - тоже скинул драйверы на 4-диск, и оно само их находит ( раньше они у меня всегда были на 3-м ), поменял driver.conf и карта теперь находится. Но я заметил, что modprob заменен на insmod - интересно, какая между ними разница.
У меня и на третьей дискете работало, потом просто скопировал директорию с дровами с третьей на четвертую дискету (так удобнее, не недо после четвертой опять третью вставлять) и все продолжает работать.
Вот немножко цитат
:
INSMOD
NAME
insmod - install loadable kernel module
DESCRIPTION
Insmod installs a loadable module in the running kernel.
Insmod tries to link a module into the running kernel by
resolving all symbols from the kernel's exported symbol
table.
MODPROBE
NAME
modprobe - high level handling of loadable modules
DESCRIPTION
The
modprobe and depmod utilities are intended to make a
Linux modular kernel more manageable for all users, administrators and distribution maintainers.
Modprobe uses a "Makefile"-like dependency file, created
by depmod, to automatically load the relevant module(s)
from the set of modules available in predefined directory
trees.
Modprobe is used to load a set of modules, either a single
module, a stack of dependent modules, or all modules that
are marked with a specified tag.
Modprobe will automatically load all base modules needed
in a module stack, as described by the dependency file
modules.dep. If the loading of one of these modules
fails, the whole current stack of modules loaded in the
current session will be unloaded automatically.
Modprobe has two ways of loading modules. One way (the
probe mode) will try to load a module out of a list
(defined by pattern ).
Modprobe stops loading as soon as
one module loads successfully. This could be used to
autoload one Ethernet driver out of a list.
The other way
modprobe can be used is to load all modules
from a list.