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

📄 readme.udev

📁 This a SOFTWARE pbx DRIVER
💻 UDEV
字号:
UDEV -- What the heck is udev OR why did I get a message to read this?This is the new mechanism of doing a dyamic /dev.  What doesthat mean?  Basically, before the days of linux-2.3/linux-2.4 your /devhad to have ~18000 files in it for all the possible device that yourkernel could possibly have, most of which you will NEVER use.  This, forobvious reasons, is somewhat undesirable.  So then came devfs.  Devfssolved a lot of these problems by dynamically populating /dev with onlythe device nodes of the devices that existed on your system.  Now, inlinux-2.6, udev+sysfs has become the mechanism of choice for populatingyour dynamic /dev with device nodes.You got this message because you are probably running udev on your system.If you are not, or you feel that you have reached this message in error youcan send me an email (look to bottom of file for address).If you're running udev on your system, you were probably directedto read this file during build.  For udevd (the daemon responsiblefor creation/deletion of device nodes), you will need to add the followinglines to your udev rules (ie, /etc/udev/rules.d/50-udev.rules):.# Section for zaptel deviceKERNEL="zapctl",     NAME="zap/ctl"KERNEL="zaptimer",   NAME="zap/timer"KERNEL="zapchannel", NAME="zap/channel"KERNEL="zappseudo",  NAME="zap/pseudo"KERNEL="zap[0-9]*",  NAME="zap/%n"This will take care of making all the automagic occur that needs to bedone so that udevd will make the right files for zaptel.And, You may wish to add these permissions to your permissions file(ie /etc/udev/permissions.d/50-udev.permissions), as some have foundthat the ctl device is inaccessible without the following:# zaptel devices -- for running asterisk as rootzap/*:root:root:05700# zaptel devices -- if you want to run asterisk as a different user# (asterisk in this case)zap/*:asterisk:asterisk:660Matthew Fredricksoncreslin@NOSPAMdigium.com

⌨️ 快捷键说明

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