Php command line fails after GD2 library install

I installed GD2 following the instructions on osx.topicdesk.com.
The installation was successful and the phpinfo() shows gdlib is
installed. Using php through Apache works fine.
However, when I try to use php from command line, it throws an
exception. Even on php -v command as shown below
admin$ php -v
dyld: NSLinkModule() error
dyld: Symbol not found: php_siggif
Referenced from: /usr/lib/php/extensions/no-debug-non-zts-20060613/gd.so
Expected in: dynamic lookup
Trace/BPT trap
Not sure how to resolve this problem. Looks like some library was not installed causing
the issue. Any help in resolving this is much appreciated. Thank you.

While I'm here, I'm also trying to build the mcrypt library and extension, but the same config as the jpeg lib results in:
gcc-4.0: -E, -S, -save-temps and -M options are not allowed with multiple -arch flags
make[3]: * [3-way.lo] Error 1
make[2]: * [all-recursive] Error 1
make[1]: * [all-recursive] Error 1
make: * [all] Error 2
Any comments on pear/pecl compatibility? I ran go-pear and had a go at installing apc - all appeared to build and install ok, but it just dies on apache startup:
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/extensions/no-debug-non-zts-20060613/apc.so' - (null) in Unknown on line 0
I guess pecl needs to be told about the compiler flags to match Apple's build too.

Similar Messages

  • Where is the php command line executable on Linux?

    Hi, I am trying to configure my PHP Runtime Settings, but I have installed PHP5 from a tar.gz on Linux and I dont know where is my "php command line executable",
    somebody knows?
    Thanks.

    Hi,
    Should be in /usr/local/bin/php
    or try this...
    [root@mmkserv root]# find / -name "php"
    /usr/local/bin/php
    /usr/local/include/php
    /usr/local/lib/php
    /usr/local/apache/.LoL/LOST-FOUND/Forms/php
    [root@mmkserv root]#

  • WebSphere ServerRepository.xml / Deployed WAR Works, LH Command Line Fails

    Anyone deploying to WebSphere that has gotten the LH Command Line tool to function with a ServerRepository.xml pointing to a DataSource within WebSphere?
    We created a ServerRepository.xml that utilizes the WebSphere DataSource as the Performance is significantly greater for the idm.war deployed to WAS. The idm.war file works & performs better using this.
    LH Command line fails with a ServerRepository.xml pointing to a WebSphere DataSource. I've been troubleshooting with SUN support & so far we have not made any progress to resolve this. LH fails trying to execute anything...see below for example & partial cut/pasted error message.
    **set WSHOME, JAVA_HOME, & WAS_HOME 1st
    $WSHOME/bin/lh -Djava.ext.dirs=$JAVA_HOME/jre/lib/ext:$WAS_HOME/lib:/ebiz/sim/dev/lib console -u configurator
    Error:
    com.waveset.util.InternalError:
    ==> com.waveset.util.ConfigurationError:
    ==> java.sql.SQLException: invalid arguments in callDSRA0010E: SQL State = null, Error Code = 17,433DSRA0010E: SQL State = null, Error Code = 17,433
    at com.waveset.repository.ServerRepository.initDataStore(ServerRepository.java:1527)
    at com.waveset.repository.ServerRepository.getPrimaryDataStore(ServerRepository.java:1343)
    at com.waveset.repository.ServerRepository.getPrimaryDataStore(ServerRepository.java:1309)
    at com.waveset.repository.ServerRepository.init(ServerRepository.java:717)
    at com.waveset.repository.ServerRepository.<init>(ServerRepository.java:693)
    at com.waveset.repository.ServerRepository.getRepository(ServerRepository.java:134)
    at com.waveset.server.Server.init(Server.java:251)
    at com.waveset.server.Server.start(Server.java:217)
    at com.waveset.server.Server.getServer(Server.java:807)
    at com.waveset.server.Server.getServer(Server.java:784)
    at com.waveset.session.SessionFactory.getLoginConfigInfo(SessionFactory.java:849)
    at com.waveset.session.SessionFactory.startupMode(SessionFactory.java:916)
    at com.waveset.session.SessionFactory.getLoginModGrp(SessionFactory.java:885)
    at com.waveset.session.SessionFactory.getSession(SessionFactory.java:170)
    at com.waveset.session.SessionFactory.getSession(SessionFactory.java:390)
    at com.waveset.session.SessionFactory.getSession(SessionFactory.java:456)
    at com.waveset.session.WavesetConsole.newSession(WavesetConsole.java:361)
    at com.waveset.session.WavesetConsole.start(WavesetConsole.java:331)
    at com.waveset.session.WavesetConsole.main(WavesetConsole.java:218)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.waveset.util.CommandProcess.invokeMain(CommandProcess.java:212)
    at com.waveset.util.CommandProcess.launch(CommandProcess.java:162)
    at com.waveset.util.CommandProcess.run(CommandProcess.java:300)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
    at java.lang.reflect.Method.invoke(Method.java:391)
    at com.waveset.util.Command.main(Command.java:96)
    Wrapped exception:
    Architecture:
    IDM 7.0
    WebSphere 6.x
    Oracle THIN Driver ojdbc14.jar - 10.2.0.x
    AIX 5.3 ML3

    To get the WAR deployed within WebSphere to function, I found the IDM Doc (IDM 7.0 Installation - "Configuring a WebSphere DataSource for Identity Manager" - Pgs 117 - 134) to be pretty decent for creating the actual JDBC DataSource.
    My recommendation is to setup the DataSource at the Scope=Cell Level & use a WAS J2C Auth Entry for the DataSource so you do not need to use the -U or -P options in your setRepo command...this also helps ensure its truly connecting using WAS.
    Looking at what you had, try this modified...
    $WSHOME/bin/lh -Djava.ext.dirs=$JAVA_HOME/jre/lib/ext:$WAS_HOME/lib setRepo -n -tSQLServer -icom.ibm.websphere.naming.WsnInitialContextFactory -fjdbc/idm -uiiop://localhost:9810 -o"D:\apps\temp.xml"
    *Additional comments
    -n will bypass any checking and ignore any error message.
    -f must be identical to the WAS JDBC DataSource Name jdbc/idm
    **You do not need to redeploy after replacing the ServerRepository.xml; however, you do need to bounce the WAS AppServer & should monitor the AppServer SystemOut.log on startup to ensure the IDM WAR starts up successfully
    ***This is all assuming the DataSource you have within WAS is working (you can validate via the TestConnection)

  • Is there any command line i can use to install a .pkg file to my own directory?)

    I'm a newer of Mac OS X, i need to insatll lots of .pkg package to my mac machine, so i think of install them use a script automatically, but i cnanot find any way to use the command line to insatll the .pkg package to my own forder(like /myapp). can somebody help me? thanks a lot.

    Here's a article on how to move your home dir:
    How to Move the Home Folder in OS X – and Why
    The key basic steps are to copy your home dir to another drive and using the Accounts Preferences advanced options for the your account to redefine where your home dir is.
    With or without the home dir moved you can organize your apps as you see fit.  I keep my apps categorized; doc/text related apps, video apps, calculators, etc.  They could even be on a third drive if you want, but that makes backups a bit more complicated (always backup).
    The advantage of keeping the home dir separate from the boot dir is (a) if the boot drive fails it doesn't take your stuff with it, (b) it allows you to have multiple boot drives and switch among them if necessary while using the same home dir, and (c) if you use a ssd for a boot drive it allows you to use a relatively small ssd (I use a 120GB).
    With a ssd as a boot drive you could still elect to put key apps on it for performance reasons.  I do that for commonly used stuff.  But it's mainly reserved for the boot system.  I try not to put any more that I have to on it just to minimize needless writing to the ssd.  Of course you cannot stop ssd writes by the OS itself (e.g., swap space -- but that too can be minimized with enough ram).

  • [SOLVED] systemd services load slow/fail after forcing package install

    This is more of a PSA for those coming across this issue in the future. I think people should do more of these.
    I recently had problems installing packages where pacman told me several files already existed in the filesystem. This happened when I tried to install an individual official package, not a full system upgrade, so I couldn't find any relevant posts.
    I tried to --force install the package, thereby rewriting all such files. But I noticed the next time I rebooted and logged into my system, my Cinnamon session would load extremely slowly (~2 mins) and I had several failed services.
    Symptoms of the problem included:
    - non-root partitions not mounted on boot
    - users and groups added after initial system install were gone (including sudo)
    - difficulty connecting to networks
    - trying to start/restart services resulted in a Polkit-related error and a timeout
    So after a while I found this post: https://bbs.archlinux.org/viewtopic.php?id=151915
    It suggested that the polkit-related user and group were missing and I should check my /var/log/pacman.log around the time of my force installation, which I did. This revealed pacman overwrote several files in /etc including fstab, hosts, passwd, shadow and group.
    Luckily pacman backed up all those files under the suffix *.pacorig so I by renaming the backups and rebooting I was thankfully able to return my system to normal.

    I have another example of rc.local which is mainly about configuring power saving etc etc on a netbook
    hdparm -B254 /dev/sda
    grep -q '0' /sys/class/power_supply/ADP1/online && P="powersave" || P="ondemand"
    cpupower -c all frequency-set -g "$P"
    echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
    /usr/sbin/iw dev wlan0 set power_save on
    echo '0' > '/proc/sys/kernel/nmi_watchdog'
    echo '1' > '/sys/module/snd_hda_intel/parameters/power_save'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:02.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1b.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.1/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.2/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.3/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1d.7/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.2/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1f.3/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:01:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:02:00.0/power/control'
    echo 'auto' > '/sys/bus/pci/devices/0000:00:1c.1/power/control'
    /usr/sbin/ethtool -s eth0 wol d
    what is the systemd way of doing this sort of thing?
    Also where should local units be put so that they can be enabled/disabled etc. If I put them in /usr/lib/systemd/system won't they interfere with pacman?

  • [Solved] Display manager failing after Nvidia driver install

    I installed Nvidia-304xx drivers from the website due to which xorg stopped working. I fixed it by following the wiki by installing bumblebee and using intel graphics for screen.
    However now when I boot I am getting an error saying "Oh no something has gone wrong. A problem has occoured and the system can't recover"
    Please help.
    Note: I am using 64 bit system
              Startx works on ttyx
    Last edited by harshsahil48 (2014-02-16 18:15:23)

    GDM log
    X.Org X Server 1.15.0
    Release Date: 2013-12-27
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.12.5-1-ARCH x86_64
    Current Operating System: Linux harsh 3.12.9-2-ARCH #1 SMP PREEMPT Fri Jan 31 10:22:54 CET 2014 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=9d527456-8b84-4444-9997-a970795972df rw quiet
    Build Date: 09 January 2014 08:47:24AM
    Current version of pixman: 0.32.4
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 15 12:34:27 2014
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) Automatically adding GPU devices
    (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) xfree86: Adding drm device (/dev/dri/card0)
    (--) PCI:*(0:0:2:0) 8086:0116:1028:0491 rev 9, Mem @ 0xd2400000/4194304, 0xc0000000/268435456, I/O @ 0x00007000/64
    (--) PCI: (0:1:0:0) 10de:124d:1028:0491 rev 161, Mem @ 0xd0000000/33554432, 0xa0000000/268435456, 0xb0000000/67108864, I/O @ 0x00006000/128, BIOS @ 0x????????/524288
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension Present
    Initializing built-in extension DRI3
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    (II) "glx" will be loaded by default.
    (WW) Warning, couldn't open module glamoregl
    (II) Unloading glamoregl
    (EE) Failed to load module "glamoregl" (module does not exist, 0)
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    (II) NVIDIA GLX Module 331.38 Wed Jan 8 19:10:17 PST 2014
    Loading extension GLX
    (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.15.0, module version = 2.99.910
    (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    (++) using VT number 1
    (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
    (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    (**) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (**) intel(0): Framebuffer tiled
    (**) intel(0): Pixmaps tiled
    (**) intel(0): "Tear free" disabled
    (**) intel(0): Forcing per-crtc-pixmaps? no
    (II) intel(0): Output LVDS1 using monitor section Monitor0
    (--) intel(0): found backlight control interface acpi_video0 (type 'firmware')
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output HDMI1 has no monitor section
    (II) intel(0): Output DP1 has no monitor section
    (II) intel(0): Output VIRTUAL1 has no monitor section
    (--) intel(0): Output LVDS1 using initial mode 1600x900 on pipe 0
    (==) intel(0): DPI set to (96, 96)
    (==) Depth 24 pixmap format is 32 bpp
    (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
    (==) intel(0): Backing store enabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): HW Cursor enabled
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (**) intel(0): DPMS enabled
    (II) intel(0): [DRI2] Setup complete
    (II) intel(0): [DRI2] DRI driver: i965
    (II) intel(0): [DRI2] VDPAU driver: i965
    (II) intel(0): direct rendering: DRI2 Enabled
    (==) intel(0): hotplug detection: "enabled"
    (--) RandR disabled
    (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    (II) intel(0): Setting screen physical size to 423 x 238
    (II) config/udev: Adding input device Power Button (/dev/input/event4)
    (**) Power Button: Applying InputClass "evdev keyboard catchall"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.15.0, module version = 2.8.2
    (II) Using input driver 'evdev' for 'Power Button'
    (**) Power Button: always reports core events
    (**) evdev: Power Button: Device: "/dev/input/event4"
    (--) evdev: Power Button: Vendor 0 Product 0x1
    (--) evdev: Power Button: Found keys
    (II) evdev: Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    (II) config/udev: Adding input device Video Bus (/dev/input/event13)
    (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Video Bus'
    (**) Video Bus: always reports core events
    (**) evdev: Video Bus: Device: "/dev/input/event13"
    (--) evdev: Video Bus: Vendor 0 Product 0x6
    (--) evdev: Video Bus: Found keys
    (II) evdev: Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    (II) config/udev: Adding input device Video Bus (/dev/input/event12)
    (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Video Bus'
    (**) Video Bus: always reports core events
    (**) evdev: Video Bus: Device: "/dev/input/event12"
    (--) evdev: Video Bus: Vendor 0 Product 0x6
    (--) evdev: Video Bus: Found keys
    (II) evdev: Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding drm device (/dev/dri/card0)
    (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event9)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event8)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event1)
    (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    (**) Logitech USB Optical Mouse: always reports core events
    (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event1"
    (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05a
    (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
    (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    (--) evdev: Logitech USB Optical Mouse: Found relative axes
    (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
    (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device Laptop_Integrated_Webcam_2M (/dev/input/event11)
    (**) Laptop_Integrated_Webcam_2M: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Laptop_Integrated_Webcam_2M'
    (**) Laptop_Integrated_Webcam_2M: always reports core events
    (**) evdev: Laptop_Integrated_Webcam_2M: Device: "/dev/input/event11"
    (--) evdev: Laptop_Integrated_Webcam_2M: Vendor 0xc45 Product 0x6430
    (--) evdev: Laptop_Integrated_Webcam_2M: Found keys
    (II) evdev: Laptop_Integrated_Webcam_2M: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_2M" (type: KEYBOARD, id 10)
    (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    (--) evdev: AT Translated Set 2 keyboard: Found keys
    (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event14)
    (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.15.0, module version = 1.7.3
    (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5782 (res 57)
    (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4972 (res 96)
    (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.036
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event6)
    (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    (**) Dell WMI hotkeys: always reports core events
    (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event6"
    (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    (--) evdev: Dell WMI hotkeys: Found keys
    (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 13)
    (II) config/udev: removing device Logitech USB Optical Mouse
    (II) evdev: Logitech USB Optical Mouse: Close
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event1)
    (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    (**) Logitech USB Optical Mouse: always reports core events
    (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event1"
    (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05a
    (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
    (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    (--) evdev: Logitech USB Optical Mouse: Found relative axes
    (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
    (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
    (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    (II) intel(0): EDID vendor "SEC", prod id 21579
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1600x900"x0.0 120.53 1600 1648 1680 2160 900 902 907 930 +hsync -vsync (55.8 kHz eP)
    (II) intel(0): Modeline "1600x900"x0.0 74.09 1600 1648 1680 1992 900 902 907 930 +hsync -vsync (37.2 kHz e)
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    setversion 1.4 failed: Permission denied
    (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/udev: removing device Logitech USB Optical Mouse
    (II) evdev: Logitech USB Optical Mouse: Close
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    (II) No input driver specified, ignoring this device.
    (II) This device may have been added with another device file.
    (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event1)
    (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    (**) Logitech USB Optical Mouse: always reports core events
    (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event1"
    (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05a
    (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
    (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    (--) evdev: Logitech USB Optical Mouse: Found relative axes
    (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
    (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4

  • Create domain from command line failed in wls91

    Hi,
    I am trying to create a simple domain from command line for wls91. It even didn't ask me the password. How can I do it? Thanks
    C:\testdomain>java weblogic.Server
    <Feb 23, 2006 9:11:50 AM PST> <Info> <WebLogicServer> <BEA-000377> <Starting Web
    Logic Server with BEA JRockit(R) Version R26.0.0-189-53463-1.5.0_04-20051122-204
    1-win-ia32 from BEA Systems, Inc.>
    C:\testdomain\config\config.xml not found
    No config.xml was found.
    Would you like the server to create a default configuration and boot? (y/n): y
    <Feb 23, 2006 9:11:56 AM PST> <Info> <Management> <BEA-140013> <C:\testdomain\.\
    config\config.xml not found>
    <Feb 23, 2006 9:11:56 AM PST> <Info> <Security> <BEA-090065> <Getting boot ident
    ity from user.>
    Enter username to boot WebLogic server:weblogic
    <Feb 23, 2006 9:12:00 AM PST> <Error> <Security> <BEA-090782> <Server is Running
    in Production Mode and Native Library(terminalio) to read the password securely
    from commandline is not found.>
    <Feb 23, 2006 9:12:00 AM PST> <Notice> <WebLogicServer> <BEA-000388> <JVM called
    WLS shutdown hook. The server will force shutdown now>
    <Feb 23, 2006 9:12:00 AM PST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to FORCE_SHUTTING_DOWN>
    C:\testdomain>

    Hi,
    If you are still having problems creating a domain from the command line, the official solution would be to use
    {proper_path}/bea/weblogic{proper_version}/common/bin/config.sh -mode=console
    This will guide you to the same steps as the visual version of the wizard, but using the command prompt.
    If you are using windows, the same works but with the command config.cmd, and mutatis mutandis.
    Regards,
    LG

  • Ant deploy from Jdev works fine - same ant deploy from command line fails

    Hi
    I'm using Jdev 10.1.3 and OAS 10.1.3 and created some web services. I can deploy using the Wizard in JDev - works fine, created a build.xml file using the <oracle:deploy> ant task. Also work fine from JDeveloper.
    But when running from command line (windows) I get the following:
    d:\>ant deploy
    Buildfile: build.xml
    init:
    compile:
    copy:
    ear:
    [war] Building war: D:\invision\source\INVisionWebService1013\INVisionWebService.war
    [war] Warning: selected war files include a WEB-INF/web.xml which will be ignored (please use webxml attribute to war task)
    [ear] Building ear: D:\invision\source\INVisionWebService1013\deploy\INVisionWebService.ear
    [delete] Deleting: D:\invision\source\INVisionWebService1013\INVisionWebService.war
    deploy:
    BUILD FAILED
    D:\invision\source\INVisionWebService1013\build.xml:282: The following error occurred while executing this line:
    jar:file:/D:/apache/apache-ant-1.6.5/lib/ant-oracle-classes.jar!/oracle/antlib.xml:27: taskdef class oracle.j2ee.ws.tools.wsa.cli.ant.GenProxy cannot be found
    I have studied the web for suggestion also http://download-east.oracle.com/docs/cd/B25221_04/web.1013/b14431/anttasks.htm#sthref164 but nothing seems to work. Tried copying oracle jars to my ant directory (ant version 1.6.5) but still no success (above error message disappered but other came instead).
    Why must this process be so complex. Can anyone help?

    Hi,
    You need to have the following jars in your classpath before firing the ant deploy task.
    ${Oracle_Home}\j2ee\utilities\ant-oracle-classes.jar;
    ${Oracle_Home}\j2ee\home\lib\adminclient.jar;
    ${Oracle_Home}\2ee\home\lib\oc4j-internal.jar;
    ${Oracle_Home}\j2ee\home\lib\javax77.jar;
    ${Oracle_Home}\j2ee\home\lib\javax88.jar;
    ${Oracle_Home}\j2ee\home\lib\jmxri.jar;
    ${Oracle_Home}\OracleAS_1\webservices\lib\wsa.jar;
    Please check your classpath and add the above jars, if not present and try ant deploy task now.
    I suppose it should work fine.
    Hope its helpful.
    Rgds,
    Prashanth Babu.

  • Installer command line switches or "How to install Flash Player in silent mode"

    Please note that all browser windows must be closed before executing either the installer or uninstaller.  The following document describes the different parameters:
    Silent install command line argument doesn't work | Flash Player 10.1

    There is no MSI (nor .exe) for the Authorware web player.
    It's only
    available as a .cab. However, of course, you could unpack the
    can and
    create your own MSI if you have the proper tool (i.e
    InstallShield).
    Someone (in China?) did that a couple years ago. Searching
    the archives
    of this group on Google, or perhaps the A'ware Listserve, may
    reveal...
    Erik
    ersatyle wrote:
    > hi, I'm looking to install the authorware player in
    silent mode for several
    > computer in an organization, I would like to have an
    installer (.exe or .msi)
    > for internet explorer, does anyone could help me with
    that? tahnks!
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - eLearning
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    Authorware Tips!

  • ThinkVantage 4.0 fail after clean Win7 install

    Downloaded Thinkvantage 4.0 system update after clean Win7 install on my T500 2081 CTO. Programme did not attach to my ThinkVantage Blue Button and did not even work when I started it from the start menu where it was placed. All I got was the logo. Did an erase and new install with the same result.
    There are no clues on the download page at
    http://www-307.ibm.com/pc/support/si...cid=MIGR-73695

    Is this a question of first installing the Hotkey Features Integration? What about the Hot Key Driver, is that included in the Features Integration?

  • Non priviledged commands fail after patch cluster install

    For several years, to allow users to access system functions for higher clock resolutions in their
    applications, we have made the following mods to two files (per Sun recommendations):
    In the /etc/system file, add lines:
    * 10 ms clock resolution*
    set higher_tick = 1*
    In /etc/user_attr, add:
    dssuser::::type=normal;defaultpriv=proc_clock_highres,file_link_any,proc_info,proc_session,proc_fork,proc_exec
    Everything was fine until I installed the latest patch cluster (from 2-14-2011) on our Netra 210. No issues installing the cluster. Upon reboot, the dssuser cannot do some simple things, like use ftp or ping. Messages like this:
    ping: unknown host
    ftp: socket: Permission denied.
    The root user has no problems using any of these commands. As soon as I comment out the dssuser line from the /etc/user_attr file, everything works as expected. But we need the highres clock settings for our applications. I am unfamiliar with the workings and intent of the entries in user_attr so any help would be most appreciated.
    Mark

    The problem is that after patch implementation, the special privileges for any user defined in the /etc/user_attr file were modified to append the string "!net_privaddr" specifically denying use of common commands ping and ftp for example. The output of ppriv:
    $ ppriv $$
    14870: -sh
    flags = <none>
    E: basic,proc_clock_highres,!net_privaddr
    I: basic,proc_clock_highres,!net_privaddr
    P: basic,proc_clock_highres,!net_privaddr
    L: all
    I had to add the keyword net_privaddr in the user_attr file like:
    dssuser::::type=normal;defaultpriv=proc_clock_highres,file_link_any,proc_info,proc_session,proc_fork,proc_exec,net_privaddr
    to get past this problem. A bug or what?

  • SQL Server 2014 installation using command line fails to remove the extraction folder when complete

    We need to install SQL Server 2014 Express in /QS mode (shows
    progress through the UI, but does not accept any input or show any error messages) as
    my setup-Prerequisite. I passed my installation parameters to
    SQLEXPRWT_x64_ENU.exe, when I ran my application it pop-ups
    user to select the folder to extract files. After I choose the folder, SQL
    files got extracted and the installation proceeded and it got succeed.
    But it fails to remove the extraction folder when installation is complete.

    There is an issue that /qs parameter is not recognized and cannot be used the same
    way as in SQL 2012. That issue will be addressed in SQL Server 2014 Service Pack 1.
    https://connect.microsoft.com/SQLServer/feedback/details/878374/sql-server-2014-express-qs-parameter-requires-user-input

  • Erase to reinstall. Volume verify fails after. Wont install.

    Working fine in Snow Leopard. Got really slow. Backed up, then got gray screen. Not booting at all. Boot from Snow Leopard cd. After do an erase of many types, 7 pass, etc. All seems successful, then do a verify and it fails with - ......... invalid B-Tree node size
    The volume needs to be repaired. Repair also fails.
    Interesting though the SMART verify is OK after the erase and format.
    It will not install. Also in Disk Utilities the verify and repair permissions is grayed out.
    What could be preventing the format (erase) from working ?

    If Disk Utility can't fix the invalid B-Tree node size, you need something stronger, most likely DiskWarrior is your best bet for resolving directory issues.

  • Xsql command-line hangs after inserting

    Hi,
    i try to insert 1200 xml documents with a batch file and the xsql command. The problem is that the command hangs sometimes. If I restart it with the the last document, works it fine again. But after 10 or 15 documents hangs it again. Whats the problem. I'm using xdk 9.0.0.1 with XSQL 1.0.4.3.

    I found the error by my self. I've installed the 9.0.0.2A beta version. This version has this error. After the installation of 9.0.0.1 it works fine.

  • Wifi lan failed after itunes 5 install

    after 10 atempts at getting 5 installed, our entire wifi lan locked the incoming adsl line causing and engineer to be called out who said YOU MUST HAVE INSTALLED ITUNES 5 can this be it..how can apple let this go on

    No looks to me as if there are still problems. If Apple can send me an email about music why the heck can't they just send me an email saying please upgrade as we have problems. Instead I sit there for hours and hours and phone calls and phone calls thinking it was my fault. How can they issue this software without really good testing, issue a Beta first. It is appalling and is a big blot on their name.

Maybe you are looking for

  • EXTENDING the string class

    ok, i know extending the string class is illegal because it's final, but i want to make an advanced string class that basically "extends" the string class and i've seen online this can be done through wrapper classes and/or composition, but i'm lost

  • Hp tablet wont install apps

    I recieved a hp tablet (not android, webos)  a few days ago that my boyfriend bought off of ebay. Everything works fine except installing apps. When I try to install an app, it says installation failed and its for all apps bought or free.  We have no

  • Java Perpared Statement does not return anything

    Sorry fo bad language. I have connection with Oracle 8 with JDBC thin drivers. Almost all queries, simple and very complex are doing well, except one: select srcCard.object_id from objects srcCard, params attrs where attrs.attr_id = ? and attrs.objec

  • Autosubmitted page causing validation issues

    Hi, I have a task flow ( which is used in webcenter portal ) with 3 pages. |--> page1 -------> page2 ---------> page3 ------------------| | | | | | ----------------Back to page1---------------------------------- | Page1 has few validations. Things wo

  • Safari in lion download panel - can't drag download

    Hi, just loaded Lion on a machine and we are having trouble with our work flow. We get a lot of audio and video made available to us via the web and we used to be able to open the Download panel and drag the titlebar icon to this panel and it would g