# Copy a GPT Partition Table to Another Disk

### Command Syntax

To clone GPT partition table command syntax are as following.

```bash
sgdisk -R <New_Disk> <Existing_Disk>
```

<span class="callout warning">
  
Be sure to take note of the order of the disks. It looks like many commands with a `<from> <to>` ordering but actually `New_Disk` is an argument to the `-R` parameter.
  
</span>

[source](https://tecadmin.net/copy-a-gpt-partition-table-to-new-disk/)