Reading home folder of old computer in a new computer

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
1
down vote

favorite












I have an old Excito B3 running Debian. My problem is that the hardware died. I have a device so I can connect the internal hard drive via USB to my Ubuntu laptop. But when I try to access the /home of that drive it shows up as empty. My guess is that there is a problem with user rights.



Can anyone help me with how I can get access to these files?



/media/linkan/Bubba root/home$ ll



total 8
drwxrwxrwx 2 root root 4096 jan 1 2000 ./
drwxr-xr-x 24 root root 4096 okt 5 2012 ../


sudo parted --list



[sudo] password for linkan: 
Model: ATA INTEL SSDSC2BF18 (scsi)
Disk /dev/sda: 180GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start End Size File system Name Flags
1 1049kB 8200MB 8199MB linux-swap(v1)
2 8200MB 180GB 172GB ext4


Model: WDC WD30 EZRX-00MMMB0 (scsi)
Disk /dev/sdb: 3001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 17,4kB 10,7GB 10,7GB ext3 root msftdata
2 10,7GB 3000GB 2989GB home lvm
3 3000GB 3001GB 1074MB linux-swap(v1) swap


Model: SD SC32G (sd/mmc)
Disk /dev/mmcblk0: 31,9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number Start End Size Type File system Flags
1 4194kB 31,9GB 31,9GB primary fat32 lba


cat "/media/linkan/Bubba root/etc/fstab"



/dev/sda1 / ext3 noatime,defaults 0 1
/dev/mapper/bubba-storage /home ext3 defaults 0 2
/dev/sda3 none swap sw 0 0
usbfs /proc/bus/usb usbfs defaults 0 0
/proc /proc proc defaults 0 0


sudo lvdisplay



 --- Logical volume ---
LV Path /dev/bubba/storage
LV Name storage
VG Name bubba
LV UUID M2Q0lX-y3gs-ZpP1-RwXY-QbQA-TZhP-6FltLF
LV Write Access read/write
LV Creation host, time ,
LV Status NOT available
LV Size 2,72 TiB
Current LE 712580
Segments 1
Allocation inherit
Read ahead sectors auto









share|improve this question























  • have you tried nautilus
    – msp9011
    Aug 16 at 22:45






  • 1




    Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
    – Fabby
    Aug 16 at 22:48







  • 2




    Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
    – Nick ODell
    Aug 16 at 23:09






  • 1




    apt install lvm2 && lvdisplay
    – user1133275
    Aug 16 at 23:13










  • @SivaPrasath it is the same thing regardless of using nautilus or via command line.
    – Linkan
    Aug 16 at 23:22














up vote
1
down vote

favorite












I have an old Excito B3 running Debian. My problem is that the hardware died. I have a device so I can connect the internal hard drive via USB to my Ubuntu laptop. But when I try to access the /home of that drive it shows up as empty. My guess is that there is a problem with user rights.



Can anyone help me with how I can get access to these files?



/media/linkan/Bubba root/home$ ll



total 8
drwxrwxrwx 2 root root 4096 jan 1 2000 ./
drwxr-xr-x 24 root root 4096 okt 5 2012 ../


sudo parted --list



[sudo] password for linkan: 
Model: ATA INTEL SSDSC2BF18 (scsi)
Disk /dev/sda: 180GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start End Size File system Name Flags
1 1049kB 8200MB 8199MB linux-swap(v1)
2 8200MB 180GB 172GB ext4


Model: WDC WD30 EZRX-00MMMB0 (scsi)
Disk /dev/sdb: 3001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 17,4kB 10,7GB 10,7GB ext3 root msftdata
2 10,7GB 3000GB 2989GB home lvm
3 3000GB 3001GB 1074MB linux-swap(v1) swap


Model: SD SC32G (sd/mmc)
Disk /dev/mmcblk0: 31,9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number Start End Size Type File system Flags
1 4194kB 31,9GB 31,9GB primary fat32 lba


cat "/media/linkan/Bubba root/etc/fstab"



/dev/sda1 / ext3 noatime,defaults 0 1
/dev/mapper/bubba-storage /home ext3 defaults 0 2
/dev/sda3 none swap sw 0 0
usbfs /proc/bus/usb usbfs defaults 0 0
/proc /proc proc defaults 0 0


sudo lvdisplay



 --- Logical volume ---
LV Path /dev/bubba/storage
LV Name storage
VG Name bubba
LV UUID M2Q0lX-y3gs-ZpP1-RwXY-QbQA-TZhP-6FltLF
LV Write Access read/write
LV Creation host, time ,
LV Status NOT available
LV Size 2,72 TiB
Current LE 712580
Segments 1
Allocation inherit
Read ahead sectors auto









share|improve this question























  • have you tried nautilus
    – msp9011
    Aug 16 at 22:45






  • 1




    Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
    – Fabby
    Aug 16 at 22:48







  • 2




    Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
    – Nick ODell
    Aug 16 at 23:09






  • 1




    apt install lvm2 && lvdisplay
    – user1133275
    Aug 16 at 23:13










  • @SivaPrasath it is the same thing regardless of using nautilus or via command line.
    – Linkan
    Aug 16 at 23:22












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have an old Excito B3 running Debian. My problem is that the hardware died. I have a device so I can connect the internal hard drive via USB to my Ubuntu laptop. But when I try to access the /home of that drive it shows up as empty. My guess is that there is a problem with user rights.



Can anyone help me with how I can get access to these files?



/media/linkan/Bubba root/home$ ll



total 8
drwxrwxrwx 2 root root 4096 jan 1 2000 ./
drwxr-xr-x 24 root root 4096 okt 5 2012 ../


sudo parted --list



[sudo] password for linkan: 
Model: ATA INTEL SSDSC2BF18 (scsi)
Disk /dev/sda: 180GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start End Size File system Name Flags
1 1049kB 8200MB 8199MB linux-swap(v1)
2 8200MB 180GB 172GB ext4


Model: WDC WD30 EZRX-00MMMB0 (scsi)
Disk /dev/sdb: 3001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 17,4kB 10,7GB 10,7GB ext3 root msftdata
2 10,7GB 3000GB 2989GB home lvm
3 3000GB 3001GB 1074MB linux-swap(v1) swap


Model: SD SC32G (sd/mmc)
Disk /dev/mmcblk0: 31,9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number Start End Size Type File system Flags
1 4194kB 31,9GB 31,9GB primary fat32 lba


cat "/media/linkan/Bubba root/etc/fstab"



/dev/sda1 / ext3 noatime,defaults 0 1
/dev/mapper/bubba-storage /home ext3 defaults 0 2
/dev/sda3 none swap sw 0 0
usbfs /proc/bus/usb usbfs defaults 0 0
/proc /proc proc defaults 0 0


sudo lvdisplay



 --- Logical volume ---
LV Path /dev/bubba/storage
LV Name storage
VG Name bubba
LV UUID M2Q0lX-y3gs-ZpP1-RwXY-QbQA-TZhP-6FltLF
LV Write Access read/write
LV Creation host, time ,
LV Status NOT available
LV Size 2,72 TiB
Current LE 712580
Segments 1
Allocation inherit
Read ahead sectors auto









share|improve this question















I have an old Excito B3 running Debian. My problem is that the hardware died. I have a device so I can connect the internal hard drive via USB to my Ubuntu laptop. But when I try to access the /home of that drive it shows up as empty. My guess is that there is a problem with user rights.



Can anyone help me with how I can get access to these files?



/media/linkan/Bubba root/home$ ll



total 8
drwxrwxrwx 2 root root 4096 jan 1 2000 ./
drwxr-xr-x 24 root root 4096 okt 5 2012 ../


sudo parted --list



[sudo] password for linkan: 
Model: ATA INTEL SSDSC2BF18 (scsi)
Disk /dev/sda: 180GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start End Size File system Name Flags
1 1049kB 8200MB 8199MB linux-swap(v1)
2 8200MB 180GB 172GB ext4


Model: WDC WD30 EZRX-00MMMB0 (scsi)
Disk /dev/sdb: 3001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number Start End Size File system Name Flags
1 17,4kB 10,7GB 10,7GB ext3 root msftdata
2 10,7GB 3000GB 2989GB home lvm
3 3000GB 3001GB 1074MB linux-swap(v1) swap


Model: SD SC32G (sd/mmc)
Disk /dev/mmcblk0: 31,9GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number Start End Size Type File system Flags
1 4194kB 31,9GB 31,9GB primary fat32 lba


cat "/media/linkan/Bubba root/etc/fstab"



/dev/sda1 / ext3 noatime,defaults 0 1
/dev/mapper/bubba-storage /home ext3 defaults 0 2
/dev/sda3 none swap sw 0 0
usbfs /proc/bus/usb usbfs defaults 0 0
/proc /proc proc defaults 0 0


sudo lvdisplay



 --- Logical volume ---
LV Path /dev/bubba/storage
LV Name storage
VG Name bubba
LV UUID M2Q0lX-y3gs-ZpP1-RwXY-QbQA-TZhP-6FltLF
LV Write Access read/write
LV Creation host, time ,
LV Status NOT available
LV Size 2,72 TiB
Current LE 712580
Segments 1
Allocation inherit
Read ahead sectors auto






debian ubuntu






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 16 at 23:15

























asked Aug 16 at 22:39









Linkan

1086




1086











  • have you tried nautilus
    – msp9011
    Aug 16 at 22:45






  • 1




    Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
    – Fabby
    Aug 16 at 22:48







  • 2




    Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
    – Nick ODell
    Aug 16 at 23:09






  • 1




    apt install lvm2 && lvdisplay
    – user1133275
    Aug 16 at 23:13










  • @SivaPrasath it is the same thing regardless of using nautilus or via command line.
    – Linkan
    Aug 16 at 23:22
















  • have you tried nautilus
    – msp9011
    Aug 16 at 22:45






  • 1




    Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
    – Fabby
    Aug 16 at 22:48







  • 2




    Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
    – Nick ODell
    Aug 16 at 23:09






  • 1




    apt install lvm2 && lvdisplay
    – user1133275
    Aug 16 at 23:13










  • @SivaPrasath it is the same thing regardless of using nautilus or via command line.
    – Linkan
    Aug 16 at 23:22















have you tried nautilus
– msp9011
Aug 16 at 22:45




have you tried nautilus
– msp9011
Aug 16 at 22:45




1




1




Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
– Fabby
Aug 16 at 22:48





Welcome to Unix&Linux. ;-) Could you please edit your question and post the output of parted --list and ll /media/WhereverYourHomeDirectoryIs from Ubuntu when the HDD is plugged in?
– Fabby
Aug 16 at 22:48





2




2




Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
– Nick ODell
Aug 16 at 23:09




Thanks for the edit! It sure looks like your home directory is normally mounted from a logical volume. Just to be sure, could you post the output of cat "/media/linkan/Bubba root/etc/fstab" ?
– Nick ODell
Aug 16 at 23:09




1




1




apt install lvm2 && lvdisplay
– user1133275
Aug 16 at 23:13




apt install lvm2 && lvdisplay
– user1133275
Aug 16 at 23:13












@SivaPrasath it is the same thing regardless of using nautilus or via command line.
– Linkan
Aug 16 at 23:22




@SivaPrasath it is the same thing regardless of using nautilus or via command line.
– Linkan
Aug 16 at 23:22










1 Answer
1






active

oldest

votes

















up vote
3
down vote



accepted










The directory /media/linkan/Bubba root/home is empty because your old system had /home as a separate filesystem. So far, you've only mounted the root filesystem from the old disk.



Also, the old disk had the /home filesystem within a LVM logical volume, as indicated by this line in the old fstab file:



/dev/mapper/bubba-storage /home ext3 defaults 0 2


So, your old /home filesystem was within a LVM volume group named bubba, in a logical volume named storage. For historical reasons, there are two device paths for referring to such a logical volume: /dev/mapper/bubba-storage and /dev/bubba/storage. Both refer to the same thing.



When hot-plugging a disk that contains a LVM volume group, there is one extra step: you must activate the volume group before being able to mount any of the logical volumes within it. Run sudo vgchange -ay bubba to activate the volume group: if successful, the device /dev/mapper/bubba-storage should become available on your system. (If it fails, the error message from the vgchange command is going to be important in figuring out the problem.)



Then you can mount it anywhere you want, but perhaps it will be reasonable to mount it to its old mountpoint. First close any GUI file manager windows currently accessing the /media/linkan/Bubba root/home directory to avoid mount point is busy error messages, and do:



cd /
sudo mount /dev/mapper/bubba-storage "/media/linkan/Bubba root/home"


If you cannot access your old home directory under /media/linkan/Bubba root/home/ using your regular user account, it's probably because your account on the old system used a different UID number compared to your new system. This can be fixed easily. (I'm assuming that your current username is linkan and the username/home directory name on the old system was old_linkan. Change as appropriate.)



cd "/media/linkan/Bubba root/home"
sudo chown -R linkan: old_linkan


After the chown command completes, your old home directory should now appear as owned by you in ls -l listing, and it should be accessible as normal.






share|improve this answer




















    Your Answer







    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "106"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f463086%2freading-home-folder-of-old-computer-in-a-new-computer%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    3
    down vote



    accepted










    The directory /media/linkan/Bubba root/home is empty because your old system had /home as a separate filesystem. So far, you've only mounted the root filesystem from the old disk.



    Also, the old disk had the /home filesystem within a LVM logical volume, as indicated by this line in the old fstab file:



    /dev/mapper/bubba-storage /home ext3 defaults 0 2


    So, your old /home filesystem was within a LVM volume group named bubba, in a logical volume named storage. For historical reasons, there are two device paths for referring to such a logical volume: /dev/mapper/bubba-storage and /dev/bubba/storage. Both refer to the same thing.



    When hot-plugging a disk that contains a LVM volume group, there is one extra step: you must activate the volume group before being able to mount any of the logical volumes within it. Run sudo vgchange -ay bubba to activate the volume group: if successful, the device /dev/mapper/bubba-storage should become available on your system. (If it fails, the error message from the vgchange command is going to be important in figuring out the problem.)



    Then you can mount it anywhere you want, but perhaps it will be reasonable to mount it to its old mountpoint. First close any GUI file manager windows currently accessing the /media/linkan/Bubba root/home directory to avoid mount point is busy error messages, and do:



    cd /
    sudo mount /dev/mapper/bubba-storage "/media/linkan/Bubba root/home"


    If you cannot access your old home directory under /media/linkan/Bubba root/home/ using your regular user account, it's probably because your account on the old system used a different UID number compared to your new system. This can be fixed easily. (I'm assuming that your current username is linkan and the username/home directory name on the old system was old_linkan. Change as appropriate.)



    cd "/media/linkan/Bubba root/home"
    sudo chown -R linkan: old_linkan


    After the chown command completes, your old home directory should now appear as owned by you in ls -l listing, and it should be accessible as normal.






    share|improve this answer
























      up vote
      3
      down vote



      accepted










      The directory /media/linkan/Bubba root/home is empty because your old system had /home as a separate filesystem. So far, you've only mounted the root filesystem from the old disk.



      Also, the old disk had the /home filesystem within a LVM logical volume, as indicated by this line in the old fstab file:



      /dev/mapper/bubba-storage /home ext3 defaults 0 2


      So, your old /home filesystem was within a LVM volume group named bubba, in a logical volume named storage. For historical reasons, there are two device paths for referring to such a logical volume: /dev/mapper/bubba-storage and /dev/bubba/storage. Both refer to the same thing.



      When hot-plugging a disk that contains a LVM volume group, there is one extra step: you must activate the volume group before being able to mount any of the logical volumes within it. Run sudo vgchange -ay bubba to activate the volume group: if successful, the device /dev/mapper/bubba-storage should become available on your system. (If it fails, the error message from the vgchange command is going to be important in figuring out the problem.)



      Then you can mount it anywhere you want, but perhaps it will be reasonable to mount it to its old mountpoint. First close any GUI file manager windows currently accessing the /media/linkan/Bubba root/home directory to avoid mount point is busy error messages, and do:



      cd /
      sudo mount /dev/mapper/bubba-storage "/media/linkan/Bubba root/home"


      If you cannot access your old home directory under /media/linkan/Bubba root/home/ using your regular user account, it's probably because your account on the old system used a different UID number compared to your new system. This can be fixed easily. (I'm assuming that your current username is linkan and the username/home directory name on the old system was old_linkan. Change as appropriate.)



      cd "/media/linkan/Bubba root/home"
      sudo chown -R linkan: old_linkan


      After the chown command completes, your old home directory should now appear as owned by you in ls -l listing, and it should be accessible as normal.






      share|improve this answer






















        up vote
        3
        down vote



        accepted







        up vote
        3
        down vote



        accepted






        The directory /media/linkan/Bubba root/home is empty because your old system had /home as a separate filesystem. So far, you've only mounted the root filesystem from the old disk.



        Also, the old disk had the /home filesystem within a LVM logical volume, as indicated by this line in the old fstab file:



        /dev/mapper/bubba-storage /home ext3 defaults 0 2


        So, your old /home filesystem was within a LVM volume group named bubba, in a logical volume named storage. For historical reasons, there are two device paths for referring to such a logical volume: /dev/mapper/bubba-storage and /dev/bubba/storage. Both refer to the same thing.



        When hot-plugging a disk that contains a LVM volume group, there is one extra step: you must activate the volume group before being able to mount any of the logical volumes within it. Run sudo vgchange -ay bubba to activate the volume group: if successful, the device /dev/mapper/bubba-storage should become available on your system. (If it fails, the error message from the vgchange command is going to be important in figuring out the problem.)



        Then you can mount it anywhere you want, but perhaps it will be reasonable to mount it to its old mountpoint. First close any GUI file manager windows currently accessing the /media/linkan/Bubba root/home directory to avoid mount point is busy error messages, and do:



        cd /
        sudo mount /dev/mapper/bubba-storage "/media/linkan/Bubba root/home"


        If you cannot access your old home directory under /media/linkan/Bubba root/home/ using your regular user account, it's probably because your account on the old system used a different UID number compared to your new system. This can be fixed easily. (I'm assuming that your current username is linkan and the username/home directory name on the old system was old_linkan. Change as appropriate.)



        cd "/media/linkan/Bubba root/home"
        sudo chown -R linkan: old_linkan


        After the chown command completes, your old home directory should now appear as owned by you in ls -l listing, and it should be accessible as normal.






        share|improve this answer












        The directory /media/linkan/Bubba root/home is empty because your old system had /home as a separate filesystem. So far, you've only mounted the root filesystem from the old disk.



        Also, the old disk had the /home filesystem within a LVM logical volume, as indicated by this line in the old fstab file:



        /dev/mapper/bubba-storage /home ext3 defaults 0 2


        So, your old /home filesystem was within a LVM volume group named bubba, in a logical volume named storage. For historical reasons, there are two device paths for referring to such a logical volume: /dev/mapper/bubba-storage and /dev/bubba/storage. Both refer to the same thing.



        When hot-plugging a disk that contains a LVM volume group, there is one extra step: you must activate the volume group before being able to mount any of the logical volumes within it. Run sudo vgchange -ay bubba to activate the volume group: if successful, the device /dev/mapper/bubba-storage should become available on your system. (If it fails, the error message from the vgchange command is going to be important in figuring out the problem.)



        Then you can mount it anywhere you want, but perhaps it will be reasonable to mount it to its old mountpoint. First close any GUI file manager windows currently accessing the /media/linkan/Bubba root/home directory to avoid mount point is busy error messages, and do:



        cd /
        sudo mount /dev/mapper/bubba-storage "/media/linkan/Bubba root/home"


        If you cannot access your old home directory under /media/linkan/Bubba root/home/ using your regular user account, it's probably because your account on the old system used a different UID number compared to your new system. This can be fixed easily. (I'm assuming that your current username is linkan and the username/home directory name on the old system was old_linkan. Change as appropriate.)



        cd "/media/linkan/Bubba root/home"
        sudo chown -R linkan: old_linkan


        After the chown command completes, your old home directory should now appear as owned by you in ls -l listing, and it should be accessible as normal.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Aug 17 at 5:45









        telcoM

        11.5k11333




        11.5k11333



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f463086%2freading-home-folder-of-old-computer-in-a-new-computer%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            How to check contact read email or not when send email to Individual?

            Bahrain

            Postfix configuration issue with fips on centos 7; mailgun relay