<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Jun 9, 2024 at 6:41 PM Michael via PLUG-discuss <<a href="mailto:plug-discuss@lists.phxlinux.org">plug-discuss@lists.phxlinux.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">thank you so much. I have a problem with the request though. I only have windows now running ubuntu through wsl and I am not well versed through the command line. Could you give me some further direction?</div></blockquote></div><br><div>Use a Live System CD (<a href="https://www.system-rescue.org/Download/">https://www.system-rescue.org/Download/</a>).  </div><div>Flash the .iso image to a USB pen drive and boot from it.  It has all the system rescue tools.</div><div>It boots giving you a bash shell with root privileges; tread carefully and don't do anything that you don't understand</div><div><br></div><div>You will need:</div><div>1. <font face="monospace">lsblk</font> to see all the block devices and the partitions on it -- let's say your device is /dev/sdb</div><div>2. <font face="monospace">smartctl</font> to dump the SMART parameters of your drive e.g.<font face="monospace"> sudo smartctl -a /dev/sdb</font></div><div>3. <font face="monospace">parted</font> to list the partition details e.g. <font face="monospace">sudo parted -l</font> to list the partition details of all the block devices (see below -- sample output from my laptop)</div><div>4. Depending on the file system, you must use the appropriate recovery tool.  If it is NTFS then follow the instructions on the screenshot you have posted.</div><div><br></div><div>Good luck.</div><div><br></div><div>===============================</div><div><font face="monospace">$ sudo parted -l <br>Model: ATA ST2000LX001-1RG1 (scsi)<br>Disk /dev/sda: 2000GB<br>Sector size (logical/physical): 512B/4096B<br>Partition Table: gpt<br>Disk Flags: <br><br>Number  Start   End     Size    File system     Name                          Flags<br> 1      1049kB  274MB   273MB   fat32           EFI system partition          boot, hidden, esp<br> 2      274MB   290MB   16.8MB                  Microsoft reserved partition  msftres<br> 3      290MB   255GB   255GB                   Basic data partition          msftdata<br> 4      255GB   256GB   1049MB  ntfs            Basic data partition          hidden, diag<br> 7      256GB   291GB   34.6GB  xfs             kubuntu_2404<br> 5      291GB   299GB   8598MB  linux-swap(v1)                                swap<br> 6      299GB   2000GB  1701GB  xfs<br><br><br>Model: Lexar USB Flash Drive (scsi)<br>Disk /dev/sdb: 16.0GB<br>Sector size (logical/physical): 512B/512B<br>Partition Table: msdos<br>Disk Flags: <br><br>Number  Start   End     Size    Type     File system  Flags<br> 1      1049kB  16.0GB  16.0GB  primary  fat32        lba</font><br></div><div>===============================</div><div><br></div></div>