Freitag, 1. Oktober 2010

Install Office 2007 on Ubuntu 10.04

Die Installation von Office 2010 (jedenfalls die Komponenten Word, Excel und PowerPoint) funktioniert nach dieser Beschreibung optimal - viel Spass!

Sonntag, 18. April 2010

Install Openbooks xTuple ERP on Ubuntu Linux

First download the actual version of OpenBooks from http://sourceforge.net/projects/postbooks/files/ . I take for this example the file "xTuple-3.4.0-linux-installer.bin" From directory "01 Installers".

When the download is finished, you have to make the file executeable by typing: "sudo chmod 777 [Downloaddirectory]/xTuple-3.4.0-linux-installer.bin" then type in "sudo [Downloaddirectory]/xTuple-3.4.0-linux-installer.bin and the GUI-Installation will start.
Now you can coose standard installation options. If you come to the section where you can decide what programs you want to install just select the ones you need, for example: CSVimport.

Then the installation is ready.

Montag, 22. März 2010

Mögliche Größe einer Mail ändern unter Debian / Postfix

Nach einigen Veruschen habe ich nun heruausgefunden, wie ich die maximal mögliche Mailgröße ändere. Man braucht dazu einfach in der /etc/postfix/main.cf die 2 Parameter message_size_limit auf z.B. 104857600 (100MB) setzen und sazu das virtual_mailbox_limit auf 0 . Wird letzteres nicht ausgeführt kommt in der /var/log/mail.err der Fehler: postfix/virtual[1451]: fatal: main.cf configuration error: virtual_mailbox_limit is smaller than message_size_limit

also einfach in die /etc/postfix/main.cf die 2 Parameter ändern bzw. hinzufügen:

message_size_limit = 104857600
virtual_mailbox_limit = 0

den Server neu starten

/etc/init.d/postfix restart

und dann funktionierts :)

Samstag, 20. März 2010

ffmpeg für DownloadHelper

Für die Option "Herunterladen und Konvertieren" beim Downloadhelper benötigt man unter Ubuntu den Codec ffmpeg (/usr/bin/ffmpeg) Damit dieser verfügbar ist, einfach

sudo apt-get install ffmpeg

eingeben.