首先我已经有了一个lamp的环境。 之后我想做一个php的扩展 用: ./ext_skel --extname=cltest 生成出来后修改的 修改好参数后: /usr/local/php/bin/phpize ./configure --enable-cltest --with-apxs=/usr/local/apache/bin/apxs --with-php-config=/usr/local/php/bin/php-config make 没有错误,只有一个warning:WARNING: You will need re2c 0.12.0 or later if you want to regenerate PHP parsers. 在modules下,没...
by niule - PHP - 2008-02-14 09:50:33 阅读(2374) 回复(1)
# cfgmgr -l scsi0 cfgmgr: 0514-621 WARNING: The following device packages are required for device support but are not currently installed. devices.scsi 如上所示,这个设备文件去哪里找呢? 如果去IBM网站找的话,具体该怎么找呢? 多谢各位前辈耐心教导~ :em06:
在利用AIX 5.1的第一张光盘安装BOS的过程中,大概在第14分钟,93%的时候,提示了失败列表,见下: devices.isa.sio.8042 devices.isa.sio.fdc devices.isa.sio.parallel devices.isa.sio.serial devices.pci.00100010 devices.pci.14105800 devices.pci.2b101505 devices.pci.86802912 devices.pci.mtrx.g450 devices.pci.display devices.pci.ide devices.pci.ethernet devices.pci.pciclass.010000 devices.pci.pciclass.01018f ...
可以用如下方法: 首先知道设备名,例如cd0 然后odmget -q prefix="cd" PdDv,其中cd是设备名前缀,就是除掉设备号,例如hdisk0,hdisk1的设备前缀都是hdisk 从结果中看到其中有DvDr = "..."项,这是驱动程序文件名,位于/usr/lib/drivers下 然后用lslpp -w /usr/lib/drivers/驱动程序名,就知道是哪个文件集了 或 # odmget -q "name=hdisk0" CuDv CuDv: name = "hdisk0" status = 1 chgstatus = 2 ...
在sun4800上安装虚拟带库,遇到一个问题,设备驱动已安装完成,用cfgadm -al -o show_FCP_dev也已看到设备,但用devfsadm -Cc tape命令无法生成设备文件。使用的备份软件是nbu5.1,操作步骤: 1、修改/kernel/drv/st.conf,将其中的name="st" class='scsi" target=0 lun=0项目删除 2、将/kernel/drv/sg.conf删除 3、修改/etc/devlink.tab文件,删除与sg相关的项目 4、cd /usr/openv/volmgr/bin/driver 5、执行../sg.build all -mt ...
我有一个字符串/Document/MsgId/IdSet/Id1, 我想创建Id1,但不知道前面节点是否都生成,我要做到没有父节点就创建。 不知大家是否遇到过这样的问题,请高手指教一二,在此谢过。 [ 本帖最后由 lyl2002 于 2009-7-16 21:03 编辑 ]
编写设备配置文件 本驱动程序需要一个配置文件。非自我识别的驱动程序必须具有一个类似节点_名称.conf 的文件。自我识别的驱动程序是指从 DDI 属性接口,如 ddi_prop_get_int(9F) 和 ddi_prop_lookup(9F) ,获得所有所需属性信息的驱动程序。欲了解设备驱动程序配置文件的有关信息,请参阅 driver.conf(4) 手册页。 配置文件至少应该包含设备节点名称和父设备名称或类型等信息。在这个简单的例子中,设备的节点名称就是本驱动...
当RAC某个节点突然当掉,连接这个节点的事务还没提交,第一个事务什么时候自动回滚?什么放掉事务锁呢? 第一个节点当机时,连接到其他节点的应用程序要做相同事务会出现什么情况?
将mkfile生成的一空白文件制作成设备 #mkfile 20m test.img #lofiadm -a /.../test.img /dev/lofi/2 #newfs /dev/lofi/2 #mount -F ufs /dev/lofi/2 /mnt #df -k /dev/lofi/2 /mnt ...... 可以当作一块磁盘来用。 用完后可 #umount /mnt #lofiadm -d /dev/lofi/n取消回环映射。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/12679/showart_423594.html