[SOLVED] Freezing while executing /usr/bin/openbox from Openbox menu

I'm following the instructions in this webpage to create a dynamic menu. I have successfully achieved this on my laptop by installing the openbox-menu package and typing the following lines in menu.xml:
<menu id="desktop-app-menu" label="Applications" execute="/usr/bin/openbox-menu lxde-applications.menu" />
For some reason, the same doesn't work on my desktop PC. After editing and saving the menu.xml file, I restart Openbox and when I right click the desktop and hover the "Applications" menu item the desktop freezes. However, I can still move the mouse and switch to other ttys with Ctrl+Alt+Fx, therefore I believe it's reasonable to suggest that the problem lies in the permissions.
What should I do about it?
Last edited by Martificiam (2013-02-03 11:29:21)

Umm, that's not "some random" webpage at all... It worked on all of my Arch Linux installations. The "lxde-applications.menu" is just an argument. But thanks for the link, I'll look into it.
It's just that it's more of a workaround, not a solution, really... since it has ALWAYS worked for me.
Furthermore, while setting up Arch on my laptop I remember experiencing similar problems (running a particular program from the openbox menu and resulting in a desktop freeze). This must have something to do with permissions.
Edit: the xdg_menu worked perfectly, but I would still prefer to use the openbox-menu. I'm marking this as solved anyway.
Last edited by Martificiam (2013-02-03 11:29:06)

Similar Messages

  • Executing /usr/bin/mail From Within Daemon

    I've created a script that, among other things, sends an email to an external email address and it works fine from the command line.  When the same script is run periodically from within a daemon (i.e. launchctl), the email functionality of the script does not execute.  There are no errors in the system.log, the appfirewall.log or the mail.log.  All of my referenced paths are absolute.  I'm overlooking something, but don't know what.
    Python:
    cmd = "/bin/echo \"%s\" | /usr/bin/mail -s \"%s\" %s" % (messageText.strip(),subject,receiver)
    os.system(cmd)
    The question is, why does /usr/bin/mail not function correctly from within a daemon?
    I appreciate your assistance

    > Checked man mail but nothing that I could see...
    That's because you're looking in the wrong place
    mail uses your current login name combined with the domain settings for postfix, so it's postfix's configuration you need to be looking at.
    Specifically:
    /etc/postfix/main.cf
    which states:
    # The myorigin parameter specifies the domain that locally-posted
    # mail appears to come from. The default is to append $myhostname,
    # which is fine for small sites.
    So you should change the myorigin setting to reflect the @part of addresses for mail sent from this machine. It may be as simple as:
    myorigin = $mydomain
    if you just want to append your domain name.

  • Dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid

    After upgrading to ML, I am now getting this message when I try to sudo.  I've repaired permissions, rebuilt the dyld cache, and removed the DYLD_LIBRARY_PATH environment variable, all with no success.  Met with this message each time:
    $ sudo ls
    dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid
    Password:
    Any help is appreciated.
    Thanks!

    In short, I find this solution:
         comment out `export LD_LIBRARY_PATH=XXX` in .bash_profile
    I do not have DYLD_LIBRARY_PATH in bash env

  • How to display current context while opening a todo entry from main menu

    Hi,
    I want to display the current context(account,sp details for customer) while opening a todo entry from main menu while searching through To do entry id.
    Can any body guide me on this ?
    Thanx.
    Sunil

    I am sorry that I didn't get back to all you guys that took to answering my very promptly. Unfortunately I was not in a position to answer to the suggestions made. as I was away from my computer which had Robohelp on.
    Anyway, I did try a couple of scripts mentioned, but didn't really have any success i achieving what I need to do.
    I set up a redirect which redirected to the main home page. I tried setting the home page in a  main sub-project - so the redirect when from any sub project
    Generate
         Master-project.htm (Home Page = Help_Welcome.htm)
    merged Projects
    SubProject1
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 2
                [Home Page =  home_redirect.htm (a redirect see below) ]
         SubProject 3
                [Home Page =  home_redirect.htm (a redirect see below) ]
    home_redirect.htm  (a redirect use by sub-topics)
    <!--
       window.location="../../ Help_Welcome.htm ";
    //-->
    //]]></script>
    This setup works fine as long as I call the master page. The TOC is as I would want. However if I call an ID from my application I get the required page to display and I can get the TOC to show. The problem is that the TOC is from the current sub-project and not the master project as I would want.

  • [SOLVED] /usr/bin/echo from systemd .service

    I use systemd to execute a shell script to change the status of an LED after boot when I reach multi-user state.  It is working fine, but I wanted to execute the shell script lines from within my systemd .service file instead of the systemd .service file executing the shell script.  Below is the systemd .service file but it’s not working.  The systemctl status shows no issues, but I have a gut feeling my problem might be related to me redirecting the /usr/bin/echo to a device. Could someone lend a suggestion?
    Description=Set Green LED
    After=multi-user.target
    [Service]
    Type=oneshot
    ExecStart=/usr/bin/echo none > /sys/class/leds/status\:blue\:health/trigger
    ExecStart=/usr/bin/sleep 1
    ExecStart=/usr/bin/echo default-on > /sys/class/leds/status\:green\:health/trigger
    [Install]
    WantedBy=multi-user.target
    Here is my systemctl status output:
    setgreenled.service - Set Green LED
       Loaded: loaded (/etc/systemd/system/setgreenled.service; enabled)
       Active: inactive (dead) since Tue 2013-06-04 14:12:52 PDT; 3s ago
      Process: 273 ExecStart=/usr/bin/echo default-on > /sys/class/leds/status\:green\:health/trigger (code=exited, status=0/SUCCESS)
      Process: 270 ExecStart=/usr/bin/sleep 1 (code=exited, status=0/SUCCESS)
      Process: 268 ExecStart=/usr/bin/echo none > /sys/class/leds/status\:blue\:health/trigger (code=exited, status=0/SUCCESS)
    Jun 04 14:12:51 pogoplug systemd[1]: Starting Set Green LED...
    Jun 04 14:12:52 pogoplug echo[273]: default-on > /sys/class/leds/status\:green\:health/trigger
    Jun 04 14:12:52 pogoplug systemd[1]: Started Set Green LED.
    If I execute the lines below from the command-line it works fine.
    /usr/bin/echo none > /sys/class/leds/status\:blue\:health/trigger
    /usr/bin/echo default-on > /sys/class/leds/status\:green\:health/trigger
    If I put the commands into a shell script and use systemd .service to execute the shell script, it works fine.  Here is that .service script
    [Unit]
    Description=Set Green LED
    After=multi-user.target
    [Service]
    Type=simple
    ExecStart=/usr/bin/sh /home/public/setgreenled.sh
    [Install]
    WantedBy=multi-user.target
    Last edited by calzon65 (2013-06-05 00:55:37)

    Systemd services are not shells.  So redirects will not work in that way.  You can use "bash -c '<command here>'" to accomplish this as that will create a shell for the command to run.  But I think that berbae is right that there are better alternatives for this.
    You can use tmpfiles (man tmpfiles.d) which you can use to simply write a value to the given path, or you can use a udev rule to run a command when that particular path is detected.  Beware though that for some things, the tmpfiles way will sometimes try to run itself before the actual creation of the directory.  So you may run into some pace conditions with that method.  For some things, it is totally reliable though... so you'll just have to test and see.
    A tmpfiles.d configuration is way easier to write than a udev rule.  But what you are trying to do would be a pretty basic udev rule, so it would probably not take you very long to learn how to do it.  It simply involves learning how to use the udevadm command really.

  • Error while executing unix shell script from java program

    Hi All,
    I am trying to execute unix shell script from a java program using Runtime.execute() method by passing script name and additional arguments.
    Code snippet :
    Java Class :
    try{
         String fileName ="test.ksh";
         String argValue ="satish"; // value passed to the script
         String exeParam = "/usr/bin/ksh "+fileName+" "+argValue;
         Process proc = Runtime.getRuntime().exec(exeParam);
         int exitValue = proc.waitFor();
         sop("Exit Value  is : "+exitValue);
    catch(Exception e)
    e.printStackTrace();
    }Test.ksh
      export -- application realated paths..
      nohup  abc.exe 1> test.log 2>&1;
      $1
      exit.By running the above java class , i am getting exit Value: 139 and log file test.log of 0 bytes.
    when i am running the same command (/usr/bin/ksh test.ksh satish) manually, it's calling abc.exe file successfully
    and able generate the logs properly.
    Pls let us know where exactly i am stuck..
    Thanks in advance,
    Regards,
    Satish

    Hi Sabre,
    As per the guidelines provided by the article, i had done below changes..
    InputStream is = null;
    InputStreamReader iStreamReader = null;
    BufferedReader bReader = null;
    String line = null;
    try{
    String fileName ="test.ksh";
    String argValue ="satish"; // value passed to the script
    String exeParam = "/usr/bin/ksh "+fileName+" "+argValue;
    Process proc = Runtime.getRuntime().exec(exeParam);
    is = proc.getErrorStream();
    iStreamReader = new InputStreamReader(is);
    bReader = new BufferedReader(iStreamReader);
    System.out.println("<ERROR>");
    while((line = bReader.readLine()) != null)
    System.out.println("Error is : "+line);
    System.out.println("</ERROR>");
    int exitValue = proc.waitFor();
    sop("Exit Value is : "+exitValue);
    catch(Exception e)
    e.printStackTrace();
    Now , it's showing something like..
    <ERROR>
    </ERROR>

  • [Solved] Virtualbox-source missing /usr/bin/vboxbuild

    New virtualbox source missing /usr/bin/vboxbuild
    i cant load my vboxdrv module & i also cant build vboxdrv module
    new vbox-source 4.1.18-3 (2012-07-24) dont have vboxbuild script
    anyone also have problem with this issue?
    btw i use ck-kernel
    Last edited by dhiika (2012-07-25 01:19:27)

    xzy3186 wrote:
    gbc921 wrote:
    I'm also using the linux-ck from AUR and I could not load vboxdrv even after the "# dkms setup vboxhost/4.1.18"
    It has compiled fine, but when I do "$ sudo rc.d start dkms" it gives me this:
    :: Starting Dynamic Kernel Module System [BUSY] Error! Could not locate dkms.conf file.
    File: does not exist.
    ERROR: could not insert 'vboxdrv': Exec format error
    ERROR: could not insert 'vboxnetadp': Exec format error
    ERROR: could not insert 'vboxnetflt': Exec format error
    ERROR: could not insert 'vboxpci': Exec format error
    If I try to compile it again then:
    $ sudo dkms install vboxhost/4.1.18
    Module vboxhost/4.1.18 already installed on kernel 3.4.6-2-ck/x86_64
    I have installed these packages:
          community/virtualbox 4.1.18-4
          community/virtualbox-additions 4.1.18-1
          community/virtualbox-modules 4.1.18-4
          community/virtualbox-source 4.1.18-4
          aur/virtualbox-hook 1.0-3
    Sincerely,
    The same problem here. I compiled virtualbox-source 4.1.18-4 with "dkms install" under linux-ck-3.4.6-2 but had "ERROR: could not insert 'vboxdrv': Exec format error" whilie trying to modprobe.
    Solved:According to https://bbs.archlinux.org/viewtopic.php?id=145925, I should delete "old" vboxdrv generated by vboxbuild.
    Yeah! Removing the modules from /usr/lib/extramodules... and doing a depmod worked fine!
    Thanks!

  • [SOLVED] .. error: coreutils: /usr/bin/install exists in filesystem

    Hi All,
    Getting the following error:
    (85/85) checking for file conflicts [###########################] 100%
    error: failed to commit transaction (conflicting files)
    coreutils: /usr/bin/install exists in filesystem
    I am reluctant to delete/move /usr/bin/install for fear of breaking the system ..
    Anyone help here?
    Last edited by bmentink (2012-04-05 02:26:42)

    I just ran into this same issue today while performing a full system upgrade. After some investigation, I came to agree with the OP that manually removing "/usr/bin/install" is the correct action to take.
    Prior to successfully executing the full system upgrade, I found that /usr/bin/install was a symlink to /bin/install. Using "pacman -Qo /bin/install", I found that the file /bin/install was owned by the coreutils 8.15-1 package. The symlink /usr/bin/install, however, was not owned by any package. The conflict arises because coreutils 8.16-2 wants to put the new install program in /usr/bin instead of its previous location under /bin.
    My memory is a bit fuzzy, but I seem to recall running into a problem installing some third party library that had /usr/bin/install hard-coded into its build script and claimed the file didn't exist. I may have manually created the symlink /usr/bin/install to /bin/install as a quick-fix, then forgot to remove it. In retrospect, I could have confirmed/refuted this hypothesis by comparing the time stamp on the symlink /usr/bin/install to /bin/install. If the symlink was created well after /bin/install, then I'm probably to blaim; on the other hand, if the symlink was created essentially at the time /bin/install was created, then most likely the creators of the coreutils package forgot to claim ownership of the symlink.

  • Error ORA-04031 while executing a stored procedure from Pro C++ code

    I am getting the error ORA-04031(Unable to allocate 4096 bytes of shared memory("Shared Pool",.....)) while trying to execute a stored procedure from my pro*C application. This happens only after a few hours since the application has been running. I am closing the cursor after every database call.
    Does anyone know why it is happening and any possible solutions?
    TIA
    Srithaj.

    One thing that can be done is to flush the shared pool before starting the application.
    alter system flush shared pool;
    Another is to increase the shared pool size by setting the parameter shared_pool_size in init_sid.ora file.
    null

  • Issue while executing the discovery command from target nodes

    Hi Experts.
    I had to create cluster two node using openfile, after creation of successful lun and associated partition from all the nodes i have changed the ip address of openfiler.
    After changing the IP on open filer.
    A) openfile version:-
    [root@san ~]# uname -r
    2.6.26.8-1.0.11.smp.pae.gcc3.4.x86.i686
    B) Linux Oel5:-
    [root@rac1 ~]# uname -r
    2.6.18-194.el5xen
    [root@rac1 ~]#
    1:- I am able to ping and ssh etc from any node to openfiler.
    However, while executing the below command i am facing the below exception..
    service iscsi restart
    Stopping iSCSI daemon:
    iscsid dead but pid file exists [  OK  ]
    Starting iSCSI daemon: [  OK  ]
    [  OK  ]
    Setting up iSCSI targets: iscsiadm: No records found!
    [  OK  ]
    [root@rac1 ~]#
    Moreover, tried to discover the targets, unfortunately no message is getting displayed after execution of this below command.
    [root@rac1 ~]# iscsiadm -m discovery -t sendtargets -p 192.168.37.200
    [root@rac1 ~]#
    The quick response will be appreciated as my whole test case is down as of now due storage issues.
    Thanks,
    Arch.

    Are you running a firewall that needs to be adjusted to support your changed Openfiler IP network?

  • [SOLVED] Freezing while "Setting Consoles to UTF-8 mode"

    Hi everyone,
    I recently ran a Pacman -Syu on my bare bones network boot HTPC. I rebooted for the first time today due to a network issue which caused the machine to freeze up(since it network boots it couldn't do anything with no network). Now when I reboot it seems to be freezing while performing the "Setting Consoles to UTF-8 mode" step. I am not sure what changed on the system as everything else appears to be in good working order. I don't even know where to start to troubleshoot this issue. I had a look through rc.sysinit and I can see the section  but nothing seems amiss when compared to my other working machines here. I had a look through the log files but also nothing pops out. Any ideas?
    Here is the latest log for pacman to see what was updated:
    [2009-11-14 15:21] synchronizing package lists
    [2009-11-14 15:32] warning: /etc/pacman.conf installed as /etc/pacman.conf.pacnew
    [2009-11-14 15:32] upgraded pacman (3.3.0-3 -> 3.3.2-1)
    [2009-11-14 15:32] synchronizing package lists
    [2009-11-14 15:32] starting full system upgrade
    [2009-11-14 15:44] upgraded kernel-headers (2.6.30.5-1 -> 2.6.31.5-1)
    [2009-11-14 15:44] upgraded tzdata (2009m-1 -> 2009q-1)
    [2009-11-14 15:44] warning: /etc/locale.gen installed as /etc/locale.gen.pacnew
    [2009-11-14 15:44] Generating locales...
    [2009-11-14 15:44] en_US.UTF-8... done
    [2009-11-14 15:44] Generation complete.
    [2009-11-14 15:44] upgraded glibc (2.10.1-4 -> 2.11-1)
    [2009-11-14 15:44] upgraded attr (2.4.43-1 -> 2.4.44-1)
    [2009-11-14 15:44] upgraded acl (2.2.47-2 -> 2.2.48-1)
    [2009-11-14 15:44] upgraded apr (1.3.8-2 -> 1.3.9-1)
    [2009-11-14 15:44] upgraded bash (4.0.033-1 -> 4.0.035-1)
    [2009-11-14 15:44] upgraded gcc-libs (4.4.1-1 -> 4.4.2-3)
    [2009-11-14 15:45] ATTENTION DB PACKAGE:
    [2009-11-14 15:45] Please consider to run db_upgrade on Berkeley DB databases with a major db version number update.
    [2009-11-14 15:45] upgraded db (4.7.25.4-1 -> 4.8.24-1)
    [2009-11-14 15:45] upgraded libsasl (2.1.23-1 -> 2.1.23-2)
    [2009-11-14 15:45] upgraded perl (5.10.0-6 -> 5.10.1-5)
    [2009-11-14 15:45] upgraded openssl (0.9.8k-4 -> 0.9.8l-1)
    [2009-11-14 15:45] upgraded libldap (2.4.18-1 -> 2.4.19-1)
    [2009-11-14 15:45] upgraded apr-util (1.3.9-2 -> 1.3.9-3)
    [2009-11-14 15:45] upgraded pcre (7.9-1 -> 8.00-1)
    [2009-11-14 15:45] upgraded glib2 (2.20.4-1 -> 2.22.2-1)
    [2009-11-14 15:45] upgraded atk (1.26.0-1 -> 1.28.0-1)
    [2009-11-14 15:45] upgraded binutils (2.19.1-5 -> 2.20-2)
    [2009-11-14 15:45] upgraded bzip2 (1.0.5-4 -> 1.0.5-5)
    [2009-11-14 15:45] upgraded xextproto (7.0.5-1 -> 7.1.1-1)
    [2009-11-14 15:45] upgraded xproto (7.0.15-1 -> 7.0.16-1)
    [2009-11-14 15:45] upgraded fixesproto (4.0-3 -> 4.1.1-1)
    [2009-11-14 15:45] upgraded compositeproto (0.4-2 -> 0.4.1-1)
    [2009-11-14 15:45] upgraded dbus-glib (0.80-1 -> 0.82-2)
    [2009-11-14 15:45] installed eggdbus (0.5-1)
    [2009-11-14 15:45] upgraded pam (1.0.4-1 -> 1.1.0-1)
    [2009-11-14 15:45] installed polkit (0.94-1)
    [2009-11-14 15:45] upgraded kbproto (1.0.3-2 -> 1.0.4-1)
    [2009-11-14 15:45] upgraded libx11 (1.2.2-1 -> 1.3.2-1)
    [2009-11-14 15:45] upgraded consolekit (0.3.0-5 -> 0.4.1-1)
    [2009-11-14 15:45] upgraded curl (7.19.6-1 -> 7.19.7-1)
    [2009-11-14 15:45] upgraded device-mapper (1.02.33-1 -> 2.02.53-1)
    [2009-11-14 15:45] upgraded dhcpcd (5.1.0-1 -> 5.1.3-1)
    [2009-11-14 15:45] upgraded dialog (1.1_20080819-2 -> 1.1_20080819-3)
    [2009-11-14 15:45] upgraded dmxproto (2.2.99.1-1 -> 2.3-1)
    [2009-11-14 15:45] upgraded enca (1.10-1 -> 1.12-1)
    [2009-11-14 15:45] The package is built using sysv ipc. If this causes segfaults
    [2009-11-14 15:45] see included README file and rebuild the pkg --with-ipc=tcp
    [2009-11-14 15:45] upgraded fakeroot (1.13-1 -> 1.14.3-1)
    [2009-11-14 15:45] upgraded fontcacheproto (0.1.2-2 -> 0.1.3-1)
    [2009-11-14 15:45] upgraded freetype2 (2.3.9-2 -> 2.3.11-1)
    [2009-11-14 15:46] upgraded gcc (4.4.1-1 -> 4.4.2-3)
    [2009-11-14 15:46] upgraded git (1.6.4.4-1 -> 1.6.5.2-1)
    [2009-11-14 15:46] upgraded gnutls (2.8.3-1 -> 2.8.5-1)
    [2009-11-14 15:46] upgraded groff (1.20.1-2 -> 1.20.1-3)
    [2009-11-14 15:46] upgraded gzip (1.3.12-6 -> 1.3.13-1)
    [2009-11-14 15:46] upgraded hal (0.5.13-2 -> 0.5.13-3)
    [2009-11-14 15:46] upgraded sqlite3 (3.6.18-1 -> 3.6.20-1)
    [2009-11-14 15:46] upgraded heimdal (1.2.1-6 -> 1.2.1-7)
    [2009-11-14 15:46] upgraded inputproto (1.5.1-2 -> 2.0-1)
    [2009-11-14 15:46] upgraded kernel26-firmware (2.6.30-1 -> 2.6.31-1)
    [2009-11-14 15:46] upgraded module-init-tools (3.10-1 -> 3.11.1-1)
    [2009-11-14 15:48] >>> Updating module dependencies. Please wait ...
    [2009-11-14 15:48] >>> MKINITCPIO SETUP
    [2009-11-14 15:48] >>> ----------------
    [2009-11-14 15:48] >>> If you use LVM2, Encrypted root or software RAID,
    [2009-11-14 15:48] >>> Ensure you enable support in /etc/mkinitcpio.conf .
    [2009-11-14 15:48] >>> More information about mkinitcpio setup can be found here:
    [2009-11-14 15:48] >>> http://wiki.archlinux.org/index.php/Mkinitcpio
    [2009-11-14 15:48]
    [2009-11-14 15:48] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2009-11-14 15:48] ==> Building image "default"
    [2009-11-14 15:48] ==> Running command: /sbin/mkinitcpio -k 2.6.31-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26.img
    [2009-11-14 15:48] :: Begin build
    [2009-11-14 15:48] :: Parsing hook [base]
    [2009-11-14 15:48] :: Parsing hook [net]
    [2009-11-14 15:52] :: Parsing hook [udev]
    [2009-11-14 15:52] :: Parsing hook [autodetect]
    [2009-11-14 15:52] :: Parsing hook [pata]
    [2009-11-14 15:52] :: Parsing hook [scsi]
    [2009-11-14 15:52] :: Parsing hook [sata]
    [2009-11-14 15:52] :: Parsing hook [filesystems]
    [2009-11-14 15:52] :: Generating module dependencies
    [2009-11-14 15:53] :: Generating image '/boot/kernel26.img'...SUCCESS
    [2009-11-14 15:53] ==> SUCCESS
    [2009-11-14 15:53] ==> Building image "fallback"
    [2009-11-14 15:53] ==> Running command: /sbin/mkinitcpio -k 2.6.31-ARCH -c /etc/mkinitcpio.conf -g /boot/kernel26-fallback.img -S autodetect
    [2009-11-14 15:53] :: Begin build
    [2009-11-14 15:53] :: Parsing hook [base]
    [2009-11-14 15:53] :: Parsing hook [net]
    [2009-11-14 15:57] :: Parsing hook [udev]
    [2009-11-14 15:57] :: Parsing hook [pata]
    [2009-11-14 15:57] :: Parsing hook [scsi]
    [2009-11-14 15:59] :: Parsing hook [sata]
    [2009-11-14 15:59] :: Parsing hook [filesystems]
    [2009-11-14 16:00] :: Generating module dependencies
    [2009-11-14 16:01] :: Generating image '/boot/kernel26-fallback.img'...SUCCESS
    [2009-11-14 16:01] ==> SUCCESS
    [2009-11-14 16:01] upgraded kernel26 (2.6.30.6-1 -> 2.6.31.6-1)
    [2009-11-14 16:01] upgraded libcdio (0.80-3 -> 0.81-2)
    [2009-11-14 16:01] upgraded libxext (1.0.5-2 -> 1.1.1-1)
    [2009-11-14 16:01] upgraded libdmx (1.0.99.1-1 -> 1.1.0-1)
    [2009-11-14 16:01] upgraded libdrm (2.4.13-1 -> 2.4.15-1)
    [2009-11-14 16:01] upgraded libevent (1.4.11-1 -> 1.4.12-1)
    [2009-11-14 16:01] upgraded libfetch (2.25-1 -> 2.26-1)
    [2009-11-14 16:01] upgraded libgpg-error (1.6-1 -> 1.7-2)
    [2009-11-14 16:01] upgraded libmms (0.4-1 -> 0.5-1)
    [2009-11-14 16:01] upgraded libmpcdec (1.2.6-1 -> 1.2.6-2)
    [2009-11-14 16:01] upgraded libmysqlclient (5.1.38-1 -> 5.1.39-1)
    [2009-11-14 16:01] upgraded libpciaccess (0.10.8-1 -> 0.10.9-1)
    [2009-11-14 16:01] upgraded libpng (1.2.39-1 -> 1.2.40-1)
    [2009-11-14 16:01] upgraded librpcsecgss (0.18-1 -> 0.19-1)
    [2009-11-14 16:01] upgraded libtheora (1.0-1 -> 1.1.1-1)
    [2009-11-14 16:01] upgraded libxt (1.0.6-1 -> 1.0.7-1)
    [2009-11-14 16:01] upgraded libxmu (1.0.4-2 -> 1.0.5-1)
    [2009-11-14 16:01] upgraded libxpm (3.5.7-2 -> 3.5.8-1)
    [2009-11-14 16:01] upgraded libxaw (1.0.6-1 -> 1.0.7-1)
    [2009-11-14 16:01] upgraded libxfixes (4.0.3-2 -> 4.0.4-1)
    [2009-11-14 16:01] upgraded libxcomposite (0.4.0-2 -> 0.4.1-1)
    [2009-11-14 16:01] upgraded libxdamage (1.1.1-2 -> 1.1.2-1)
    [2009-11-14 16:01] upgraded libxdmcp (1.0.2-2 -> 1.0.3-1)
    [2009-11-14 16:01] upgraded libxfont (1.4.0-1 -> 1.4.1-1)
    [2009-11-14 16:01] upgraded libxfontcache (1.0.4-2 -> 1.0.5-1)
    [2009-11-14 16:01] upgraded renderproto (0.9.3-2 -> 0.11-1)
    [2009-11-14 16:01] upgraded libxrender (0.9.4-2 -> 0.9.5-1)
    [2009-11-14 16:01] upgraded libxft (2.1.13-1 -> 2.1.14-1)
    [2009-11-14 16:01] upgraded libxi (1.2.1-1 -> 1.3-2)
    [2009-11-14 16:01] upgraded xineramaproto (1.1.99.1-1 -> 1.2-1)
    [2009-11-14 16:01] upgraded libxinerama (1.0.99.1-1 -> 1.1-1)
    [2009-11-14 16:01] upgraded libxkbfile (1.0.5-1 -> 1.0.6-1)
    [2009-11-14 16:01] upgraded libxml2 (2.7.3-3 -> 2.7.6-1)
    [2009-11-14 16:01] upgraded recordproto (1.13.2-2 -> 1.14-1)
    [2009-11-14 16:01] upgraded libxtst (1.0.3-2 -> 1.1.0-1)
    [2009-11-14 16:01] upgraded libxv (1.0.4-1 -> 1.0.5-1)
    [2009-11-14 16:01] upgraded xf86dgaproto (2.0.99.1-1 -> 2.1-1)
    [2009-11-14 16:01] upgraded libxxf86dga (1.0.99.1-1 -> 1.1.1-1)
    [2009-11-14 16:01] upgraded xf86miscproto (0.9.2-2 -> 0.9.3-1)
    [2009-11-14 16:01] upgraded libxxf86misc (1.0.1-2 -> 1.0.2-1)
    [2009-11-14 16:01] upgraded xf86vidmodeproto (2.2.99.1-1 -> 2.3-1)
    [2009-11-14 16:01] upgraded libxxf86vm (1.0.99.1-1 -> 1.1.0-1)
    [2009-11-14 16:02] upgraded python (2.6.2-5 -> 2.6.4-1)
    [2009-11-14 16:02] upgraded lirc-utils (0.8.5-1 -> 0.8.6-3)
    [2009-11-14 16:02] >>> Updating module dependencies. Please wait ...
    [2009-11-14 16:02] upgraded lirc (0.8.5-2 -> 0.8.6-1)
    [2009-11-14 16:02] upgraded lvm2 (2.02.48-1 -> 2.02.53-1)
    [2009-11-14 16:02] upgraded man-pages (3.22-1 -> 3.23-1)
    [2009-11-14 16:02] upgraded mesa (7.5.1-2 -> 7.6-2)
    [2009-11-14 16:02] upgraded mlocate (0.22.1-1 -> 0.22.2-2)
    [2009-11-14 16:02] upgraded nfs-utils (1.2.0-3 -> 1.2.0-4)
    [2009-11-14 16:02] upgraded openssh (5.2p1-1 -> 5.3p1-2)
    [2009-11-14 16:02] upgraded pango (1.24.5-1 -> 1.26.0-2)
    [2009-11-14 16:02] upgraded pixman (0.16.0-1 -> 0.16.2-1)
    [2009-11-14 16:02] upgraded popt (1.14-1 -> 1.15-1)
    [2009-11-14 16:02] upgraded randrproto (1.3.0-1 -> 1.3.1-1)
    [2009-11-14 16:02] upgraded sdl (1.2.13-3 -> 1.2.14-1)
    [2009-11-14 16:02] upgraded sdparm (1.03-2 -> 1.04-1)
    [2009-11-14 16:03] upgraded shared-mime-info (0.60-1 -> 0.70-2)
    [2009-11-14 16:03] upgraded tdb (3.3.7-1 -> 3.4.3-2)
    [2009-11-14 16:03] upgraded smbclient (3.3.7-2 -> 3.4.3-2)
    [2009-11-14 16:03] upgraded subversion (1.6.5-4 -> 1.6.5-5)
    [2009-11-14 16:03] upgraded tre (0.7.6-1 -> 0.8.0-1)
    [2009-11-14 16:03] upgraded wavpack (4.50.1-1 -> 4.60.0-1)
    [2009-11-14 16:03] upgraded wget (1.11.4-2 -> 1.12-1)
    [2009-11-14 16:03] upgraded xbitmaps (1.0.1-2 -> 1.1.0-1)
    [2009-11-14 16:03] upgraded xcursor-themes (1.0.1-2 -> 1.0.2-1)
    [2009-11-14 16:03] upgraded xf86-input-evdev (2.2.5-1 -> 2.3.0-1)
    [2009-11-14 16:03] upgraded xf86-video-vesa (2.2.0-1 -> 2.2.1-1)
    [2009-11-14 16:03] upgraded xfsprogs (3.0.1-2 -> 3.0.5-1)
    [2009-11-14 16:03] upgraded xorg-apps (7.4-2 -> 7.5-2)
    [2009-11-14 16:03] upgraded xorg-font-utils (7.4-3 -> 7.5-2)
    [2009-11-14 16:03] upgraded xorg-fonts-alias (1.0.1-2 -> 1.0.2-1)
    [2009-11-14 16:03] Regenerating font encodings... done.
    [2009-11-14 16:03] upgraded xorg-fonts-encodings (1.0.2-3 -> 1.0.3-1)
    [2009-11-14 16:03] upgraded xorg-server-utils (7.4-7 -> 7.5-3)
    [2009-11-14 16:03] upgraded xorg-server (1.6.3.901-1 -> 1.7.1.901-2)
    [2009-11-14 16:03] installed printproto (1.0.4-1)
    [2009-11-14 16:03] installed libxp (1.0.0-3)
    [2009-11-14 16:03] upgraded xorg-utils (7.4-4 -> 7.5-1)
    [2009-11-14 16:03] upgraded xorg-xauth (1.0.3-1 -> 1.0.4-1)
    [2009-11-14 16:03] upgraded xorg-xkb-utils (7.4-2 -> 7.5-1)
    [2009-11-14 16:03] upgraded xterm (246-1 -> 250-1)
    Any help would be appreciated as I am currently not able to boot the machine.
    Thanks,
    Kevin
    Last edited by ould (2009-11-23 13:41:40)

    This is interesting since I still have the issue on my system, I havn't yet reverted to an older kernel but was thinking the kernel package is the likely issue, using version kernel 2.6.33
    I take it this isn't a common error? is this possibly a 64 bit kernel error or a video related error?
    Still no answer from me yet, not that I have spend a great deal of time trying to look at it. annoying though.

  • [SOLVED]pacman: libusb-compat: /usr/bin/libusb-config exists ...

    Hi,
    I just installed the arch base system and did a 'pacman -S kernel26' and got some errors
    error: failed to commit transaction (conflicting files)
    libusb-compat: /usr/bin/libusb-config exists in filesystem
    libusb-compat: /usr/include/usb.h exists in filesystem
    libusb-compat: /usr/lib/libusb-0.1.so.4 exists in filesystem
    libusb-compat: /usr/lib/libusb-0.1.so.4.4.4 exists in filesystem
    libusb-compat: /usr/lib/libusb.a exists in filesystem
    libusb-compat: /usr/lib/libusb.so exists in filesystem
    libusb-compat: /usr/lib/pkgconfig/libusb.pc exists in filesystem
    Errors occurred, no packages were upgraded.
    this page I found on google contains error messages very similar to mine: http://pastebin.com/twGU7Yy3
    any ideas?
    Last edited by tgoossens (2011-08-11 17:12:32)

    [SOLVED] I believe this is a related topic: https://bbs.archlinux.org/viewtopic.php?id=23774
    Last edited by tgoossens (2011-08-11 17:11:52)

  • Compact Field Point freezing while executing code

    While executing my application, the compact FieldPoint will freeze and break communication with the touch panel.  I looked at the error logs for the cFP by right clicking on the target in MAX and selecting view error log and I found this
    LabVIEW error log: 
    #Date: TUE, DEC 22, 2009 07:05:40 AM
    #OSName:
    #OSVers: 6.3
    #OSBuild:
    #AppName: /c/ni-rt/system/lvrt.out
    #Version: 9.0
    #AppKind: AppLib
    12/22/09 09:27:32.948 AM
    source/mgcore/MemoryManager.cpp(143) : DWarnInternal: Memory error 2 in DSSetHSzClr
    $Id: //labview/branches/Orion/dev/source/mgcore/MemoryManager.cpp#27 $
    12/22/09 09:27:32.952 AM
    source/exec/CleanupProc.cpp(267) : DWarn: can't realloc cleanup tbl
    I'm not sure what this message means.  Anyone have any ideas what this message means and how to find the issue in the code?
    Thanks.

    It appears that I have a memory leak in my code.  As I execute my code, I can see the memory usage climbing using the Distributed System Manager.  Once the usage reaches 91% then the system "freezes".  I did read that the memory allocated for subVIs is not deallocated until the top-level Vi finishes running or the entire application stops.  So I added Request Deallocation function in each of the subVIs. 
    I'm attaching a zip of my code so hopefully someone can point out what might the issue or give me more guidance on how to find the memory leak.  The code is intended to run a test stand that performs life cycling testing so I've set up a state machine for initializing the system, executing the testing, and then a wait state to see if the operator wants to perform more testing or stop.  The testing state consists of 5 state machines that turn valves on or off for a certain amount of time.
    I am using a cFP2200 with 2 cFP-DIO-550 and 2 cFP-AI-100.
    Thank you in advance for any input.
    Attachments:
    Valve Test Stand.zip ‏561 KB

  • [SOLVED] Binaries move to /usr/bin - Few Questions

    Hi All-
    I just learned about this recent change to the filesystem. Wondering if this page outlines the correct steps for moving binaries to /usr/bin:
    https://www.archlinux.org/news/binaries … ervention/
    When I ran the second command (paclist...) on that page, I got a syntax error:
    bash: syntax error near unexpected token `|'
    Other than that, none of the commands listed on the page give me any results, so I'm assuming that means there are no conflicts and it's safe to run the final three commands to upgrade the system. Any advice appreciated.
    Thanks!
    Last edited by w201 (2013-06-09 22:35:32)

    cfr wrote:
    What do you mean when you say that every file in there is linked?
    /bin, /sbin and /usr/sbin should themselves be links. They should not contain links.
    lrwxrwxrwx 1 root root 7 Mai 31 19:40 /bin -> usr/bin/
    lrwxrwxrwx 1 root root 7 Mai 31 19:40 /sbin -> usr/bin/
    lrwxrwxrwx 1 root root 3 Mai 31 19:40 /usr/sbin -> bin/
    Hi- Hmmm, I think this requires an explanation... I see that /bin /sbin/ and /usr/sbin directories are symbolic links, but what I meant is that if you cd into /bin for example, and do "file filename" on any file in there, it'll show that it's "dynamically linked"... I mistook this for meaning a symbolic link.
    Example:
    └──╼ file mev
    mev: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=24cd2c473bdaa7d951bbf9e14b2792646b6b4932, stripped
    Last edited by w201 (2013-06-10 00:37:18)

  • Error while executing a stored procedure from forms6i

    When I execute a STORED PROCEDURE from ORACLE DB 10g this procedure works perfectly fine.
    But when I execute the same from the FORMs 6i I get the following error:
    PDE-PLU022 Don't have access to the stored program unit
    XMLPARSERCOVER in schema CARE.
    where XMLPARSERCOVER is the class and
    CARE is the schema.
    Regards,
    Jignesh S

    I have tried this with both the owner of the schema and the intended user, -from both forms and directly.
    All rights was granted on the stored procedure. Since posting I have found that one of the tables that the procedure might insert into, was not explicitly granted to the intended user, and after rectifying that the error message went away.
    -however, the procedure now silently "finishes" without any evidence that it ever ran, if invoked from the forms application. When invoked from SQL Plus (or JDev, or Toad) it runs as expected.
    I have no public synonym for the procedure, -is that necessary?
    The stored procedure in question is implemented in java, and published as a stored procedure. It does rather heavy lifting, when running, using a view against another server , updating local tables and quite a lot of data validation/cleansing, and logging. All recourses are within the same schema.
    Any ideas?

Maybe you are looking for