• Help!

    From Charles Stephenson@1:226/17 to ] on Friday, January 11, 2019 01:46:50
    Problem No. 1


    I am trying to figure out how can I transfer information from one HDD that's in my laptop, to another HDD, that I plan on replacing the current one in my laptop with.

    Is there something I can buy to make the HDD active, able to transfer files to?

    Looking for something that's not too costly.
    Regards,
    KrUpTiOn
    --- SBBSecho 3.04-Linux
    * Origin: The New Frontier 2: thenewfrontier2.hopto.org (OH) (1:226/17)
  • From Dave Cloutier@1:249/317 to Charles Stephenson on Friday, January 11, 2019 08:04:33
    On 01/11/19, Charles Stephenson said the following...

    I am trying to figure out how can I transfer information from one HDD

    that's in my laptop, to another HDD, that I plan on replacing the
    current one in my laptop with.

    Is there something I can buy to make the HDD active, able to transfer files to?

    Depends on what is the type of drives you use.

    Let's say both are SATA, you have multiple options.

    There is drive duplicators, which I also use to mount ad-hoc drives and such. The price vary between 40$ and 100$. You plug both drives vertically and you can either mount them or copy the source to the target within a computer.
    There is duplicators from various interface types too.

    If it is SATA, you can always buy an USB to SATA adapter. These are cheap and only cost a few bucks. Then use dd to create an image and write the image on the new drive. I you can have both drives connected at the same time, making a direct copy is good too. It requires the target is exactly the same or larger.

    You would them use something like: dd if=/dev/drive1 of=/dev/drive2 bs=4M

    If the target is smaller, you have to do additional steps to reduce the file system on the source first before copying it on the target. This step is advanced and working on your original source drive can cause loss of data if something goes wrong.

    You could create an image (with dd) and mount that image as a loop device,
    then do the partition changes on the image before writing it to the target. I've never really done it myself but this could theoretically be possible to
    do so.

    I hope that helps you with your problem.

    Cheers!

    |15 ß Þ |15StackFault |08<|03.|11.|15P|11h|03EN|11o|15M|11.|03.|08>
    |11 Ý ß |11The Bottomless Abyss BBS
    |03 ß Ýß |03ssh|08.|072222 |08/ |03telnet|08.|072023 |08/ |03https
    |08 ÜþÞ |08bbs|07.|08bottomlessabyss|07.|08net

    --- Mystic BBS v1.12 A39 2018/04/21 (Linux/64)
    * Origin: The Bottomless Abyss BBS þ bbs.bottomlessabyss.net (1:249/317)
  • From Richard Lewis@1:249/317 to Dave Cloutier on Saturday, January 12, 2019 05:41:00
    I am trying to figure out how can I transfer information from one HDD that's in my laptop, to another HDD, that I plan on replacing the current one in my laptop with.
    There is drive duplicators, which I also use to mount ad-hoc drives and such. The price vary between 40$ and 100$. You plug both drives
    vertically and you can either mount them or copy the source to the
    target within a computer. There is duplicators from various interface types too.

    Was going to reply with pretty much the same answer as DC. One option you
    could consider is a drive caddy that turns the bare HDD into an external
    drive with USB connector then you can use something like 'dd' to mirror the internal drive to external.

    Once the copy is done you can swap the drives around, and use your old
    internal as portable storage.

    RenMas

    --- Mystic BBS v1.12 A39 2018/04/21 (Linux/64)
    * Origin: The Bottomless Abyss BBS þ bbs.bottomlessabyss.net (1:249/317)
  • From Charles Stephenson@1:226/17 to Dave Cloutier on Sunday, January 13, 2019 07:13:34
    Re: Re: Help!
    By: Dave Cloutier to Charles Stephenson on Fri Jan 11 2019 07:04 am

    I am trying to figure out how can I transfer information from one
    HDD
    Depends on what is the type of drives you use.

    Let's say both are SATA, you have multiple options.

    There is drive duplicators, which I also use to mount ad-hoc drives and such. The price vary between 40$ and 100$. You plug both drives vertically and you can either mount them or copy the source to the target within a


    I'm trying to transfer stuff from my Laptop HDD to a bigger HDD for my laptop. I found this cool device that lets me turn the extra drive into a external USB drive, I ordered it off of E-Bay yesterday for only 10 bucks! I DO have to find the right software for linux that will copy EVERYthing as is to the other drive...
    Regards,
    KrUpTiOn
    --- SBBSecho 3.04-Linux
    * Origin: The New Frontier 2: thenewfrontier2.hopto.org (OH) (1:226/17)
  • From Charles Stephenson@1:226/17 to Richard Lewis on Sunday, January 13, 2019 07:14:45
    Re: Re: Help!
    By: Richard Lewis to Dave Cloutier on Sat Jan 12 2019 04:41 am

    Was going to reply with pretty much the same answer as DC. One option you could consider is a drive caddy that turns the bare HDD into an external drive with USB connector then you can use something like 'dd' to mirror the internal drive to external.


    That's exactly what I'm going to do, I ordered one lastnight, it'll be here in 5 days! :)

    btw, what is 'dd'?
    Regards,
    KrUpTiOn
    --- SBBSecho 3.04-Linux
    * Origin: The New Frontier 2: thenewfrontier2.hopto.org (OH) (1:226/17)
  • From Dave Cloutier@1:249/317 to Charles Stephenson on Sunday, January 13, 2019 08:23:16
    I'm trying to transfer stuff from my Laptop HDD to a bigger HDD for my laptop. I found this cool device that lets me turn the extra drive into
    a external USB drive, I ordered it off of E-Bay yesterday for only 10 bucks! I DO have to find the right software for linux that will copy EVERYthing as is to the other drive...

    dd is your friend in that case. You can get the devices name using lsblk.

    Then copying will be just to run: dd if=/dev/{srcdev} of=/dev/{tgtdev} bs=4M

    This will copy block by block, from {srcdev} to {tgtdev}.

    Once completed, you will have to expand your partitions on the target drive
    to use it's full size, since the partitions will be sized from the source
    drive size when originally created.

    Cheers!

    |15 ß Þ |15StackFault |08<|03.|11.|15P|11h|03EN|11o|15M|11.|03.|08>
    |11 Ý ß |11The Bottomless Abyss BBS
    |03 ß Ýß |03ssh|08.|072222 |08/ |03telnet|08.|072023 |08/ |03https
    |08 ÜþÞ |08bbs|07.|08bottomlessabyss|07.|08net

    --- Mystic BBS v1.12 A39 2018/04/21 (Linux/64)
    * Origin: The Bottomless Abyss BBS þ bbs.bottomlessabyss.net (1:249/317)
  • From mark lewis@1:3634/12.73 to Charles Stephenson on Sunday, January 13, 2019 10:31:06
    On 2019 Jan 13 06:14:44, you wrote to Richard Lewis:

    btw, what is 'dd'?

    [linux]

    user@invalid:~/$ man dd

    [/linux]

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... This calls for the handyman's secret weapon: Duct tape!
    ---
    * Origin: (1:3634/12.73)