Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: [opgelost] OpenOffice kan niet bestanden openen/opslaan op NAS via NFS  (gelezen 11031 keer)

Betreft 10.10 beta. Ik gebruik een NAS voor al mijn data. Als ik een tekst in Writer wil openen dan krijg ik de foutmelding dat het document is vergrendeld voor bewerking. Ook bij het opslaan van een document krijg ik een foutmelding: fout bij gelijktijdige toegang tot /../test.odt.

Ik kan wel bestanden openen en opslaan vanaf de lokale schijven.

Weet iemand hoe dit probleem verholpen kan worden?

« Laatst bewerkt op: 2011/01/28, 09:53:29 door pahendriks »

Offline h2o

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #1 Gepost op: 2010/09/24, 12:15:26 »
Dat is een fout in OpenOffice.org en heeft te maken met een 'lock' van een geopend bestand op een nfs locatie. Het is op te lossen door een aantal regels aan te passen.

Om verkeerd overtypen te voorkomen, hieronder de hele tekst. Deze moet je kopiëren naar een leeg tekstbestand (mousepad, gedit, kate o.i.d.)

= = = = = = = = = = begin tekst = = = = = = =
#!/bin/sh
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2008 by Sun Microsystems, Inc.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# $RCSfile: soffice.sh,v $
#
# $Revision: 1.34 $
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org.  If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************

if test -z "$HOME"; then
    HOME=$(getent passwd $(whoami) | cut -d":" -f6)
fi

# helper functions
home_on_nfs()
{
    case $(stat -f -c %T $HOME) in nfs|smb)
        return 0
    esac
    return 1
}
file_on_nfs(){
    for i; do
       case "$i" in -*) continue; esac
       [ -f "$i" ] || continue
       case $(stat -f -c %T "$i") in nfs|smb)
            return 0
       esac
    done
    return 1
}

# FIXME: this is conservative; allow more known working configurations
working_opengl_support()
{
    if [ -n "$(lsmod | awk '/^(fglrx|nvidia)/ {print $1}')" ]; then
    return 1
    fi
    return 0
}

# read config file

FILE_LOCKING=auto
OPENGL_SUPPORT=no
if [ -f /etc/openoffice/soffice.sh ]; then
    . /etc/openoffice/soffice.sh
fi

# sanity checks

case "$FILE_LOCKING" in
    auto|yes|no) ;;
    *)
        echo >&2 "unknown value '$FILE_LOCKING' for FILE_LOCKING parameter."
    FILE_LOCKING=auto
    echo >&2 "FILE_LOCKING reset to '$FILE_LOCKING'"
esac
 
case "$OPENGL_SUPPORT" in
    auto|yes|no) ;;
    *)
        echo >&2 "unknown value '$OPENGL_SUPPORT' for OPENGL_SUPPORT parameter."
    OPENGL_SUPPORT=auto
    echo >&2 "OPENGL_SUPPORT reset to '$OPENGL_SUPPORT'"
esac

# adjust environment

if [ -z "$SAL_ENABLE_FILE_LOCKING" ]; then
    case "$FILE_LOCKING" in
    auto)
        home_on_nfs "$@"
        if [ $? = 0 ]; then
        STAR_PROFILE_LOCKING_DISABLED=1
        export STAR_PROFILE_LOCKING_DISABLED
    fi
    file_on_nfs "$@"
       if [ $? = 0 ]; then
        SAL_ENABLE_FILE_LOCKING=0
        export SAL_ENABLE_FILE_LOCKING
        # for safety
           STAR_ENABLE_FILE_LOCKING=1
        export STAR_ENABLE_FILE_LOCKING
    else
         # file locking now enabled by default
        #SAL_ENABLE_FILE_LOCKING=1
        #export SAL_ENABLE_FILE_LOCKING
        unset SAL_ENABLE_FILE_LOCKING
       fi
        ;;
    yes)
    SAL_ENABLE_FILE_LOCKING=1
    export SAL_ENABLE_FILE_LOCKING
        ;;
    no)
    SAL_ENABLE_FILE_LOCKING=0
    export SAL_ENABLE_FILE_LOCKING
    # for safety
       STAR_ENABLE_FILE_LOCKING=0
    export STAR_ENABLE_FILE_LOCKING
    STAR_PROFILE_LOCKING_DISABLED=1
    export STAR_PROFILE_LOCKING_DISABLED
    esac
fi

if [ -z "$SAL_NOOPENGL" ]; then
    case "$OPENGL_SUPPORT" in
    auto)
        working_opengl_support
        if [ $? -eq 0 ]; then
        SAL_NOOPENGL=true
        export SAL_NOOPENGL
    fi
        ;;
    yes)
    :
    unset SAL_NOOPENGL
    #export SAL_NOOPENGL
        ;;
    no)
    SAL_NOOPENGL=true
    export SAL_NOOPENGL
    esac
fi

# the following test is needed on Linux PPC with IBM j2sdk142
# These variables are substituted during the build process
if [ "LINUX" = "LINUX" -a "X86_64" = "POWERPC" ] ; then
    JITC_PROCESSOR_TYPE=6
    export JITC_PROCESSOR_TYPE
fi

# resolve installation directory
sd_cwd="`pwd`"
if [ -h "$0" ] ; then
    sd_basename=`basename "$0"`
     sd_script=`ls -l "$0" | sed "s/.*${sd_basename} -> //g"`
    cd "`dirname "$0"`"
    cd "`dirname "$sd_script"`"
else
    cd "`dirname "$0"`"
fi
sd_prog=`pwd`
cd "$sd_cwd"

sd_binary=`basename "$0"`.bin

#collect all bootstrap variables specified on the command line
#so that they can be passed as arguments to javaldx later on
for arg in $@
do
  case "$arg" in
       -env:*) BOOTSTRAPVARS=$BOOTSTRAPVARS" ""$arg";;
  esac
done

# pagein
sd_pagein_args=@pagein-common
for sd_arg in "$@"; do
    case ${sd_arg} in
    -calc)
        sd_pagein_args="${sd_pagein_args} @pagein-calc"
        break;
        ;;
    -draw)
        sd_pagein_args="${sd_pagein_args} @pagein-draw"
        break;
        ;;
    -impress)
        sd_pagein_args="${sd_pagein_args} @pagein-impress"
        break;
        ;;
    -writer)
        sd_pagein_args="${sd_pagein_args} @pagein-writer"
        break;
        ;;
    esac
done
"$sd_prog/../basis-link/program/pagein" -L"$sd_prog/../basis-link/program" \
    ${sd_pagein_args}

# extend the ld_library_path for java: javaldx checks the sofficerc for us
if [ -x "$sd_prog/../basis-link/ure-link/bin/javaldx" ] ; then
    my_path=`"$sd_prog/../basis-link/ure-link/bin/javaldx" $BOOTSTRAPVARS \
        "-env:INIFILENAME=vnd.sun.star.pathname:$sd_prog/redirectrc"`
    if [ -n "$my_path" ] ; then
        LD_LIBRARY_PATH=$my_path${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}
        export LD_LIBRARY_PATH
    fi
fi

unset XENVIRONMENT

# uncomment line below to disable anti aliasing of fonts
# SAL_ANTIALIAS_DISABLE=true; export SAL_ANTIALIAS_DISABLE

# uncomment line below if you encounter problems starting soffice on your system
# SAL_NO_XINITTHREADS=true; export SAL_NO_XINITTHREADS

# read database entries for Adabas D
if [ -f /etc/adabasrc ]; then
  . /etc/adabasrc
fi

# Set PATH so that crash_report is found:
PATH=$sd_prog${PATH+:$PATH}
export PATH

PYTHONPATH=$sd_prog/../basis-link/prograMS{PYTHONPATH+:$PYTHONPATH}
export PYTHONPATH

# test for availability of the fast external splash
for arg in $@; do
    if [ "$arg" = "-nologo" -o "$arg" = "-no-oosplash" ]; then
        no_oosplash=y
    fi
done
if [ "$sd_binary" = "soffice.bin" -a -x "$sd_prog/oosplash.bin" ] && [ "$no_oosplash" != "y" ] ; then
    sd_binary="oosplash.bin"
fi

# execute soffice binary
"$sd_prog/$sd_binary" "$@" &
trap 'kill -9 $!' TERM
wait $!

while [ $? -eq 79 ]
do
    "$sd_prog/$sd_binary" ""$BOOTSTRAPVARS"" &
    wait $!
done

exit

= = = = = = = = = =einde tekst = = = = = = =

Sla het bestandje op onder de naam soffice.

Nu kopieer je dit bestandje naar de volgende locatie: /usr/lib/openoffice/program (moet je sudo voor gebruiken)

Makkelijker is het volgende:

Maak een nieuw bestandje aan met de naam soficecopy in dezelfde directory als waar je het bestandje soffice hebt opgeslagen.
Zet hierin de volgende tekst:

#!/bin/sh
sudo cp soffice /usr/lib/openoffice/program
echo OpenOffice moet nu normaal werken
echo klaar...

Opslaan en uitvoerende rechten geven.

Wanneer OpenOfice een update ondergaat het scriptje uitvoeren.

Na een upgrade van OpenOffice.org wordt het dataverkeer naar een nfs locatie goed uitgevoerd.

Het werkt op mijn netwerk thuis al een hele poos met succes.



editt moderator: lap tekst in code gezet.
« Laatst bewerkt op: 2010/09/24, 16:27:16 door femke98 »
Werk laptops + werkstation: Debian Testing
Privé laptops: Debian Testing/Unstable
Test laptop: Diverse andere Linux distribities
Chromebooks: ChromeOS Flex

[opgelost] Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #2 Gepost op: 2010/09/24, 13:04:51 »
Hoera! Dit werkt perfect! Bedankt!

Offline h2o

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #3 Gepost op: 2010/09/24, 14:00:41 »
Ik heb het toentertijd via Google opgezocht en vond deze documentatie over dit probleem:

Citaat
Solution to OpenOffice NFS locking problems
The problem

Linux versions of OpenOffice 2.0 and 2.2 (and possibly others) just fail to save files mounted over NFS. Examples:

    * OpenOffice opens files over NFS in read-only mode, and doesn't let the user save the changes to the file.
    * If the user's profile (~/.openoffice.org2) is on NFS, the user has to run the install wizard each time he starts OpenOffice.
    * If the user's profile (~/.openoffice.org2) is on NFS, the user cannot make changes to the configuration (such as autocorrect): after the dialog box is closed, changes are lost.
    * OpenOffice sometimes hangs when saving files or exiting.

Reason

Openoffice fails to lock files over NFS. It just fails without an error message or just hangs when saving files over NFS. (The proper behaviour would be making locking work over NFS (yes, it is possible, see O_EXCL in man 2 open in Linux), or displaying a warning, which could be disabled by the user.)
Workaround

Edit the file `type -p soffice` as root. Comment out all lines containing the word LOCKING (case sensitive), and add the following replacement there:

STAR_PROFILE_LOCKING_DISABLED=1
export STAR_PROFILE_LOCKING_DISABLED

#SAL_ENABLE_FILE_LOCKING=1
#export SAL_ENABLE_FILE_LOCKING
unset SAL_ENABLE_FILE_LOCKING

= = = = = = = = =
If like me, you are using NFS file sharing you may run into the problem of OpenOffice.org not opening files or being unable to save files on network mounted filesystems.

The work around for this is simple enough to do, but must be done after each update to OpenOffice.org.

Under Fedora you need to edit /usr/lib/openoffice.org/program/soffice this is a bash script which launches the appropriate OpenOffice.org application. and locate the following on lines 42-44

    # file locking now enabled by default
    SAL_ENABLE_FILE_LOCKING=1
    export SAL_ENABLE_FILE_LOCKING

Simply put a # infront of lines 43 and 44 so it looks like

    # file locking now enabled by default
    #SAL_ENABLE_FILE_LOCKING=1
    #export SAL_ENABLE_FILE_LOCKING

Save your changes. This will enable saving and editing documents on NFS filesystems.

De oplossing die ik toen heb bedacht en werkt (ook bij u) zorgt ervoor dat het bestandje met de aangepaste regels over het (door de update toegevoegde) originele ('foute') bestandje worden gekopieerd. De aangepaste regels zorgen ervoor dat de 'lock' wordt uitgeschakeld bij verkeer met nfs systemen.

Een aangepast bestandje over het 'foutieve' bestandje heen kopiëren is makkelijker dan iedere keer die regels aan te passen. Om heel precies te zijn heb ik een updatescript waar ik ook het soffice bestandje meeneem, ook al wordt OpenOffice.org niet bijgewerkt. Beter ieder keer 'voor niets' dan een keer vergeten.
« Laatst bewerkt op: 2010/09/24, 14:04:43 door h2o »
Werk laptops + werkstation: Debian Testing
Privé laptops: Debian Testing/Unstable
Test laptop: Diverse andere Linux distribities
Chromebooks: ChromeOS Flex

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #4 Gepost op: 2010/09/24, 19:52:32 »
Ik ga deze oplossing ook uitproberen.

Zelf had ik met de hulp van dit forum een andere oplossing gevonden: bij het mounten van de desbetreffende de optie "nolock" toevoegen.

Zie
http://forum.ubuntu-nl.org/server-en-netwerk/fout-bij-opslaan-openoffice-document-op-nas-server/msg650678/#msg650678

Omdat het blijkbaar een fout is van OpenOffice zelf, lijkt mij het logisch dat dat programma zo in te stellen dat er geen locks gebruikt worden.

Denken jullie dat ik "gelijk" heb?

Wat is een mogelijk nadeel van het mounten met "nolock" ?
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #5 Gepost op: 2010/09/24, 22:42:23 »
Als het probleem in OpenOffice zit, dan lijkt het mij het best om dát pakket te patchen in plaats van dat je het mounten zelf patcht. Je weet niet wat de bijwerkingen daarvan kunnen zijn...

Ik neem aan dat het in de definitieve uitgave van Ubuntu 10.10 wel opgelost is.

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #6 Gepost op: 2010/09/24, 23:53:15 »
Ik heb deze oplossing nu ook toegepast en het werkt bij mij ook.
Laten we hopen dat het in de definitieve Ubuntu 10.10 opgelost is.

Heb jij of iemand anders al gezien of deze bug gemeld is ?
Indien niet, zal het niet opgelost zijn .....

ps zelf heb ergens gelezen dat een definitieve oplossing zou zijn:
Forget NFSv3 altogether and just upgrade to NFSv4.
Helaas ondersteund mijn NAS NFSv4 (nog?) niet.
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #7 Gepost op: 2010/09/25, 10:00:40 »

Heb jij of iemand anders al gezien of deze bug gemeld is ?
Indien niet, zal het niet opgelost zijn .....

Volgens mij wordt er wel aandacht aan besteed. Als je inlogt op launchpad.net en zoekt op bugs met openoffice en lock als argumenten, dan vind je het e.e.a.

Zie https://launchpad.net/distros/ubuntu/+bugs
« Laatst bewerkt op: 2010/09/25, 10:05:28 door pahendriks »

Offline h2o

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #8 Gepost op: 2010/09/25, 10:25:26 »
Het is wel een OpenOffice bug, niet een Ubuntu (of andere distro) bug. Wanneer je zelf een nieuwere versie (bij OO.o zelf) ophaalt en installeert dan je eigen distributie uitgeeft, dan komt die bug net zo snel weer terug.
Werk laptops + werkstation: Debian Testing
Privé laptops: Debian Testing/Unstable
Test laptop: Diverse andere Linux distribities
Chromebooks: ChromeOS Flex

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #9 Gepost op: 2010/09/25, 10:57:03 »
@pahendriks
Bedankt voor de info en de link

@h2o
Het is wel een OpenOffice bug, niet een Ubuntu (of andere distro) bug.

Daar heb je gelijk in. Maar omdat OpenOffice een standaardpakket is van Ubuntu, kan er toch in een nieuwere Ubuntu versie deze oplossing in verwerkt worden? 

Wanneer je zelf een nieuwere versie (bij OO.o zelf) ophaalt en installeert dan je eigen distributie uitgeeft, dan komt die bug net zo snel weer terug.

Een eigen distributie uitgeven zal in mijn geval niet zo gauw gebeuren.
Ben al erg blij de meeste in en outs van een reguliere Ubuntu distributie kan begrijpen en evt aanpassen. ;)
« Laatst bewerkt op: 2010/09/25, 11:04:17 door wowo »
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #10 Gepost op: 2011/01/25, 21:35:31 »
@h20
@pahendriks

Heb Ubuntu 10.10 net op een oude Toshiba Satellite Pro L20 geïnstalleerd (Zonder een ander besturingssysteem  ;) erbj)

Omdat ik nog altijd gebruik maak van mijn Nas met NFS was ik erg benieuwd of deze bug van OpenOffice er nog in zat.
Helaas is dit dus ook het geval. Ik moest weer deze patch gebruiken.

Naja tezijnertijd zullen we over gaan stappen op LibreOffice. En dan maar weer hopen dat er aandacht word besteed aan deze bug ....
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #11 Gepost op: 2011/01/27, 16:23:59 »
Probeer het eens met LibreOffice.

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #12 Gepost op: 2011/01/27, 20:11:25 »
Ik wacht nog even totdat hij in het Ubuntu Software centrum verschijnt.
Ik denk dat dat toch niet zolang zal duren ?
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Offline ivo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #13 Gepost op: 2011/01/27, 21:57:19 »
Probeer het eens met LibreOffice.

Ik heb OO al vervangen door LibreOffice en daarmee werkt het probleemloos naar mijn NFS netwerkdisk.
There are only 10 types of people in the world; those who understand binary and those who don't.

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #14 Gepost op: 2011/01/27, 22:19:18 »
@ivo

Dan ga ik het nu ook maar eens proberen met de gebruiksaanwijzing volgens:
http://www.omgubuntu.co.uk/2011/01/new-ppa-makes-installing-libreoffice-on-ubuntu-easy/
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Offline ivo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #15 Gepost op: 2011/01/27, 22:25:32 »
@ivo

Dan ga ik het nu ook maar eens proberen met de gebruiksaanwijzing volgens:
http://www.omgubuntu.co.uk/2011/01/new-ppa-makes-installing-libreoffice-on-ubuntu-easy/


Ik ga zo eens op die site kijken. Ik heb gewoon via Synaptic alle OO spullen verwijderd en daarna op deze site
http://www.libreoffice.org/download/ voor de NL versie gekozen. De 3 aangeboden bestanden gedownload en met "dpkg -i" in een terminal geïnstalleerd. Eerst de grote distributie, dan de NL-pack en daarna de help-pack.

EDIT  ----> omgubuntu doetut weer

?????
Oops! Google Chrome could not connect to www.omgubuntu.co.uk
Other users are also experiencing difficulties connecting to this site, so you may have to wait a few minutes.
Suggestions:
Access a cached copy of www.­omgubuntu.­co.­uk/­2011/­01/­new-­ppa-­makes-­installing-­libreoffice-­on-­ubuntu-­easy/­
Try reloading: www.­omgubuntu.­co.­uk/­2011/­01/­new-­ppa-­makes-­installing-­libreoffice-­on-­ubuntu-­easy/­
Search on Google:

« Laatst bewerkt op: 2011/01/27, 22:32:43 door ivo »
There are only 10 types of people in the world; those who understand binary and those who don't.

Offline ivo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #16 Gepost op: 2011/01/27, 22:39:42 »
Zo te zien zit ie al in de repo's?


inaninck@lt9:~$ apt-cache search libreoffice
libobasis3.3-nl-math - Math language module for LibreOffice 3.3, language nl
libobasis3.3-nl-help - Help module for LibreOffice 3.3, language nl
libreoffice3-ure - UNO Runtime Environment
libreoffice-debian-menus - LibreOffice desktop integration
libreoffice3-dict-en - En dictionary for LibreOffice 3.3
libobasis3.3-nl-writer - Writer language module for LibreOffice 3.3, language nl
libreoffice3-dict-es - Es dictionary for LibreOffice 3.3
libobasis3.3-en-us-res - Language resource module for LibreOffice 3.3, language en_US
libobasis3.3-writer - Writer module for LibreOffice 3.3
libreoffice3-dict-fr - Fr dictionary for LibreOffice 3.3
libobasis3.3-extension-mediawiki-publisher - MediaWiki publisher extension for LibreOffice 3.3
libobasis3.3-kde-integration - KDE integration module for LibreOffice 3.3
libreoffice3-base - Base brand module for LibreOffice 3.3
libobasis3.3-en-us-math - Math language module for LibreOffice 3.3, language en_US
libobasis3.3-impress - Impress module for LibreOffice 3.3
libreoffice3-draw - Draw brand module for LibreOffice 3.3
libobasis3.3-extension-report-builder - Report Builder extension for LibreOffice 3.3
libreoffice3-calc - Calc brand module for LibreOffice 3.3
libobasis3.3-core01 - Core module for LibreOffice 3.3
libreoffice3-dict-nl - Nl dictionary for LibreOffice 3.3
libobasis3.3-draw - Draw module for LibreOffice 3.3
libobasis3.3-extension-presentation-minimizer - Presentation Minimizer extension for LibreOffice 3.3
libreoffice3-nl - Brand language module for LibreOffice 3.3
libobasis3.3-calc - Calc module for LibreOffice 3.3
libobasis3.3-nl-binfilter - Legacy filters (e.g. StarOffice 5.2) for LibreOffice 3.3, language nl
libobasis3.3-extension-presenter-screen - Presenter Screen extension for LibreOffice 3.3
libreoffice3 - Brand module for LibreOffice 3.3
libobasis3.3-en-us-binfilter - Legacy filters (e.g. StarOffice 5.2) for LibreOffice 3.3, language en_US
libobasis3.3-extension-nlpsolver - NLPSolver extension for LibreOffice 3.3
libobasis3.3-extension-pdf-import - PDF import extension for LibreOffice 3.3
libreoffice3-impress - Impress brand module for LibreOffice 3.3
libreoffice3-writer - Writer brand module for LibreOffice 3.3
libobasis3.3-en-us-calc - Calc language module for LibreOffice 3.3, language en_US
libobasis3.3-nl - Language module for LibreOffice 3.3, language nl
libobasis3.3-en-us-writer - Writer language module for LibreOffice 3.3, language en_US
libobasis3.3-en-us - Language module for LibreOffice 3.3, language en_US
libobasis3.3-nl-calc - Calc language module for LibreOffice 3.3, language nl
libobasis3.3-nl-res - Language resource module for LibreOffice 3.3, language nl
libreoffice3-math - Math brand module for LibreOffice 3.3
libobasis3.3-en-us-base - Base language module for LibreOffice 3.3, language en_US
libobasis3.3-gnome-integration - Gnome integration module for LibreOffice 3.3
libobasis3.3-nl-base - Base language module for LibreOffice 3.3, language nl
libreoffice3-en-us - Brand language module for LibreOffice 3.3
inaninck@lt9:~$
There are only 10 types of people in the world; those who understand binary and those who don't.

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #17 Gepost op: 2011/01/27, 23:15:36 »
Heb hem via http://www.omgubuntu.co.uk/2011/01/new-ppa-makes-installing-libreoffice-on-ubuntu-easy/ geïnstalleerd.

OpenOffice werd gewoon voordat LibreOffice werd geïnstalleerd gewoon verwijderd.
LibreOffice werkte gewoon en alle extensies die ik voorheen in OpenOffice had waren ook gewoon meegenomen en werkten ook.

Alleen was LibreOffice in het Engels maar dat was eenvoudig te verhelpen omdat de taalpakketten van LibreOffice al wel in Synaptic zaten.
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome

Offline h2o

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #18 Gepost op: 2011/01/27, 23:27:55 »
Dat is mooi dat jullie LibreOffice erop hebben kunnen krijgen, maar is daarmee het probleem met de nfs-shares opgelost? Dat is namelijk de vraag? Als dat met LibreOffice ook niet normaal werkt moet je die work-arround blijven gebruiken, wat overigens prima werkt.
Werk laptops + werkstation: Debian Testing
Privé laptops: Debian Testing/Unstable
Test laptop: Diverse andere Linux distribities
Chromebooks: ChromeOS Flex

Offline wowo

  • Lid
Re: OpenOffice kan niet bestanden openen/opslaan op NAS via NFS
« Reactie #19 Gepost op: 2011/01/28, 00:03:55 »
Oeps ik was door mijn enthousiasme helemaal vergeten te melden dat met LibreOffice je geen patch meer nodig hebt om bestanden te openen/opslaan op een NAS via NFS.

Ik ga aan pahendriks melden dat hij "opgelost door LiberOffice te gaan gebruiken" bij de startpost kan gaan zetten.
« Laatst bewerkt op: 2011/01/28, 00:05:30 door wowo »
3xDesktop Manjaro Linux Gnome; 2xLaptop Manjaro Linux Gnome