To extract files from a broken Windows 7 laptop without fixing the screen, you can use a Linux Live USB or a bootable CD/DVD. Here's a step-by-step guide on how to do it:
-
Create a Linux Live USB or CD/DVD:
- Download a Linux Live USB/CD/DVD image (Ubuntu, Linux Mint, etc.) from a trusted source.
- Write the image to a USB drive or burn it onto a CD/DVD using a tool like Rufus or Etcher.
-
Boot from the Linux Live USB/CD/DVD:
- Insert the USB drive or CD/DVD into your broken Windows 7 laptop.
- Restart the laptop and enter the boot menu (usually by pressing F12, F10, Esc, or Del).
- Select the USB drive or CD/DVD as the boot device and press Enter.
-
Mount the Windows 7 partition:
- Open a terminal in Linux.
- Use the
fdisk -lcommand to identify the Windows 7 partition (it will likely be/dev/sda1or/dev/sdb1). - Mount the partition by running the command
mount /dev/sda1 /mnt(replace/dev/sda1with the correct partition if needed).
-
Extract files:
- Navigate to the mounted partition using the command
cd /mnt. - Copy the files you need to a USB drive or an external hard drive using the command
cp -R source_directory/ destination. Replacesource_directorywith the directory containing the files you want to copy, anddestinationwith the path to the USB drive or external hard drive.
- Navigate to the mounted partition using the command
-
Unmount the partition:
- Run the command
umount /mntto unmount the Windows 7 partition.
- Run the command
-
Reboot and remove the USB drive or CD/DVD:
- Restart the laptop.
- Once it boots up, remove the USB drive or CD/DVD.
References:
- Linux Live USB/CD/DVD:
- Mounting partitions in Linux:
- Copying files in Linux: