⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pci550x_load

📁 linux下面
💻
字号:
#!/bin/bashmodule="pci550x"device="pci550x"mode="664"# invoke insmod with all arguments we were passed/sbin/insmod /lib/modules/`uname -r`/misc/$module.o $* || exit 1# remove stale nodesrm -f /dev/${device}[0-3]major=`awk "\\$2==\"$module\" {print \\$1}" /proc/devices`mknod /dev/${device}0 c $major 0mknod /dev/${device}1 c $major 1mknod /dev/${device}2 c $major 2mknod /dev/${device}3 c $major 3# give appropriate group/permissions, and change the group# not all distributions have staff; some have "users" insteadgroup="staff"grep '^staff:' /etc/group > /dev/null || group="users"chgrp $group /dev/${device}[0-3]chmod $mode  /dev/${device}[0-3]

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -