Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: HOWTO: OpenOffice startup boost

  1. #1
    Join Date
    May 2005
    Beans
    32

    HOWTO: OpenOffice startup boost

    OpenOffice is usually blamed for slow startup times. The 2.0 version of this great software shows some improvements in this field too but here's is a HOWTO on speeding up the OO.o 1.1.x line. This is based on a linuxjournal.com article.

    1.
    Code:
    sudo gedit /opt/oostay
    2. paste this to oostay:
    Code:
    #!/bin/bash
    # Restart ooffice -quickstart every time it exits
    instances=`ps ax | grep -e -quickstart | grep -v grep | wc -l`
    
    if [ $instances == 0 ]; then
        while true; do ooffice -quickstart ; done
    else
        exit 1
    fi
    3. make it Xecutable by
    Code:
    sudo chmod a+x /opt/oostay
    4. launch gnome-session-properties and the script to the automatically launched programs. So: "/opt/oostay" priority: 50

  2. #2
    Join Date
    May 2005
    Location
    Atlanta
    Beans
    142
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO: OpenOffice startup boost

    Wow, I barely see the splash logo before the program launches. Phenominal speed increase, great HOWTO!

  3. #3
    Join Date
    Nov 2004
    Location
    Purdue University, Indiana
    Beans
    816
    Distro
    Dapper Drake Testing/

    Re: HOWTO: OpenOffice startup boost

    Another way to increase OO.org speed:

    Open up OO writer, go to tools->options->memory
    Increase the graphics cache ram, I upped mine to 64 for "Use for OO.org" and 5 for "memory per object"

    Loading times will increase dramatically. (20 seconds to 7 seconds on one computer I've used)

  4. #4
    Join Date
    May 2005
    Beans
    32

    Re: HOWTO: OpenOffice startup boost

    Quote Originally Posted by varunus
    Another way to increase OO.org speed:

    Open up OO writer, go to tools->options->memory
    Increase the graphics cache ram, I upped mine to 64 for "Use for OO.org" and 5 for "memory per object"

    Loading times will increase dramatically. (20 seconds to 7 seconds on one computer I've used)
    You must have read the same article too

  5. #5
    Join Date
    May 2005
    Location
    Atlanta
    Beans
    142
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO: OpenOffice startup boost

    I have used 'oostay' for a while, and I have noticed that the System Monitor reports my CPU usage at 100%. I have found the culprit to be this scipt. Once I end that process, my CPU immedietly jumps back down to 0-5% usage.

    Does any have any ideas why this is happening?

  6. #6
    Join Date
    Jul 2005
    Beans
    22

    Re: HOWTO: OpenOffice startup boost

    Quote Originally Posted by drigloi
    OpenOffice is usually blamed for slow startup times. The 2.0 version of this great software shows some improvements in this field too but here's is a HOWTO on speeding up the OO.o 1.1.x line. This is based on a linuxjournal.com article.

    1.
    Code:
    sudo gedit /opt/oostay
    2. paste this to oostay:
    Code:
    #!/bin/bash
    # Restart ooffice -quickstart every time it exits
    instances=`ps ax | grep -e -quickstart | grep -v grep | wc -l`
    
    if [ $instances == 0 ]; then
        while true; do ooffice -quickstart ; done
    else
        exit 1
    fi
    can you tell me how to do this in kubuntu
    thanks

    3. make it Xecutable by
    Code:
    sudo chmod a+x /opt/oostay
    4. launch gnome-session-properties and the script to the automatically launched programs. So: "/opt/oostay" priority: 50
    can you tell me how to do this is kubuntu

  7. #7
    Join Date
    Jul 2005
    Location
    Ljubljana, Slovenia
    Beans
    124
    Distro
    Ubuntu 6.06

    Re: HOWTO: OpenOffice startup boost

    First edit file with kate not gedit:
    Code:
    sudo kate /opt/oostay
    Paste the code to new file and save it.
    Add execute bit.

    Then go to ~/.kde/Autostart
    Code:
    cd ~/.kde/Autostart
    make new file named oostay
    Code:
    kate oostay
    And paste this inside:
    Code:
    #!/bin/bash
    /opt/oostay
    This should be it!

    Edit: Forgot to say to add x bit:
    Code:
    sudo chmod +x ~/.kde/Autostart/oostay
    Last edited by myha; September 9th, 2005 at 02:35 PM.

  8. #8
    Join Date
    Jul 2005
    Location
    Ljubljana, Slovenia
    Beans
    124
    Distro
    Ubuntu 6.06

    Re: HOWTO: OpenOffice startup boost

    Quote Originally Posted by Mr Frosti
    I have used 'oostay' for a while, and I have noticed that the System Monitor reports my CPU usage at 100%. I have found the culprit to be this scipt. Once I end that process, my CPU immedietly jumps back down to 0-5% usage.

    Does any have any ideas why this is happening?
    I seem to have the same problem.... 100% CPU usage all the time, even when no oo program running...

  9. #9
    Join Date
    Dec 2004
    Location
    Austria (Upper Austria)
    Beans
    52

    Re: HOWTO: OpenOffice startup boost

    have you tried ooqstart-gnome or oooqs-kde?
    Description: OpenOffice.org QuickStarter applet for GNOME 2
    This applet preloads the OpenOffice.org program to make it launch faster
    when needed.

  10. #10
    Join Date
    Mar 2006
    Beans
    5

    Re: HOWTO: OpenOffice startup boost

    Quote Originally Posted by drigloi
    OpenOffice is usually blamed for slow startup times. The 2.0 version of this great software shows some improvements in this field too but here's is a HOWTO on speeding up the OO.o 1.1.x line. This is based on a linuxjournal.com article.
    thx for the instruction! does this work with folloing versions as well?

    Ubuntu 5.10
    and OpenOffice2
    ???

    Thx
    Uwe A.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •