-
Notifications
You must be signed in to change notification settings - Fork 0
/
Backup-Carpeta-Root.sh
101 lines (75 loc) · 1.72 KB
/
Backup-Carpeta-Root.sh
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
#!/bin/bash
##
## @Author Jehú Marcos Herrera Puentes
## @Copyright Copyright © Jehú Marcos Herrera Puentes
## @License https://www.gnu.org/licenses/gpl-3.0.html
## @Github https://github.com/JMarcosHP
##------------------------
##-- Variables --
##------------------------
username=$(whoami)
fecha=$(date +%d-%m-%Y)
hora=$(date +%I:%M)
nombre=Backup
destino=""
##------------------------
## Comprobación de Root
if [ $username != "root" ]; then
echo Para realizar un backup completo del sistema se requieren priviliegios de root.
exit 0
fi 2> /dev/null
## Ruta de Destino del Backup
read -p "Introduce la ruta de destino para guardar --> " destino
echo "Se excluirán los siguientes directorios: \
/boot/EFI \
/boot/efi \
/tmp\
/proc\
/mnt\
/dev\
/sys\
/run\
/media"
read -p "Pulsa cualquier tecla para iniciar el backup de la carpeta Raíz"
tar -cvpzf $destino/$nombre'_'$username'_'$hora'_'$fecha.tar.bz2 \
--exclude=Backup* \
--exclude=.cache \
--exclude=.tmp \
--exclude=Trash \
--exclude=Cache \
--exclude=.trash \
--exclude=/root/.cache \
--exclude=.Trash-1000 \
--exclude=.Trash-1001 \
--exclude=.thumbnails \
--exclude=tmp \
--exclude=lost+found \
--exclude=/proc \
--exclude=/tmp \
--exclude=/mnt \
--exclude=/dev \
--exclude=/sys \
--exclude=/run \
--exclude=/media \
--exclude=/boot/efi \
--exclude=/boot/EFI \
--exclude=/var/log \
--exclude=/var/tmp \
--exclude=/var/cache/apt \
--exclude=/var/cache/pacman/pkg \
--exclude=/home \
--exclude=/root/.local/share/Trash /
clear
echo "El backup se ha completado correctamente, recuerda recrear los siguientes directorios cuando restaures tu backup:\
/media\
/mnt\
/proc\
/dev\
/run\
/sys\
/tmp\
/boot/efi\
/boot/EFI"
read -p "Pulsa cualquier tecla para salir"
clear
exit 0