Keithley Temp Config Problems

I am looking for Keithley 2700 users who have been able to use the 2700TempConfig
VI successfully. I am unable to keep the unit from resetting defaults. Any
help with the 2700 would be appreciated. We are reading temps and trying
to switch from TCs to thermistors in an effort to get around a temp gradient
across the Keithley board.

Hi (my prior name was Dect&Bluetooth),
I have run on third party connectivity software (Intuilink from Agilent and CMD2Go from Rohde&Schwarz) on the Keithley Usb-Switch and it worked.
My program still makes problems as described before, maybe due to the fact that I am using a NI VISA READ/WRITE in some cases?
I have added a Spy file to show you the fails, I have changed the suffix to txt, you have to change it back to .spy in order to be able to read it.
Does it mean that I cannot use SCPI commands with NI VISA in order to use this adptor?
Thanks for any help.
Yariv
Attachments:
CaptureKeithleySwitch2.txt ‏2619 KB

Similar Messages

  • Audio Config" problem after upgrading to 7.6

    I have only had my ipod one week. It is working beautifully. My problem is that I can no longer charge it or add songs to it because I can not open itunes. The previous version worked beautifully on my computer. After I upgraded to 7.6, it stopped working and I get an Audio Config. problem everytime I try to open it. I have tried uninstalling and reinstalling the program but it does not help. What do I need to do to fix this problem?

    I have had my ipod a few weeks - but have nothing but problems letting itunes run the syncing, sometime it works and sometimes it does not. I had to reset my ipod 2 times already just to keep song on here, should have gone with Zune or Sonys (what my wife has) they are not having a single issue...
    I would like to add my voice to his - I upgraded to 7.6, it stopped working and I get an Audio Config. problem everytime I try to open it. I have tried uninstalling and reinstalling the program but it does not help. What do I need to do to fix this problem ! ! ! ! ?

  • [Solved] Conky cpu temp config.

    I am trying to get conky to display my cpu temp from my Asus Sabertooth 990X motherboard.
    [neil@sabertooth ~]$ sensors
    fam15h_power-pci-00c4
    Adapter: PCI adapter
    power1: 11.99 W (crit = 95.04 W)
    k10temp-pci-00c3
    Adapter: PCI adapter
    temp1: +6.8°C (high = +70.0°C)
    (crit = +90.0°C, hyst = +87.0°C)
    nouveau-pci-0100
    Adapter: PCI adapter
    temp1: +49.0°C (high = +100.0°C, crit = +110.0°C)
    it8721-isa-0290
    Adapter: ISA adapter
    in0: +2.80 V (min = +2.00 V, max = +1.50 V) ALARM
    in1: +2.86 V (min = +2.45 V, max = +2.99 V)
    in2: +1.01 V (min = +3.05 V, max = +2.47 V) ALARM
    +3.3V: +3.36 V (min = +0.36 V, max = +3.72 V)
    in4: +0.65 V (min = +2.87 V, max = +2.77 V) ALARM
    in5: +2.51 V (min = +2.84 V, max = +1.22 V) ALARM
    in6: +2.06 V (min = +2.29 V, max = +2.28 V) ALARM
    3VSB: +2.52 V (min = +5.88 V, max = +4.56 V) ALARM
    Vbat: +3.31 V
    fan1: 0 RPM (min = 14 RPM) ALARM
    fan2: 0 RPM (min = 20 RPM) ALARM
    fan3: 0 RPM (min = 11 RPM) ALARM
    temp1: +33.0°C (low = -5.0°C, high = +127.0°C) sensor = thermistor
    temp2: +29.0°C (low = -9.0°C, high = -6.0°C) sensor = thermistor
    temp3: -128.0°C (low = -34.0°C, high = -66.0°C) sensor = disabled
    intrusion0: OK
    Conky config line at the moment;
    ${execi 60 sensors | grep "temp1:"} °C
    gives me;
    The problem is that there are 3x'temp1' possibilities.
    I want to display this 'temp1';
    temp1:        +33.0°C  (low  =  -5.0°C, high = +127.0°C)  sensor = thermistor
    How do I set the cony config line to display this thermistor?
    Last edited by ancleessen4 (2012-04-16 19:51:31)

    Thanks to some further input from the guys over at Archbang and some further research I found the solution (a) to remove the weird 'A' character;
    http://crunchbanglinux.org/forums/topic … ut-solved/
    So, in conky I had to change;
    override_utf8_locale no
    to
    override_utf8_locale yes
    And (b) just for reference, I now have two options for cpu temp;
    CPU temp option1:$alignr${hwmon 4 temp 1}°C
    CPU temp option2:$alignr${execi 10 sensors | grep ^temp1 | tail -n 1 |awk '{print $2}'}
    Thanks for all the help everybody.

  • Temp space problem

    HI all,
    I receive an error while executing a procedure.
    ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
    can any one please exlain what is the problem.
    thanks in advance
    baskar k

    hi
    First ORA-01652 may occur because there is simply no space available in the temp tablespace of which is being used. The second cause of ORA-01652 may have to do with the local temp segment not being able to extent space even though there is space in other instances.
    To trouble shoot for ORA-01652, and find out which of the above scenarios are causing ORA-01652 use this query offered by MetaLink:
    select sum(free_blocks)
    from gv$sort_segment
    where tablespace_name = '<TEMP TABLESPACE NAME>'
    You will know that the first scenario is causing ORA-01652 to be thrown if the free block reads '0' because it signifies that there is no free space.
    If there is a good amount of space, you know that there is another cause for ORA-01652, and it is probably the second scenario. It is important to note that in a non-RAC environment, local instances are not able to extend the temp segments, so in the RAC environment, ORA-01652 has to be handled differently. If you are experiencing ORA-01652 in a non-RA environment, be aware that every SQL making use of the tablespace can fail.
    In RAC, more sort segment space can be used from other instances, which can help resolve ORA-01652 more easily. Try using the query below:
    select inst_id, tablespace_name, total_blocks, used_blocks, free_blocks
    from gv$sort_segment;
    Basically, you can then find out how much temp segment space can be used for each instance by viewing the total_blocks, and the used_blocks can reveal the space which has been used so far, and and the free_blocks gives the amount of space allocated to this particular instance. This being, to resolve ORA-01652, you can check out that used_blocks = total_blocks and free_blocks = 0 will probably show for the instance, and ORA-01652 will be shown multiple times within the alert log.
    This basically means that free space from other instances is being requested, and typically signifies that there is instance contention. Instance contention within the temporary space can make the instance take more time to process.
    In sever cases, a slowdown may occur, in which you might want try one of the following work-arounds:
    Increase size of the temp tablespace
    Increase sort_area_size and/or pga_aggregate_target
    However, remember to not use the RAC feature of DEFAULT temp space.
    If ORA-01652 is causing the slowdown, SMON will probably not be able to process the sort segment requests, you you should try to diagnose the contention:
    Output from the following query periodically during the problem:
    select inst_id, tablespace_name, total_blocks, used_blocks, free_blocks
    from gv$sort_segment;
    Global hanganalyze and systemstate dumps
    Hope this helps
    CHeers

  • [SOLVED]Xorg.conf, mouse config problem

    The Rapoo M765 mouse can not work properly under normal mouse configuration.
    The mouse goes beyond controll when config as below:
    hacksign@XSign [14:13:13] : ~
    >> cat /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
    #Section "InputClass"
    # Identifier "Mouse2"
    # MatchProduct "RAPOO RAPOO 2.4G Remote Mouse"
    # MatchIsPointer "yes"
    # MatchDevicePath "/dev/input/event*"
    # Driver "mouse"
    # Option "Protocol" "auto"
    # Option "Emulate3Buttons" "no"
    # Option "Buttons" "7"
    # Option "ButtonMapping" "1 2 3 6 7"
    #EndSection
    When there is no any configuration, the mouse can work abnormally. Movement and right/left click work fine, but I can not use scroll wheel,and the "go forward"&"go backward" mouse key can not work too.
    (I know Option "ZAxisMapping" "4 5" is the configuration of scroll wheel emulation.)
    The real problem is 'mouse beyond controll',the cursor goes crazyly on screen ....
    I guess it is something wrong of ButtonMapping option. But when I tried to get button number from command xev,when scroll wheel scrolles, I get something below(the scroll wheel movement is identified as a key event~):
    //left click
    ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3766452, (135,143), root:(2287,595),
    state 0x0, button 1, same_screen YES
    ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3766588, (135,143), root:(2287,595),
    state 0x100, button 1, same_screen YES
    //right click
    ButtonPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3767716, (135,143), root:(2287,595),
    state 0x0, button 3, same_screen YES
    ButtonRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3767852, (135,143), root:(2287,595),
    state 0x400, button 3, same_screen YES
    //mouse scroll, identified as keyboard event(?)
    KeyRelease event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3769332, (135,143), root:(2287,595),
    state 0x0, keycode 123 (keysym 0x1008ff13, XF86AudioRaiseVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
    KeyPress event, serial 34, synthetic NO, window 0x4a00001,
    root 0x264, subw 0x0, time 3769332, (135,143), root:(2287,595),
    state 0x0, keycode 122 (keysym 0x1008ff11, XF86AudioLowerVolume), same_screen YES,
    XLookupString gives 0 bytes:
    XmbLookupString gives 0 bytes:
    XFilterEvent returns: False
    here is some Information(I dont know why the mouse is identified as 'type:KEYBOARD'):
    hacksign@XSign [14:55:03] : ~
    >> xinput
    ⎡ Virtual core pointer id=2 [master pointer (3)]
    ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
    ⎜ ↳ RAPOO RAPOO 2.4G Remote Mouse id=13 [slave pointer (2)]
    ⎜ ↳ SynPS/2 Synaptics TouchPad id=15 [slave pointer (2)]
    ⎜ ↳ TPPS/2 IBM TrackPoint id=16 [slave pointer (2)]
    ⎣ Virtual core keyboard id=3 [master keyboard (2)]
    ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
    ↳ Power Button id=6 [slave keyboard (3)]
    ↳ Video Bus id=7 [slave keyboard (3)]
    ↳ Sleep Button id=8 [slave keyboard (3)]
    ↳ Heng Yu Technology Poker Pro S id=9 [slave keyboard (3)]
    ↳ Heng Yu Technology Poker Pro S id=10 [slave keyboard (3)]
    ↳ Integrated Camera id=11 [slave keyboard (3)]
    ↳ RAPOO RAPOO 2.4G Remote Mouse id=12 [slave keyboard (3)]
    ↳ AT Translated Set 2 keyboard id=14 [slave keyboard (3)]
    ↳ ThinkPad Extra Buttons id=17 [slave keyboard (3)]
    hacksign@XSign [14:55:06] : ~
    >> xinput list-props 13
    Device 'RAPOO RAPOO 2.4G Remote Mouse':
    Device Enabled (142): 1
    Coordinate Transformation Matrix (144): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
    Device Accel Profile (270): 0
    Device Accel Constant Deceleration (271): 1.000000
    Device Accel Adaptive Deceleration (272): 1.000000
    Device Accel Velocity Scaling (273): 10.000000
    Device Product ID (260): 9390, 8192
    Device Node (261): "/dev/input/event8"
    Evdev Axis Inversion (274): 0, 0
    Evdev Axes Swap (276): 0
    Axis Labels (277): "Rel X" (152), "Rel Y" (153), "Rel Horiz Wheel" (267), "Rel Dial" (268), "Rel Vert Wheel" (269)
    Button Labels (278): "Button Left" (145), "Button Middle" (146), "Button Right" (147), "Button Wheel Up" (148), "Button Wheel Down" (149), "Button Horiz Wheel Left" (150), "Button Horiz Wheel Right" (151), "Button Side" (265), "Button Extra" (266), "Button Unknown" (263), "Button Unknown" (263), "Button Unknown" (263), "Button Unknown" (263)
    Evdev Scrolling Distance (279): 1, 1, 1
    Evdev Middle Button Emulation (280): 0
    Evdev Middle Button Timeout (281): 50
    Evdev Third Button Emulation (282): 0
    Evdev Third Button Emulation Timeout (283): 1000
    Evdev Third Button Emulation Button (284): 3
    Evdev Third Button Emulation Threshold (285): 20
    Evdev Wheel Emulation (286): 0
    Evdev Wheel Emulation Axes (287): 0, 0, 4, 5
    Evdev Wheel Emulation Inertia (288): 10
    Evdev Wheel Emulation Timeout (289): 200
    Evdev Wheel Emulation Button (290): 4
    Evdev Drag Lock Buttons (291): 0
    hacksign@XSign [14:55:14] : ~
    >> grep -i rapoo /var/log/Xorg.0.log
    [ 29.102] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event7)
    [ 29.102] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 29.102] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 29.102] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 29.102] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event7"
    [ 29.102] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 29.102] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 29.102] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 29.102] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 12)
    [ 29.103] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event8)
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev pointer catchall"
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 29.103] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 29.103] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event8"
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found 9 mouse buttons
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found scroll wheel(s)
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found relative axes
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found x and y relative axes
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found absolute axes
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Forcing absolute x/y axes to exist.
    [ 29.103] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as mouse
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 29.103] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Adding scrollwheel support
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: YAxisMapping: buttons 4 and 5
    [ 29.103] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 29.103] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 13)
    [ 29.104] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: initialized for relative axes.
    [ 29.104] (WW) evdev: RAPOO RAPOO 2.4G Remote Mouse: ignoring absolute axes.
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) keeping acceleration scheme 1
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration profile 0
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration factor: 2.000
    [ 29.104] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration threshold: 4
    [ 29.104] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/mouse0)
    hacksign@XSign [14:59:47] : ~
    >> yaourt -Q|grep -i 'input-'
    local/xf86-input-evdev-trackpoint 2.9.1-1
    extra/xf86-input-keyboard 1.8.0-3 (xorg-drivers xorg)
    extra/xf86-input-mouse 1.9.1-1 (xorg-drivers xorg)
    extra/xf86-input-synaptics 1.8.1-1 (xorg-drivers xorg)
    Last edited by Hacksign (2015-01-14 02:22:51)

    Thanks for reply !
    change Driver 'mouse' to Driver 'evdev',solved cursor goes beyond controll problem.
    but I still can not use scroll button and 'go forward'&'go backward' button.
    (BTW:evdev_drv.so is from local/xf86-input-evdev-trackpoint, and local/xf86-input-evdev-trackpoint package is from AUR)
    I think, maybe something wrong with my button number mapping, but I still can not get scroll button number with 'xev' command....
    below is my configuration:
    hacksign@XSign [17:15:19] : /var/log
    >> cat /etc/X11/xorg.conf.d/50-mouse-acceleration.conf
    Section "InputClass"
    Identifier "Mouse2"
    MatchProduct "RAPOO RAPOO 2.4G Remote Mouse"
    MatchIsPointer "yes"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    Option "Protocol" "auto"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "9"
    Option "ButtonMapping" "1 2 3 6 7 8 9 4 5"
    EndSection
    and here is Xorg.0.log
    [ 11357.287] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 11357.287] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 11357.287] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 11357.287] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event7"
    [ 11357.287] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 11357.287] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 11357.287] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 11357.287] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/0003:24AE:2000.0003/input/input8/event7"
    [ 11357.288] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 12)
    [ 11357.288] (**) Option "xkb_rules" "evdev"
    [ 11357.288] (**) Option "xkb_model" "pc104"
    [ 11357.288] (**) Option "xkb_layout" "us"
    [ 11357.288] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/event8)
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev pointer catchall"
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "evdev keyboard catchall"
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: Applying InputClass "Mouse2"
    [ 11357.288] (II) Using input driver 'evdev' for 'RAPOO RAPOO 2.4G Remote Mouse'
    [ 11357.288] (**) RAPOO RAPOO 2.4G Remote Mouse: always reports core events
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: Device: "/dev/input/event8"
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: ButtonMapping '1 2 3 6 7 8 9 4 5'
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Vendor 0x24ae Product 0x2000
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found 9 mouse buttons
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found scroll wheel(s)
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found relative axes
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found x and y relative axes
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found absolute axes
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Forcing absolute x/y axes to exist.
    [ 11357.288] (--) evdev: RAPOO RAPOO 2.4G Remote Mouse: Found keys
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as mouse
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Configuring as keyboard
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: Adding scrollwheel support
    [ 11357.288] (**) Option "Emulate3Buttons" "no"
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: YAxisMapping: buttons 4 and 5
    [ 11357.288] (**) evdev: RAPOO RAPOO 2.4G Remote Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 11357.288] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:24AE:2000.0004/input/input9/event8"
    [ 11357.288] (II) XINPUT: Adding extended input device "RAPOO RAPOO 2.4G Remote Mouse" (type: KEYBOARD, id 13)
    [ 11357.288] (**) Option "xkb_rules" "evdev"
    [ 11357.288] (**) Option "xkb_model" "pc104"
    [ 11357.288] (**) Option "xkb_layout" "us"
    [ 11357.288] (II) evdev: RAPOO RAPOO 2.4G Remote Mouse: initialized for relative axes.
    [ 11357.288] (WW) evdev: RAPOO RAPOO 2.4G Remote Mouse: ignoring absolute axes.
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) keeping acceleration scheme 1
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration profile 0
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration factor: 2.000
    [ 11357.289] (**) RAPOO RAPOO 2.4G Remote Mouse: (accel) acceleration threshold: 4
    [ 11357.289] (II) config/udev: Adding input device RAPOO RAPOO 2.4G Remote Mouse (/dev/input/mouse0)
    [ 11357.289] (II) No input driver specified, ignoring this device.
    [ 11357.289] (II) This device may have been added with another device file.
    olive wrote:In the config file you mentioned, all is commented; do you mean that you have problems when you have uncommented it? You should not use the mouse driver (old deprecated driver) but evdev. Try to remove xf86-input-mouse and xf86-input-keyboard (same as before, this is deprecated and handled by evdev) and remove also a "joystick" driver if you have it (I have had problem with it conflicting with the evdev driver).
    Last edited by Hacksign (2015-01-13 09:27:06)

  • PDF XChange annotations are not saving (temp folder problem?)

    Hello,
    I'm having a problem with the XChange PDF viewer within Firefox:
    When annotating a file outside of Firefox, I can save the changes and have them reappear
    when I close and re-open the file
    Doing this inside Firefox, I cannot, it appears that the files are saved, but they do no
    reappear on re-opening. This is true even when annotating a file that is opened from my
    hard drive (as opposed to opening it from a website)
    Doing this inside IE, it works properly. However, I need to use Firefox here at work
    instead of IE or XChange separately.
    I believe the problem lies in the fact that when XChange/FF open a pdf inside FF, a file
    is created in C:\Temp and the changes are somehow being lost here. Interestingly, if I
    take the file opened within FF and open it in XChange outside the browser (by using the
    button in the bottom left of the viewer pane) I _still_ cannot save my changes, and I now
    get an error message along the lines of:
    ‘Error saving document to “c:\Temp\pdf38.tmp”:
    Error [IO subsystem]: Invalid access mode’
    where 'pdf38.tmp' is the name of the temp folder created when the original file was
    opened within FF.
    I didn’t have these problems a few months ago, so it’s something to do with the new
    versions of XChange and FF. Please let me know what you can do to fix this. I really
    like using XChange, but if this can’t be fixed I’ll have to switch to something else to
    do my work.
    == This happened ==
    Every time Firefox opened
    == Reinstalling latest versions of FF and PDF X-Change

    I wrote a ton of notes and I freaked out when it didn't work so I emailed the pdf to myself, and its the current version with all the notes that I had just taken.
    try it out! it worked for me

  • Photoshop CS6 temp memory problems

    Hi,
    My name is George,
    I'm working as a web-designer. I heard about new features in Photoshop cs6, like paragraph/character styles (something very good for web-designers).
    And tried those new features, works perfectly, but i found a big problem.
    When we are working in Photoshop, it instantly creates a PhotoshopTemp file in C:\Users\UserName\AppData\Local\Temp, and when I tried to create new paragraphs styles or character styles the memory of that temp files is increasing until your partition memory is not filed at all, for example at that moment in my C:\ partition I had about 3GB free memory, initially the PhotoshopTemp file had about 200MB, but when I tried to create a new paragraph style, temp file size increased up to 3.2GB, consuming all my C:\ drive free memory
    If you have any ideas, please help me...

    Pisarenco wrote:
    You see, the idea is that 3gb is enougth…
    Not even remotely!  
    Figure on needing 35 to 70 times as much Photoshop scratch disk space—or more—as the size of your largest open file.  Multiply that by the number of files you keep open, and add a bunch of GBs for the swap files of the OS.
    Additionally, a good rule of thumb is not to let any drive get more than 75%–80% full.
    The poster above who replied to your post is not just any Adobe employee, but a top Adobe engineer who has been writing Photoshop code for 16 years or longer.  You'll be wise not to dismiss his advice.
    Whatever your machine is, it's not adequate for a working web designer.

  • Jar File caching in temp directory problem

    Hello,
    I have a problem where the java plugin is caching jar_cache9999.jar (where 9999 is any number 0-9) files in the temp directory. I have tried following the directions for disk caching in the documentation, but these files are always created, never destroyed.
    I was wondering:
    1. Is there a simple setting that I could set that should resolve this problem? (un-setting "cache jars in memory" wouldn't seem to solve the problem as I would think that would only force the browser to use the same jar if it had already been loaded)
    2. Has this problem been corrected in later releases of the java plugin? I am using the jre1.2.2. When I looked at the problem here in the forums, the bug that was listed was listed as fixed.
    Thanks,
    Dan Hughes

    Hi,
    Java Plug-in has supported disk caching in previous versions by using the same cache the browser uses for all other web documents. This works for casual applet usage, but larger applets can often get flushed from the cache to make room for other documents since the browser has no knowledge that an applet file might be needed in the future. The result is that this caching strategy fails where is needed most in large business applets.
    From 1.3. the new feature is activated by including the new "cache_option" , "cache_archive" and "cache_version" values in the EMBED/OBJECT tag that specifies the use of Java Plug-in as below:
    <OBJECT ....>
         <PARAM NAME="archive" VALUE="...">
         <PARAM NAME="cache_option" VALUE="...">
         <PARAM NAME="cache_archive" VALUE="...">
         <PARAM NAME="cache_version" VALUE="...">
    </OBJECT>
    or
    <EMBED ....
         archive="..."
         cache_option="..."
         cache_archive="..."
         cache_version="...">
    For detail description please go through the following URL:
    http://java.sun.com/products/plugin/1.3/docs/appletcaching.html
    Hope this will help you.
    Anil.
    Developer Technical Support
    Sun Microsystems,
    http://www.sun.com/developers/products

  • FTP Adapter config problem (again :/ )

    Hello all.
    I know that this topic was discussed few times before but i still cant setup my FTP adapter.
    My OS is Win XP. I downloaded free ftp server (XLight FTP Server) and setup my oc4j-ra.xml in following way:
         <connector-factory location="eis/Ftp/FtpAdapter" connector-name="Ftp Adapter">
         <config-property name="host" value="10.172.201.57"/>
         <config-property name="port" value="210"/>
         <config-property name="username" value="szeryf"/>
         <config-property name="password" value="szeryf"/>
         </connector-factory>
    where shown ip address is my computer address. I also created user szeryf/szeryf at my local FTP server and tried to connect to that server using some ftp client - with success. Then i created some simple BPEL process to upload file to FTP server. Each time i try i get fault that connection to server failed.
    Maybe someone experienced such a thing and could help me with that problem?
    Regards,
    Chris

    Are you sure your ftp server is on port 210? It seems odd.
    And is there a reason you are editing oc4j-ra.xml directly? Why not make a partner link and get that working first?

  • Temps causing problems? 24" iMac, mid-2007

    I have an iMac that started having possible heat issues about 3-4 months ago. After it boots up or wakes up from being asleep, within a few minutes, the CPU fan will slowly speed up to around 3300 rpm and stay there the entire time the computer is running. If my kids use it for playing games on, the screen will eventually go black and I have to press and hold the power button to shut it off and restart it.
    I am looking at the temps through iStat Pro, but I dont know if any of these are abnormally high.
    The iMac is currently running at 3300rpm and here are the current temps. All that has occured is the iMac was booted up, I watched iStat, then opened Safari to type this email. The CPU is running at around 5% utilization.
    Temps are in celsius.
    iMac HD: 30
    CPU: 41
    Airport card: 44
    Ambient: 29
    GPU: 97
    GPU diode: 116
    GPU Heatsink: 115
    HD Bay: 42
    Would this indicate a logic board problem? I have taken the iMac apart and cleaned all the dust from inside very good and the problem persists.

    Hi James. It has been a while since I did this, so I am going from memory, but this is what I did.
    I checked prices of a brand new GPU w/heatsink from Apple, and it was incredibly expensive.
    So I started trolling through Craigslist and ebay and finally found someone selling a used heatsink without the GPU for my model of iMac. I bought it for $5 on ebay. I thought it was an incredible deal, and I wouldnt waste much if it didnt work.
    So I got the replacement heatsink and bought some thermal paste off Amazon that everyone recommended. It was called Artic Silver.
    Once the heatsink and thermal paste came in, I tore it all apart using instructions I found on ifixit.com
    Here is the site I used to figure out how to tear it apart:
    http://www.ifixit.com/Guide/Replacing+iMac+Intel+24-Inch+EMC+2111+GPU+Assembly/5 214/1
    This is the thermal paste I bought:
    http://www.amazon.com/dp/B0002EQU6C
    Once I did all of this, I reassembled it (breaking my infrared sensor in the process) back, turned it on, and all the problems I was once having completely went away.
    Here is what I dont know. I dont know what was really bad. It could have been a bad bonding with the thermal paste. It was all cracked and dried out on the old heatsink, so maybe just re-pasting it would have worked?
    It could have also been the thermal sensors that are built in to the heatsink as well. I had no way of testing whether they were working or not.
    All I know is that by replacing the heatsink and re-thermal-pasting it, my iMac is now back to normal.
    I hope this helps.

  • Temp Profile Problem. Windows 7, Domain

    I have about 50 machines on domain with Windows 7 32bit OS.  We are having a problem with windows not grabbing our default profile for three of our users and instead giving them a Temp Profile every time they log into the domain.  One is a normal
    user account and two are admin.  All other users can log onto any computer at anytime and they do not get the temp profile.  The three accounts get the temp profile no matter which computer on the domain they choose to log in to.  Any ideas?

    Creating a default local profile for Windows 7
    Create a new standard local user account (named STDPROFILE), add this account to the local Administrators group on the PC.
    Reboot, then log onto the PC using the local user account from previous Step.
    Set up profile settings as desired; desktop icons, mapped printers, FRVIS physical/logical, IE home page, etc..
    Reboot when finished, log back onto PC with the local “Administrator” account.
    Double-click “Computer”, then click organize, folder and search options. On the view tab, make sure “show hidden files, folders and drives” is selected; also uncheck “Hide protected Operating System Files”. Click OK
    Under C:/Users, rename the hidden “Default” user folder (NOT “Default User”)
    Make copy of the profile (STDPROFILE) customized in Step 2, rename the folder “Default”.
    Right click the folder—under properties, then security tab—add “Everyone” permissions with Full Control (include all folders and subfolders).
    Run regedit.exe
    Click on HKEY-LOCAL-MACHINE. Under File, select “Load Hive”
    Browse to the “C:/Users/Default” folder, click on ntuser.dat (make sure hidden and system files are displayed). Name the key TEMPLATE_ACCOUNT.
    Right click on the TEMPLATE_ACCOUNT key, select Export, save the .reg file to the desktop.
    Open the .reg file with Notepad, and under “Edit—replace..” put the user name STDPROFILE in the “Find what” field, to be replace with the string %USERNAME% -- choose “Replace All” then save the .reg file. Double click it to re import the changes.
    Re-open regedit.exe
    Under TEMPLATE_ACCOUNT – Control Panel – desktop, change “Wallpaper” path to the wallpaper of your choice (a local OR network path will work here). Check other settings and modify any other keys.
    If RealPlayer is installed to the image—click on TEMPLATE_ACCOUNT—SOFTWARE—Realnetworks. Delete the entire RealNetworks Key. This key will recreate.
    When done, click on TEMPLATE_ACCOUNT. Then click File, select “unload hive”. This will save the changes you made.

  • Visa config. problem

    Hi, everyone
    I connect my device at COM1, but I cannot find that com port in serial config.
    It means I cannot find any connection with my device in system manager.
    I only want to use labview to control my device, even not use dll.
    Anybody can figure out what problems in my situation ?
    # I use vb.net to do the same thing, and it works. So I think my deivce have no problems.
    Certified LabVIEW Developer

    Hi, RavensFan
    Com1 shows in windows device manager, but it not show my device name.
    Like this picture.
    So visa resource name not show "Com1".
    I didn't install MAX, and I will try later and reinstall my visa driver.
    thank for your reply.
    Certified LabVIEW Developer

  • Config problem when transport

    Hi Experts,
    I created a Z output type in NACE in Dev system 200 client. and with this i create a process code to for my inbound IDOC partner profile. Along with this we created IDOC segments and other stuff. Now after transport I am not getting these changes reflected in TST System
    How can we confirm about thr TR request number in whic TR the changes saved.
    I think the possible problems are:
    1. May be saved in any other TR or
    2. Because of config changes are done in 200 client instead of 100 client.
    I have no idea about config related things.
    Can anyone please tell me about the problem and its solution
    Regards,
    Nik

    Hi John,
    Thanks for your reply. The thing is,
    I dont remember, when i created the Process code for inbound IDOC did it asked for the TR, ya it must ask, but i forget the TR number. Can you please help me how to get which TR it is saved. Also the thing is when i treed creating new Process Code it is not asking me any TR. So the Posibilities i think may be it dont ask for the TR or a TR is not Transported thats y it is not asking me for the new TR.
    In menu i am not getting any button which tell me about the TR in which the process code saved.
    For NACE issue, i am bit confused regarding the client. Can u please explain me to add an output type in NACE, which client i have to use (100 client ?).For a new output type I used the cleint i usually work on i.e 200. and things are working fine in DEV, But when i transported all my requests to TST server, i am not able to see the output type there in TST system.
    DO I NEED TO DO BOTH THINGS PROCESS CODE & NACE IN CONFIG CLIENT ??
    Regards,
    Nik

  • KEITHLEY 2400 code problem

    Hello
    I am trying to acquire data from keithley 2400 using labview 9, NI VISA 4.5.1,  and serial RS 232 interface.
    I used the attached "Keithley 24XX Read Single.vi"  ( obtained from NI certified drivers )   and got this message-
    Error -1073807346
    occurred at VISA Write in Keithley 24XX.lvlib:Error Query.vi->Keithley 24XX.lvlib:Configure Measurement.vi->Keithley 24XX Read Single.vi
    The keithley meter indicated "REM", as soon as VI was run, which means "Remote" operation and froze up.
    Under MAX, i can see COM1  and device status is "Device is working properly"
    Kindly  help in debugging
    1. Should i use GPIB?  Are the drivers good for serial interface? I used the  first NI certified driver indicating serial/GPIB compatibility.
    2.Is keithley meter being recognized by MAX?
    3. Any errors in the codes?
    Regards
    poli
    Attachments:
    Keithley 24XX Read Single.vi ‏24 KB

    you  guys are amazing!
    I switched off all other vi and tested the "Basic serial read and write.vi". It worked fine.
    So the first step regarding MAX communication  is ok.
    Now, i tested the attached "Read (Single Point).vi and it showed the following error, after some time.
    code = -1073807339
    VISA Read in Keithley 24XX.lvlib:Error Query.vi->Keithley 24XX.lvlib:Read (Single Point).vi
    If i get this to work, that will solve the problem.
    Attachments:
    Read (Single Point).vi ‏17 KB
    Keithley 24XX.lvlib ‏12 KB

  • LMS 4.1 multiserver config problem

    I m facing a problem in multiserver configuration, in making master-slave servers.
    Master server config is done, certificates are imported, SSO is also configured and all the pre-requisites given in the multiserver-config doc of lms4.1.
    While making slave server from stand-alone, getting errors like "cetrificate expired" and "certificte not installed" in two different ways, putting master-server IP as master address and putting master-server domain name respectively, both snapshots are attached. My Domain name is DNS resolvable.
    Anyone can help me out on this...?

    You can add your custom prompts into /opt/CSCOpx/objects/cmf/data/TacacsPrompts.ini. No restart of LMS is required for the addition to be recognized.

Maybe you are looking for

  • How can i search certain music in the library of my device instead of the whole itunes library

    i want to search albums that are on my phone but when i type the name of it in the searchbar in the new itunes and the album shows up it gives me the album for the whole itunes library and not my phone im sorry if this is confusing but this is the es

  • I can't get IWeb to publish

    I can't get IWeb to publish the files correctly on my account with just host.com

  • PoP Port Connector Issues

    I seem to have a dodgie pop-port on my phone or dodgie cables? I wiggle the pc cable and that causes it to disconnect from the pc and phone yet its still in the socket and the headset sometimes if i wiggle it, the sound cuts out.. Can I take this to

  • URGENT: Motion JPEG?? Sequence problems

    HI I have a sequence that instead of having DV PAL in the settings has Motion JPEG A - will this be ok to go into DVDSP for a DVD video project??. This sequence has a few issues with frame size which I've made posts about and trying to rectify. In th

  • IMessage error / bug found

    My friend has a non ios5 iPhone 4. I have an ios5 iPhone 4s. I took their sim card and out and put it in my ios5 device, now when I text them my phone believes they have iMessage when they don't. I turned off iMessage so I can still text them. Has an