Recover files from a non-booting Windows PC: Difference between revisions
Jump to navigation
Jump to search
Created page with 'boot into System Rescue CD http://www.sysresccd.org/Main_Page To mount an NTFS drive as read-only: <pre> mount -t ntfs-3g -o ro /dev/sda1 /mnt/windows </pre> To mount NTFS as …' |
No edit summary |
||
Line 5: | Line 5: | ||
To mount an NTFS drive as read-only: | To mount an NTFS drive as read-only: | ||
<pre> | <pre> | ||
mount -t ntfs-3g -o ro /dev/sda1 /mnt/windows | mount -t ntfs-3g -o ro /dev/sda1 /mnt/windows (just drop the -o ro for read/write) | ||
</pre> | </pre> | ||
To mount | To mount a FAT32 USB key as writeable: | ||
<pre> | <pre> | ||
mount -t | mount -t vfat /dev/sdb1 /mnt/backup | ||
</pre> | </pre> |
Revision as of 17:49, 31 March 2011
boot into System Rescue CD
http://www.sysresccd.org/Main_Page
To mount an NTFS drive as read-only:
mount -t ntfs-3g -o ro /dev/sda1 /mnt/windows (just drop the -o ro for read/write)
To mount a FAT32 USB key as writeable:
mount -t vfat /dev/sdb1 /mnt/backup