53 lines
1.5 KiB
Markdown
53 lines
1.5 KiB
Markdown
## Debian System Administration
|
|
|
|
This Git repository is a collection of useful Bash scripts and READMEs for system administration on Debian. It will be gradually completed.
|
|
|
|
### Content
|
|
|
|
The repository will be organized into several categories for easy navigation:
|
|
|
|
* **Backup and Restore**
|
|
* **System Maintenance**
|
|
* **System Monitoring**
|
|
* **Networking**
|
|
* **Miscellaneous**
|
|
|
|
### Usag
|
|
|
|
Detailed instructions on how to use each script will be provided as they are added to the repository. In general, you will need to follow these basic steps:
|
|
|
|
1. **Read the script's description:** Each script will have a description at the beginning explaining its purpose and usage. Make sure to read it carefully before running the script.
|
|
|
|
2. **Make the script executable:**
|
|
|
|
```bash
|
|
chmod +x script_name.sh
|
|
```
|
|
|
|
3. **Execute the script:**
|
|
|
|
```bash
|
|
./script_name.sh
|
|
```
|
|
|
|
Some scripts may require administrator privileges (sudo). In that case, run them with:
|
|
|
|
```bash
|
|
sudo ./script_name.sh
|
|
```
|
|
|
|
### Contribution
|
|
|
|
Contributions are welcome! If you have useful scripts to share or improvements to suggest, feel free to submit a pull request.
|
|
|
|
### Disclaimer
|
|
|
|
* **Use these scripts with caution.**
|
|
* **Test the scripts in a safe environment**
|
|
* **Always make backups**
|
|
|
|
### License
|
|
|
|
This repository is licensed under the GNU General Public License version 2. See the LICENSE file for more details.
|
|
|
|
**This repository will be gradually completed with new scripts. Check back regularly for updates!** |