Jag hittade ett script som löser detta på ett litet kick.
http://en.libreofficeforum.org/sites/li ... eTurbo.zip
Ladda ner och packa upp scriptet.
Kör det sedan som root eller använd sudo.
Skulle länken försvinna lägger jag upp scriptet i sin helhet här:
Kod: Markera allt
#!/bin/bash
# This script was made by Alonso Murillo to speedup LibreOffice startup, enjoy it.
# Clear the console to see better messages
clear
# Make sure that the script is run as root
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root, run: sudo su" 2>&1
exit 1
fi
# Load NewHostLine variable with the host name and IP address
NewHostLine="127.0.0.1 $HOSTNAME localhost $HOSTNAME.(none)"
# Check if the Tweak line have already being applied!
var=$(grep -lir "$NewHostLine" /etc/hosts)
# If not added to the hosts files
if [ "$var" == "" ] ; then
mv /etc/hosts /etc/hosts.bak
sed "1i\\$NewHostLine" </etc/hosts.bak >/etc/hosts
echo 'New host line added to hosts'
fi
