selinux unter CentOS deaktivieren / Disable selinux on CentOS (solution)

31. Januar 2022 at 13:18
banner

selinux unter centos deaktivieren

$ sudo yum install nano -y ; sudo nano /etc/selinux/config
Suchen Sie die Zeile SELINUX=enforcing
This file controls the state of SELinux on the system.
SELINUX= can take one of these three values:
enforcing – SELinux security policy is enforced.
permissive – SELinux prints warnings instead of enforcing.
disabled – No SELinux policy is loaded.
SELINUX=enforcing
SELINUXTYPE= can take one of three two values:
targeted – Targeted processes are protected,
minimum – Modification of targeted policy. Only selected processes are protected.
mls – Multi Level Security protection.
SELINUXTYPE=targeted

und ändern Sie den Wert auf “disabled”.

SELINUX=disabled
Starten Sie Linux anschließend neu.

$ sudo shutdown -r now
Um zu prüfen, ob SELinux erfolgreich deaktiviert wurde, geben Sie folgenden Befehl in die Kommandozeile ein:

$ getenforce
Wenn die Einstellung erfolgreich übernommen wurde, erhalten Sie die Ausgabe: “Disabled”.

how do I import an sql file using the command line in mysql

27. Juli 2021 at 18:35

A common use of mysqldump is for making a backup of an entire database:

shell> mysqldump db_name > backup-file.sql

You can load the dump file back into the server like this:

UNIX

shell> mysql db_name < backup-file.sql shell> zcat myfile.sql.gz | mysql -u root -ppassword mydb

The same in Windows command prompt:

mysql -p -u [user] [database] < backup-file.sql

Windows PowerShell

C:> cmd.exe /c "mysql -u root -p db_name < backup-file.sql"

MySQL command line

mysql> use db_name;
mysql> source backup-file.sql;

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

Lösung: desinfect 2016 / 2017 – AVIRA key expired | ERROR apt-get update – apt-transport-https benötigt

5. Januar 2017 at 18:20

Solltet ihr die desinfect cd/dvd oder usb-stick von heise verwenden zwecks Trojan, Spyware, Virus, etc. scans und Avira euch melden dass der update key für die signatur-updates veraltet oder ungültig ist … hier die Lösung:

Anleitung bei heise:
https://www.heise.de/forum/heise-Security/Themen-Hilfe/Desinfect/Re-Generelle-Probleme/posting-29580220/show/

Alternative Anleitung apt-transport-https direkt aus „deb http://archive.ubuntu.com/…“ installieren

Steps:
sudo vi /etc/apt/source.list
mit # deaktivieren > #deb http://www.heise.de/...
ohne # aktivieren > deb http://archive.ubuntu.com/...
mit :wq speichern
sudo apt-get update
sudo apt-get install apt-transport-https
sudo vi /etc/apt/source.list
ohne # aktivieren > deb http://www.heise.de/...
mit # deaktivieren > # deb http://archive.ubuntu.com/...
mit :wq speichern
sudo apt-get update
sudo apt-get -y dist-upgrade
prüfe ob update installiert mit
sudo dpkg -l desinfect-meta
> checke version 20160919-2
sudo /AntiVir/scancl --version
> checke key expieres Jul 31 2017

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

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 Konsolen Befehle in Windows verwenden

22. April 2014 at 15:29

Eine Möglichkeit Linux-Tools/-Programme direkt unter Windows ohne eigene Linux-Installation laufen zu lassen bietet z.b. das Windows-Programm Cygwin entwickelt von Red Hat. Als gute Ergänzung empfehle ich das Windows-Programm MSYS.

Linux Befehle unter Windows – Alternativen

Für einige Linux-Befahle wie z.b. echo, Umleitung von Ausgaben sowie cat gibt es in der Windows Shell (cmd.exe) Alternativen.

Umleitung des Ausgab-Streams

type befehl1 > text.txt

Pipeline

Identisch mit dem Aufruf unter Linux:

cmd1 | cmd2

cat

asdf

set –x oder set +x

Die Befehle schalten den Debug Modus ein oder aus. In Windows geht das mit echo on und echo off.

Dev/null

/dev/null aus Linux entspricht dem Device nul in Windows.

 

Screen Session unter Linux starten

16. April 2012 at 17:03

Ihr möchtet sicher gehen dass ein längerer Script definitiv ausgeführt wird, auch wenn z.B. die Terminal-Session geschlossen wird?

Dafür gibt es das GNU/Linux Tool „screen“.

Mit
screen -ls

könnt ihr euch alle laufenden Screen-Sessions anzeigen lassen.

Eine neue Session startet ihr mit
screen -S sessionname

Die eröfnete Session wieder fort führen mit
screen -r sessionname

Weitere Informationen zu Screen wie immer mit
man screen

 

Linux: Dateien mit ls sortiert anzeigen

14. September 2011 at 09:52

Mit dem Linux-Bash-Tool ls kann man in diversen Variationen Dateien & Ordner sortieren, hier eine Übersicht der wichtigsten Kommandos:

  • ls -trl
    Dateien nach Zeit der Dateierzeugung anzeigen lassen
  • ls -turl
    Zeigt die Dateien an, auf die zuletzt zugegriffen wurde
  • ls -c
    Dateien nach Datum der letzten Änderung der Satusinformationen anzeigen lassen
  • ls -f
    Deaktiviert die Standardsortierung und Zeigt auch . und .. an
  • ls -S
    Sortiert nach Dateigröße
  • ls -t
    Sortiert nach dem Datum der letzten Änderung
  • ls -U
    Keine Sortierung
  • ls -u
    Sortiert nach Zugriffszeit
  • ls -X
    Sortiert nach Dateierweiterung

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

How to ignore files in a directory under subversion control

26. Mai 2011 at 16:45
# ---------------------------------------------------------------------
#      Ignore all the .txt files in the /trunk/Blah/ directory
# ---------------------------------------------------------------------
# Go to the directory
cd trunk/Blah/              # The directory with the files
# Start editing the properties for the current directory
svn propedit svn:ignore .   # Opens an editor (SVN_EDITOR, EDITOR)
# Add the following value with a new line, save, and exit:
*.txt
# See that things worked
svn propget svn:ignore .    # So you can see the properties
svn status --no-ignore      # You should see an 'I' next to the ignored files
# Commit
svn commit -m "New Ignores" # You must commit the new property change