-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepository-structure
More file actions
112 lines (112 loc) · 4.47 KB
/
repository-structure
File metadata and controls
112 lines (112 loc) · 4.47 KB
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
├── 📁 01-Basics-Getting-Started/
│ ├── 📄 01-what-is-linux.md
│ ├── 📄 02-distributions-overview.md
│ ├── 📄 03-installation-guides.md
│ └── 📄 04-desktop-environment.md
│
├── 📁 02-Fundamental-Skills/
│ ├── 📁 file-system/
│ │ ├── 📄 01-filesystem-hierarchy.md
│ │ └── 📄 02-paths-navigation.md
│ ├── 📁 file-operations/
│ │ ├── 📄 01-basic-commands.md
│ │ └── 📄 02-permissions-ownership.md
│ ├── 📁 text-processing/
│ │ ├── 📄 01-text-editors.md
│ │ └── 📄 02-grep-awk-sed.md
│ ├── 📁 system-basics/
│ │ ├── 📄 01-user-management.md
│ │ └── 📄 02-process-management.md
│ ├── 📁 package-management/
│ │ ├── 📄 01-apt-yum-dnf.md
│ │ ├── 📄 02-pacman-zypper.md
│ │ └── 📄 03-compiling-from-source.md
│ ├── 📁 monitoring-troubleshooting/
│ │ ├── 📄 01-top-htop.md
│ │ ├── 📄 02-iostat-sar.md
│ │ ├── 📄 03-strace-lsof.md
│ │ └── 📄 04-tcpdump-netstat.md
│ └── 📁 job-scheduling/
│ ├── 📄 01-cron-basics.md
│ ├── 📄 02-at-commands.md
│ └── 📄 03-systemd-timers.md
│
├── 📁 03-Intermediate-Administration/
│ ├── 📁 bash-scripting/
│ │ ├── 📄 01-scripting-basics.md
│ │ ├── 📄 02-variables-loops.md
│ │ └── 📄 03-functions-arguments.md
│ ├── 📁 networking/
│ │ ├── 📄 01-network-commands.md
│ │ └── 📄 02-ssh-configuration.md
│ ├── 📁 storage-management/
│ │ ├── 📄 01-lvm-basics.md
│ │ ├── 📄 02-raid-setup.md
│ │ └── 📄 03-disk-quotas.md
│ ├── 📁 disk-management/
│ │ ├── 📄 01-partitions-filesystems.md
│ │ └── 📄 02-mounting-fstab.md
│ ├── 📁 kernel-management/
│ │ ├── 📄 01-kernel-modules.md
│ │ ├── 📄 02-sysctl-tuning.md
│ │ └── 📄 03-kernel-upgrades.md
│ └── 📁 system-services/
│ ├── 📄 01-systemd-services.md
│ └── 📄 02-log-management.md
│
├── 📁 04-Advanced-Topics/
│ ├── 📁 advanced-networking/
│ │ ├── 📄 01-firewalls-iptables.md
│ │ └── 📄 02-vpn-setup.md
│ ├── 📁 networking-advanced/
│ │ ├── 📄 01-routing-and-bridging.md
│ │ ├── 📄 02-network-namespaces.md
│ │ └── 📄 03-troubleshooting-tools.md
│ ├── 📁 security/
│ │ ├── 📄 01-security-hardening.md
│ │ └── 📄 02-selinux-apparmor.md
│ ├── 📁 security-extras/
│ │ ├── 📄 01-fail2ban-auditd.md
│ │ └── 📄 02-intrusion-detection.md
│ ├── 📁 containers/
│ │ ├── 📄 01-docker-basics.md
│ │ └── 📄 02-kubernetes-intro.md
│ ├── 📁 virtualization/
│ │ ├── 📄 01-kvm-qemu-basics.md
│ │ ├── 📄 02-virtualbox-vmware.md
│ │ └── 📄 03-libvirt-management.md
│ └── 📁 automation/
│ ├── 📄 01-ansible-basics.md
│ └── 📄 02-cloud-provisioning.md
│
├── 📁 enterprise-services/
│ ├── 📄 01-ldap-freeipa.md
│ ├── 📄 02-nfs-samba.md
│ └── 📄 03-mail-servers.md
│
├── 📁 projects/
│ ├── 📁 beginner/
│ │ ├── 📄 basic-file-manager-script.md
│ │ └── 📄 system-info-script.md
│ ├── 📁 intermediate/
│ │ ├── 📄 backup-automation.md
│ │ └── 📄 user-management-system.md
│ └── 📁 advanced/
│ ├── 📄 dockerized-web-app.md
│ └── 📄 infrastructure-automation.md
│
├── 📁 cheatsheets/
│ ├── 📄 command-cheatsheet.md
│ ├── 📄 permissions-cheatsheet.md
│ ├── 📄 networking-cheatsheet.md
│ └── 📄 vim-cheatsheet.md
│
├── 📁 exercises/
│ ├── 📄 basic-exercises.md
│ ├── 📄 intermediate-exercises.md
│ └── 📄 advanced-exercises.md
│
├── 📄 README.md
├── 📄 roadmap.md
├── 📄 contributing.md
└── 📄 LICENSE