Feeds
Artikel
Kommentare

Archiv für August, 2010

unzip 7z splitted files

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 –> [...]

IIS und unbekannte Dateiendungen

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 [...]

Download von mehreren Dateien unter Linux

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 [...]