Ho un Mac Server che esegue 10.10. Al momento, l'unico scopo è quello di prendere i backup del tempo di macchine da più dispositivi.
Il server stesso utilizza una condivisione AFP NAS Thecus per archiviare i backup della macchina del tempo. In genere il processo che ho usato in passato per aumentare lo spazio di archiviazione è il seguente
Estendi la dimensione iSCSI nel Thecus. Questo è ora 8.8TB (da 6.6TB)
Sul server -
Terminal - Sudo up
sh-3.2# df
Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on
/dev/disk0s2 83214256 40438952 42263304 49% 5118867 5282913 49% /
devfs 362 362 0 100% 627 0 100% /dev
map -hosts 0 0 0 100% 0 0 100% /net
map auto_home 0 0 0 100% 0 0 100% /home
map -fstab 0 0 0 100% 0 0 100% /Network/Servers
/dev/disk1s2 4294295472 4242994728 51300744 99% 530374339 6412593 99% /Volumes/Backups
sh-3.2#
Confirm in Disk Utility the disk size has increased
Eject/Unmount the partition
sh-3.2# gpt show /dev/disk1
start size index contents
0 1 PMBR
1 1 Pri GPT header
2 32 Pri GPT table
34 6
40 409600 1 GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
409640 4294295472 2 GPT part - 48465300-0000-11AA-AA11-00306543ECAC
4294705112 4295229447
8589934559 32 Sec GPT table
8589934591 1 Sec GPT header
sh-3.2#
sh-3.2#
sh-3.2#
sh-3.2# gpt destroy /dev/disk1
sh-3.2#
sh-3.2# gpt create -f /dev/disk1
sh-3.2#
sh-3.2# gpt add -b 409640 -s 4294295472 /dev/disk1
/dev/disk1s1 added
sh-3.2#
Il problema questa volta è che non ho il numero originale -b.
Ho provato il seguente
sh-3.2# gpt destroy /dev/disk1
sh-3.2# gpt create -f /dev/disk1
sh-3.2# gpt show /dev/disk1
start size index contents
0 1 PMBR
1 1 Pri GPT header
2 32 Pri GPT table
34 17179869117
17179869151 32 Sec GPT table
17179869183 1 Sec GPT header
sh-3.2# gpt add -b 409640 -s 17179869117
usage: gpt add [-b lba] [-i index] [-s lba] [-t uuid] device ...
sh-3.2# gpt add -b 409640 -s 17179869117 /dev/disk1
gpt add: /dev/disk1: error: no space available on device
Ho provato un paio di opzioni diverse durante la creazione della partizione e ho ottenuto "lo spazio disponibile" ogni volta.
Se provo
gpt add -b 34 -s 17179869117
Creerà la partizione ma sarà totalmente illeggibile.
L'output corrente di df è
macserver:~ tech$ df
Filesystem 512-blocks Used Available Capacity iused ifree %iused Mounted on
/dev/disk0s2 83214256 53119064 29583192 65% 6703881 3697899 64% /
devfs 360 360 0 100% 625 0 100% /dev
map -hosts 0 0 0 100% 0 0 100% /net
map auto_home 0 0 0 100% 0 0 100% /home
map -fstab 0 0 0 100% 0 0 100% /Network/Servers
//[email protected]/TimeMachineBackups 23241211968 14320040480 8921171488 62% 1790005058 1115146436 62% /Volumes/TimeMachineBackups
La quota gratuita del 62% sopra è ciò che sto prendendo di mira.
Qualcuno può offrire assistenza?