Como converter o disco rígido do GPT particionado para o sistema de arquivos BTRFS sem partição?

3

Eu tenho um HDD de 8TB da Seagate Archive particionado com o sistema de arquivos GPT: BTRFS (aproximadamente 1TB), todo o resto agora está livre. Eu gostaria de converter este HDD para particionado (deixe BTRFS gerenciar unidade completa), mantendo os dados do sistema de arquivos BTRFS intactos. É possível em tudo?

Ubuntu Server 14.04 (Btrfs v3.12, versão do Linux 3.19.0-64-genérico)

NOTA: não é disco de inicialização, somente armazenamento

    
por Artem Mygaiev 17.07.2016 / 09:53

1 resposta

-1

Não tenho experiência com o Btrfs (mais experiência com o ZFS), mas por atenção a partições , o primeiro utilitário que vem à mente é o gdisk (8).

Ferramenta de particionamento de modo de texto fdisk da GPT

Um resumo:

$ sudo gdisk
GPT fdisk (gdisk) version 1.0.1

Type device filename, or press <Enter> to exit: /dev/sda
Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.

Command (? for help): p
Disk /dev/sda: 1953525168 sectors, 931.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 51A560B1-D116-479F-A8A2-2A8F86C89931
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1953525134
Partitions will be aligned on 2048-sector boundaries
Total free space is 3437 sectors (1.7 MiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048         1050623   512.0 MiB   EF00  EFI System Partition
   2         1050624         2050047   488.0 MiB   8300  
   3         2050048      1953523711   930.5 GiB   8300  

Command (? for help): r

Recovery/transformation command (? for help): ?
b       use backup GPT header (rebuilding main)
c       load backup partition table from disk (rebuilding main)
d       use main GPT header (rebuilding backup)
e       load main partition table from disk (rebuilding backup)
f       load MBR and build fresh GPT from it
g       convert GPT into MBR and exit
h       make hybrid MBR
i       show detailed information on a partition
l       load partition data from a backup file
m       return to main menu
o       print protective MBR data
p       print the partition table
q       quit without saving changes
t       transform BSD disklabel partition
v       verify disk
w       write table to disk and exit
x       extra functionality (experts only)
?       print this menu

Recovery/transformation command (? for help): m

Command (? for help): x

Expert command (? for help): ?
a       set attributes
c       change partition GUID
d       display the sector alignment value
e       relocate backup data structures to the end of the disk
g       change disk GUID
h       recompute CHS values in protective/hybrid MBR
i       show detailed information on a partition
l       set the sector alignment value
m       return to main menu
n       create a new protective MBR
o       print protective MBR data
p       print the partition table
q       quit without saving changes
r       recovery and transformation options (experts only)
s       resize partition table
t       transpose two partition table entries
u       replicate partition table on new device
v       verify disk
w       write table to disk and exit
z       zap (destroy) GPT data structures and exit
?       print this menu

Expert command (? for help): q
$ uname -a
Linux momh167-gjp4-kubuntu-hpelitebook850g2 4.4.0-31-generic #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
$ 

(Poderia zap (destruir) estruturas de dados GPT e sair de uma solução?)

    
por Graham Perrin 17.07.2016 / 12:40