vb-net
Goto Top

Sicherung MBR - Ausgabe in Textdatei

Hi,

ich sichere über den Befehl dd if=/dev/hda of=~/hda.mbr bs=512 count=1 den MBR

Nun will ich diese Textausgabe "1+0 ..." in eine Datei schreiben.

das habe ich mittels dd if=/dev/hda of=~/hda.mbr bs=512 count=1 >> /sicherung/text.txt

gemacht.
Alle anderen Befehle (ist ein .sh script) werden protokoliert auch mit ">>".

Was mache ich falsch?

Content-Key: 111969

Url: https://administrator.de/contentid/111969

Printed on: April 25, 2024 at 22:04 o'clock

Member: paulepank
paulepank Mar 20, 2009 at 13:25:23 (UTC)
Goto Top
Hallo VB-NET,

mach's so:
dd if=/dev/hda of=~/hda.mbr bs=512 count=1 2>> /sicherung/text.txt

cu paulepank