Festplatte löschen – mit Nullen überschreiben

 Linux  Kommentare deaktiviert für Festplatte löschen – mit Nullen überschreiben
Dez. 282016
 
z.B. Server auf www.hetzner.de
https://wiki.hetzner.de/index.php/Hetzner_Rescue-System
beim Robot 
https://robot.your-server.de/server 
Rescuesystem einschalten, neu starten, neu einloggen (siehe Screen beim Robot)
Dann 
ls /dev/[hsv]d[a-z]*[0-9]*
# z.B. /dev/sda /dev/sda1 /dev/sda2 /dev/sda3

Dann
shred -vzn 0 /dev/sda

Füllt Platte mit Nullen, schnell, aber dauert immer noch bei 1 Terabyte oder mehr! 
gute Anleitung unter
https://wiki.ubuntuusers.de/shred/

Moodle auf neuen Server verschieben

 Moodle  Kommentare deaktiviert für Moodle auf neuen Server verschieben
Dez. 272016
 

Wichtig bei Moodle!!
1.) config.php anpassen -> dir root datata root UND unbedingt vollständigen Pfad angeben!!
/…/…. wichtig bei neuem hostet Server  -> Pfad VOLLSTÄNDIG in der config.php bei moodle eingeben!
Ps: Erinnerung an mich selber: Hätte dir sicher mind.  12 Stunden Lebenszeit erspart 😉

Link:  https://docs.moodle.org/32/de/Moodle_Migration

2.)

 

I added $CFG->dbsessions = 0; to my config.php file based on other research and it magically started working. Not completely sure why but it is so I’m happy. Thanks for the help.

3)

maintenance mode ausschalten

Editing the config.php file – If you have access to your config.php file then you can add the following line in your config.php file:

  • $CFG->maintenance_enabled=0; (that's a zero and be sure to include the ';' at the end of that line.

Moodle site stuck up in Maintenance mode – how to proceed??