Odoo / python: Install pysftp from source under linux

18. August 2016 at 10:46

python-logo-web

If you get the following error when you install the odoo backup plugin:

Odoo Server Error

‚This module needs pysftp to automaticly write backups to the FTP through SFTP. Please install pysftp on your system. (sudo pip install pysftp)‘)
ImportError: This module needs pysftp to automaticly write backups to the FTP through SFTP. Please install pysftp on your system. (sudo pip install pysftp)

You need to manually install pysftp module.

First download the module:

wget https://pypi.python.org/packages/36/60/45f30390a38b1f92e0a8cf4de178cd7c2bc3f874c85430e40ccf99df8fe7/pysftp-0.2.9.tar.gz
tar xvzf pysftp-0.2.9.tar.gz
rm pysftp-0.2.9.tar.gz

Then install libffi:

sudo apt-get install libffi-dev

move into the exctracted pysftp-0.2.9 directory and run:

sudo python setup.py install

and finally restart odoo:

sudo service odoo-server restart

That should fix the issue

Please share this article von facebook & google plus or where you want, thank you!

Linux or UNIX – Find and remove file command – bash

28. Juli 2011 at 14:23

Find and remove file (about name)

find . -name "FILE-TO-FIND"-exec rm -rf {} \;

Find and remove file (about file type)

find . -type f -name "FILE-TO-FIND" -exec rm -f {} \;

Find all *.bak files in current directory and removes them with confirmation from user:

$ find . -type f -name "*.bak" -exec rm -i {} \;

Find all core files and remove them:

find / -name core -exec rm -f {} \;

Linux: Nano Editor – Befehle / Tastenkürzel

23. Juni 2011 at 14:21

Mein Lieblingseditor unter Linux in der Bash ist ganz klar VI.
Leider kann es vorkommen das dieser z.b. über Putty mit falsch oder schlecht konfigurierter Bash/SSH dieser nicht genutzt werden kann da z.B. die Pfeiltasten nicht benutzbar sind … *sigh* (wer eine Lösung dafür hat, bitte mal in den Kommentaren posten).

What ever, eine gute Alternative ist z.B. Nano, dazu hier die wichtigsten Tastenkürzel:

Tastenkombination Erklärung
STRG + G / F1 Hilfe öffen
STRG + X / F2 Nano Schließen/Beenden
STRG + O / F3 Speichern
STRG + W / F6 Suchen nach einem String oder Regulären Ausdruck
STRG + K / F9 Zeile ausschneiden und in die Zwischenablage legen
STRG + U / F10 Zwischenablage einfügen
STRG + C / F11 Position des Cursors anzeigen
ALT + T Alles unter dem Cursor ausschneiden
ALT + M Maussupport aktivieren oder deaktivieren