Nm-openvpn broken

Hello,
The good-old workaround still applies to launch vpn:
~/$ killall nm-applet; killall gnome-shell; sh -c 'nm-applet &'; gnome-shell &[1] 8946
But since yesterday's pacman -Syu (or even one earlier from pacman.log):
[2012-11-02 21:51] upgraded openvpn (2.2.2-1 -> 2.2.2-2)
[2012-11-02 21:51] upgraded networkmanager-openvpn (0.9.4.0-1 -> 0.9.6.0-1)
I get the following into console, and no connection dialogues (Connection failed notification instead)
JS LOG: Error 'VPN plugin at /usr/lib/gnome-shell/nm-openconnect-auth-dialog is not executable' while processing VPN keyfile '/etc/NetworkManager/VPN/nm-openconnect-service.name'
JS LOG: Invalid VPN service type (cannot find authentication binary)
After research and performing:
cd /usr/lib/gnome-shell/
sudo ln -s /usr/lib/networkmanager/nm-openvpn-* .
Now I get this in the console:
JS LOG: Invalid VPN service type (cannot find authentication binary)
Hope you'll help me out.. Cheers!
-- 
sledge

Could anyone please check this behaviour before I submit bug?
I do not know which package broke the functionality, but I am 90% sure on 2nd of November it still worked, and an update on 11th November broke things
Cheers!
-- 
sledge

Similar Messages

  • How to configure Firefox to use OpenVPN?

    summary: I'm running OpenVPN from a Debian client through a Debian jumpbox/server. After I [start the server, start the client] most IP-based applications (DNS, ping, ssh) seem to work from the client, but client's Firefox cannot connect to http://www.whatismyip.com/ (or any other URI). How to configure Firefox to use the VPN? or otherwise fix the problem? or further debug it?
    details:
    I have a laptop running debian_version==jessie/sid with Firefox version=33.0 which needs to access a compute cluster. The cluster formerly required only an SSL VPN (enabled by a Firefox plugin) to access, but now has several additional requirements, which I seek to satisfy by running the SSL VPN through a jumpbox running an OpenVPN server. The jumpbox is running a "vanilla" Debian 7.7.
    I have been using the laptop successfully for a few years without network problems. Currently I have the laptop connected by wire directly to an ISP-supplied modem/router. With `openvpn` NOT running on the laptop, I see:
    * `ifconfig` shows no entry='tun0' (just "the usual" entries for 'eth0', 'lo', 'wlan0'), and shows the expected client IP# bound to 'eth0'.
    * I can `ping` my jumpbox/server using its real IP#, but cannot `ping 10.8.0.1`
    * I can `ssh` to my jumpbox/server using its real IP#, but cannot `ssh 10.8.0.1`
    * `nslookup www.whatismyip.com` gives correct results
    * browsing to http://www.whatismyip.com/ shows my client's IP# (as also shown in `ifconfig`)
    Both my client/laptop and server/jumpbox setups are quite generic OpenVPN-wise, and are almost exactly as described on the Debian wiki
    https://wiki.debian.org/openvpn%20for%20server%20and%20client
    me@jumpbox:~$ date ; cat /etc/openvpn/server.conf
    Sat Nov 8 16:49:00 EST 2014
    port 1194
    proto udp
    dev tun
    ca /etc/openvpn/ca.crt
    cert /etc/openvpn/server.crt
    key /etc/openvpn/server.key
    dh /etc/openvpn/dh1024.pem
    server 10.8.0.0 255.255.255.0
    ifconfig-pool-persist ipp.txt
    push "redirect-gateway def1 bypass-dhcp"
    push "dhcp-option DNS 8.8.8.8" # google public DNS
    keepalive 10 120
    comp-lzo
    user nobody
    group nogroup
    persist-key
    persist-tun
    status openvpn-status.log
    verb 3
    me@laptop:~$ date ; cat /etc/openvpn/client1.conf
    Sat Nov 8 16:51:31 EST 2014
    client
    dev tun
    proto udp
    remote ser.ver.IP.num 1194
    resolv-retry infinite
    nobind
    user nobody
    group nogroup
    persist-key
    persist-tun
    mute-replay-warnings
    ca /etc/openvpn/ca.crt
    cert /etc/openvpn/client1.crt
    key /etc/openvpn/client1.key
    ns-cert-type server
    comp-lzo
    verb 3
    up /etc/openvpn/update-resolv-conf
    down /etc/openvpn/update-resolv-conf
    My jumpbox/server firewall is currently set to forward everything, using `iptables -t nat -A POSTROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE`:
    me@jumpbox:~$ date ; sudo iptables -L
    Sat Nov 8 16:42:06 EST 2014
    Chain INPUT (policy ACCEPT)
    target prot opt source destination
    fail2ban-ssh tcp -- anywhere anywhere multiport dports ssh
    Chain FORWARD (policy ACCEPT)
    target prot opt source destination
    Chain OUTPUT (policy ACCEPT)
    target prot opt source destination
    Chain fail2ban-ssh (1 references)
    target prot opt source destination
    RETURN all -- anywhere anywhere
    After I start `openvpn` on first the server and then the client, I see no OpenVPN errors on either the server or the client:
    me@jumpbox:~$ sudo openvpn --script-security 2 --config /etc/openvpn/server.conf &
    Sat Nov 8 17:48:25 2014 OpenVPN 2.2.1 x86_64-linux-gnu [SSL] [LZO2] [EPOLL] [PKCS11] [eurephia] [MH] [PF_INET6] [IPv6 payload 20110424-2 (2.2RC2)] built on Jun 18 2013
    Sat Nov 8 17:48:25 2014 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
    Sat Nov 8 17:48:25 2014 Diffie-Hellman initialized with 1024 bit key
    Sat Nov 8 17:48:25 2014 TLS-Auth MTU parms [ L:1542 D:138 EF:38 EB:0 ET:0 EL:0 ]
    Sat Nov 8 17:48:25 2014 Socket Buffers: R=[212992->131072] S=[212992->131072]
    Sat Nov 8 17:48:25 2014 ROUTE default_gateway=ser.ver.gate.way
    Sat Nov 8 17:48:25 2014 TUN/TAP device tun0 opened
    Sat Nov 8 17:48:25 2014 TUN/TAP TX queue length set to 100
    Sat Nov 8 17:48:25 2014 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
    Sat Nov 8 17:48:25 2014 /sbin/ifconfig tun0 10.8.0.1 pointopoint 10.8.0.2 mtu 1500
    Sat Nov 8 17:48:25 2014 /sbin/route add -net 10.8.0.0 netmask 255.255.255.0 gw 10.8.0.2
    Sat Nov 8 17:48:25 2014 Data Channel MTU parms [ L:1542 D:1450 EF:42 EB:135 ET:0 EL:0 AF:3/1 ]
    Sat Nov 8 17:48:25 2014 GID set to nogroup
    Sat Nov 8 17:48:25 2014 UID set to nobody
    Sat Nov 8 17:48:25 2014 UDPv4 link local (bound): [undef]
    Sat Nov 8 17:48:25 2014 UDPv4 link remote: [undef]
    Sat Nov 8 17:48:25 2014 MULTI: multi_init called, r=256 v=256
    Sat Nov 8 17:48:25 2014 IFCONFIG POOL: base=10.8.0.4 size=62, ipv6=0
    Sat Nov 8 17:48:25 2014 ifconfig_pool_read(), in='TomRoche,10.8.0.4', TODO: IPv6
    Sat Nov 8 17:48:25 2014 succeeded -> ifconfig_pool_set()
    Sat Nov 8 17:48:25 2014 IFCONFIG POOL LIST
    Sat Nov 8 17:48:25 2014 TomRoche,10.8.0.4
    Sat Nov 8 17:48:25 2014 Initialization Sequence Completed
    me@laptop:~$ sudo openvpn --script-security 2 --config /etc/openvpn/client1.conf &
    Sat Nov 8 17:49:12 2014 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
    Sat Nov 8 17:49:12 2014 Socket Buffers: R=[212992->131072] S=[212992->131072]
    Sat Nov 8 17:49:12 2014 NOTE: UID/GID downgrade will be delayed because of --client, --pull, or --up-delay
    Sat Nov 8 17:49:12 2014 UDPv4 link local: [undef]
    Sat Nov 8 17:49:12 2014 UDPv4 link remote: [AF_INET]jump.box.IP.num:1194
    Sat Nov 8 17:49:12 2014 TLS: Initial packet from [AF_INET]jump.box.IP.num:1194, sid=25df7af6 0ece4089
    Sat Nov 8 17:49:13 2014 VERIFY OK: depth=1, <my config data/>
    Sat Nov 8 17:49:13 2014 VERIFY OK: nsCertType=SERVER
    Sat Nov 8 17:49:13 2014 VERIFY OK: depth=0, <my config data/>
    Sat Nov 8 17:49:14 2014 Data Channel Encrypt: Cipher 'BF-CBC' initialized with 128 bit key
    Sat Nov 8 17:49:14 2014 Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication
    Sat Nov 8 17:49:14 2014 Data Channel Decrypt: Cipher 'BF-CBC' initialized with 128 bit key
    Sat Nov 8 17:49:14 2014 Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication
    Sat Nov 8 17:49:14 2014 Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 1024 bit RSA
    Sat Nov 8 17:49:14 2014 [TomRoche] Peer Connection Initiated with [AF_INET]jump.box.IP.num:1194
    Sat Nov 8 17:49:16 2014 SENT CONTROL [TomRoche]: 'PUSH_REQUEST' (status=1)
    Sat Nov 8 17:49:16 2014 PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 8.8.8.8,route 10.8.0.1,topology net30,ping 10,ping-restart 120,ifconfig 10.8.0.6 10.8.0.5'
    Sat Nov 8 17:49:16 2014 OPTIONS IMPORT: timers and/or timeouts modified
    Sat Nov 8 17:49:16 2014 OPTIONS IMPORT: --ifconfig/up options modified
    Sat Nov 8 17:49:16 2014 OPTIONS IMPORT: route options modified
    Sat Nov 8 17:49:16 2014 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified
    Sat Nov 8 17:49:16 2014 ROUTE_GATEWAY lap.top.gate.way/255.255.255.0 IFACE=eth0 HWADDR=la:pt:op:MAC:ad:dr
    Sat Nov 8 17:49:16 2014 TUN/TAP device tun0 opened
    Sat Nov 8 17:49:16 2014 TUN/TAP TX queue length set to 100
    Sat Nov 8 17:49:16 2014 do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0
    Sat Nov 8 17:49:16 2014 /sbin/ip link set dev tun0 up mtu 1500
    Sat Nov 8 17:49:16 2014 /sbin/ip addr add dev tun0 local 10.8.0.6 peer 10.8.0.5
    Sat Nov 8 17:49:16 2014 /etc/openvpn/update-resolv-conf tun0 1500 1542 10.8.0.6 10.8.0.5 init
    dhcp-option DNS 8.8.8.8
    Sat Nov 8 17:49:16 2014 /sbin/ip route add lap.top.IP.num/32 via lap.top.gate.way
    Sat Nov 8 17:49:16 2014 /sbin/ip route add 0.0.0.0/1 via 10.8.0.5
    Sat Nov 8 17:49:16 2014 /sbin/ip route add 128.0.0.0/1 via 10.8.0.5
    Sat Nov 8 17:49:16 2014 /sbin/ip route add 10.8.0.1/32 via 10.8.0.5
    Sat Nov 8 17:49:16 2014 GID set to nogroup
    Sat Nov 8 17:49:16 2014 UID set to nobody
    Sat Nov 8 17:49:16 2014 Initialization Sequence Completed
    I then see the following on my client:
    * `ifconfig` shows a new entry=`tun0`, which looks correct
    * I can `ping` the server using either its real IP# or `10.8.0.1`
    * I can `ssh` to the server using either its real IP# or `10.8.0.1`
    * `nslookup www.whatismyip.com` gives correct results
    ... but I get no connection if I open a new instance of Firefox and browse to http://www.whatismyip.com/ :-( "Looking up www.whatismyip.com..." succeeds quickly but the status line continues to display "Connecting to www.whatismyip.com..." until the attempt times out. I also get the same behavior (connection timeout) if I open a new instance of Chrome, or if I browse to http://www.whatismyip.com/ with a Firefox opened prior to starting OpenVPN. FWIW I get the same behavior browsing to any URI, including (e.g.) Google.
    This is a major problem for me! For the SSL VPN to work, I need to start a Firefox and run it (since the SSL VPN's vendor only supports it on Linux via a Firefox plugin) to access a particular remote-access website. Furthermore I need the SSL VPN to run through the jumpbox/OpenVPN. (Don't ask, it's a long, sad story ...)
    Is there something I must do to configure Firefox to use the VPN? Or is there some other way to fix this?
    Alternatively, what should I do to further debug the problem? It just seems odd to me that the other services work (e.g., `nslookup`, `ssh`) but Firefox does not. That being said, both Firefox and Chrome fail in this usecase, so the problem might be generic to web browsers.
    your assistance is appreciated, Tom Roche <[email protected]>

    You're kidding. You have to go through that rigamarole just to put your bookmarks on your own server? Where's the simple FTP option?
    Also, the above-linked article has a broken link. The link to the weaveserver (which is what you have to set up on your own server) is no good, and there is no obvious replacement. There are plenty of Weave-related repositories here:
    http://hg.mozilla.org/labs
    but it's not clear what you need.

  • Having major OpenVPN difficulties [Self-solved]

    EDIT: the problem was caused by this, in my /etc/openvpn/server.conf:
    log /var/log/openvpn/openvpn.log
    log-append /var/log/openvpn/openvpn.log
    ONLY ONE of those two lines is necessary; they are two different ways of logging to openvpn.log.
    Now that it's finally done and I have a working OpenVPN server, I almost feel like writing about some of my discoveries and the things I learned along the way in the Wiki article.
    Original post:
    The openvpn daemon script is reporting failure, and when I try openvpn from the command line (as "/usr/sbin/openvpn --verb 9 --conf /etc/openvpn/server.conf") I get no output, no messages, nothing; it's as if I hit enter on an empty line. Is there any way to monitor what the program is doing when it attempts to start up (i.e. get information about what's going on), so that I can finally diagnose the problem properly and be finished with this time-hungry pet project?
    For at least a week I have been trying and trying and trying to get an OpenVPN server successfully running on my Arch Linux machine, and now I'm at my wits' end. I decided to post after having spent the past seven hours reading the OpenVPN FAQ's and HOWTO's, the manual page, and the partially obsolete wiki pages about configuring OpenVPN.
    As for my setup, here's a rough chronology of what I have accomplished so far. I'm pretty sure I took all the necessary steps;
    1. I set up a bridge; my Arch box was previously acting as a gateway with a class A subnet. To continue having this functionality while adding a bridge so that OpenVPN could run in bridged mode, I configured a bridge, br0, to serve the same essential purpose as eth1 initially did in controlling the subnet. Essentially, I made the following changes (taking advice from http://www.openvpn.net/index.php/open-s … ging.html):
    /etc/rc.conf, FROM:
    eth0="dhcp"
    eth1="10.1.1.1 netmask 255.255.255.224 broadcast 10.1.1.31"
    TO:
    eth0="dhcp"
    eth1="eth1 0.0.0.0 promisc up"
    br0="br0 10.1.1.1 netmask 255.255.255.224 broadcast 10.1.1.31"
    INTERFACES=(eth0 eth1 br0)
    Also, I added "tun" and "bridge" to the MODULES list in rc.conf, and added to /etc/conf.d/bridges:
    bridge_br0="eth1"
    BRIDGE_INTERFACES=(br0)
    After adding the following firewall rules, everything was working as it was previously (machines could connect to the bridge-controlled subnet through eth1 and hence to the WAN);
    iptables -N fw-interfaces
    iptables -A FORWARD -j fw-interfaces
    iptables -A fw-interfaces -i br0 -j ACCEPT
    iptables -A fw-interfaces -i eth1 -j ACCEPT
    iptables -A fw-interfaces -i tap0 -j ACCEPT
    iptables -t nat -A POSTROUTING -s 10.42.144.0/16 -d 10.42.144.0/16 -j ACCEPT
    iptables -t nat -A POSTROUTING -s 10.42.144.0/16 -j MASQUERADE
    iptables -t nat -A POSTROUTING -s 10.42.144.0/16 -o eth0 -j MASQUERADE
    Furthermore, the following is written in /etc/dnsmasq.conf:
    listen-address=10.1.1.1
    dhcp-range=10.1.1.2,10.1.1.5,24h
    2. I wrote init scripts for adding a virtual interface (tap0) to be used by OpenVPN; Since I want to be able to use the bridge/gateway when OpenVPN isn't running (since my desktop computer uses the gateway!) and most of the openvpn init scripts out there (on the community wiki / OpenVPN website) create and destroy bridges as needed by the OVPN daemon, I decided to keep my bridge configuration as it is and put the necessary commands for adding a virtual tap device, configuring it and attaching it to the existing bridge (and finally attempting to start OpenVPN) in /etc/rc.local, and to write these commands I referred to http://www.openvpn.net/index.php/open-s … dging.html ;
    /usr/sbin/openvpn --mktun --dev tap0
    brctl addif br0 tap0
    ifconfig tap0 0.0.0.0 promisc up
    /etc/rc.d/openvpn start
    3. I took the necessary steps to configure openvpn; I generated the client/server keys, copied them to /etc/openvpn/ and wrote my server configuration file as follows:
    mode server
    port 1194
    proto udp
    dev tap0
    ca ca.crt
    cert server.crt
    key server.key
    dh dh1024.pem
    server-bridge 10.1.1.1 255.255.255.224 10.1.1.6 10.1.1.30 # I set this option using the instructions at http://openvpn.net/index.php/open-source/faq.html#bridge-addressing, since I already use dnsmasq on the first 4 available client addresses on the subnet
    client-to-client
    comp-lzo
    user nobody # I have tried leaving this line commented out
    group nobody # I have tried leaving this line commented out
    status /var/log/openvpn/openvpn-status.log
    log /var/log/openvpn/openvpn.log
    log-append /var/log/openvpn/openvpn.log
    verb 9
    Also, for the daemon script I'm using with the one supplied in the Arch package, and verified that the command it uses for starting the daemon isn't broken; I put "echo" before the command to see what it was, and it put out:
    /usr/sbin/openvpn --daemon --writepid /var/run/openvpn/server.pid --cd /etc/openvpn --config /etc/openvpn/server.conf
    Is there something I'm missing? should I change permissions on any of the key files or directories that the daemon will be using?
    Last edited by deconstrained (2009-12-06 04:43:55)

    To suppress this message:
    NOTE: OpenVPN 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables
    put
    script-security 3
    in your /etc/openvpn/openvpn.conf. The following one:
    VERIFY ERROR: depth=1, error=self signed certificate in certificate chain
    may suggest that your client has no access to CA certificates. Ensure this part is set up as following:
    ca /etc/openvpn/ca.crt
    cert /etc/openvpn/user.crt
    key /etc/openvpn/user.key
    ns-cert-type server
    Would you mind pasting the exact content of your /etc/openvpn/openvpn.conf?
    Edit: is your OpenVPN instructed to update /etc/resolv.conf once the connection is established? Do you have a file with your password in your config directory and a line in the config file pointing it, like this:
    auth-user-pass /etc/openvpn/password
    Last edited by bohoomil (2012-05-11 14:09:30)

  • [SOLVED] Cinnamon - network settings kind of broken

    Hey,
    after the last huge update -everything went fine- my network setting seem to be broken, although I'm online. When clicking "Network" in Cinnamon's system systems or right clicking on the NetworkManager applet and selecting "Network Settings" an additional popup appears saying:
    The system network services are not compatible with this version.
    I can simply close it and then look at my network setting, but the interface doesn't show up anymore.
    I have no clue how to fix this, here are some information:
    [klemens@arch-pc ~]$ psl network manager
    local/libnm-glib 1.0.0-1
    NetworkManager library
    local/libnm-gtk 1.0.0-1
    NetworkManager GUI library
    local/network-manager-applet 1.0.0-1
    Applet for managing network connections
    local/networkmanager 1.0.0-1
    Network Management daemon
    local/networkmanager-openconnect 1.0.0-1
    NetworkManager VPN integration for openconnect
    local/networkmanager-openvpn 1.0.0-2
    NetworkManager VPN plugin for OpenVPN
    [klemens@arch-pc ~]$ ip link
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    2: enp0s25: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT group default qlen 1000
    link/ether e0:56:88:41:77:e6 brd ff:ff:ff:ff:ff:ff
    As already mentioned, my internet connection works fine, it's just not configurable through cinnamon anymore. Is anyone experiencing similar behaviour?
    Last edited by klenamenis (2015-02-10 00:02:29)

    yup seems to be a version issue. There is some version check in cinnamon-control-center
    https://bbs.archlinux.org/viewtopic.php?id=192939
    Although I can still edit network connections. Clicking on the network Manager applet has to options at the bottom "Network Setting" (doesn't work) and "Network Connections" which shows another dialog to edit connections this one works. It might that it comes with the network-manager-applet package. If so this might be a workaround until the version check in the control center gets fixed upstream.
    Another solution would be to apply the patch proposed in the thread I linked but I didn't try that.

  • OpenVPN server kill ScomAgent omiserver connection

    Hi,
    SCOM 2012 R2
    We have trouble to run scom agent on centos6 coexistation with OpenVPN server. When openvpn server service is running omiserver log errors and scom server lost heart beating to scom agent. When stop OpenVpn service, connection is back
    Does anybody know solution?
    Omiserver log file
    2014/04/15 15:14:00: WARNING: lost connection to agent running as [0]
    2014/04/15 15:15:01: WARNING: lost connection to agent running as [0]
    2014/04/15 15:15:45: WARNING: _WriteV - Error on writev for socket 11: Broken pipe
    2014/04/15 15:17:55: WARNING: lost connection to agent running as [0]
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: cannot send message: invalid handler (msg->clientID) (nil)
    2014/04/15 15:17:55: WARNING: _Sock_Read - SSL_read returned OS error: 9
    2014/04/15 15:17:56: ERROR: Error on read for socket 12: Connection reset by peer
    2014/04/15 15:17:56: WARNING: lost connection to agent running as [0]
    2014/04/15 15:20:45: ERROR: Error on read for socket 12: Connection reset by peer
    2014/04/15 15:20:45: WARNING: lost connection to agent running as [0]
    2014/04/15 15:20:48: ERROR: Error on read for socket 15: Connection reset by peer
    2014/04/15 15:20:48: WARNING: lost connection to agent running as [0]
    2014/04/15 15:30:45: WARNING: _WriteV - Error on writev for socket 15: Broken pipe
    2014/04/15 15:30:48: WARNING: lost connection to agent running as [0]
    2014/04/15 15:30:48: WARNING: _Sock_Read - SSL_read returned OS error: 9
    2014/04/15 15:30:49: WARNING: lost connection to agent running as [0]
    2014/04/15 15:30:53: WARNING: lost connection to agent running as [0]
    2014/04/15 15:30:57: WARNING: lost connection to agent running as [0]

    The first command is calling a schema on the agent which tells the agent what provider is being called. It is not going out to the web. This is how WSMan works. You can check out the following links if you want more details.
    http://msdn.microsoft.com/en-us/library/aa384470%28v=vs.85%29.aspx
    http://en.wikipedia.org/wiki/WS-Management
    For the second command, can you run it again and if it fails run the following to verify the OMI daemon is running.
    ps -ef | grep omiserver
    Which should return something similar:
     root 24264     1  0 11:27:40 ?        17:57 /opt/microsoft/scx/bin/omiserver -d
    If the OMI daemon is running but the omicli command still fails, OpenVpn is somehow blocking this as my guess is once OpenVpn is shutdown the omicli command will work.
    If the OMI daemon is not running try starting it by running:
    scxadmin -start
    then try running the omicli command again.
    Regards,
    -Steve

  • Jackd + guitar: "timeouts and broken pipes"

    Hi friends! I'm trying to pass my electric guitar via any rack/effects (like Guitarix or Creox) with no luck. I've got this sound card:
    01:06.0 Multimedia audio controller: Creative Labs [SB Live! Value] EMU10k1X
    01:06.1 Input device controller: Creative Labs [SB Live! Value] Input device controller
    I try with QJackCtl and invoking jackd from the terminal with any luck.
    jackd -d alsa -C -P
    jackd 0.121.3
    Copyright 2001-2009 Paul Davis, Stephane Letz, Jack O'Quinn, Torben Hohn and others.
    jackd comes with ABSOLUTELY NO WARRANTY
    This is free software, and you are welcome to redistribute it
    under certain conditions; see the file COPYING for details
    could not open driver .so '/usr/lib/jack/jack_net.so': libcelt0.so.2: cannot open shared object file: No such file or directory
    could not open driver .so '/usr/lib/jack/jack_firewire.so': libffado.so.2: cannot open shared object file: No such file or directory
    JACK compiled with System V SHM support.
    loading driver ..
    creating alsa driver ... hw:0|hw:0|1024|2|48000|0|0|nomon|swmeter|-|32bit
    control device hw:0
    configuring for 48000Hz, period = 1024 frames (21.3 ms), buffer = 2 periods
    ALSA: final selected sample format for capture: 16bit little-endian
    ALSA: use 2 periods for capture
    ALSA: final selected sample format for playback: 16bit little-endian
    ALSA: use 2 periods for playback
    jackd watchdog: timeout - killing jackd
    [gabo@machina ~]$
    This is the output from QJackCtl:
    00:12:07.126 Client deactivated.
    00:12:07.130 JACK is being forced...
    cannot read server event (Success)
    cannot continue execution of the processing graph (Bad file descriptor)
    zombified - calling shutdown handler
    cannot send request type 7 to server
    cannot read result for request type 7 from server (Broken pipe)
    cannot send request type 7 to server
    cannot read result for request type 7 from server (Broken pipe)
    00:12:07.339 JACK was stopped with exit status=1.
    I can hear my guitar and record with Audacity, but when jackd enter into the escenario everything blows up. I read that nowadays almost any sound card will work with QJackCtl with the default options. I play with the parameters and sometimes jack refuse to start. With the default options on i can make it run, but i get no sound of the racks or guitar effects processors neither the guitar tuners that use jack takes the sound from the guitar. My line input is in capture via alsamixer, but still no luck. Any clue on this? I'm skipping steps?
    Thanks in advance.
    iamgabo

    Hi!
    groups && cat /proc/asound/cards && cat ~/.asoundrc && cat '/etc/security/limits.d/audio.conf' && jackd -v
    adm disk lp wheel http network video audio optical storage power users polkitd vboxusers wireshark kismet
    0 [Live ]: EMU10K1X - Dell Sound Blaster Live!
    Dell Sound Blaster Live! at 0xcc00 irq 17
    #pcm.upmix71 {
    #type upmix
    #slave.pcm "surround71"
    #delay 15
    #channels 8
    pcm.!default {
    type hw
    card 0
    ctl.!default {
    type hw
    card 0
    # convert alsa API over jack API
    # use it with
    # % aplay foo.wav
    # use this as default
    pcm.!default {
    type plug
    slave { pcm "jack" }
    ctl.mixer0 {
    type hw
    card 1
    # pcm type jack
    pcm.jack {
    type jack
    playback_ports {
    0 system:playback_1
    1 system:playback_2
    capture_ports {
    0 system:capture_1
    1 system:capture_2
    cat: /etc/security/limits.d/audio.conf: No such file or directory
    I have a file called 99-audio.conf
    cat /etc/security/limits.d/99-audio.conf
    @audio - rtprio 99
    @audio - memlock unlimited
    Also i've seen some guys changing this file too:
    cat /etc/security/limits.conf
    # /etc/security/limits.conf
    #Each line describes a limit for a user in the form:
    #<domain> <type> <item> <value>
    #Where:
    #<domain> can be:
    # - an user name
    # - a group name, with @group syntax
    # - the wildcard *, for default entry
    # - the wildcard %, can be also used with %group syntax,
    # for maxlogin limit
    #<type> can have the two values:
    # - "soft" for enforcing the soft limits
    # - "hard" for enforcing hard limits
    #<item> can be one of the following:
    # - core - limits the core file size (KB)
    # - data - max data size (KB)
    # - fsize - maximum filesize (KB)
    # - memlock - max locked-in-memory address space (KB)
    # - nofile - max number of open files
    # - rss - max resident set size (KB)
    # - stack - max stack size (KB)
    # - cpu - max CPU time (MIN)
    # - nproc - max number of processes
    # - as - address space limit (KB)
    # - maxlogins - max number of logins for this user
    # - maxsyslogins - max number of logins on the system
    # - priority - the priority to run user process with
    # - locks - max number of file locks the user can hold
    # - sigpending - max number of pending signals
    # - msgqueue - max memory used by POSIX message queues (bytes)
    # - nice - max nice priority allowed to raise to values: [-20, 19]
    # - rtprio - max realtime priority
    #<domain> <type> <item> <value>
    #* soft core 0
    #* hard rss 10000
    #@student hard nproc 20
    #@faculty soft nproc 20
    #@faculty hard nproc 50
    #ftp hard nproc 0
    #@student - maxlogins 4
    * - rtprio 0
    * - nice 0
    @audio - rtprio 65
    @audio - nice -10
    @audio - memlock unlimited
    jackd 0.121.3
    There are the snaps for QJackCtl
    Also, checkout this stuff that i've recorded with audacity, only from the line and nothing else
    http://ompldr.org/vZ3A2eg
    Thanks!
    Last edited by iamgabo (2012-12-15 02:21:08)

  • HT1688 I have a damaged I-Phone and I need the contents of my calendar off of it. I did not have Mobile me at the time.  Can I swap out the sim card from the broken phone to a new phone and recover this calendar?

    I have an older I-Phone (3G) that for some reason the body of the phone has split in two.  This phone was a business phone and it had a lot of important information on it. I have a second phone that is also a 3G.  On the broken phone there is a lot of important information that I need in my calendar. Im not worried about anything else but the calendar.  I didn't have the Mobile Me account at that time or I would be having this problem. Does anybody know if I can ust switch out the sim cards. I just need to recover the old calendar, so im hoping that the calendar will transfer when I switch the sim card into the good 3G. If that doesn't work does anybody know of anyway that I can retrieve this information off of this phone?

    Nothing is stored on the sim card on an iPhone.  If you backed up to your computer the backup will contain your calendar events.  Otherwise, if your phone isn't functioning there is no way to back up or extract your calendar at this point.

  • HT1384 My lock screen/power button on my iPod Touch is broken, and I need some assistance.

    As the title suggests, I can not use the lock screen/power button on my iPod Touch, it is broken. I can use Adaptive Touch to turn the screen on and off at will, and also turn my device off. But if I turn it off, I don't know how to get it to turn back on. Could I just plug it into a charger and turn it back on, or would I need to plug it into my computer? Please help, in a few days I won't have access to it for 9 weeks, I need immediate help.

    If you power off the iPod, it will turn back on if you connect it to a charger like a wall charger or a computer. I just checked with a charging source to confirm. I knew it did it with a computer.

  • Error during 10.8.2 Update - Appstore and iTunes Broken

    Hi Guys,
    I hope you can help me with this one.
    I just installed the 10.8.2 update trough App Store, then it asked me to restart my computer... During the restart some error message appeared saying that the installation could not be completed due to an unexpected error, and then restarted my computer automatically.
    The problem is, now both my App Store and iTunes are broken, here are the details of the error message I get when I try to launch App Store either normally or using the Apple > Software Update menu option:
    Process:         App Store [419]
    Path:            /Applications/App Store.app/Contents/MacOS/App Store
    Identifier:      com.apple.appstore
    Version:         1.2.1 (129.7)
    Build Info:      Firenze-129007000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [157]
    User ID:         501
    Date/Time:       2012-09-20 15:09:21.308 -0300
    OS Version:      Mac OS X 10.8.1 (12B19)
    Report Version:  10
    Interval Since Last Report:          1063564 sec
    Crashes Since Last Report:           1
    Per-App Crashes Since Last Report:   8
    Anonymous UUID:                      877BB7B8-8322-4C71-BEFF-67D640D02852
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries
    Dyld Error Message:
      Library not loaded: /System/Library/PrivateFrameworks/CoreRecognition.framework/Versions/A/CoreReco gnition
      Referenced from: /Applications/App Store.app/Contents/MacOS/App Store
      Reason: image not found
    Binary Images:
           0x107a22000 -        0x107aa2fff  com.apple.appstore (1.2.1 - 129.7) <31AAF1C2-2BE9-393B-ABFD-6D869F72E909> /Applications/App Store.app/Contents/MacOS/App Store
        0x7fff67622000 -     0x7fff6765693f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
    Model: MacBook6,1, BootROM MB61.00C8.B00, 2 processors, Intel Core 2 Duo, 2.26 GHz, 8 GB, SMC 1.51f53
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393930353432382D3032302E4130304C4620
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x0198, 0x393930353432382D3032302E4130304C4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.81.21)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 18 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: KINGSTON SV100S264G, 64,02 GB
    Serial ATA Device: Hitachi HTS545025B9SA02, 250,06 GB
    USB Device: Samsung S2 Portable, 0x04e8  (Samsung Electronics Co., Ltd.), 0x1f05, 0x24100000 / 3
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0x06130000 / 5
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 2
    I appreciate if you could help me,
    Best Regards,
    Dante Araujo

    I had this problem too.
    Go to http://support.apple.com/kb/DL1580
    Download the update manually and install. Worked on my MBP15 retina.
    Regards
    Chris

  • How do i transfer my musiclibrary from my iphone to a new computer since the computer the iphone is synct with is broken and no longer works

    if the computer your music library is synct with  is broken how do y transfer your music on your iphone to a new itunes on a new computer

    1. Disable automatic syncing on connection:  iTunes Prefs > Devices > Disable....
    2. Connect phone.
    3. Right-click the device tab on left border of iTunes window and select "Transfer Purchases."  This will transfer all iTunes store purchased music, media and apps to the iTunes library on the computer. 
    It won't transfer non-iTunes store music/media (i.e. CD's you ripped  yourself) and these will get deleted from the phone when you sync.  There are 3rd party apps for your computer which may be able to backup non-iTunes media on your phone.  Google.

  • [LaserJet Pro 200 color MFP M276nw] only vertical lines when scanning, scanner broken?

    Hi all! I have a problem with the scanner in my HP all in one. If I scan (using the printer function or apples ImageCapture: same result) the output is just a lot of vertical stripes (in colors when in color mode). Not a trace of the image I try to scan. The lines are there even if i scan an empty white page. I see the stripes both when doing a preview scan and an actual scan. The problems are very similar regardless of if I use the flatbed or the feeder scanner (they are separate scanner hardware, yes?). I have updated to the latest software for the printer/scanner and I am connecting over bonjour via wireless. I am on Os X 10.9.1. Anybody having similar problems or is my scanner just plain broken? Thanks in advance!Jon

    , , I understand that both of you are seeing vertical lines when scanning from your Laserjet M276nw. First, make sure the printer is plugged directly into a wall outlet and not a surge protector. Now, so I know where to begin I'd need to know the following:If you are seeing the vertical lines when you copy as well as scan?Are you seeing the vertical lines when you copy from the flatbed? The document feeder? both?If you are seeing the lines from both the flatbed and the feeder are they in the same place?Once I know this I'll be better able to assist you.

  • My Mac has broken and I want to sell it for parts. How can I be sure that my personal data that is/was on the hard drive is safe?

    My 2006 MacBook Pro has broken. There is a little bit of drive noise when I turn it on, but then nothing happens. It is no big deal. Most of my files were backed up. There are a few files I would like to recover if possible, but nothing worth a major effort.
    I have seen that broken MacBook Pro's go for about $300 on eBay for parts, so I would like to sell the MacBook Pro. However, I only want to do that after I am sure that my personal data is wiped out. Does anyone know how I can accomplish that? Does anyone know of an easy way to search the old hard drive for some of the data that I lost? Can a Genius Bar take care of this stuff for me (and how much do they charge?)?
    Thank you for your help.
    - Eric

    EricNY wrote:
    I only want to do that after I am sure that my personal data is wiped out. Does anyone know how I can accomplish that?
    The ONLY real secure way to be sure that noone may recover data from your drive is, to remove the drive, and drill one or two 1" holes thru the disk.
    A bit less secure but useful way is, to wipe out the data with a tool that's overwrite all sectors of the drive with randomized data in multiple runs.
    For example: Permanent Ereaser http://www.edenwaith.com/products/permanent%20eraser/
    Independent tests bring out, that even specialized recovery companies with forensic tools are unable to find useful data after such a run.
    EricNY wrote:
    Does anyone know of an easy way to search the old hard drive for some of the data that I lost?
    There are some recovery tools out there to fit your needs, e.g. MacKeeper http://mackeeper.zeobit.com/mac-data-recovery
    Lupunus

  • I need to install the HP drivers on a laptop with a broken screen in order to get VGA port to work.

    OS: Windows 7 Home Premium SP1
    Hewlett Packard Model: 2000 2a20ca Notebook
    Oh my god please give me some insight here, it is so hard to find the right answers and I refuse to lose to this technical box that's driving me nuts! So here's the run down:
    My screen broke on laptop...fine. It was connected via HDMI to TV and working fine. Until one day it decided to not turn on. I think due to Windows updates and hubby had no patience so kept restarting
    I tried to reload Windows on it, not thinking about the drivers, and I'm pretty sure I managed to reload Windows. Now I need the drivers to install chipset, networking etc. (which I have a disc for)
    The problem is I cannot see the screen in order to click "install", I can't see the BIOS or the boot sequence. Ugh! And even if I could, the drivers are not installed to use the CD ROM or VGA port.
    I can HEAR Windows start up and turn on! Doo-DO-Doo-DO lol the darn thing is working!
    The monitor works in my other laptop.
    Would/Should the VGA monitor work if I could get it to start in safe mode?
    I've heard of a program that can streamline the driver's into a Windows installation disc so everything is installed altogether but how can I reinstall Windows if the drivers aren't loaded for the CD ROM?
    Is there a way to get the necessary drivers installed? or is this notebook now garbage?

    RocknRoll77 wrote:
    Seriously? 
    1.  The model number is the first thing at the top aside from the OS.
    2.  In my explanation it states:  "I have the drivers on a disk"
    Thanks for all your help!
    Getting the drivers is not the problem.  Getting the drivers installed on a laptop with a broken screen...is the problem.
    Ok, well sometimes you can't use external monitor to see what is happening in some laptops and the only real way to fix this is to fix the broken screen so you can reformat and resinstall the system again. Those are you only options at this point in time.
    I am a Volunteer to help others on here-not a HP employee.
    Replies aren't online 24/7 because of Time Zone differences.
    Remember in this Day and Age of Computing the Internet is Knowledge at your fingertips if you choose understand it. -2015-

  • In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    In an eMail message, when I attempt to save two photos by clicking the 'Save 2 Images' link, not the 'Save Image' link, the images are not saved. (I use I I apologize for the late notice, butOS7 on IPhone5). Is this feature broken?

    Please don't post the same question multiple times!

  • PDF Portfolio, broken in 9.4.6 also...... not funny Adobe...

    PDF portfolio on Linux broke in 9.4.2, with newly released 9.4.6 it's still broken. It has been broken since February. I wonder if Adobe takes these things seriously, for sure it doesn't look that way. Many governmental institutes  use portfolios, so please make an effort and fix it

    as per Joel's recommendation, used 4.5 instead - that worked just fine

Maybe you are looking for

  • Working with Character Styles in Photoshop CC

    Hi, I upgraded to Photoshop CC and was quite excited about the Character Styles Panel. But now, I'm completely puzzled. It almost looks like Adobe didn't finish the feature before shipping 14.1.2 1. I can't reorder the character list? Why use a diffe

  • I would like to add a "i like" FB bouton in my e-mails. how can I do that?

    I sent order confirmations to my clients and would like to add an "I like" bouton to my facebook site from my mac e-mail. How do I do that? Best regards Katrine

  • Calling stored procedure in MS SQLServer

    I have created a db connection,conn pools and am able to sucessfuly query the DB in my database control. I need to run a stored procedure. I am using the statement: * @jc:sql statement="EXEC dbo.mi5DSS_D98" where dbo.mi5DSS_D98 is the stored procedur

  • ADF View Object Capability

    Usually I use ADF View Object when I want to view data from table in Oracle DB. Now can View Object extract data from file? xml or csv format? Regards Erich

  • Unable to start weblogic server back end in linux

    Hi All,       i am  going to start weblogic 10.3.6 in production environment by using below commend but it gives error:        >cd /usr/app/oracle/Middleware/user_projects/domains/base_domain         >nohup startWebLogic.sh &        But when I use th