Assistenten > Nieuwe woordenlijsten installeren
WTF? I thought this was supposed to be OpenOffice 2.0.1. :confused:
I would tell you if they hadn't switched to a shitty method of distribution in 2.0 (Fucking RPMs)
mobrien@kaos openoffice]$ lsOOo_2.1.0_LinuxIntel_install_en-US.tar.gz
just extract the rpms into one folder and it will run statically just fine.To do this you could use rpm2cpio then pipe to cpio to extract or (on slackware) rpm2targz
#!/bin/shtempdir=/tmp/oootmp$RANDOMif test ! $# = 2then echo "Usage: `basename $0` inputfile outputdir" echo 'For example:' echo "`basename $0` OOo_2.1.0_LinuxIntel_install_en-US.tar.gz /home/bob/Stuff"else mkdir $tempdir tar -xzf "$1" -C $tempdir cd $tempdir/*/RPMS for i in *.rpm do rpm2cpio $i | cpio -id --quiet done mv opt "$2" rm -rf $tempdirfiexit 0