代码搜索:DEV
找到约 10,000 项符合「DEV」的源代码
代码结果 10,000
www.eeworm.com/read/189071/8491230
scullv_load
#!/bin/sh
module="scullv"
device="scullv"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/189071/8491244
scullv_unload
#!/bin/sh
module="scullv"
device="scullv"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# remove nodes
rm -f /dev/${device}[0-3] /dev/${device}
exit 0
www.eeworm.com/read/189071/8491252
scull_load
#!/bin/sh
# $Id: scull_load,v 1.4 2004/11/03 06:19:49 rubini Exp $
module="scull"
device="scull"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep -q '^st
www.eeworm.com/read/189071/8491258
scull_unload
#!/bin/sh
module="scull"
device="scull"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device} /dev/${device}[0-3]
rm -f /dev/${device}
www.eeworm.com/read/189071/8491290
short_load
#!/bin/sh
module="short"
device="short"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/189071/8491296
short_unload
#!/bin/sh
module="short"
device="short"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# Remove stale nodes
rm -f /dev/${device}[0-7] /dev/${device}[0-7][ps] \
/dev/$
www.eeworm.com/read/189071/8491351
shortprint_load
#!/bin/sh
module="shortprint"
device="shortprint"
mode="666"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staf
www.eeworm.com/read/189071/8491384
scullp_load
#!/bin/sh
module="scullp"
device="scullp"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/189071/8491390
scullp_unload
#!/bin/sh
module="scullp"
device="scullp"
# invoke rmmod with all arguments we got
/sbin/rmmod $module $* || exit 1
# remove nodes
rm -f /dev/${device}[0-3] /dev/${device}
exit 0
www.eeworm.com/read/389918/8494385
txt linux爱好者入门教程.txt
Linux爱好者入门教程
最近在学习linux在网上发现一篇好文,转给大家,希望对大家有所帮助!以后再有的话会陆续更新,希望大家补充和探讨!!
我们首先应该知道电脑的基本情况。电脑,就是一堆金属,半导体和塑料制品的总合,如果通上电源,就可以启动,但是你什么都不能做,因为电脑只是一堆硬件,如果你不是拿来卖废铁,它即笨重又刺眼(如果你的电脑是一堆白色外壳的话)。可是为什么电脑那么的吸引我们 ...