On 09/04/2012 06:44 AM, Alejo C.S. wrote: > Here same problem, Debian amd64 stable (squeeze) with following dictionaries: > > libreoffice3.6-dict-en > libreoffice3.6-dict-es > libreoffice3.6-dict-fr > libreoffice3.6-dict-an > > Rolling back to 3.6 >
Thanks Alejo. I created a simple shell to clean dpkg, you might want to do the same so that you don't have to enter each command separately: $ cat lodictfix6.sh #!/bin/sh sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-en.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-en && sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-es.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-es && sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-fr.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-fr Just add the commands for libreoffice3.6-dict-an: #!/bin/sh sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-en.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-en && sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-es.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-es && sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-fr.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-fr && sudo mv /var/lib/dpkg/info/libreoffice3.6-dict-an.* /tmp/ && sudo dpkg --remove --force-remove-reinstreq libreoffice3.6-dict-an Not that the above is all one line. Just put into gedit/kedit and make sure it's all one line & then save as lodictfix6.sh (or whatever you prefer) & then run as a standard shell './lodictfix6.sh'. I also did an lodictfix5.sh as well for cleaning LO 3.5 dpkg issues. > > > 2012/9/3 NoOp <[email protected]>: >> On 09/03/2012 03:17 PM, NoOp wrote: >> ... >>> Interesting. Thank Terry. I have LO 3.4, 3.5, and 3.6 installed. None of >>> those should interfere with the other as they are all installed in /opt >>> and use their own profiles (/home/<user>/.config/libreoffice3.4, >>> /home/<user>/.config/libreoffice3.5, and >>> /home/<user>/.config/libreoffice3.6). The Ubuntu 3.5 uses >>> /home/<user>/.config/libreoffice. >>> >>> I had no issues with those installed when the versions were 3.4.x, >>> 3.5.5rc3, and 3.6.0.4. I'm reinstalling those versions again (minus >>> 3.4.x) to test again. >> >> No issues with reinstalling 3.6.04 over 3.6.1: >> Setting up libreoffice3.6-dict-en (3.6.0.4-104) ... >> SUCCESS: unopkg returns successful! >> Setting up libreoffice3.6-dict-es (3.6.0.4-104) ... >> SUCCESS: unopkg returns successful! >> Setting up libreoffice3.6-dict-fr (3.6.0.4-104) ... >> SUCCESS: unopkg returns successful! >> >> Nor did I have any issues with installing 3.5.5rc3 over 3.5.6.2. >> >> >> >> -- >> For unsubscribe instructions e-mail to: [email protected] >> Problems? >> http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ >> Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette >> List archive: http://listarchives.libreoffice.org/global/users/ >> All messages sent to this list will be publicly archived and cannot be >> deleted > -- For unsubscribe instructions e-mail to: [email protected] Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
