Page 24 of 32 FirstFirst ... 142223242526 ... LastLast
Results 231 to 240 of 311

Thread: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

  1. #231
    manicka Guest

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Quote Originally Posted by foxy123
    yeah, Stage 2 does not work since directory structure has been changed slightly as well. I wonder, I have several core files with 'u' besides normal, like core05 and core05u. Should I install both of them or only one and which?
    I installed them all and everything is fine

  2. #232
    manicka Guest

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Quote Originally Posted by prodi_g
    I'm still getting the error "Failed to execute child process "/opt/openoffice.org1.9.113/program/soffice" (No such file or directory)". "dpkg" was not already running so whether or not I was running synaptic at the same time is not a question.

    Someone posted something about modifying menus but I have no clue what that is. Can someone please help? Please give detailed instructions. Thanks.
    This link will install 113 for you using zerohalo's script. Might be a good place to start if your want the menu's working properly
    http://ubuntuforums.org/showpost.php...&postcount=147

  3. #233
    manicka Guest

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Quote Originally Posted by foxy123
    yeah, Stage 2 does not work since directory structure has been changed slightly as well.
    Ah yes, so the line in stage 2 that says
    Code:
    cd SRC680_m$1_native_packed-1_en-US.8930/RPMS
    should now just be
    Code:
    cd RPMS
    My install script now looks like this
    Code:
     # Installation Script for OpenOffice.org 2 Beta (1.9.xxx)
    #
    # Contact spayne@sebpayne.com with any problems
    #
    # This script is copyright Evolution Colt 2005.
    #
    # Modified by zerohalo:
    # Accepts OOo2-beta snapshot number as parameter passed to the script.
    # Works with modified menu items that point to /opt/openoffice.org1.9.
    # Installs OOo2-beta in /opt/openoffice.org1.9
    # 
    #
    
    echo
    echo "Welcome to the Evolution Colt Script for Installing OpenOffice 2 Beta. This has been officaly tested by us on Ubuntu Linux Hoary Hedgehog 5.04. Please Note: If you are promopted with 'Password:', enter your password. This is the NON-JAVA version which assumes you have the Sun JRE installed. If you do, this could destroy you setup. You should cancel it now (Ctrl+C) and run the Java version evolutioncolt_oo2_java.sh as this will install the JRE. You have been warned...."
    echo
    sleep 10
    
    # Stage 1: Get the Files
    
    echo
    echo "***Downloading the Installation File**"
    echo
    sleep 2
    
    mkdir ~/openoffice2
    cd ~/openoffice2
    wget http://www.mirror.ac.uk/mirror/sunsite.dk/openoffice/developer/680_m$1/OOo_1.9.$1_LinuxIntel_rpm_install.tar.gz
    
    # Stage 2: Covert the Files to Debian Packages and Installation
    
    echo
    echo "***Converting the Packages to the Debian Format***"
    echo
    sleep 2
    
    tar zxvf OOo_1.9.$1_LinuxIntel_rpm_install.tar.gz
    cd RPMS
    rm openofficeorg-testtool-1.9.$1-1.i586.rpm
    rm -r desktop-integration
    sudo alien -d *.rpm
    rm *.rpm
    sudo dpkg -i *.deb
    sudo chmod 555 /opt/openoffice.org1.9.$1/program/soffice
    sudo mv -f /opt/openoffice.org1.9.$1 /opt/openoffice.org1.9
    
    # Stage 3: Copying the Menu Links
    
    echo
    echo "***Menu Links***"
    echo
    echo "Make sure you've downloaded OOoMenuItems.tar.gz and placed"
    echo "it in your ~/openoffice2 folder. If you haven't, open"
    echo "another terminal and do so now before continuing."
    echo
    echo "If OOo2MenuItems.tar.gz is in place, press enter."
    echo
    read
    
    cd ~/openoffice2
    tar zxvf OOo2MenuItems.tar.gz
    sudo cp menu/* /usr/share/applications/
    
    # Stage 4: Copying the Icons
    
    echo
    echo "***Moving the Icons to the Right Place***"
    echo
    sleep 1
    
    sudo cp 16x16/* /usr/share/icons/hicolor/16x16/apps/
    sudo cp 32x32/* /usr/share/icons/hicolor/32x32/apps/
    sudo cp 48x48/* /usr/share/icons/hicolor/48x48/apps/
    
    echo
    echo "***Finished! You can now start OpenOffice2.org from the Applications menu***"
    echo
    sleep 2
    Don't forget to have the menu OOo2MenuItems.tar.gz, available at zerohalo's post , in the directory as well
    Last edited by manicka; July 22nd, 2005 at 08:22 PM.

  4. #234
    Join Date
    Apr 2005
    Beans
    15

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    I'm still having trouble. I've tried multiple people's scripts but to no avail. For some reason, the "/opt/openoffice.org1.9/program/soffice" is not being created. Anyone??

    I tried installing it with synaptic but then I end up with two copies of the OO programs in my menu and I don't know how to remove them.

  5. #235
    Join Date
    Jul 2005
    Location
    Vienna, Austria
    Beans
    234
    Distro
    Kubuntu Karmic Koala (testing)

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Just because I found out right now: "159" is no longer valid for the "tail"-command. At least for the german langpack it's "155".

    Since it has not yet been mentioned in this thread, here's how to get the correct value:

    grep -i -n -a linenum *your_langpack.sh*

    The value given for "lineum" is the one you want.

    Is there a wildcard or something, where the value given will autmaticaly be used for "tail"? I used a script before to install the langpack, but of course with a fixed value.

    Sokraates

  6. #236
    manicka Guest

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    The version you have installed with synaptic is 1.1.3. Uninstall 1.1.3 and the duplicate will go away.

    To install 118 from the script above. Paste it into a text file called evolutioncolt_oo2.sh and save this into a directory called openoffice2 in your home directory.

    Make the script executable. In nautilus, right click on the created file and choose properties. go to the permissions tab and check the boxes to make it executable.

    Also make sure that the OOo2MenuItems.tar.gz file (available at link above) is saved in the openoffice2 directory as well.

    In a terminal change to the openoffice2 directory and run the command

    Code:
    ./evolutioncolt_oo2.sh 118
    The script should now run and install Ooo for you

    Enjoy!
    Last edited by manicka; July 23rd, 2005 at 12:59 AM. Reason: typo

  7. #237
    Join Date
    Apr 2005
    Beans
    15

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Thanks manicka. I got it working now.

  8. #238
    Join Date
    Nov 2004
    Beans
    35

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Thanks, manika, for modifying the script.

    For those of you who find the UK mirror slow, you can use a US mirror by changing the 'wget' line in stage one to:

    Code:
    wget http://mirrors.isc.org/pub/openoffice/developer/680_m$1/OOo_1.9.$1_LinuxIntel_rpm_install.tar.gz
    Attached is the icon file the script uses (place it in ~/openoffice2) for those who don't want to have to go digging through old posts to find it .
    Attached Files Attached Files

  9. #239
    Join Date
    Jul 2005
    Beans
    2

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    I installed openoffice.org2 through Synaptic and now have writer, draw, calc, evolution and impress but what I needed was base and it's not listed. Is there a deb source code I can enter into the repositories to get base?

    I really need it, please help!

    Jenny.

  10. #240
    Join Date
    Apr 2005
    Beans
    1,395

    Re: HOWTO: Latest OpenOffice 2 Beta with Ubuntu Linux

    Quote Originally Posted by k0304420
    I installed openoffice.org2 through Synaptic and now have writer, draw, calc, evolution and impress but what I needed was base and it's not listed. Is there a deb source code I can enter into the repositories to get base?

    I really need it, please help!

    Jenny.
    as it has been said here several times, the version in the repositories is too old (1.9.79 I believe). I would use the script mentioned here if I were you and you'll get Base.

Page 24 of 32 FirstFirst ... 142223242526 ... 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
  •