Teste isso:
Assumindo que sua unidade externa é / dev / sdc
Crie uma tabela de partição gpt e uma partição:
sudo -i
gdisk /dev/sdc
The initial output is a warning if the disk is not a new disk or a disk already using GPT:
GPT fdisk (gdisk) version 0.7.2
Partition table scan:
MBR: MBR only
BSD: not present
APM: not present
GPT: not present
***************************************************************
Found invalid GPT and valid MBR; converting MBR to GPT format.
THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if
you don't want to convert your MBR partitions to GPT format!
***************************************************************
Command (? for help):
Ao iniciar o gdisk em um disco com partições MBR existentes e sem GPT, o programa exibe uma mensagem cercada por asteriscos para converter as partições existentes em GPT.
Tipo? e você verá uma lista de comandos disponíveis:
Command (? for help): ?
b back up GPT data to a file
c change a partition's name
d delete a partition
i show detailed information on a partition
l list known partition types
n add a new partition
o create a new empty GUID partition table (GPT)
p print the partition table
q quit without saving changes
r recovery and transformation options (experts only)
s sort partitions
t change a partition's type code
v verify disk
w write table to disk and exit
x extra functionality (experts only)
? print this menu
Digite n para adicionar uma nova partição e XXXT para dar um tamanho à partição.
Partition number (1-128, default 1): 1
First sector (34-15728606, default = 4605952) or {+-}size{KMGTP}:
Last sector (4605952-15728606, default = 15728606) or {+-}size{KMGTP}: +4T
Current type is 'Linux filesystem'
Hex code or GUID (L to show codes, Enter = 8300): 8300
Changed type of partition to 'Linux filesystem
O w escreve suas alterações no disco enquanto o comando q sai sem salvar suas alterações:
Comando (? para ajuda): w
Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING
PARTITIONS!!
Do you want to proceed? (Y/N): y
OK; writing new GUID partition table (GPT).
The operation has completed successfully.
Como o gdisk cria partições e não sistemas de arquivos, você precisará formatar cada uma das suas partições
mkfs -t ext4 /dev/sdc1
Move arquivos, geralmente alojados em / var / www para a nova partição
mkdir /media/newwww
mount /dev/sdc1 /media/newwww
cp -dpR /var/www/* /media/newwww/
mv /var/www /var/oldwww
mkdir /var/www
Obtenha o UUID
blkid /dev/sdc1
/dev/sdc1: UUID="c676ae51-cb6f-4c0e-b4a9-76850aafa1d6" TYPE="ext4"
Edite o arquivo / etc / fstab
nano /etc/fstab
No arquivo, adicione esta linha:
UUID=c676ae51-cb6f-4c0e -xxxx-xxxxxxxx /var/www ext4 defaults 0 2
Control + O, salve o arquivo. Control + X, perto de nano.
umount /media/newwww
mount /dev/sdc1 /var/www
Se tudo funcionar corretamente, exclua o diretório antigo:
sudo -i
rm /var/oldwww