· This will show you the version of the kernel module in your current kernel module. Alternatively you can use the -k option to select a specific kernel version: /sbin/modinfo -k el6.x86_ You can also specify the Reviews: 1. · The below command will check for NVIDIA driver version under your currently running kernel: # modinfo /usr/lib/modules/$(uname -r)/kernel/drivers/video/www.doorway.ru | grep ^version version: The above will work even if NVIDIA module is not loaded. Run the below command to locate your www.doorway.ru module file:Estimated Reading Time: 1 min. #!/bin/bash for f in /sys/class/net/*; do dev=$(basename $f) driver=$(readlink $f/device/driver/module) if [ $driver ]; then driver=$(basename $driver) fi addr=$(cat $f/address) operstate=$(cat $f/operstate) printf "%10s [%s]: %10s (%s)\n" "$dev" "$addr" "$driver" "$operstate" done.
SSGODBC. The SSGODBC command utility (included with Informatica x and later releases) could also be used to determine the version of the ODBC driver. From the Informatica Home (INFA_HOME) directory do the following: cd $INFA_HOME/tools/debugtools/ssgodbc. Go to the directory corresponding to the OS. #!/bin/bash for f in /sys/class/net/*; do dev=$(basename $f) driver=$(readlink $f/device/driver/module) if [ $driver ]; then driver=$(basename $driver) fi addr=$(cat $f/address) operstate=$(cat $f/operstate) printf "%10s [%s]: %10s (%s) " "$dev" "$addr" "$driver" "$operstate" done. To verify the driver version number: From the Start menu, go to ODBC Data Sources. Click the Drivers tab and then find the Simba SQL Server ODBC Driver in the list of ODBC drivers that are installed on your system. The version number is displayed in the Version column.
Identifying HBA cards and WWN numbers in Solaris 8, 9, 10 and Number: not available Driver Name: qlc Driver Version: Type: L-port. If you intend to use ODBC, then install the most recent ODBC Driver Manager for Oracle Solaris. Check the version of the installed driver to ensure that the adapter is properly loaded and is recognized by the Solaris OS. # modinfo | grep ixgbe 7b
0コメント