Discussion:
accessing win/ ubuntu files on Clonezilla hard dive?
(too old to reply)
Jake M
2024-01-17 22:03:24 UTC
Permalink
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard drive. I
did not use compression. In the past, I've been able to simply plug
this drive into the USB port and access the files on it, but this time
only the Win files are visible and the Ubuntu partitions seem hidden.
How to remedy? Thanks.
Bobbie Sellers
2024-01-17 22:44:40 UTC
Permalink
Post by Jake M
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard drive.  I
did not use compression.  In the past, I've been able to simply plug
this drive into the USB port and access the files on it, but this time
only the Win files are visible and the Ubuntu partitions seem hidden.
How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?

Which OS are you attempting to access those files from?


bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Jake M
2024-01-17 22:50:13 UTC
Permalink
Post by Bobbie Sellers
Post by Jake M
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard drive.
I did not use compression.  In the past, I've been able to simply plug
this drive into the USB port and access the files on it, but this time
only the Win files are visible and the Ubuntu partitions seem hidden.
How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?
Which OS are you attempting to access those files from?
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Whatever format Clonezilla uses, a direct to direct hard drive copy. I
am attempting to access from Ubuntu. I did it before and all of the
Ubuntu partitions came up, but so far they are hidden. I just forgo
Jake M
2024-01-18 01:48:24 UTC
Permalink
Post by Bobbie Sellers
Post by Jake M
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard drive.
I did not use compression.  In the past, I've been able to simply
plug this drive into the USB port and access the files on it, but
this time only the Win files are visible and the Ubuntu partitions
seem hidden. How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?
Which OS are you attempting to access those files from?
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Whatever format Clonezilla uses, a direct to direct hard drive copy.  I
am attempting to access from Ubuntu.  I did it before and all of the
Ubuntu partitions came up, but so far they are hidden.  I just forgot
how I did it.
If Clonezilla makes exact copies, which I assume it does, then the
partitions would be ntfs for Win and ext4 for Ubuntu. That is what
Paul
2024-01-18 03:20:26 UTC
Permalink
Post by Bobbie Sellers
Didn't mean to start a new topic here, but just finished a drive to drive clone from my dual OS Ubuntu/Win PC to the back up hard drive. I did not use compression.  In the past, I've been able to simply plug this drive into the USB port and access the files on it, but this time only the Win files are visible and the Ubuntu partitions seem hidden. How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?
Which OS are you attempting to access those files from?
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Whatever format Clonezilla uses, a direct to direct hard drive copy. 
I am attempting to access from Ubuntu.  I did it before and all of
the Ubuntu partitions came up, but so far they are hidden.  I just forgot how I did it.
If Clonezilla makes exact copies, which I assume it does, then the partitions would be
ntfs for Win and ext4 for Ubuntu.  That is what the original hard drive is.
sudo apt install disktype

sudo disktype /dev/sda

That utility sniffs the partitions, and if there is a problem,
it might be apparent at this point.

Partition 10: 46.39 GiB (49806311424 bytes, 97277952 sectors from 1856245759+1)
Type 0x83 (Linux)
Ext4 file system
Volume name "U2310"
UUID 9FFC89FC-0EB1-45B9-AEE6-E834AA56DE7D (DCE, v4)
Last mounted at "/"
Volume size 46.39 GiB (49806311424 bytes, 12159744 blocks of 4 KiB)

By checking the file system header, determine the type, then
testing a few points within the partition, that's where the
"Type 0x83" comes from.

*******

Looking at the partition table, is a second issue.

This is the "bookkeeping" side of the setup. The bookkeeping should match
what disktype declares. It would be a serious issue, if the type field
in the partition table, does not match the file system actually in the partition.
The software still checks the file system header.

sudo gdisk /dev/sda # Checks the disk partitioning type first.
# You can type "Q" to Quit, if it finds the disk is not GPT
# and it is printing out silly warnings.

# Otherwise, typing "P" to print, will show some info.

# GDisk will be calm and collected, if the disk is GPT partitioned.
# And won't make such a fuss. If the disk is not GPT, we use fdisk.

sudo fdisk /dev/sda # If you quickly exited gdisk because of the warnings,
# the fdisk utility is for MBR partitioned disks.
# Typing "P" to print, dumps the partition table info.
# Type "Q" to quit.

Perhaps by this point, it will already be apparent there was a failure
during cloning.

Paul
Jake M
2024-01-18 04:11:46 UTC
Permalink
Post by Paul
Perhaps by this point, it will already be apparent there was a failure
during cloning.
Paul
I figured it out. I went to "discs" and discovered that all of the
partitions were present, just not mounted. Discs will let me mount any
or all of them. This is good because I can simply transfer a bunch of
files over to the back up disc just by opening its partition. Save me a
lot of work after the back up installation.
Bobbie Sellers
2024-01-18 08:07:43 UTC
Permalink
Post by Jake M
Post by Jake M
Post by Bobbie Sellers
Post by Jake M
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard drive.
I did not use compression.  In the past, I've been able to simply
plug this drive into the USB port and access the files on it, but
this time only the Win files are visible and the Ubuntu partitions
seem hidden. How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?
Which OS are you attempting to access those files from?
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Whatever format Clonezilla uses, a direct to direct hard drive copy.
I am attempting to access from Ubuntu.  I did it before and all of the
Ubuntu partitions came up, but so far they are hidden.  I just forgot
how I did it.
If Clonezilla makes exact copies, which I assume it does, then the
partitions would be ntfs for Win and ext4 for Ubuntu.  That is what the
original hard drive is.
Have you attempt to examine the drive with GPartEd? If it fails to see
your Ubusto files it has a Partition Recovery-mode that is vary slow.
But it seems to work fine.

bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Jake M
2024-01-18 17:04:21 UTC
Permalink
Post by Jake M
Post by Jake M
Post by Bobbie Sellers
Post by Jake M
Didn't mean to start a new topic here, but just finished a drive to
drive clone from my dual OS Ubuntu/Win PC to the back up hard
drive. I did not use compression.  In the past, I've been able to
simply plug this drive into the USB port and access the files on
it, but this time only the Win files are visible and the Ubuntu
partitions seem hidden. How to remedy?  Thanks.
What format is the partition where you backed up the Ubuntu files?
Which OS are you attempting to access those files from?
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
Whatever format Clonezilla uses, a direct to direct hard drive copy.
I am attempting to access from Ubuntu.  I did it before and all of
the Ubuntu partitions came up, but so far they are hidden.  I just
forgot how I did it.
If Clonezilla makes exact copies, which I assume it does, then the
partitions would be ntfs for Win and ext4 for Ubuntu.  That is what
the original hard drive is.
Have you attempt to examine the drive with GPartEd?   If it fails to see
your Ubusto files it has a Partition Recovery-mode that is vary slow.
But it seems to work fine.
bliss- Dell Precision 7730- PCLOS 2024.01- Linux 6.5.13- Plasma 5.27.10
I figured it out. I had to go into "discs" and saw that the external
hard drive backup partitions were there, just not mounted. Discs gives
the option to mount them which I did. Saved a lot of work after the
backup with being able to access many files on the corrup

Loading...