Geschrieben in Examples, Linux, Technology am 3. August 2010 Kommentare deaktiviert
I got the problem to unzip 7z files on a linux system so what I have done are the following steps: I zipped and splitted a 22G folder with Windows 7z into peaces of 700M Files. Result: 29 files with the following filenames: contentexport.zip.001 to contentexport.zip.029 Then move this files to linux with wget –> [...]
Geschrieben in Examples, Security, Technology am 3. August 2010 Kommentare deaktiviert
Dem IIS einfach mal eine Datei unterzujubeln, so dass man sie aus dem wwwroot download kann, ist nicht mehr so einfach, wie auch schon. Damit der IIS eine Datei mit der Endung 001 (Bsp: datei.zip.001) auch ausliefert muss man diese Endung dem IIS bekannt machen. Und das geht so: Öffnen Sie die IIS-Microsoft Management Console [...]
Geschrieben in Examples, Technology, Tools am 3. August 2010 Kommentare deaktiviert
So lautet der Auftrag! Und hier ist die Lösung: vi /tmp/downloadfiles.txt In dieser Datei für jeden Download eine Zeile erstellen: http://<host>/contentexport.zip.001 http://<host>/contentexport.zip.002 http://<host>/contentexport.zip.003 http://<host>/contentexport.zip.004 http://<host>/contentexport.zip.005 Dann wget aufrufen: wget -i /tmp/downloadfiles.txt oder mit der wiederaufnehmen (resume) Funktion: wget -c -i /tmp/downloadfiles.txt Noch ein bisschen loggen: wget -c -o /tmp/logfile.txt -i /tmp/downloadfiles.txt Und dann das ganze [...]