Results 1 to 4 of 4

Thread: To recover data from PC doesnt turn on, with live usb

  1. #1
    Join Date
    Feb 2024
    Beans
    8

    To recover data from PC doesnt turn on, with live usb

    Hello. My Ubuntu 22-04 PC stucked at the begining screen. l want to back up my private files from PC to external hard disk. lf l use a live USB, can l see and transfer my files from PC to hard disk?

  2. #2
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,213
    Distro
    Ubuntu Budgie Development Release

    Re: To recover data from PC doesnt turn on, with live usb

    Support request, moved to General Help.
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  3. #3
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: To recover data from PC doesnt turn on, with live usb

    Yes, though you'll have to mount the devices manually. Plug in the USB device, then boot from the installation medium and choose "Try Ubuntu." You can use
    Code:
    sudo fdisk -l
    to list all the storage devices and any partitions. Find the partition with the data you want to save, let's call it /dev/sda1 for an example, then mount that partition into the fiie system with
    Code:
    sudo mount /dev/sda1 /mnt
    Now use the same process to find the identifier for the partition on the USB drive to which you want to copy data. Mount it to the empty "/opt" directory with
    Code:
    sudo mount /dev/sdb1 /opt
    Now you can copy files from /mnt to /opt. The default "ubuntu" user has root privileges so you shouldn't run into any rights problems.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  4. #4
    Join Date
    Feb 2024
    Beans
    8

    Re: To recover data from PC doesnt turn on, with live usb

    Thank you very much.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •