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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
|
#!/bin/bash
#/**
#@file FileSystem.lib
#@brief Librería o clase FileSystem
#@class FileSystem
#@brief Funciones para gestión de sistemas de archivos.
#@version 1.1.0
#@warning License: GNU GPLv3+
#*/
#/**
# ogCheckFs int_ndisk int_nfilesys
#@brief Comprueba el estado de un sistema de archivos.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return (nada)
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
#@note Requisitos: *fsck*
#@warning No se comprueban sistemas de archivos montados o bloqueados.
#@todo Definir salidas.
#@version 0.9 - Primera adaptación para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-10-07
#@version 1.0.2 - Ignorar códigos de salida de comprobación (no erróneos).
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2011-09-23
#@version 1.0.4 - Soportar HFS/HFS+.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-05-21
#@version 1.0.5 - Desmontar antes de comprobar, soportar Btrfs y ExFAT.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-09-05
#@version 1.1.0 - Soportar F2FS.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-05-03
#*/ ##
function ogCheckFs ()
{
# Variables locales.
local PART TYPE PROG PARAMS CODES ERRCODE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
TYPE=$(ogGetFsType $1 $2)
case "$TYPE" in
EXT[234]|CACHE) PROG="e2fsck"; PARAMS="-y"; CODES=(1 2) ;;
BTRFS) PROG="btrfsck"; CODES=(1) ;;
REISERFS) PROG="fsck.reiserfs"; PARAMS="<<<\"Yes\""; CODES=(1 2) ;;
REISER4) PROG="fsck.reiser4"; PARAMS="-ay" ;;
JFS) PROG="fsck.jfs"; CODES=(1 2) ;;
XFS) PROG="xfs_repair" ;;
F2FS) PROG="fsck.f2fs" ;;
NTFS) PROG="ntfsfix" ;;
EXFAT) PROG="fsck.exfat" ;;
FAT32) PROG="dosfsck"; PARAMS="-a"; CODES=(1) ;;
FAT16) PROG="dosfsck"; PARAMS="-a"; CODES=(1) ;;
FAT12) PROG="dosfsck"; PARAMS="-a"; CODES=(1) ;;
HFS) PROG="fsck.hfs"; PARAMS="-f" ;;
HFSPLUS) PROG="fsck.hfs"; PARAMS="-f" ;;
UFS) PROG="fsck.ufs" ;;
ZFS) PROG="fsck.zfs" ;;
*) ogRaiseError $OG_ERR_PARTITION "$1, $2, $TYPE"
return $? ;;
esac
# Error si el sistema de archivos esta montado o bloqueado.
ogUnmount $1 $2
if ogIsMounted $1 $2; then
ogRaiseError $OG_ERR_PARTITION "$1 $2" # Indicar nuevo error
return $?
fi
if ogIsLocked $1 $2; then
ogRaiseError $OG_ERR_LOCKED "$1 $2"
return $?
fi
# Comprobar en modo uso exclusivo.
ogLock $1 $2
trap "ogUnlock $1 $2" 1 2 3 6 9
eval $PROG $PARAMS $PART
ERRCODE=$?
case $ERRCODE in
0|${CODES[*]})
ERRCODE=0 ;;
127) ogRaiseError $OG_ERR_NOTEXEC "$PROG"
ERRCODE=$OG_ERR_NOTEXEC ;;
*) ogRaiseError $OG_ERR_PARTITION "$1 $2"
ERRCODE=$OG_ERR_PARTITION ;;
esac
ogUnlock $1 $2
return $ERRCODE
}
#/**
# ogExtendFs int_ndisk int_nfilesys
#@brief Extiende un sistema de archivos al tamaño de su partición.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return (nada)
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
#@note Requisitos: *resize*
#@version 0.1 - Integracion para Opengnsys - EAC: EnlargeFileSystem() en ATA.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 0.9 - Primera adaptacion para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-23
#@version 1.0.5 - Soporte para BTRFS.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-06-28
#*/ ##
function ogExtendFs ()
{
# Variables locales.
local PART TYPE PROG PARAMS ERRCODE DOMOUNT
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
# Redimensionar al tamano máximo según el tipo de partición.
TYPE=$(ogGetFsType $1 $2)
case "$TYPE" in
EXT[234]) PROG="resize2fs"; PARAMS="-f" ;;
BTRFS) PROG="btrfs"; PARAMS="filesystem resize max"
DOMOUNT=1 # Debe estar montado.
;;
REISERFS|REISER4)
PROG="resize_reiserfs"; PARAMS="-f" ;;
F2FS) ;; # No se reduce (por el momento).
JFS) ;; # No se reduce (por el momento).
NILFS2) ;; # No se reduce (probar "nilfs-resize").
XFS) ;; # No se reduce (por el momento).
NTFS) PROG="ntfsresize"; PARAMS="<<<\"y\" -f" ;;
EXFAT) ;; # No se reduce (por el momento).
FAT32|FAT16) ;; # No se reduce (probar "fatresize").
HFS|HFSPLUS) ;; # No se reduce (por el momento).
UFS) ;; # No se reduce (por el momento).
*) ogRaiseError $OG_ERR_PARTITION "$1 $2 $TYPE"
return $? ;;
esac
# Salida normal si no se va a aplicar la operación.
[ -z "$PROG" ] && return
# Error si el sistema de archivos no se queda en el estado de montaje adecuado.
if [ "$DOMOUNT" ]; then
PART=$(ogMount $1 $2) || return $? # Indicar nuevo error
else
ogUnmount $1 $2 2>/dev/null
if ogIsMounted $1 $2; then
ogRaiseError $OG_ERR_PARTITION "$1 $2" # Indicar nuevo error
return $?
fi
fi
# Error si el sistema de archivos está bloqueado.
if ogIsLocked $1 $2; then
ogRaiseError $OG_ERR_LOCKED "$1 $2"
return $?
fi
# Redimensionar en modo uso exclusivo.
ogLock $1 $2
trap "ogUnlock $1 $2" 1 2 3 6 9
eval $PROG $PARAMS $PART &>/dev/null
ERRCODE=$?
case $ERRCODE in
0) ;;
127) ogRaiseError $OG_ERR_NOTEXEC "$PROG"
ERRCODE=$OG_ERR_NOTEXEC ;;
*) ogRaiseError $OG_ERR_PARTITION "$1 $2"
ERRCODE=$OG_ERR_PARTITION ;;
esac
ogUnlock $1 $2
return $ERRCODE
}
#/**
# ogFormat int_ndisk int_nfilesys | CACHE
#@see ogFormatFs ogFormatCache
#*/ ##
function ogFormat ()
{
case "$*" in
CACHE|cache) ogFormatCache ;;
*) ogFormatFs "$@" ;;
esac
}
#/**
# ogFormatFs int_ndisk int_nfilesys [type_fstype] [str_label]
#@brief Formatea un sistema de ficheros según el tipo de su partición.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@param type_fstype mnemónico de sistema de ficheros a formatear (opcional al reformatear)
#@param str_label etiqueta de volumen (opcional)
#@return (por determinar)
#@exception OG_ERR_FORMAT Formato de ejecución incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@exception OG_ERR_PARTITION Partición no accesible o desconocida.
#@note Requisitos: mkfs*
#@warning No formatea particiones montadas ni bloqueadas.
#@todo Definir salidas.
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-10-08
#@version 1.0.4 - Solucionado error cuando no se detecta tipo de sistema de ficheros pero si se indica.
#@author Universidad de Huelva
#@date 2012-04-11
#@version 1.0.5 - Comprobar errores al inicio e independizar del tipo de tabla de particiones.
#@author Universidad de Huelva
#@date 2013-05-16
#@version 1.1.0 - Soportar F2FS y NILFS.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-05-03
#*/ ##
function ogFormatFs ()
{
# Variables locales
local PART ID TYPE LABEL PROG PARAMS LABELPARAM ERRCODE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys [str_label]" \
"$FUNCNAME 1 1" \
"$FUNCNAME 1 1 EXT4" \
"$FUNCNAME 1 1 \"DATA\"" \
"$FUNCNAME 1 1 EXT4 \"DATA\""
return
fi
# Error si no se reciben entre 2 y 4 parámetros.
[ $# -ge 2 -a $# -le 4 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener fichero de dispositivo.
PART="$(ogDiskToDev $1 $2)" || return $?
# Error si la partición está montada o bloqueada.
if ogIsMounted $1 $2; then
ogRaiseError $OG_ERR_DONTFORMAT "$MSG_MOUNT: $1 $2"
return $?
fi
if ogIsLocked $1 $2; then
ogRaiseError $OG_ERR_LOCKED "$1 $2"
return $?
fi
# Si no se indica el tipo de sisitema de archivos, intentar obtenerlo.
TYPE="${3:-$(ogGetFsType $1 $2)}"
# Error, si no especifica el tipo de sistema de archivos a formatear.
[ -n "$TYPE" ] || ogRaiseError $OG_ERR_FORMAT "$1 $2 ..." || return $?
# Elegir tipo de formato.
case "$TYPE" in
EXT2) PROG="mkfs.ext2"; PARAMS="-F" ;;
EXT3) PROG="mkfs.ext3"; PARAMS="-F" ;;
EXT4) PROG="mkfs.ext4"; PARAMS="-F" ;;
BTRFS) PROG="mkfs.btrfs"; PARAMS="-f" ;;
REISERFS) PROG="mkfs.reiserfs"; PARAMS="-f"; LABELPARAM="-l" ;;
REISER4) PROG="mkfs.reiser4"; PARAMS="-f <<<\"y\"" ;;
XFS) PROG="mkfs.xfs"; PARAMS="-f" ;;
JFS) PROG="mkfs.jfs"; PARAMS="<<<\"y\"" ;;
F2FS) PROG="mkfs.f2fs"; LABELPARAM="-l" ;;
NILFS2) PROG="mkfs.nilfs2"; PARAMS="-f" ;;
LINUX-SWAP) PROG="mkswap" ;;
NTFS) PROG="mkntfs"; PARAMS="-f" ;;
EXFAT) PROG="mkfs.exfat"; LABELPARAM="-n" ;;
FAT32) PROG="mkdosfs"; PARAMS="-F 32"; LABELPARAM="-n" ;;
FAT16) PROG="mkdosfs"; PARAMS="-F 16"; LABELPARAM="-n" ;;
FAT12) PROG="mkdosfs"; PARAMS="-F 12"; LABELPARAM="-n" ;;
HFS) PROG="mkfs.hfs" ;;
HFSPLUS) PROG="mkfs.hfsplus"; LABELPARAM="-v" ;;
UFS) PROG="mkfs.ufs"; PARAMS="-O 2" ;;
*) ogRaiseError $OG_ERR_PARTITION "$1 $2 $TYPE"
return $? ;;
esac
# Etiquetas de particion.
if [ -z "$LABEL" ]; then
[ "$4" != "CACHE" ] || ogRaiseError $OG_ERR_FORMAT "$MSG_RESERVEDVALUE: CACHE" || return $?
[ -n "$4" ] && PARAMS="$PARAMS ${LABELPARAM:-"-L"} $4"
else
PARAMS="$PARAMS ${LABELPARAM:-"-L"} $LABEL"
fi
# Formatear en modo uso exclusivo (desmontar siempre).
ogLock $1 $2
trap "ogUnlock $1 $2" 1 2 3 6 9
umount $PART 2>/dev/null
eval $PROG $PARAMS $PART 2>/dev/null
ERRCODE=$?
case $ERRCODE in
0) ;;
127) ogRaiseError $OG_ERR_NOTEXEC "$PROG" ;;
*) ogRaiseError $OG_ERR_PARTITION "$1 $2" ;;
esac
ogUnlock $1 $2
return $ERRCODE
}
#/**
# ogGetFsSize int_ndisk int_npartition [str_unit]
#@brief Muestra el tamanio del sistema de archivos indicado, permite definir la unidad de medida, por defecto GB
#@param int_ndisk nº de orden del disco
#@param int_npartition nº de orden de la partición
#@param str_unit unidad (opcional, por defecto: KB)
#@return float_size - Tamaño del sistema de archivos
#@note str_unit = { KB, MB, GB, TB }
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o partición no corresponden con un dispositivo.
#@version 0.1 - Integracion para Opengnsys - EAC: SizeFileSystem() en FileSystem.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 1.0.4 - Adaptación de las salidas.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-06-18
#*/ ##
function ogGetFsSize ()
{
# Variables locales.
local MNTDIR UNIT VALUE FACTOR SIZE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition [str_unit]" \
"$FUNCNAME 1 1 => 15624188" \
"$FUNCNAME 1 1 KB => 15624188"
return
fi
# Error si no se reciben 2 o 3 parámetros.
[ $# == 2 ] || [ $# == 3 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener unidad y factor de medida.
UNIT="$3"
UNIT=${UNIT:-"KB"}
case "$UNIT" in
[kK]B)
FACTOR=1 ;;
MB) FACTOR=1024 ;;
GB) FACTOR=$[1024*1024] ;;
TB) FACTOR=$[1024*1024*1024] ;;
*) ogRaiseError $OG_ERR_FORMAT "$3 != { KB, MB, GB, TB }"
return $? ;;
esac
# Obtener el tamaño del sistema de archivo (si no está formateado; tamaño = 0).
MNTDIR="$(ogMount $1 $2 2>/dev/null)"
if [ -n "$MNTDIR" ]; then
VALUE=$(df -BK "$MNTDIR" | awk '{getline; print $2}')
SIZE=$(echo "$VALUE $FACTOR" | awk '{printf "%f\n", $1/$2}')
else
SIZE=0
fi
# Devolver el tamaño (quitar decimales si son 0).
echo ${SIZE%.0*}
}
#/**
# ogGetFsType int_ndisk int_nfilesys
#@brief Devuelve el mnemonico con el tipo de sistema de archivos.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Mnemonico
#@note Mnemonico: { EXT2, EXT3, EXT4, BTRFS, REISERFS, XFS, JFS, FAT12, FAT16, FAT32, NTFS, LINUX-SWAP, LINUX-LVM, LINUX-RAID, HFS, HFSPLUS, CACHE }
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@version 0.1 - Integracion para Opengnsys - EAC: TypeFS() en ATA.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 0.9 - Primera adaptacion para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-07-21
#@version 1.0.2 - Obtención de datos reales de sistemas de ficheros.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2011-12-02
#@version 1.0.5 - Usar "blkid" para detectar tipo de sistema de archivo.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2014-06-10
#@version 1.1.0 - Detectar volumen ZFS.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2014-11-14
#*/ ##
function ogGetFsType ()
{
# Variables locales.
local PART TYPE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1 => NTFS"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Detectar tipo de sistema de archivo (independientemente del tipo de partición).
PART=$(ogDiskToDev "$1" "$2") || return $?
if [[ "$PART" =~ ^/ ]]; then
TYPE=$(blkid -o export $PART | awk -F= '$1~/^TYPE/ { print toupper($2) }')
else
zfs mount $PART 2>/dev/null
TYPE=$(mount | awk "\$1==\"$PART\" { print toupper(\$5) }")
fi
# Componer valores correctos.
case "$TYPE" in
EXT4) # Comprobar si es caché o Ext4.
if [ "$1 $2" == "$(ogFindCache)" ]; then
ogIsFormated $1 $2 2>/dev/null && TYPE="CACHE"
fi
;;
VFAT) TYPE="$(blkid -po export $PART | awk -F= '$1~/^VERSION$/ { print toupper($2) }')" ;;
SWAP) TYPE="LINUX-SWAP" ;;
LVM*) TYPE="LINUX-LVM" ;;
*RAID*) TYPE="LINUX-RAID" ;;
ZFS_MEMBER) TYPE="ZVOL" ;;
*_MEMBER) TYPE="${TYPE/_MEMBER/}" ;;
esac
[ -n "$TYPE" ] && echo "$TYPE"
}
#/**
# ogGetMountPoint int_ndisk int_nfilesys
#@brief Devuelve el punto de montaje de un sistema de archivos.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Punto de montaje
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@note Requisitos: \c mount* \c awk
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-10-15
#@version 1.0.6 - Usar comando findmnt.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2014-09-04
#*/ ##
function ogGetMountPoint ()
{
# Variables locales
local PART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1 => /mnt/sda1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
# Devolver punto de montaje.
findmnt -n -o TARGET $PART
}
#/**
# ogIsFormated int_ndisk int_nfilesys
#@brief Comprueba si un sistema de archivos está formateado.
#@param int_ndisk nº de orden del disco o volumen.
#@param int_nfilesys nº de orden del sistema de archivos
#@return Código de salida: 0 - formateado, 1 - sin formato o error.
#@version 0.91 - Adaptación inicial para comprobar que existe caché.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2010-03-18
#@version 1.0.1 - Devolver falso en caso de error.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2011-05-18
#@version 1.0.5 - Dejar de usar "parted".
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-09-04
#@version 1.1.0 - Comprobar sin montar el sistema de ficheros.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-01-21
#*/ ##
function ogIsFormated ()
{
# Variables locales
local PART
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"if $FUNCNAME 1 1; then ... ; fi"
return
fi
# Falso, en caso de error.
[ $# == 2 ] || return 1
PART="$(ogDiskToDev $1 $2 2>/dev/null)" || return 1
# Revisar tipo de sistema de ficheros.
if [[ "$PART" =~ ^/ ]]; then
# Sistemas de ficheros genéricos.
test -n "$(blkid -s TYPE $PART | egrep -vi "swap|_member")"
else
# ZFS.
test "$(zfs list -Hp -o canmount $PART 2>/dev/null)" = "on"
fi
}
#/**
# ogIsLocked int_ndisk int_npartition
#@see ogIsPartitionLocked
#*/
function ogIsLocked ()
{
ogIsPartitionLocked "$@"
}
#/**
# ogIsPartitionLocked int_ndisk int_npartition
#@brief Comprueba si una partición o su disco están bloqueados por una operación de uso exclusivo.
#@param int_ndisk nº de orden del disco
#@param int_npartition nº de orden de la partición
#@return Código de salida: 0 - bloqueado, 1 - sin bloquear o error.
#@note Los ficheros de bloqueo se localizan en \c /var/lock/dev, siendo \c dev el dispositivo de la partición o de su disco, sustituyendo el carácter "/" por "-".
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-03
#@version 1.0.1 - Devolver falso en caso de error.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2011-05-18
#@version 1.1.0 - Comprobar si el disco está también bloqueado.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-04-08
#*/ ##
function ogIsPartitionLocked ()
{
# Variables locales
local DISK PART LOCKDISK LOCKPART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
"if $FUNCNAME 1 1; then ... ; fi"
return
fi
# Falso, en caso de error.
[ $# == 2 ] || return 1
PART="$(ogDiskToDev $1 $2 2>/dev/null)" || return 1
DISK="$(ogDiskToDev $1)"
# Comprobar existencia de fichero de bloqueo de la partición o de su disco.
LOCKDISK="/var/lock/lock${DISK//\//-}"
LOCKPART="/var/lock/lock${PART//\//-}"
test -f $LOCKDISK -o -f $LOCKPART
}
#/**
# ogIsMounted int_ndisk int_nfilesys
#@brief Comprueba si un sistema de archivos está montado.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Código de salida: 0 - montado, 1 - sin montar o error.
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-10-15
#@version 1.0.1 - Devolver falso en caso de error.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2011-05-18
#*/ ##
function ogIsMounted ()
{
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"if $FUNCNAME 1 1; then ... ; fi"
return
fi
# Falso, en caso de error.
[ $# == 2 ] || return 1
test -n "$(ogGetMountPoint $1 $2)"
}
#/**
# ogIsReadonly int_ndisk int_nfilesys
#@brief Comprueba si un sistema de archivos está montado solo de lectura.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Código de salida: 0 - montado solo de lectura, 1 - con escritura o no montado.
#@version 1.1.0 - Primera versión para OpenGnsys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-01-20
#*/ ##
function ogIsReadonly ()
{
# Variables locales
local PART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_filesys" \
"if $FUNCNAME 1 1; then ... ; fi"
return
fi
# Falso, en caso de error.
[ $# == 2 ] || return 1
PART="$(ogDiskToDev $1 $2 2>/dev/null)" || return 1
test -n "$(findmnt -n -o OPTIONS $PART | awk 'BEGIN {RS=","} /^ro$/ {print}')"
}
#/**
# ogIsWritable int_ndisk int_nfilesys
#@brief Comprueba si un sistema de archivos está montado de lectura y escritura.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Código de salida: 0 - lectura y escritura, 1 - solo lectura o no montado.
#@version 1.0.5 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2013-10-09
#*/ ##
function ogIsWritable ()
{
# Variables locales
local PART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_filesys" \
"if $FUNCNAME 1 1; then ... ; fi"
return
fi
# Falso, en caso de error.
[ $# == 2 ] || return 1
PART="$(ogDiskToDev $1 $2 2>/dev/null)" || return 1
test -n "$(findmnt -n -o OPTIONS $PART | awk 'BEGIN {RS=","} /^rw$/ {print}')"
}
#/**
# ogLock int_ndisk int_npartition
#@see ogLockPartition
#*/
function ogLock ()
{
ogLockPartition "$@"
}
#/**
# ogLockPartition int_ndisk int_npartition
#@brief Genera un fichero de bloqueo para una partición en uso exlusivo.
#@param int_ndisk nº de orden del disco
#@param int_npartition nº de orden de la partición
#@return (nada)
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@note El fichero de bloqueo se localiza en \c /var/lock/part, siendo \c part el dispositivo de la partición, sustituyendo el carácter "/" por "-".
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-03
#*/ ##
function ogLockPartition ()
{
# Variables locales
local PART LOCKFILE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
"$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
# Crear archivo de bloqueo exclusivo.
LOCKFILE="/var/lock/lock${PART//\//-}"
touch $LOCKFILE
}
#/**
# ogMount int_ndisk int_nfilesys
#@see ogMountFs ogMountCache ogMountCdrom
#*/ ##
function ogMount ()
{
case "$*" in
CACHE|cache)
ogMountCache ;;
CDROM|cdrom)
ogMountCdrom ;;
*) ogMountFs "$@" ;;
esac
}
#/**
# ogMountFirstFs int_ndisk
#@brief Monta el primer sistema de archivos disponible en el disco.
#@param int_ndisk nº de orden del disco
#@return Punto de montaje del primer sistema de archivos detectado
#*/ ##
function ogMountFirstFs ()
{
# Variables locales
local PART NPARTS MNTDIR
# Error si no se recibe 1 parámetro.
[ $# == 1 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener nº de particiones del disco.
NPARTS=$(ogGetPartitionsNumber "$1") || return $?
for (( PART = 1; PART <= NPARTS; PART++ )); do
MNTDIR=$(ogMount $1 $PART 2>/dev/null)
if [ -n "$MNTDIR" ]; then
echo "$MNTDIR"
return 0
fi
done
ogRaiseError $OG_ERR_NOTFOUND "$1"
return $OG_ERR_NOTFOUND
}
#/**
# ogMountFs int_ndisk int_nfilesys
#@brief Monta un sistema de archivos.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Punto de montaje
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@exception OG_ERR_PARTITION Tipo de particion desconocido o no se puede montar.
#@version 0.1 - Integracion para Opengnsys - EAC: MountPartition() en FileSystem.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 0.9 - Primera version para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-28
#@version 1.0.5 - Independiente del tipo de sistema de ficheros.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2012-09-04
#@version 1.1.0 - Montar sistema de archivos ZFS y NTFS hibernado.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2016-09-19
#*/ ##
function ogMountFs ()
{
# Variables locales
local PART MNTDIR
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1 => /mnt/sda1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev "$1" "$2")" || return $?
# Comprobar si el sistema de archivos ya está montada.
MNTDIR="$(ogGetMountPoint $1 $2)"
# Si no, montarlo en un directorio de sistema.
if [ -z "$MNTDIR" ]; then
# Error si la particion esta bloqueada.
if ogIsLocked $1 $2; then
ogRaiseError $OG_ERR_LOCKED "$MSG_PARTITION, $1 $2"
return $?
fi
# El camino de un dispositivo normal comienza por el carácter "/".
if [[ "$PART" =~ ^/ ]]; then
# Crear punto de montaje o enlace simbólico para caché local.
MNTDIR=${PART/dev/mnt}
DEBUG="no"
if [ "$(ogFindCache)" == "$1 $2" -a -n "$OGCAC" ]; then
mkdir -p $OGCAC
ln -fs $OGCAC $MNTDIR
else
mkdir -p $MNTDIR
fi
unset DEBUG
# Montar sistema de archivos.
mount $PART $MNTDIR &>/dev/null || \
mount $PART $MNTDIR -o force,remove_hiberfile &>/dev/null
case $? in
0) # Correcto.
;;
14) # Intentar limpiar hibernación NTFS y montar.
ntfsfix -d $PART &>/dev/null && mount $PART $MNTDIR &>/dev/null || \
ogRaiseError $OG_ERR_PARTITION "$1, $2" || return $?
;;
*) # Probar montaje de solo lectura.
mount $PART $MNTDIR -o ro &>/dev/null || \
ogRaiseError $OG_ERR_PARTITION "$1, $2" || return $?
;;
esac
# Aviso de montaje de solo lectura.
if ogIsReadonly $1 $2; then
ogEcho warning "$FUNCNAME: $MSG_MOUNTREADONLY: \"$1, $2\""
fi
else
# Montar sistema de archivos ZFS (un ZPOOL no comienza por "/").
zfs mount $PART 2>/dev/null
fi
fi
echo "$MNTDIR"
}
#/**
# ogMountCdrom
#@brief Monta dispositivo óptico por defecto
#@return Punto de montaje
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_PARTITION Tipo de particion desconocido o no se puede montar.
#@version
#@author
#@date
#*/ ##
function ogMountCdrom ()
{
local DEV MNTDIR
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME" "$FUNCNAME"
return
fi
# Error si se reciben parámetros.
[ $# == 0 ] || ogRaiseError $OG_ERR_FORMAT || return $?
DEV="/dev/cdrom" # Por defecto
MNTDIR=$(mount | awk -v D=$DEV '{if ($1==D) {print $3}}')
if [ -z "$MNTDIR" ]; then
MNTDIR=${DEV/dev/mnt}
mkdir -p $MNTDIR
mount -t iso9660 $DEV $MNTDIR || ogRaiseError $OG_ERR_PARTITION "cdrom" || return $?
fi
echo $MNTDIR
}
#/**
# ogReduceFs int_ndisk int_nfilesys
#@brief Reduce el tamaño del sistema de archivos, sin tener en cuenta el espacio libre.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return int_tamañoKB - tamaño en KB
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@exception OG_ERR_PARTITION Partición desconocida o no accesible.
#@warning En Windows, se borran los ficheros de hiberanción y de paginación.
#@warning El sistema de archivos se amplía al mínimo + 10%.
#@note Requisitos: *resize*
#@version 0.1 - Integracion para Opengnsys - EAC: ReduceFileSystem() en ATA.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 0.9 - Primera version para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-23
#@version 0.9.2 - Añadir un 10% al tamaño mínimo requerido.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2010-09-27
#@version 1.0 - Deteccion automatica del tamaño minimo adecuado
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2011-02-24
#@version 1.0.6 - Integrar código de antigua función "ogReduceFsCheck".
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2014-10-28
#*/ ##
function ogReduceFs ()
{
# Variables locales
local PART BLKS SIZE MAXSIZE EXTRASIZE=0 RETVAL
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_nfilesys" \
"$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
# Redimensionar según el tipo de particion.
case "$(ogGetFsType $1 $2)" in
EXT[234])
ogUnmount $1 $2 2>/dev/null
# Ext2/3/4: Tamaño de los bloques del sistema de archivos
BLKS=$(tune2fs -l $PART | awk '/Block size/ {print int($3/512)}')
# Traduce el num. en sectores de 512B a tamano en MB.
#SIZE=$(resize2fs -P $PART 2>/dev/null | \
# awk -v B=$BLKS '/minimum size/ {print int($7*1.1*B/2048)}')
#resize2fs -fp $PART "${SIZE}M" &>/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
resize2fs -fpM $PART &>/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
;;
BTRFS)
MNTDIR=$(ogMount $1 $2)
# Calcular tamaño ocupado + 10%, redondeado + 1 (incluyendo letra de unidad).
SIZE=$(btrfs filesystem show $MNTDIR | awk -v P=$PART '{ if ($8==P) printf ("%d%s", $6*1.1+1, substr($6,match($6,/[A-Z]/),1)) }')
btrfs filesystem resize ${SIZE} $MNTDIR 2>/dev/null
;;
REISERFS|REISER4)
# Calcular tamaño ocupado + 10%.
MNTDIR=$(ogMount $1 $2)
SIZE=$[ $(df -k $MNTDIR | awk '{getline;print $3}') * 110 / 100 ]
ogUnmount $1 $2 2>/dev/null
resize_reiserfs -s${SIZE}K $PART <<<"y"
;;
F2FS) ;; # No se reduce (por el momento).
JFS) ;; # No se reduce (por el momento).
NILFS2) ;; # No se reduce (probar "nilfs-resize").
XFS) ;; # No se reduce (por el momento).
NTFS)
# Calcular tamaño ocupado + 10%.
ogUnmount $1 $2 &>/dev/null
read -e MAXSIZE SIZE <<<$(ntfsresize -fi $PART | \
awk '/device size/ {d=$4}
/resize at/ {r=int($5*1.1/1024+1)*1024}
END { print d,r}')
# Error si no puede obtenerse el tamaño máximo del volumen.
[ -n "$MAXSIZE" -a -n "$SIZE" ] || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
# Simular la redimensión y comprobar si es necesario ampliarala.
RETVAL=1
while [ $RETVAL != 0 -a $[ SIZE+=EXTRASIZE ] -lt $MAXSIZE ]; do
# Obtener espacio de relocalización y devolver código de salida
# (ntfsresize devuelve 0 si no necesita relocalizar).
EXTRASIZE=$(ntfsresize -fns $SIZE $PART 2>/dev/null | \
awk '/Needed relocations/ {print int($4*1.1/1024+1)*1024}'
exit ${PIPESTATUS[0]})
RETVAL=$?
done
# Redimensionar solo si hace falta.
if [ $SIZE -lt $MAXSIZE ]; then
ntfsresize -fs $SIZE $PART <<<"y" >/dev/null || ogRaiseError $OG_ERR_PARTITION "$1,$2" || return $?
fi
;;
EXFAT) ;; # No se reduce (por el momento).
FAT32|FAT16) ;; # No se reduce (probar "fatresize").
HFS|HFSPLUS) ;; # No se reduce (por el momento).
UFS) ;; # No se reduce (por el momento).
*) ogRaiseError $OG_ERR_PARTITION "$1,$2"
return $? ;;
esac
# Devuelve tamaño del sistema de ficheros.
ogGetFsSize $1 $2
}
#/**
# ogUnlock int_ndisk int_npartition
#@see ogUnlockPartition
#*/ ##
function ogUnlock ()
{
ogUnlockPartition "$@"
}
#/**
# ogUnlockPartition int_ndisk int_npartition
#@brief Elimina el fichero de bloqueo para una particion.
#@param int_ndisk nº de orden del disco
#@param int_npartition nº de orden de la partición
#@return (nada)
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@note El fichero de bloqueo se localiza en \c /var/lock/part, siendo \c part el dispositivo de la partición, sustituyendo el carácter "/" por "-".
#@version 0.9 - Primera versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-03
#*/ ##
function ogUnlockPartition ()
{
# Variables locales
local PART LOCKFILE
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" \
"$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición.
PART="$(ogDiskToDev $1 $2)" || return $?
# Borrar archivo de bloqueo exclusivo.
LOCKFILE="/var/lock/lock${PART//\//-}"
rm -f $LOCKFILE
}
#/**
# ogUnmount int_ndisk int_npartition
#@see ogUnmountFs
#*/ ##
function ogUnmount ()
{
ogUnmountFs "$@"
}
#/**
# ogUnmountFs int_ndisk int_nfilesys
#@brief Desmonta un sistema de archivos.
#@param int_ndisk nº de orden del disco
#@param int_nfilesys nº de orden del sistema de archivos
#@return Nada
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@warning La partición no está previamente montada o no se puede desmontar.
#@version 0.1 - Integracion para Opengnsys - EAC: UmountPartition() en FileSystem.lib
#@author Antonio J. Doblas Viso. Universidad de Malaga
#@date 2008-10-27
#@version 0.9 - Primera version para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009-09-28
#*/ ##
function ogUnmountFs ()
{
# Variables locales
local PART MNTDIR
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk int_npartition" "$FUNCNAME 1 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición y punto de montaje.
PART="$(ogDiskToDev $1 $2)" || return $?
MNTDIR="$(ogGetMountPoint $1 $2)"
# Si está montada, desmontarla.
if [ -n "$MNTDIR" ]; then
# Error si la particion está bloqueada.
if ogIsLocked $1 $2; then
ogRaiseError $OG_ERR_LOCKED "$MSG_PARTITION $1, $2"
return $?
fi
# Desmontar y borrar punto de montaje.
umount $PART 2>/dev/null || ogEcho warning "$FUNCNAME: $MSG_DONTUNMOUNT: \"$1, $2\""
rmdir $MNTDIR 2>/dev/null || rm -f $MNTDIR 2>/dev/null
else
ogEcho warning "$MSG_DONTMOUNT: \"$1,$2\""
fi
}
#/**
# ogUnmountAll int_ndisk
#@brief Desmonta todos los sistema de archivos de un disco, excepto el caché local.
#@param int_ndisk nº de orden del disco
#@return Nada
#@exception OG_ERR_FORMAT Formato incorrecto.
#@exception OG_ERR_NOTFOUND Disco o particion no corresponden con un dispositivo.
#@warning No se desmonta la partición marcada como caché local.
#@version 0.9 - Versión para OpenGnSys.
#@author Ramon Gomez, ETSII Universidad de Sevilla
#@date 2009/10/07
#*/ ##
function ogUnmountAll ()
{
# Variables locales
local DISK PART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk" "FUNCNAME 1"
return
fi
# Error si no se recibe 1 parámetro.
[ $# == 1 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición y punto de montaje.
DISK="$(ogDiskToDev $1)" || return $?
for ((PART=1; PART<=$(ogGetPartitionsNumber $1); PART++)); do
case "$(ogGetFsType $1 $PART)" in
CACHE) ;;
*) ogUnmount $1 $PART 2>/dev/null ;;
esac
done
}
#/**
# ogUnsetDirtyBit int_ndisk int_npart
#@brief Inhabilita el Dirty Bit del sistema de ficheros NTFS para evitar un CHKDSK en el primer arranque
#@param int_ndisk nº de orden del disco
#@param int_npart nº de orden de partición
#@return Nada
#@exception OG_ERR_FORMAT Formato incorrecto.
#@version 0.1 - Versión para OpenGnSys.
#@author Carmelo Cabezuelo, ASIC Universidad Politécnica de Valencia
#@date 2016/04/20
#*/ ##
function ogUnsetDirtyBit ()
{
# Variables locales
local PART
# Si se solicita, mostrar ayuda.
if [ "$*" == "help" ]; then
ogHelp "$FUNCNAME" "$FUNCNAME int_ndisk" "FUNCNAME 1"
return
fi
# Error si no se reciben 2 parámetros.
[ $# == 2 ] || ogRaiseError $OG_ERR_FORMAT || return $?
# Obtener partición y punto de montaje.
case "$(ogGetFsType $1 $2)" in
NTFS)
ogUnmount $1 $2 2>/dev/null
PART="$(ogDiskToDev $1 $2)" || return $?
ntfsfix -d $PART ;;
*) ;;
esac
}
#/**
# ogGetFreeSize int_disco int_partition str_SizeOutput
#@brief muestra informacion del tamaño total, datos y libre.
#@param int_ndisk nº de orden del disco
#@param int_npart nº de orden de partición
#@param str_unitSize unidad mostrada
#@return int_size:int_data:int_free
#@TODO Componer corretcamente esta función.
#@exception OG_ERR_FORMAT Formato incorrecto.
#@version
#@author
#@date
#*/ ##
function ogGetFreeSize ()
{
local particion unit factor valor
if [ $# = 0 ]
then
echo "sintaxis: ogGetFreeSize int_disco int_partition str_SizeOutput [ kB MB GB -default GB]-]" red
echo "devuelve int_size : int_data : int_free" red
return
fi
if [ $# -ge 2 ]
then
particion=`ogMount $1 $2 ` #1>/dev/null 2>&1
if [ -z $3 ]
then
unit=kB # s B kB MB GB TB %
else
unit=$3
fi
case $unit in
kB)
factor="1.024";
#valor=`df | grep $particion | awk -F" " '{size=$2*1.024; used=$3*1.024; free=$4*1.024; printf "%d:%d:%d", size,used,free}'`
valor=`df | grep $particion | awk -F" " '{size=$2*1.024; used=$3*1.024; free=$4*1.024; printf "%d", free}'`
;;
MB)
factor="1.024/1000";
valor=`df | grep $particion | awk -F" " '{size=$2*1.024/1000; used=$3*1.024/1000; free=$4*1.024/1000; printf "%d:%d:%d", size,used,free}'`
;;
GB)
factor="1.024/1000000";
valor=`df | grep $particion | awk -F" " '{size=$2*1.024/1000000; used=$3*1.024/1000000; free=$4*1.024/1000000; printf "%f:%f:%f", size,used,free}'`
;;
esac
#echo $valor
#NumberRound $valor
#valor=`NumberRound $valor`;
echo $valor
fi
}
|