-
Notifications
You must be signed in to change notification settings - Fork 3
/
helptext.txt
2729 lines (1975 loc) · 129 KB
/
helptext.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
:main_array_devices_help:
**Indicador de estado colorido** O significado do indicador de cor no início de cada linha em *Array Devices* é o seguinte:
<i class='fa fa-circle orb green-orb'></i>Funcionamento normal, o dispositivo está activo.
<i class='fa fa-circle orb grey-orb'></i>O dispositivo está em modo de espera (spun-down).
<i class='fa fa-warning orb yellow-orb'></i>Conteúdo do dispositivo emulado.
<i class='fa fa-times orb red-orb'></i>O dispositivo está desactivado, conteúdo emulado.
<i class='fa fa-square orb blue-orb'></i>Novo dispositivo.
<i class='fa fa-square orb grey-orb'></i>Nenhum dispositivo presente, a posição está vazia.
**Identificação** é a *assinatura* que identifica de forma única um dispositivo de armazenamento. A assinatura
inclui o número do modelo do dispositivo, o número de série, a identificação do dispositivo linux e o tamanho do dispositivo.
**Temp.** (temperatura) é lido directamente a partir do dispositivo. Você configura quais as unidades a utilizar
na [Display Preferences](Settings/DisplaySettings) página. Não lemos a temperatura dos discos rígidos
desligados, uma vez que iso normalmente volta a ligar os discos; em vez disso, exibimos o símbolo `*'. Também exibimos
o símbolo `*` para dispositivos SSD e Flash, embora por vezes estes dispositivos reportem uma temperatura válida
e por vezes devolvem o valor `0'.
**Tamanho, Usado, Livre** informa o tamanho total do dispositivo, o espaço usado e o espaço restante para arquivos. Estas
Estas unidades também são configuradas na página [Display Preferences](Settings/DisplaySettings). A quantidade
de espaço utilizada será diferente de zero mesmo para um disco vazio devido à sobretaxa do sistema de arquivo.
*Nota: para um agrupamento de cache multi-dispositivo, estes dados referem-se a todo o agrupamento, tal como indicado pelo btrfs.*
**Leituras, Escritas** são uma contagem dos pedidos de I/O enviados para os controladores de I/O do dispositivo. Estas estatísticas podem
ser apagadas a qualquer momento, consulte a secção Estado do Array abaixo..
**Erros** conta o número de erros * irrecuperáveis* comunicados pelos drivers
I/O do dispositivo. Os dados em falta devido a erros de leitura irrecuperáveis do array são preenchidos em tempo real utilizando a reconstrução
da paridade (e nós tentamos escrever estes dados de volta para o(s) sector(es) que falhou(s)). Qualquer erro de gravação
rrecuperável resulta em *desactivar* o disco..
**FS*** indica o sistema de ficheiros detectado na partição 1 do dispositivo.
A coluna **View** contém um ícone de pasta indicando que o dispositivo está *montado*. Clique no ícone para
navegar no sistema de ficheiros.
Se a opção "Display array totals" estiver activa na página [Display Preferences](Settings/DisplaySettings),
é incluída uma linha **Total*** que fornece uma contagem das estatísticas dos dispositivos, incluindo a temperatura média
dos seus dispositivos.
O Array tem de ser parado para se poder mudar as atribuições dos dispositivos do Array.
Um Unraid array consiste em um ou dois discos de Paridade e vários discos de dados. Os discos
de dados são utilizados exclusivamente para armazenar dados dos utilizadores, e o(s) disco(s) de Paridade
proporciona(m) a redundância necessária para recuperar de falhas no disco.
Uma vez que os dados não são distribuídos no array, o(s) disco(s) de Paridade deve(m) ser tão grande(s) ou maior(es) do que o maior disco
de Dados. A paridade também deve ser o disco com maior desempenho.
Cada disco de dados tem o seu próprio sistema de ficheiros e pode ser exportado como uma
parte separada.
Clique no nome do dispositivo para configurar as configurações individuais do dispositivo e iniciar determinados utilitários.
:end
:main_slots_help:
**Slots** seleccione o número de slots de dispositivos no seu servidor designados para os dispositivos Array.
O número mínimo de slots de Array é 2, e deve ter pelo menos um dispositivo atribuído a esse Array.
:end
:cache_devices_help:
**Indicador de estado colorido** O significado do indicador de cor no início de cada linha em *Pool Devices* é o seguinte:
<i class='fa fa-circle orb green-orb'></i>Funcionamento normal, o dispositivo está activo.
<i class='fa fa-circle orb grey-orb'></i>O dispositivo está em modo de espera (spun-down).
<i class='fa fa-square orb blue-orb'></i>Novo dispositivo.
<i class='fa fa-square orb grey-orb'></i>Nenhum dispositivo presente, a posição está vazia.
**Agrupamento de dispositivos*** é um único dispositivo, ou conjunto de múltiplos dispositivos, *fora* do Unraid array. Pode ser exportado para acesso à rede
tal como um dispositivo array. Não fazendo parte do unRaid Array resulta em um acesso de escrita significativamente mais rápido.
Existem duas formas de configurar os dispositivos do agrupamento:
1. Como um dispositivo único, ou
2. Como um agrupamento multi-dispositivo.
Quando configurado como único dispositivo, pode ser formatado utilizando qualquer sistema de ficheiros suportado (btrfs, reiserfs,
ou xfs). Esta configuração oferece o melhor desempenho, mas à custa de nenhuma protecção de dados - se o
único dispositivo de agrupamento falhar, todos os dados nele contidos podem ser perdidos.
Quando configurado como um agrupamento multi dispositivo, o sistema operativo unRaid seleccionará automaticamente o formato *btrfs-raid1* (tanto para os dados
como para os meta-dados). btrfs permite que qualquer número de dispositivos seja acrescentado ao agrupamento e cada cópia de dados é, garantidamente,
escrita em dois dispositivos diferentes. Assim, o pool pode suportar uma falha de um único disco sem perder dados.
Quando [User Shares](/Settings/ShareSettings) são activados, as partilhas podem ser configuradas para
utilizar automaticamente o dispositivo de agrupamento de forma a acelerar a escrita
Um processo especial de fundo chamado *mover* pode ser programado para correr periodicamente
para mover os ficheiros da partilha para fora da Cache e para o agrupamento de discos.
:end
:cache_slots_help:
**Slots*** seleccione o número de slots de dispositivos no seu servidor designados para os dispositivos Cache.
:end
:boot_device_help:
A configuração fundamental do array é mantida no dispositivo USB Flash; por este motivo, ele deve permanecer
conenctado ao seu servidor. Clique em [Flash](/Main/Flash?name=flash) para ver a GUID e as informações
de registo, e para configurar as definições de exportação. Uma vez que o dispositivo USB Flash é formatado utilizando o sistema de ficheiros FAT,
só pode ser exportado utilizando o protocolo SMB.
:end
:array_status_help:
**Indicador de estado colorido** o significado do indicador de cor do *Array* é o seguinte:
<i class='fa fa-circle orb green-orb'></i>O Array é iniciado e a Paridade é válida.
<i class='fa fa-circle orb grey-orb'></i>O Array está parado, a Paridade é válida.
<i class='fa fa-warning orb yellow-orb'></i>O Array é iniciado, mas a Paridade é inválida.
<i class='fa fa-warning orb grey-orb'></i>O Array está parado, a Paridade é inválida.
:end
:array_devices_help:
#### Atribuição de Dispositivos
Um unRaid Array consiste de um disco de paridade única e vários discos de dados. Os discos de dados
são utilizados exclusivamente para armazenar dados dos utilizadores e o disco de paridade fornece a redundância necessária
para recuperar de qualquer falha de um só disco.
Note que temos o cuidado de usar o termo *disco* quando nos referimos a um dispositivo de armazenamento de array. Nós
usamos o termo *disco rígido* (ou às vezes apenas *disco*) quando nos referimos a um actual disco rígido (HDD).
Isto porque num sistema RAID é possível ler/escrever um disco array cujo disco rígido correspondente
está desactivado ou mesmo ausente! Além disso, é útil poder perguntar, "que dispositivo
é atribuido como disco de paridade?"; ou, "que dispositivo corresponde ao disco2?".
Precisamos, portanto, de uma forma de atribuir discos rígidos a discos do array. Isto é realizado aqui na página
principal quando o array está parado. Cada disco do array tem o seu próprio menu drop-down que lista todos os
dispositivos não atribuídos. Para a tribuir um dispositivo basta seleccioná-lo da lista. Cada vez que se atrbui
um novo dispositivo, o sistem actualiza um ficheiro de configuração para guardar a atribuição.
#### Requisitos
Ao contrário dos sistemas RAID tradicionais que armazenam dados em todos os dispositivos do array, um servidor unRaid
guarda os ficheiros em discos rígidos individuais. Consequentemente, todoas as operações de escrita de ficheiros envolverão
o disco para o qual os dados estão a ser escritos, assim como o disco de paridade. Por estas razões,
* o tamanho do disco de paridade deve ser tão grande ou superior do que qualquer um dos discos de dados,
e
* dada uma escolha, o disco de paridade deve ser o disco mais rápido da sua colecção.
#### Instruções
Aqui estão os passos que você deve seguir para planear o seu unRaid array de discos:
1. Decida que disco duro irá utilizar para a paridade, e que discos duros irá utilizar como disco de
dados disk1, disk2, etc., e identifique-os de alguma forma. Além disso, tome note do número de série
de cada disco; você precisará desta informação mais tarde.
2. Instale os seus discos duros, arranque com o Server unRAID e abra a webGui. Se é um sistema novo,
a página principal não mostrará nenhum disco instalado. Isto não significa que o sistema não pode detectar os
discos duros; só quer dizer que ainda nenhuns foram atribuídos.
3. Lembra-se dos múmeros de sério que tomou nota no passo 1? Usando o menu drop-down ao lado dos discos de paridade e de dados,
seleccione o disco duro para cada caso correspondente ao número de série.
#### Hot Plug
Você também pode connectar os discos duros via *hot plug* ao seu servidor, se o hardware suporta a função. Por exemplo,
se utilizar drive cages, poderá simplesmente ligá-las ao servidor enquanto este estiver ligado e tiver
o array parado. Actualize a página principal para que os novos dispositivos não atribuidos apareçam nas listas no menu
drop-down.
#### Próximos passos
Depois de ter atribuído todos os seus discos duros, consulte a secção Estado do Array abaixo
e inicie o array.
:end
:encryption_help:
#### Encriptação
Com o array parado, o utilizador pode especificar uma nova chave de encriptação. Note que quando um dispositivo
é formatado com uma determinada chave, ele só pode ser aberto usando essa mesma chave. A alteração da chave de
encriptação requer que os dispositivos encriptados sejam reformatados **resultando em perda permanente de todos os dados existentes nesses dispositivos.**
#### Palavra passe
Introduza uma palavra passe tendo até 512 caracteres. É altamente aconselhável usar apenas os 95 caracteres imprimíveis dos
primeiros 128 caracteres da [ASCII table](https://en.wikipedia.org/wiki/ASCII), uma vez que terão sempre a mesma representação
binária. Outros caracteres podem ter codificação diferente dependendo da configuração do sistema e a sua palavra-passe
não funcionará com uma codificação diferente. Se você quiser uma palavra-passe mais longa ou incluir dados binários, faça o upload de uma keyfile.
Por favor consulte [cryptsetup FAQ](https://gitlab.com/cryptsetup/cryptsetup/wikis/FrequentlyAskedQuestions#5-security-aspects)
para o que constitui uma palavra-passe *segura*.
**Memorise** esta palavra-passe. **SE A PERDER, O CONTEÚDO ENCRIPTADO NÃO PODERÁ SER RECUPERADO!**
#### Keyfile
Seleccione uma keyfile local com uma chave de encriptação armazenada ou um ficheiro binário. O tamanho máximo da keyfile é de 8M (8388608 byte).
Faça um **Backup** da sua keyfile local. **SE A PERDER, O CONTEÚDO ENCRIPTADO NÃO PODERÁ SER RECUPERADO!**
:end
:info_warning_temp_help:
O *Limite de temperatura do disco aviso* define o limiar de aviso para esta temperatura do disco rígido. Passando este limite resulta numa mensagem de aviso.
Um valor de zero desactivará o limite de alerta (incluindo as mensagens de aviso).
:end
:info_critical_temp_help:
O *Limite de temperatura do disco crítico* define o limiar de crítico para esta temperatura do disco rígido. Passando este limite resulta numa mensagem de alerta.
Um valor de zero desactivará o limite de alerta crítico (incluindo as mensagens de aviso).
:end
:info_file_system_help:
Insira o tipo de sistema de arquivo desejado. A alteração do tipo de sistema de ficheiros de um dispositivo permitirá reformatar
esse dispositivo utilizando o novo sistema de ficheiros. Tenha em atenção que **todos os dados existentes no dispositivo serão perdidos***.
:end
:info_comments_help:
Este texto aparecerá sob a coluna *Comentários* para a partilha no Windows Explorer.
Insira o que quiser, até 256 caracteres.
:end
:info_warning_utilization_help:
O *Aviso de utilização de disco* define o limiar de aviso de utilização para este disco. Passando este limite resulta numa mensagem de aviso.
Quando o limiar de alerta é estabelecido como igual ou superior ao limiar crítico, haverá apenas notificações críticas (as mensagens de aviso não existem).
Um valor de zero desactivará o limite de alerta (incluindo as mensagens de aviso).
:end
:info_critical_utilization_help:
O *Aviso de utilização de disco crítico* define o limiar de aviso crítoco de utilização para este disco. Passando este limite resulta numa mensagem de alerta.
Um valor de zero desactivará o limite de alerta crítico (incluindo as mensagens de aviso).
:end
:info_btrfs_balance_help:
**Balance** irá executar o programa *btrfs balance* para redistribuir os dados por todos os dispositivos do pool, por examplo,
para converter o pool de raid1 para raid0 ou vice-versa.
Quando se executa um *full balance*, basicamente todos os dados são re-escritos no sistema de ficheiros actual.
A *conversão de modo* affecta o método com o qual btrfs guarda os dados; os metadados sempre utilisarão raid1 e serão ocnvertidos para raid1 se for necessário por qualquer operação Balance.
O tempo de execução poderá ser muito longo, dependendo do tamanho do sistema de ficheiros e da velocidade dos dispositivos.
Unraid utiliza estas opções por defeito ao criar um pool de múltiplos dispositivos::
`-dconvert=raid1 -mconvert=raid1`
Para uma documentação mais completa, consulte o btrfs-balance [Manpage](https://btrfs.wiki.kernel.org/index.php/Manpage/btrfs-balance)
*Nota: raid5 e raid6 são geralmente ainda considerados **experimentais** pela comunidade Linux*
:end
:info_balance_cancel_help:
**Cancelar** irá cancelar a operação balance em curso.
:end
:info_btrfs_scrub_help:
**Scrub** executa o programa *btrfs scrub* que irá ler todos os blocos de dados e metadados de todos
os dispositivos e verificar os checksums.
Se *Reparar blocos corrompidos* for seleccionado, *btrfs scrub* irá reparar todos os blocos corrompidos, desde que haja uma cópia correcta disponível.
:end
:info_scrub_cancel_help:
**Cancelar** irá cancelar a operação Scrub em curso.
:end
:info_btrfs_check_help:
**Verificar** executa o programa *btrfs check* para verificar a integridade do sistema de ficheiros no dispositivo.
O campo *Opções* é inicializado com *--readonly* que irá apenas verificar. Se for preciso reparar algo, é recomendado executar
uma secunda verificação, configurando as *Opções* para *--repair*; isto permitirá que o programa *btrfs check* repare o sistema de ficheiros.
Depois de inicializar uma Verificação, deverá actualizar a página para monitorizar o progresso e o estado. Dependendo do
tamanho do sistema de arquivo, e que erros possam estar presentes, a operação pode levar **um longo tempo*** a terminar (horas).
Não é indicada muita informção na janela, mas pode verificar se a operação está ainda a decorrer observando os contadores de leitura/escrita
a aumentar para o dispositivo na página principal.
:end
:info_check_cancel_help:
**Cancelar** irá cancelar a operação Verificar em curso.
:end
:info_reiserfs_check_help:
**Verificar** executa o programa *reiserfsck* para verificar a integridade do sistema de ficheiros no dispositivo.
O campo *Opções* pode ser preenchido com opções específicas utilizadas para corrigir problemas no sistema de ficheiros. Geralmente, executa-se
primeiro uma Verificação deixando as Opções vazias. Após a conclusão, se o *reiserfsck* encontrar algum problema, deve executar
uma segunda Verificação, utilizando a opção específica que o *reiserfsck* indicou depois da primeira passagem.
Depois de inicializar uma Verificação, deverá actualizar a página para monitorizar o progresso e o estado. Dependendo do
tamanho do sistema de arquivo, e que erros possam estar presentes, a operação pode levar **um longo tempo*** a terminar (horas).
Não é indicada muita informção na janela, mas pode verificar se a operação está ainda a decorrer observando os contadores de leitura/escrita
a aumentar para o dispositivo na página principal.
:end
:info_reiserfs_cancel_help:
**Cancel** will cancel the Check operation in progress.
:end
:info_xfs_check_help:
**Check** will run the *xfs_repair* program to check file system integrity on the device.
The *Options* field is initialized with *-n* which specifies check-only. If repair is needed, you should run
a second Check pass, setting the *Options* blank; this will permit *xfs_repair* to fix the file system.
After starting a Check, you should Refresh to monitor progress and status. Depending on
how large the file system is, and what errors might be present, the operation can take **a long time** to finish (hours).
Not much info is printed in the window, but you can verify the operation is running by observing the read/write counters
increasing for the device on the Main page.
:end
:info_xfs_cancel_help:
**Cancel** will cancel the Check operation in progress.
:end
:info_smart_notifications_help:
SMART notifications are generated on either an increasing RAW value of the attribute, or a decreasing NORMALIZED value which reaches a predefined threshold set by the manufacturer.
Each disk may have its own specific setting overruling the 'default' setting (see global SMART settings under Disk Settings).
:end
:info_tolerance_level_help:
A tolerance level may be given to prevent that small changes result in a notification. Setting a too high tolerance level may result in critical changes without a notification.
Each disk may have its own specific setting overruling the 'default' setting (see global SMART settings under Disk Settings).
:end
:info_controller_type_help:
By default automatic controller selection is done by smartctl to read the SMART information. Certain controllers however need specific settings for smartctl to work.
Use this setting to select your controller type and fill-in the specific disk index and device name for your situation. Use the manufacturer's documentation to find the relevant information.
Each disk may have its own specific setting overruling the 'default' setting (see global SMART settings under Disk Settings).
:end
:info_attribute_notifications_help:
The user can enable or disable notifications for the given SMART attributes. It is recommended to keep the default, which is ALL selected attributes,
when certain attributes are not present on your hard disk or do not provide the correct information, these may be excluded.
In addition custom SMART attributes can be entered to generate notifications. Be careful in this selection,
it may cause an avalance of notifcations if inappropriate SMART attributes are chosen.
Each disk may have its own specific setting overruling the 'default' setting (see global SMART settings under Disk Settings).
:end
:selftest_history_help:
Press **Show** to view the self-test history as is kept on the disk itself.
This feature is only available when the disk is in active mode.
:end
:selftest_error_log_help:
Press **Show** to view the error report as is kept on the disk itself.
This feature is only available when the disk is in active mode.
:end
:selftest_short_test_help:
Starts a *short* SMART self-test, the estimated duration can be viewed under the *Capabilities* section. This is usually a few minutes.
When the disk is spun down, it will abort any running self-test.
This feature is only available when the disk is in active mode.
:end
:selftest_long_test_help:
Starts an *extended* SMART self-test, the estimated duration can be viewed under the *Capabilities* section. This is usually several hours.
When the disk is spun down, it will abort any running self-test. It is advised to disable the spin down timer of the disk
to avoid interruption of this self-test.
This feature is only available when the disk is in active mode.
:end
:selftest_result_help:
When no test is running it will show here the latest obtained self-test result (if available).
Otherwise a progress indicator (percentage value) is shown for a running test.
:end
:smart_attributes_help:
This list shows the SMART attributes supported by this disk. For more information about each SMART attribute, it is recommended to search online.
Attributes in *orange* may require your attention. They have a **raw value** greater than zero and may indicate a pending disk failure.
Special attention is required when the particular attribute raw value starts to increase over time. When in doubt, consult the Limetech forum for advice.
:end
:smart_capabilities_help:
This list shows the SMART capabilities supported by this disk.
Observe here the estimated duration of the SMART short and extended self-tests.
:end
:smart_identity_help:
This list shows the SMART identity information of this disk
:end
:open_devices_help:
These are devices installed in your server but not assigned to either the parity-protected
array or the cache disk/pool.
:end
:flash_backup_help:
Use *Flash backup* to create a single zip file of the current contents of the flash device and store it locally on your computer.
:end
:syslinux_cfg_help:
Use this page to make changes to your `syslinux.cfg` file.
You will need to reboot your server for these changes to take effect.
:end
:syslinux_button_help:
Click the **Default** button to initialize the edit box with the
factory-default contents. You still need to click **Apply** in order to
commit the change.
Click the **Apply** button to commit the current edits. Click **Reset** to
undo any changes you make (before Saving). Click **Done** to exit this page.
:end
:info_free_space_help:
This defines a "floor" for the amount of free space remaining in the volume.
If the free space becomes less than this value, then new files written via user shares will fail with "not enough space" error.
Enter a numeric value with one of these suffixes:
**KB** = 1,000<br>
**MB** = 1,000,000<br>
**GB** = 1,000,000,000<br>
**TB** = 1,000,000,000,000<br>
**K** = 1,024 (ie, 2^10)<br>
**M** = 1,048,576 (ie, 2^20)<br>
**G** = 1,073,741,824 (ie, 2^30)<br>
**T** = 1,099,511,627,776 (ie, 2^40)<br>
If no suffix, a count of 1024-byte blocks is assumed.
:end
:share_list_help:
**Colored Status Indicator** -- the significance of the color indicator at the beginning of each line in *User Shares* is as follows:
<i class='fa fa-circle orb green-orb'></i>All files are on protected storage.
<i class='fa fa-warning orb yellow-orb'></i>Some or all files are on unprotected storage.
**Security modes:**
+ '-' -- user share is not exported and unavailable on the network
+ *Public* -- all users including guests have full read/write access (open access)
+ *Secure* -- all users including guests have read access, write access is set per user (limited access)
+ *Private* -- no guest access at all, read/write or read-only access is set per user (closed access)
**Special modes:**
+ SMB security mode displayed in *italics* indicates exported hidden user shares.
+ AFP security mode displayed in *italics* indicates exported time-machine user shares.
+ NFS does not have special modes for user shares.
:end
:disk_list_help:
**Colored Status Indicator** -- the significance of the color indicator at the beginning of each line in *Disk Shares* is as follows:
<i class='fa fa-circle orb green-orb'></i>Mounted, underlying device has redundancy/protection.
<i class='fa fa-warning orb yellow-orb'></i>Mounted, underlying device does not have redundancy/protection.
**Security modes:**
+ '-' -- disk share is not exported and unavailable on the network
+ *Public* -- all users including guests have full read/write access (open access)
+ *Secure* -- all users including guests have read access, write access is set per user (limited access)
+ *Private* -- no guest access at all, read/write or read-only access is set per user (closed access)
**Special modes:**
+ SMB security mode displayed in *italics* indicates exported hidden disk shares.
+ AFP security mode displayed in *italics* indicates exported time-machine disk shares.
+ NFS does not have special modes for disk shares.
:end
:share_edit_global1_help:
A *Share*, also called a *User Share*, is simply the name of a top-level directory that exists on one or more of your
storage devices (array and cache). Each share can be exported for network access. When browsing a share, we return the
composite view of all files and subdirectories for which that top-level directory exists on each storage device.
*Read settings from* is used to preset the settings of the new share with the settings of an existing share.
Select the desired share name and press **Read** to copy the settings from the selected source.
:end
:share_edit_global2_help:
*Write settings to* is used to copy the settings of the current share to one or more other existing shares.
Select the desired destinations and press **Write** to copy the settings to the selected shares.
:end
:share_edit_name_help:
The share name can be up to 40 characters, and is case-sensitive with these restrictions:
* cannot contain a double-quote character (") or the following characters: / \ * < > |
* cannot be one of the reserved share names: flash, cache, cache2, .., disk1, disk2, ..
We highly recommend to make your life easier and avoid special characters.
:end
:share_edit_comments_help:
Anything you like, up to 256 characters.
:end
:share_edit_allocation_method_help:
This setting determines how Unraid OS will choose which disk to use when creating a new file or directory:
**High-water**
Choose the lowest numbered disk with free space still above the current *high water mark*. The
*high water mark* is initialized with the size of the largest data disk divided by 2. If no disk
has free space above the current *high water mark*, divide the *high water mark* by 2 and choose again.
The goal of **High-water** is to write as much data as possible to each disk (in order to minimize
how often disks need to be spun up), while at the same time, try to keep the same amount of free space on
each disk (in order to distribute data evenly across the array).
**Fill-up**
Choose the lowest numbered disk that still has free space above the current **Minimum free space**
setting.
**Most-free**
Choose the disk that currently has the most free space.
:end
:share_edit_free_space_help:
The *minimum free space* available to allow writing to any disk belonging to the share.<br>
Choose a value which is equal or greater than the biggest single file size you intend to copy to the share.
Include units KB, MB, GB and TB as appropriate, e.g. 10MB.
:end
:share_edit_split_level_help:
Determines whether a directory is allowed to expand onto multiple disks.
**Automatically split any directory as required**
When a new file or subdirectory needs to be created in a share, Unraid OS first chooses which disk
it should be created on, according to the configured *Allocation method*. If the parent directory containing
the new file or or subdirectory does not exist on this disk, then Unraid OS will first create all necessary
parent directories, and then create the new file or subdirectory.
**Automatically split only the top level directory as required**
When a new file or subdirectory is being created in the first level subdirectory of a share, if that first
level subdirectory does not exist on the disk being written, then the subdirectory will be created first.
If a new file or subdirectory is being created in the second or lower level subdirectory of a share, the new
file or subdirectory is created on the same disk as the new file or subdirectory's parent directory.
**Automatically split only the top "N" level directories as required**
Similar to previous: when a new file or subdirectory is being created, if the parent directory is at level "N",
and does not exist on the chosen disk, Unraid OS will first create all necessary parent directories. If the
parent directory of the new file or subdirectory is beyond level "N", then the new file or subdirectory is
created on the same disk where the parent directory exists.
**Manual: do not automatically split directories**
When a new file or subdirectory needs to be created in a share, Unraid OS will only consider disks where the
parent directory already exists.
:end
:share_edit_included_disks_help:
Specify the disks which can be used by the share. By default all disks are included; that is, if specific
disks are not selected here, then the share may expand into *all* array disks.
:end
:share_edit_excluded_disks_help:
Specify the disks which can *not* be used by the share. By default no disks are excluded.
:end
:share_edit_cache_pool_help:
Specify whether new files and directories written on the share can be written onto the Cache disk/pool if present.
This setting also affects *mover* behavior.
**No** prohibits new files and subdirectories from being written onto the Cache disk/pool.
*Mover* will take no action so any existing files for this share that are on the cache are left there.
**Yes** indicates that all new files and subdirectories should be written to the Cache disk/pool, provided
enough free space exists on the Cache disk/pool.
If there is insufficient space on the Cache disk/pool, then new files and directories are created on the array.
When the *mover* is invoked, files and subdirectories are transferred off the Cache disk/pool and onto the array.
**Only** indicates that all new files and subdirectories must be writen to the Cache disk/pool.
If there is insufficient free space on the Cache disk/pool, *create* operations will fail with *out of space* status.
*Mover* will take no action so any existing files for this share that are on the array are left there.
**Prefer** indicates that all new files and subdirectories should be written to the Cache disk/pool, provided
enough free space exists on the Cache disk/pool.
If there is insufficient space on the Cache disk/pool, then new files and directories are created on the array.
When the *mover* is invoked, files and subdirectories are transferred off the array and onto the Cache disk/pool.
**NOTE:** Mover will never move any files that are currently in use.
This means if you want to move files associated with system services such as Docker or VMs then you need to
disable these services while mover is running.
:end
:share_edit_copy_on_write_help:
Set to **No** to cause the *btrfs* NOCOW (No Copy-on-Write) attribute to be set on the share directory
when created on a device formatted with *btrfs* file system. Once set, newly created files and
subdirectories on the device will inherit the NOCOW attribute. We recommend this setting for shares
used to store vdisk images, including the Docker loopback image file. This setting has no effect
on non-btrfs file systems.
Set to **Auto** for normal operation, meaning COW **will** be in effect on devices formatted with *btrfs*.
:end
:share_edit_status_help:
Share does *not* contain any data and may be deleted if not needed any longer.
:end
:share_edit_delete_help:
Share can *not* be deleted as long as it contains data. Be aware that some data can be hidden. See also [SMB Settings](/Settings/SMB) -> Hide "dot" files.
:end
:smb_security_help:
*Read settings from* is used to preset the SMB security settings of the current selected share with the settings of an existing share.
Select the desired share name and press **Read** to copy the SMB security settings from the selected source.
*Write settings to* is used to copy the SMB security settings of the current selected share to one or more other existing shares.
Select the desired destinations and press **Write** to copy the SMB security settings to the selected shares.
:end
:smb_export_help:
This setting determines whether the share is visible and/or accessible. The 'Yes (hidden)' setting
will *hide* the share from *browsing* but is still accessible if you know the share name.
:end
:smb_time_machine_volume_help:
This limits the reported volume size, preventing Time Machine from using the entire real disk space
for backup. For example, setting this value to "1024" would limit the reported disk space to 1GB.
:end
:smb_case_sensitive_names_help:
Controls whether filenames are case-sensitive.
The default setting of **auto** allows clients that support case sensitive filenames (Linux CIFSVFS)
to tell the Samba server on a per-packet basis that they wish to access the file system in a case-sensitive manner (to support UNIX
case sensitive semantics). No Windows system supports case-sensitive filenames so setting this option to **auto** is the same as
setting it to No for them; however, the case of filenames passed by a Windows client will be preserved. This setting can result
in reduced peformance with very large directories because Samba must do a filename search and match on passed names.
A setting of **Yes** means that files are created with the case that the client passes, and only accessible using this same case.
This will speed very large directory access, but some Windows applications may not function properly with this setting. For
example, if "MyFile" is created but a Windows app attempts to open "MYFILE" (which is permitted in Windows), it will not be found.
A value of **Forced lower** is special: the case of all incoming client filenames, not just new filenames, will be set to lower-case.
In other words, no matter what mixed case name is created on the Windows side, it will be stored and accessed in all lower-case. This
ensures all Windows apps will properly find any file regardless of case, but case will not be preserved in folder listings.
Note this setting should only be configured for new shares.
:end
:smb_security_modes_help:
Summary of security modes:
**Public** All users including guests have full read/write access.
**Secure** All users including guests have read access, you select which of your users
have write access.
**Private** No guest access at all, you select which of your users have read/write or
read-only access.
:end
:smb_secure_access_help:
*Read settings from* is used to preset the SMB User Access settings of the current selected share with the settings of an existing share.
Select the desired share name and press **Read** to copy the SMB security settings from the selected source.
*Write settings to* is used to copy the SMB User Access settings of the current share to one or more other existing shares.
Select the desired destinations and press **Write** to copy the SMB User access settings to the selected shares.
:end
:smb_private_access_help:
*Read settings from* is used to preset the SMB User Access settings of the current selected share with the settings of an existing share.
Select the desired share name and press **Read** to copy the SMB security settings from the selected source.
*Write settings to* is used to copy the SMB User Access settings of the current share to one or more other existing shares.
Select the desired destinations and press **Write** to copy the SMB User access settings to the selected shares.
:end
:nfs_security_help:
*Read settings from* is used to preset the NFS security settings of the current selected share with the settings of an existing share.
Select the desired share name and press **Read** to copy the NFS security settings from the selected source.
*Write settings to* is used to copy the NFS security settings of the current selected share to one or more other existing shares.
Select the desired destinations and press **Write** to copy the NFS security settings to the selected shares.
:end
:user_add_username_help:
Usernames may be up to 40 characters long and must start with a **lower case letter** or an underscore,
followed by **lower case letters**, digits, underscores, or dashes. They can end with a dollar sign.
:end
:user_add_description_help:
Up to 64 characters. The characters ampersand (&) quote (") and colon (:) are not allowed.
:end
:user_add_custom_image_help:
The image will be scaled to 48x48 pixels in size. The maximum image file upload size is 95 kB (97,280 bytes).
:end
:user_password_help:
Up to 128 characters.
:end
:user_edit_description_help:
Up to 64 characters. The characters ampersand (&) quote (") and colon (:) are not allowed.
:end
:user_edit_custom_image_help:
The image will be scaled to 48x48 pixels in size. The maximum image file upload size is 512 kB (524,288 bytes).
:end
:cpu_vms_help:
This page gives a total view of the current CPU pinning assignments for VMs.<br>
It also allows to modify these assignments.
Running VMs are **stopped first** and restarted after the modification.<br>
Stopped VMs are instantly modified and new assignments become active when the VM is started.
When ***Apply*** is pressed a scan is performed to find the changes, subsequently only VMs which have changes are modified in parallel.
*Important: Please wait until all updates are finished before leaving this page*.
:end
:cpu_pinning_help:
This page gives a total view of the current CPU pinning assignments for Docker containers.<br>
It also allows to modify these assignments.
Running containers are **stopped first** and restarted after the modification.<br>
Stopped containers are instantly modified and new assignments become active when the user manually starts the container.
When ***Apply*** is pressed a scan is performed to find the changes, subsequently containers which have changes are modified in parallel.
*Important: Please wait until all updates are finished before leaving this page*.
By default NO cores are selected for a Docker container, which means it uses all available cores.<br>
Do not select **ALL** cores for containers, just select **NO** cores if you want unrestricted core use.
Do not select cores for containers which are *isolated*.
By design a container will only use a single core (the lowest numbered core) when multiple isolated cores are selected.<br>
Usually this is not what a user wants when selecting multiple cores.
:end
:cpu_isolation_help:
CPU isolation allows the user to specify CPU cores that are to be explicitly reserved for assignment (to VMs or Docker containers).
This is incredibly important for gaming VMs to run smoothly because even if you manually pin your Docker containers to not overlap with your gaming VM,
the host OS can still utilize those same cores as the guest VM needs for things like returning responses for the webGui, running a parity check, btrfs operations, etc.
:end
:timezone_help:
Select your applicable time zone from the drop-down list.
:end
:use_ntp_help:
Select 'Yes' to use Network Time Protocol to keep your server time accurate.
We **highly** recommend the use of a network time server, especially if you plan on using Active Directory.
Note: if using `pool.ntp.org` time servers, please also refer to [their documentation](http://www.pool.ntp.org/en/use.html).
:end
:ntp_server1_help:
This is the primary NTP server to use. Enter a FQDN or an IP address.
:end
:ntp_server2_help:
This is the alternate NTP server to use if NTP Server 1 is down.
:end
:ntp_server3_help:
This is the alternate NTP Server to use if NTP Servers 1 and 2 are both down.
:end
:ntp_server4_help:
This is the alternate NTP Server to use if NTP Servers 1, 2, and 3 are all down.
:end
:current_time_help:
Enter the current time-of-day. Use format YYYY-MM-DD HH:MM:SS. Greyed out when using NTP.
:end
:disk_enable_autostart_help:
If set to 'Yes' then if the device configuration is correct upon server start-up,
the array will be automatically Started and shares exported.<br>
If set to 'No' then you must Start the array yourself.
:end
:disk_spindown_delay_help:
This setting defines the 'default' time-out for spinning hard drives down after a period
of no I/O activity. You may override the default value for an individual disk on the Disk Settings
page for that disk.
:end
:disk_spinup_groups_help:
If set to 'Yes' then the [Spinup Groups](/Help) feature is enabled.
:end
:disk_default_partition_format_help:
Defines the type of partition layout to create when formatting hard drives 2TB in size and
smaller **only**. (All devices larger then 2TB are always set up with GPT partition tables.)
**MBR: unaligned** setting will create MBR-style partition table, where the single
partition 1 will start in the **63rd sector** from the start of the disk. This is the *traditional*
setting for virtually all MBR-style partition tables.
**MBR: 4K-aligned** setting will create an MBR-style partition table, where the single
partition 1 will start in the **64th sector** from the start of the disk. Since the sector size is 512 bytes,
this will *align* the start of partition 1 on a 4K-byte boundry. This is required for proper
support of so-called *Advanced Format* drives.
Unless you have a specific requirement do not change this setting from the default **MBR: 4K-aligned**.
:end
:disk_default_file_system_help:
Defines the default file system type to create when an *unmountable* array device is formatted.
The default file system type for a single or multi-device cache is always Btrfs.
:end
:disk_shutdown_timeout_help:
When shutting down the server, this defines how long to wait in seconds for *graceful* shutdown before forcing
shutdown to continue.
:end
:disk_tunable_poll_attributes_help:
This defines the disk SMART polling interval, in seconds. A value of 0 disables SMART polling (not recommended).
:end
:disk_tunable_enable_ncq_help:
If set to **No** then *Native Command Queuing* is disabled for all array devices that support NCQ.
**Auto** leaves the setting for each device as-is.
Note: You must reboot after selecting Auto for setting to take effect.
:end
:disk_tunable_nr_requests_help:
This defines the `nr_requests` device driver setting for all array devices.
**Auto** leaves the setting for each device as-is.
Note: if you set to blank and click Apply, the setting is restored to its default, and you must reboot for setting to take effect.
:end
:disk_tunable_scheduler_help:
Selects which kernel I/O scheduler to use for all array devices.
**Auto** leaves the setting for each device as-is (mq-deadline).
Note: You must reboot after selecting Auto for setting to take effect.
:end
:disk_tunable_md_num_stripes_help:
This is the size of the *stripe pool* in number of *stripes*. A *stripe* refers to a data structure that facilitates parallel 4K read/write
operations necessary for a parity-protected array.
Note: if you set to blank and click Apply, the setting is restored to its default, and will take effect after reboot.
:end
:disk_tunable_md_queue_limit_help:
This is a number in [1..100] which is the maximum steady-load percentage of the stripe pool permitted to be in use.
Note: if you set to blank and click Apply, the setting is restored to its default.
:end
:disk_tunable_md_sync_limit_help:
This is a number in [0..100] which is the maximum percentage of the stripe pool allocated for parity sync/check in the presence of other I/O.
Note: if you set to blank and click Apply, the setting is restored to its default.
:end
:disk_tunable_md_write_method_help:
Selects the method to employ when writing to enabled disk in parity protected array.
*Auto* selects `read/modify/write`.
:end
:disk_default_warning_utilization_help:
*Warning disk utilization* sets the default warning threshold for all hard disks utilization. Exceeding this threshold will result in a warning notification.
When the warning threshold is set equal or greater than the critical threshold, there will be only critical notifications (warnings are not existing).
A value of zero will disable the warning threshold (including notifications).
:end
:disk_default_critical_utilization_help:
*Critical disk utilization* sets the default critical threshold for all hard disks utilization. Exceeding this threshold will result in an alert notification.
A value of zero will disable the critical threshold (including notifications).
:end
:disk_default_warning_temperature_help:
*Warning disk temperature* sets the default warning threshold for all hard disks temperature. Exceeding this threshold will result in a warning notification.
A value of zero will disable the warning threshold (including notifications).
:end
:disk_default_critical_temperature_help:
*Critical disk temperature* sets the default critical threshold for all hard disks temperature. Exceeding this threshold will result in an alert notification.
A value of zero will disable the critical threshold (including notifications).
:end
:disk_default_smart_notification_help:
SMART notifications are generated on either an increasing RAW value of the attribute, or a decreasing NORMALIZED value which reaches a predefined threshold set by the manufacturer.
This section is used to set the global settings for all disks. It is possible to adjust settings for individual disks.
:end
:disk_default_smart_tolerance_help:
A tolerance level may be given to prevent that small changes result in a notification. Setting a too high tolerance level may result in critical changes without a notification.
This section is used to set the global settings for all disks. It is possible to adjust settings for individual disks.
:end
:disk_default_smart_controller_help:
By default automatic controller selection is done by smartctl to read the SMART information. Certain controllers however need specific settings for smartctl to work.
Use this setting to select your controller type and fill-in the specific disk index and device name for your situation. Use the manufacturer's documentation to find the relevant information.
This section is used to set the global settings for all disks. It is possible to adjust settings for individual disks.
:end
:disk_default_smart_attribute_help:
The user can enable or disable notifications for the given SMART attributes. It is recommended to keep the default, which is ALL selected attributes,
when certain attributes are not present on your hard disk or do not provide the correct information, these may be excluded.
In addition custom SMART attributes can be entered to generate notifications. Be careful in this selection,
it may cause an avalance of notifcations if inappropriate SMART attributes are chosen.
This section is used to set the global settings for all disks. It is possible to adjust settings for individual disks.
:end
:docker_repositories_help:
Use this field to add template repositories.
Docker templates are used to facilitate the creation and re-creation of Docker containers. Please setup one per line.
For a list of popular community-supported repositories, visit here: <a href="http://lime-technology.com/forum/index.php?topic=37958.0" target="_blank">http://lime-technology.com/forum/index.php?topic=37958.0</a>
:end
:docker_enable_help:
Before you can start the Docker service for the first time, please specify an image file for Docker to install to.
Once started, Docker will always automatically start after the array has been started.
:end
:docker_vdisk_size_help:
If the system needs to create a new docker image file, this is the default size to use specified in GB.
To resize an existing image file, specify the new size here. Next time the Docker service is started the file (and file system) will increased to the new size (but never decreased).
:end
:docker_vdisk_location_help:
You must specify an image file for Docker. The system will automatically create this file when the Docker service is first started.
The image file name must have the extension .img, If not the input is not accepted and marked red.
It is recommended to create this image file outside the array, e.g. on the Cache pool. For best performance SSD devices are preferred.
:end
:docker_appdata_location_help:
You can specify a folder to automatically generate and store subfolders containing configuration files for each Docker app (via the /config mapped volume).
The folder's path must end with a trailing slash (/) character. If not the input is not accepted and marked red.
It is recommended to create this folder outside the array, e.g. on the Cache pool. For best performance SSD devices are preferred.
Only used when adding new Docker apps. Editing existing Docker apps will not be affected by this setting.
:end
:docker_log_rotation_help:
By default LOG rotation is disabled and will create a single LOG file of unlimited size.
Enable LOG rotation to limit the size of the LOG file and specify the number of files to keep in the rotation scheme.
:end
:docker_log_file_size_help:
Specifies the maximum LOG size. When exceeded LOG rotation will occur.
:end
:docker_log_file_number_help:
Specifies the number of LOG files when LOG rotation is done.
:end
:docker_authoring_mode_help:
If set to **Yes**, when creating/editing containers the interface will be present with some extra fields related to template authoring.