rcs
来自「xen 3.2.2 源码」· 代码 · 共 20 行
TXT
20 行
#!/bin/shmount -a# If we're running 2.6, make sure /sys is mountedif uname -r | grep -q '^2.6'; then mount -t sysfs none /sysfi# If the block, net, and packet drivers are modules, we need to load themif test -e /modules/xenblk.ko; then insmod /modules/xenblk.ko > /dev/null 2>&1fiif test -e /modules/xennet.ko; then insmod /modules/xennet.ko > /dev/null 2>&1fiif test -e /modules/af_packet.ko; then insmod /modules/af_packet.ko > /dev/null 2>&1fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?