| | 131 | == Patchless client installation problems == |
|---|
| | 132 | * Make sure that lustre modules are installed in right place |
|---|
| | 133 | {{{ |
|---|
| | 134 | $ cd /lib/modules/`uname -r` |
|---|
| | 135 | $ find . | grep lustre.ko |
|---|
| | 136 | ./kernel/net/lustre/ko2iblnd.ko |
|---|
| | 137 | ./kernel/fs/lustre/lustre.ko |
|---|
| | 138 | }}} |
|---|
| | 139 | * If modules are installed, but 'lctl list_nids' gives error as |
|---|
| | 140 | {{{ |
|---|
| | 141 | $ lctl list_nids |
|---|
| | 142 | opening /dev/lnet failed: No such device |
|---|
| | 143 | hint: the kernel modules may not be loaded |
|---|
| | 144 | IOC_LIBCFS_GET_NI error 19: No such device |
|---|
| | 145 | }}} |
|---|
| | 146 | then, you may need to load modules using modprobe |
|---|
| | 147 | {{{ |
|---|
| | 148 | modprobe -v lustre |
|---|
| | 149 | }}} |
|---|
| | 150 | * If it fails, |
|---|
| | 151 | {{{ |
|---|
| | 152 | FATAL: Module lustre not found. |
|---|
| | 153 | }}} |
|---|
| | 154 | then try |
|---|
| | 155 | {{{ |
|---|
| | 156 | depmod |
|---|
| | 157 | }}} |
|---|
| | 158 | * If you still get errors in 'lctl list_nids' or lsmod doesn't show lustre modules then reboot the system and try reloading modules using modprobe |
|---|
| | 159 | {{{ |
|---|
| | 160 | modprobe -v lustre |
|---|
| | 161 | }}} |
|---|
| | 162 | |
|---|
| | 163 | |
|---|