├── .all-contributorsrc ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── deploy.yml │ ├── generate-pdfs.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .markdownlint.yml ├── LICENSE.md ├── README.md ├── build_pdf ├── README.MD ├── admin_book │ ├── en.yml │ ├── it.yml │ ├── ko.yml │ ├── uk.yml │ └── zh.yml ├── ansible_book │ ├── en.yml │ ├── es.yml │ ├── it.yml │ └── ko.yml ├── bash_book │ ├── en.yml │ ├── it.yml │ └── ko.yml ├── build_all.sh ├── build_base.yml ├── build_en.sh ├── build_webservices.sh ├── disa_stig │ ├── en.yml │ ├── it.yml │ └── uk.yml ├── lxd_server │ ├── en.yml │ ├── it.yml │ └── uk.yml ├── middlewares │ ├── en.yml │ ├── it.yml │ └── ko.yml ├── nvchad_book │ ├── en.yml │ ├── it.yml │ └── uk.yml ├── requirements.txt ├── rsync_book │ ├── en.yml │ ├── it.yml │ └── uk.yml ├── sed_awk_grep │ └── en.yml ├── templates │ ├── back_cover.html │ ├── cover.html │ └── styles.scss └── web_services │ └── en.yml ├── contrib_templates ├── gemstones_template.md └── general_notes.md ├── crowdin.yml └── docs ├── .pages ├── assets ├── favicon.png ├── logo.png └── rocky-linux-logo.svg ├── books ├── .pages ├── admin_guide │ ├── 00-toc.de.md │ ├── 00-toc.es.md │ ├── 00-toc.fr.md │ ├── 00-toc.id.md │ ├── 00-toc.it.md │ ├── 00-toc.ko.md │ ├── 00-toc.md │ ├── 00-toc.pt-BR.md │ ├── 00-toc.pt.md │ ├── 00-toc.uk.md │ ├── 00-toc.zh.md │ ├── 01-presentation.de.md │ ├── 01-presentation.fr.md │ ├── 01-presentation.it.md │ ├── 01-presentation.ko.md │ ├── 01-presentation.md │ ├── 01-presentation.pt-BR.md │ ├── 01-presentation.pt.md │ ├── 01-presentation.uk.md │ ├── 01-presentation.zh.md │ ├── 03-commands.fr.md │ ├── 03-commands.it.md │ ├── 03-commands.ko.md │ ├── 03-commands.md │ ├── 03-commands.pt-BR.md │ ├── 03-commands.uk.md │ ├── 03-commands.zh.md │ ├── 04-advanced-commands.de.md │ ├── 04-advanced-commands.es.md │ ├── 04-advanced-commands.fr.md │ ├── 04-advanced-commands.it.md │ ├── 04-advanced-commands.ko.md │ ├── 04-advanced-commands.md │ ├── 04-advanced-commands.pt-BR.md │ ├── 04-advanced-commands.uk.md │ ├── 04-advanced-commands.zh.md │ ├── 05-vi.de.md │ ├── 05-vi.fr.md │ ├── 05-vi.it.md │ ├── 05-vi.ko.md │ ├── 05-vi.md │ ├── 05-vi.pt-BR.md │ ├── 05-vi.uk.md │ ├── 05-vi.zh.md │ ├── 06-users.fr.md │ ├── 06-users.it.md │ ├── 06-users.ko.md │ ├── 06-users.md │ ├── 06-users.pt-BR.md │ ├── 06-users.uk.md │ ├── 06-users.zh.md │ ├── 07-file-systems.fr.md │ ├── 07-file-systems.it.md │ ├── 07-file-systems.ko.md │ ├── 07-file-systems.md │ ├── 07-file-systems.pt-BR.md │ ├── 07-file-systems.uk.md │ ├── 07-file-systems.zh.md │ ├── 08-process.de.md │ ├── 08-process.fr.md │ ├── 08-process.it.md │ ├── 08-process.ko.md │ ├── 08-process.md │ ├── 08-process.uk.md │ ├── 08-process.zh.md │ ├── 09-backups.de.md │ ├── 09-backups.fr.md │ ├── 09-backups.it.md │ ├── 09-backups.ko.md │ ├── 09-backups.md │ ├── 09-backups.uk.md │ ├── 09-backups.zh.md │ ├── 10-boot.de.md │ ├── 10-boot.fr.md │ ├── 10-boot.it.md │ ├── 10-boot.ko.md │ ├── 10-boot.md │ ├── 10-boot.uk.md │ ├── 10-boot.zh.md │ ├── 11-tasks.de.md │ ├── 11-tasks.fr.md │ ├── 11-tasks.it.md │ ├── 11-tasks.ko.md │ ├── 11-tasks.md │ ├── 11-tasks.uk.md │ ├── 11-tasks.zh.md │ ├── 12-network.de.md │ ├── 12-network.fr.md │ ├── 12-network.it.md │ ├── 12-network.ko.md │ ├── 12-network.md │ ├── 12-network.uk.md │ ├── 12-network.zh.md │ ├── 13-softwares.de.md │ ├── 13-softwares.fr.md │ ├── 13-softwares.it.md │ ├── 13-softwares.ko.md │ ├── 13-softwares.md │ ├── 13-softwares.uk.md │ ├── 13-softwares.zh.md │ ├── 14-special-authority.it.md │ ├── 14-special-authority.ko.md │ ├── 14-special-authority.md │ ├── 14-special-authority.uk.md │ ├── 16-about-sytemd.it.md │ ├── 16-about-sytemd.md │ ├── 16-about-sytemd.uk.md │ ├── 17-log.md │ ├── 17-log.uk.md │ └── images │ │ ├── 01-presentation-gnome.png │ │ ├── 01-presentation-kde.png │ │ ├── 07-file-systems-001.png │ │ ├── 07-file-systems-002.png │ │ ├── 07-file-systems-003.png │ │ ├── 07-file-systems-004.png │ │ ├── 07-file-systems-005.png │ │ ├── 07-file-systems-006.png │ │ ├── 07-file-systems-007.png │ │ ├── 07-file-systems-008.png │ │ ├── 07-file-systems-009.png │ │ ├── 07-file-systems-010.png │ │ ├── 07-file-systems-011.png │ │ ├── 07-file-systems-012.png │ │ ├── 07-file-systems-013.png │ │ ├── 07-file-systems-014.png │ │ ├── 07-file-systems-015.png │ │ ├── 07-file-systems-016.png │ │ ├── 07-file-systems-017.png │ │ ├── 07-file-systems-018.png │ │ ├── 07-file-systems-019.png │ │ ├── 16-Kay-Sievers.jpg │ │ ├── 16-Lennart-Poettering.jpg │ │ ├── 16-effect.png │ │ ├── 16-init-compare.jpg │ │ ├── 16-tizen-systemd.png │ │ ├── SetUID1.png │ │ ├── SetUID2.png │ │ ├── chage-timeline.png │ │ ├── commands-pathabsolute.png │ │ ├── input-output.png │ │ ├── network-001.png │ │ ├── network-002.png │ │ ├── network-003.png │ │ ├── network-004.png │ │ ├── operating_system.png │ │ ├── pipe.png │ │ ├── shell-principle.png │ │ ├── software-001.png │ │ ├── tasks-001.png │ │ └── tux.png ├── bash_programming │ ├── 01-Shell-overview.fr.md │ ├── 01-Shell-overview.it.md │ ├── 01-Shell-overview.md │ ├── 01-Shell-overview.uk.md │ └── images │ │ └── Shell01.png ├── disa_stig │ ├── disa_stig_part1.id.md │ ├── disa_stig_part1.it.md │ ├── disa_stig_part1.ko.md │ ├── disa_stig_part1.md │ ├── disa_stig_part1.uk.md │ ├── disa_stig_part2.id.md │ ├── disa_stig_part2.it.md │ ├── disa_stig_part2.ko.md │ ├── disa_stig_part2.md │ ├── disa_stig_part2.uk.md │ ├── disa_stig_part3.it.md │ ├── disa_stig_part3.ko.md │ ├── disa_stig_part3.md │ ├── disa_stig_part3.uk.md │ └── images │ │ ├── disa_stig_pt1_img1.jpg │ │ ├── disa_stig_pt1_img10.jpg │ │ ├── disa_stig_pt1_img11.jpg │ │ ├── disa_stig_pt1_img12.jpg │ │ ├── disa_stig_pt1_img13.jpg │ │ ├── disa_stig_pt1_img14.jpg │ │ ├── disa_stig_pt1_img15.jpg │ │ ├── disa_stig_pt1_img16.jpg │ │ ├── disa_stig_pt1_img17.jpg │ │ ├── disa_stig_pt1_img18.jpg │ │ ├── disa_stig_pt1_img19.jpg │ │ ├── disa_stig_pt1_img2.jpg │ │ ├── disa_stig_pt1_img20.jpg │ │ ├── disa_stig_pt1_img3.jpg │ │ ├── disa_stig_pt1_img4.jpg │ │ ├── disa_stig_pt1_img5.jpg │ │ ├── disa_stig_pt1_img6.jpg │ │ ├── disa_stig_pt1_img7.jpg │ │ ├── disa_stig_pt1_img8.jpg │ │ ├── disa_stig_pt1_img9.jpg │ │ ├── disa_stig_pt2_img1.jpg │ │ ├── disa_stig_pt2_img2.jpg │ │ ├── disa_stig_pt2_img3.jpg │ │ ├── disa_stig_pt2_img4.jpg │ │ └── disa_stig_pt2_img5.jpg ├── incus_server │ ├── 00-toc.de.md │ ├── 00-toc.fr.md │ ├── 00-toc.it.md │ ├── 00-toc.md │ ├── 00-toc.uk.md │ ├── 01-install.de.md │ ├── 01-install.fr.md │ ├── 01-install.it.md │ ├── 01-install.md │ ├── 01-install.uk.md │ ├── 02-zfs_setup.de.md │ ├── 02-zfs_setup.fr.md │ ├── 02-zfs_setup.it.md │ ├── 02-zfs_setup.md │ ├── 02-zfs_setup.uk.md │ ├── 03-incusinit.de.md │ ├── 03-incusinit.fr.md │ ├── 03-incusinit.it.md │ ├── 03-incusinit.md │ ├── 03-incusinit.uk.md │ ├── 04-firewall.fr.md │ ├── 04-firewall.it.md │ ├── 04-firewall.md │ ├── 04-firewall.uk.md │ ├── 05-incus_images.fr.md │ ├── 05-incus_images.it.md │ ├── 05-incus_images.md │ ├── 05-incus_images.uk.md │ ├── 06-profiles.fr.md │ ├── 06-profiles.it.md │ ├── 06-profiles.md │ ├── 06-profiles.uk.md │ ├── 07-configurations.fr.md │ ├── 07-configurations.it.md │ ├── 07-configurations.md │ ├── 07-configurations.uk.md │ ├── 08-snapshots.fr.md │ ├── 08-snapshots.it.md │ ├── 08-snapshots.md │ ├── 08-snapshots.uk.md │ ├── 09-snapshot_server.fr.md │ ├── 09-snapshot_server.it.md │ ├── 09-snapshot_server.md │ ├── 09-snapshot_server.uk.md │ ├── 10-automating.fr.md │ ├── 10-automating.it.md │ ├── 10-automating.md │ ├── 10-automating.uk.md │ ├── 30-appendix_a.fr.md │ ├── 30-appendix_a.it.md │ ├── 30-appendix_a.md │ └── 30-appendix_a.uk.md ├── index.de.md ├── index.fr.md ├── index.it.md ├── index.ja.md ├── index.ko.md ├── index.md ├── index.pt-BR.md ├── index.pt.md ├── index.uk.md ├── index.zh.md ├── learning_ansible │ ├── 00-toc.de.md │ ├── 00-toc.es.md │ ├── 00-toc.fr.md │ ├── 00-toc.id.md │ ├── 00-toc.it.md │ ├── 00-toc.ko.md │ ├── 00-toc.md │ ├── 00-toc.uk.md │ ├── 01-basic.de.md │ ├── 01-basic.es.md │ ├── 01-basic.fr.md │ ├── 01-basic.it.md │ ├── 01-basic.ko.md │ ├── 01-basic.md │ ├── 01-basic.uk.md │ ├── 02-advanced.de.md │ ├── 02-advanced.es.md │ ├── 02-advanced.fr.md │ ├── 02-advanced.it.md │ ├── 02-advanced.ko.md │ ├── 02-advanced.md │ ├── 02-advanced.uk.md │ ├── 03-working-with-files.de.md │ ├── 03-working-with-files.es.md │ ├── 03-working-with-files.fr.md │ ├── 03-working-with-files.it.md │ ├── 03-working-with-files.ko.md │ ├── 03-working-with-files.md │ ├── 03-working-with-files.uk.md │ ├── 04-ansible-galaxy.de.md │ ├── 04-ansible-galaxy.es.md │ ├── 04-ansible-galaxy.fr.md │ ├── 04-ansible-galaxy.it.md │ ├── 04-ansible-galaxy.ko.md │ ├── 04-ansible-galaxy.md │ ├── 04-ansible-galaxy.uk.md │ ├── 05-deployments.de.md │ ├── 05-deployments.es.md │ ├── 05-deployments.fr.md │ ├── 05-deployments.it.md │ ├── 05-deployments.ko.md │ ├── 05-deployments.md │ ├── 05-deployments.uk.md │ ├── 06-large-scale-infrastructure.de.md │ ├── 06-large-scale-infrastructure.es.md │ ├── 06-large-scale-infrastructure.fr.md │ ├── 06-large-scale-infrastructure.it.md │ ├── 06-large-scale-infrastructure.ko.md │ ├── 06-large-scale-infrastructure.md │ ├── 06-large-scale-infrastructure.uk.md │ ├── 07-working-with-filters.de.md │ ├── 07-working-with-filters.es.md │ ├── 07-working-with-filters.fr.md │ ├── 07-working-with-filters.it.md │ ├── 07-working-with-filters.ko.md │ ├── 07-working-with-filters.md │ ├── 07-working-with-filters.uk.md │ ├── 08-management-server-optimizations.de.md │ ├── 08-management-server-optimizations.es.md │ ├── 08-management-server-optimizations.fr.md │ ├── 08-management-server-optimizations.it.md │ ├── 08-management-server-optimizations.ko.md │ ├── 08-management-server-optimizations.md │ ├── 08-management-server-optimizations.uk.md │ ├── 09-working-with-jinja-template.fr.md │ ├── 09-working-with-jinja-template.it.md │ ├── 09-working-with-jinja-template.md │ ├── 09-working-with-jinja-template.uk.md │ └── images │ │ ├── Michael_DeHaan01.jpg │ │ ├── ansible-001.png │ │ ├── ansistrano-001.png │ │ ├── ansistrano-002.png │ │ └── handlers.png ├── learning_bash │ ├── .pages │ ├── 00-toc.fr.md │ ├── 00-toc.it.md │ ├── 00-toc.ko.md │ ├── 00-toc.md │ ├── 00-toc.uk.md │ ├── 01-first-script.it.md │ ├── 01-first-script.ko.md │ ├── 01-first-script.md │ ├── 01-first-script.uk.md │ ├── 02-using-variables.es.md │ ├── 02-using-variables.it.md │ ├── 02-using-variables.ko.md │ ├── 02-using-variables.md │ ├── 02-using-variables.uk.md │ ├── 03-data-entry-and-manipulations.it.md │ ├── 03-data-entry-and-manipulations.ko.md │ ├── 03-data-entry-and-manipulations.md │ ├── 03-data-entry-and-manipulations.uk.md │ ├── 04-check-your-knowledge.de.md │ ├── 04-check-your-knowledge.fr.md │ ├── 04-check-your-knowledge.it.md │ ├── 04-check-your-knowledge.ko.md │ ├── 04-check-your-knowledge.md │ ├── 04-check-your-knowledge.uk.md │ ├── 05-tests.it.md │ ├── 05-tests.ko.md │ ├── 05-tests.md │ ├── 05-tests.uk.md │ ├── 06-conditional-structures.it.md │ ├── 06-conditional-structures.ko.md │ ├── 06-conditional-structures.md │ ├── 06-conditional-structures.uk.md │ ├── 07-loops.it.md │ ├── 07-loops.ko.md │ ├── 07-loops.md │ ├── 07-loops.uk.md │ ├── 08-check-your-knowledge.de.md │ ├── 08-check-your-knowledge.es.md │ ├── 08-check-your-knowledge.fr.md │ ├── 08-check-your-knowledge.it.md │ ├── 08-check-your-knowledge.ko.md │ ├── 08-check-your-knowledge.md │ ├── 08-check-your-knowledge.uk.md │ └── appendix │ │ ├── 02-variables-logs.it.md │ │ ├── 02-variables-logs.ko.md │ │ ├── 02-variables-logs.md │ │ └── 02-variables-logs.uk.md ├── learning_rsync │ ├── 01_rsync_overview.de.md │ ├── 01_rsync_overview.es.md │ ├── 01_rsync_overview.fr.md │ ├── 01_rsync_overview.it.md │ ├── 01_rsync_overview.ko.md │ ├── 01_rsync_overview.md │ ├── 01_rsync_overview.uk.md │ ├── 01_rsync_overview.zh.md │ ├── 02_rsync_demo01.de.md │ ├── 02_rsync_demo01.es.md │ ├── 02_rsync_demo01.fr.md │ ├── 02_rsync_demo01.it.md │ ├── 02_rsync_demo01.ko.md │ ├── 02_rsync_demo01.md │ ├── 02_rsync_demo01.uk.md │ ├── 02_rsync_demo01.zh.md │ ├── 03_rsync_demo02.es.md │ ├── 03_rsync_demo02.fr.md │ ├── 03_rsync_demo02.it.md │ ├── 03_rsync_demo02.ko.md │ ├── 03_rsync_demo02.md │ ├── 03_rsync_demo02.uk.md │ ├── 03_rsync_demo02.zh.md │ ├── 04_rsync_configure.de.md │ ├── 04_rsync_configure.es.md │ ├── 04_rsync_configure.fr.md │ ├── 04_rsync_configure.it.md │ ├── 04_rsync_configure.ko.md │ ├── 04_rsync_configure.md │ ├── 04_rsync_configure.uk.md │ ├── 04_rsync_configure.zh.md │ ├── 05_rsync_authentication-free_login.es.md │ ├── 05_rsync_authentication-free_login.fr.md │ ├── 05_rsync_authentication-free_login.it.md │ ├── 05_rsync_authentication-free_login.ko.md │ ├── 05_rsync_authentication-free_login.md │ ├── 05_rsync_authentication-free_login.uk.md │ ├── 05_rsync_authentication-free_login.zh.md │ ├── 06_rsync_inotify.fr.md │ ├── 06_rsync_inotify.it.md │ ├── 06_rsync_inotify.ko.md │ ├── 06_rsync_inotify.md │ ├── 06_rsync_inotify.uk.md │ ├── 06_rsync_inotify.zh.md │ ├── 07_rsync_unison_use.es.md │ ├── 07_rsync_unison_use.fr.md │ ├── 07_rsync_unison_use.it.md │ ├── 07_rsync_unison_use.ko.md │ ├── 07_rsync_unison_use.md │ ├── 07_rsync_unison_use.uk.md │ ├── 07_rsync_unison_use.zh.md │ └── images │ │ ├── Andrew_Tridgell.jpg │ │ ├── Wayne_Davison.jpg │ │ └── rsync_config.jpg ├── licence.de.md ├── licence.it.md ├── licence.md ├── licence.tr.md ├── licence.uk.md ├── lxd_server │ ├── 00-toc.it.md │ ├── 00-toc.ko.md │ ├── 00-toc.md │ ├── 00-toc.uk.md │ ├── 01-install.it.md │ ├── 01-install.ko.md │ ├── 01-install.md │ ├── 01-install.uk.md │ ├── 02-zfs_setup.it.md │ ├── 02-zfs_setup.ko.md │ ├── 02-zfs_setup.md │ ├── 02-zfs_setup.uk.md │ ├── 03-lxdinit.it.md │ ├── 03-lxdinit.ko.md │ ├── 03-lxdinit.md │ ├── 03-lxdinit.uk.md │ ├── 04-firewall.it.md │ ├── 04-firewall.ko.md │ ├── 04-firewall.md │ ├── 04-firewall.uk.md │ ├── 05-lxd_images.it.md │ ├── 05-lxd_images.ko.md │ ├── 05-lxd_images.md │ ├── 05-lxd_images.uk.md │ ├── 06-profiles.it.md │ ├── 06-profiles.ko.md │ ├── 06-profiles.md │ ├── 06-profiles.uk.md │ ├── 07-configurations.it.md │ ├── 07-configurations.ko.md │ ├── 07-configurations.md │ ├── 07-configurations.uk.md │ ├── 08-snapshots.it.md │ ├── 08-snapshots.ko.md │ ├── 08-snapshots.md │ ├── 08-snapshots.uk.md │ ├── 09-snapshot_server.it.md │ ├── 09-snapshot_server.ko.md │ ├── 09-snapshot_server.md │ ├── 09-snapshot_server.uk.md │ ├── 10-automating.de.md │ ├── 10-automating.fr.md │ ├── 10-automating.it.md │ ├── 10-automating.ko.md │ ├── 10-automating.md │ ├── 10-automating.uk.md │ ├── 30-appendix_a.it.md │ ├── 30-appendix_a.ko.md │ ├── 30-appendix_a.md │ └── 30-appendix_a.uk.md ├── nvchad │ ├── .pages │ ├── additional_software.fr.md │ ├── additional_software.it.md │ ├── additional_software.ko.md │ ├── additional_software.md │ ├── additional_software.uk.md │ ├── images │ │ ├── e_tab_command.png │ │ ├── find_command.png │ │ ├── font_nerd_view.png │ │ ├── help_visual_mode.png │ │ ├── init_custom_plugins.png │ │ ├── install_nvchad_25.png │ │ ├── installed_first_time.png │ │ ├── lazy_check.png │ │ ├── lazy_debug.png │ │ ├── lazy_help.png │ │ ├── lazy_install.png │ │ ├── lazy_log.png │ │ ├── lazy_nvim.png │ │ ├── lazy_profile.png │ │ ├── lazygit_menu.png │ │ ├── lazygit_ui.png │ │ ├── leader_ff.png │ │ ├── lspconfig_custom.png │ │ ├── lua-language-server.png │ │ ├── lua_diagnostic.png │ │ ├── markdown_preview_side.png │ │ ├── marksman_assistant.png │ │ ├── marksman_diagnostic.png │ │ ├── marksman_enable.png │ │ ├── marksman_server_info.png │ │ ├── marksman_snippets.png │ │ ├── mason_help.png │ │ ├── mason_install_ui.png │ │ ├── mason_installed.png │ │ ├── mason_marksman.png │ │ ├── mason_ui.png │ │ ├── neovim_tutor.png │ │ ├── nerd_fonts_site_small.png │ │ ├── nvchad_init.png │ │ ├── nvchad_rocky.png │ │ ├── nvchad_th.png │ │ ├── nvchad_ui.png │ │ ├── nvim_options.png │ │ ├── nvim_standard.png │ │ ├── nvim_tree.png │ │ ├── nvimtree_basic.png │ │ ├── nvimtree_find_filter.png │ │ ├── nvimtree_git.png │ │ ├── preview_commands.png │ │ ├── preview_dark.png │ │ ├── preview_dark_on.png │ │ ├── preview_mapping.png │ │ ├── remove_plugin_01.png │ │ ├── remove_plugin_02.png │ │ ├── telescope_find_files.png │ │ ├── ui_default.png │ │ ├── ui_default_light.png │ │ ├── ui_escape_key.png │ │ ├── ui_nvchad_split.png │ │ ├── ui_statusline.png │ │ ├── ui_tabufline.png │ │ ├── ui_wK_01.png │ │ ├── ui_wK_key.png │ │ ├── vale_ini_nvchad.png │ │ ├── vale_mason.png │ │ ├── vale_mason_installed.png │ │ ├── vale_null-ls.png │ │ ├── vale_sync.png │ │ ├── vsplit_open.png │ │ ├── which_key.png │ │ └── yamlls_server.png │ ├── index.fr.md │ ├── index.it.md │ ├── index.ko.md │ ├── index.md │ ├── index.uk.md │ ├── install_nvchad.it.md │ ├── install_nvchad.ko.md │ ├── install_nvchad.md │ ├── install_nvchad.uk.md │ ├── install_nvim.it.md │ ├── install_nvim.ko.md │ ├── install_nvim.md │ ├── install_nvim.uk.md │ ├── marksman.it.md │ ├── marksman.md │ ├── marksman.uk.md │ ├── nerd_fonts.it.md │ ├── nerd_fonts.ko.md │ ├── nerd_fonts.md │ ├── nerd_fonts.uk.md │ ├── nvchad_ui │ │ ├── .pages │ │ ├── builtin_plugins.it.md │ │ ├── builtin_plugins.ko.md │ │ ├── builtin_plugins.md │ │ ├── builtin_plugins.uk.md │ │ ├── nvchad_ui.it.md │ │ ├── nvchad_ui.ko.md │ │ ├── nvchad_ui.md │ │ ├── nvchad_ui.uk.md │ │ ├── nvimtree.it.md │ │ ├── nvimtree.ko.md │ │ ├── nvimtree.md │ │ ├── nvimtree.uk.md │ │ ├── plugins_manager.it.md │ │ ├── plugins_manager.ko.md │ │ ├── plugins_manager.md │ │ ├── plugins_manager.uk.md │ │ ├── using_nvchad.it.md │ │ ├── using_nvchad.ko.md │ │ ├── using_nvchad.md │ │ └── using_nvchad.uk.md │ ├── plugins │ │ ├── images │ │ │ ├── markdown_preview_nvim.png │ │ │ ├── peek_command.png │ │ │ ├── peek_webview.png │ │ │ ├── plugins_lua.png │ │ │ ├── projectmgr_add.png │ │ │ └── projectmgr_init.png │ │ ├── index.fr.md │ │ ├── index.it.md │ │ ├── index.ko.md │ │ ├── index.md │ │ ├── index.uk.md │ │ ├── md_preview.fr.md │ │ ├── md_preview.it.md │ │ ├── md_preview.ko.md │ │ ├── md_preview.md │ │ ├── md_preview.uk.md │ │ ├── projectmgr.fr.md │ │ ├── projectmgr.it.md │ │ ├── projectmgr.ko.md │ │ ├── projectmgr.md │ │ └── projectmgr.uk.md │ ├── template_chadrc.it.md │ ├── template_chadrc.ko.md │ ├── template_chadrc.md │ ├── template_chadrc.uk.md │ ├── vale_nvchad.it.md │ ├── vale_nvchad.ko.md │ ├── vale_nvchad.md │ └── vale_nvchad.uk.md ├── sed_awk_grep │ ├── 1_regular_expressions_vs_wildcards.it.md │ ├── 1_regular_expressions_vs_wildcards.md │ ├── 1_regular_expressions_vs_wildcards.uk.md │ ├── 2_grep_command.it.md │ ├── 2_grep_command.md │ ├── 2_grep_command.uk.md │ ├── 3_sed_command.it.md │ ├── 3_sed_command.md │ ├── 3_sed_command.uk.md │ ├── 4_awk_command.it.md │ ├── 4_awk_command.md │ ├── 4_awk_command.uk.md │ ├── index.fr.md │ ├── index.it.md │ ├── index.md │ └── index.uk.md └── web_services │ ├── 00-toc.de.md │ ├── 00-toc.fr.md │ ├── 00-toc.it.md │ ├── 00-toc.md │ ├── 00-toc.uk.md │ ├── 01-files-servers.de.md │ ├── 01-files-servers.fr.md │ ├── 01-files-servers.it.md │ ├── 01-files-servers.md │ ├── 01-files-servers.uk.md │ ├── 02-web-servers-intro.it.md │ ├── 02-web-servers-intro.md │ ├── 02-web-servers-intro.uk.md │ ├── 021-web-servers-apache.it.md │ ├── 021-web-servers-apache.md │ ├── 021-web-servers-apache.uk.md │ ├── 022-web-servers-nginx.it.md │ ├── 022-web-servers-nginx.md │ ├── 022-web-servers-nginx.uk.md │ ├── 03-application-servers.fr.md │ ├── 03-application-servers.it.md │ ├── 03-application-servers.md │ ├── 03-application-servers.uk.md │ ├── 04-database-servers.it.md │ ├── 04-database-servers.md │ ├── 04-database-servers.uk.md │ ├── 041-database-servers-mariadb.it.md │ ├── 041-database-servers-mariadb.md │ ├── 041-database-servers-mariadb.uk.md │ ├── 042-database-servers-mysql.it.md │ ├── 042-database-servers-mysql.md │ ├── 042-database-servers-mysql.uk.md │ ├── 043-database-servers-replication.it.md │ ├── 043-database-servers-replication.md │ ├── 043-database-servers-replication.uk.md │ ├── 05-load-balancer-proxies.fr.md │ ├── 05-load-balancer-proxies.it.md │ ├── 05-load-balancer-proxies.md │ ├── 05-load-balancer-proxies.uk.md │ ├── 051-load-balancer-proxies-haproxy.it.md │ ├── 051-load-balancer-proxies-haproxy.md │ ├── 051-load-balancer-proxies-haproxy.uk.md │ ├── 052-load-balancer-proxies-varnish.it.md │ ├── 052-load-balancer-proxies-varnish.md │ ├── 052-load-balancer-proxies-varnish.uk.md │ ├── 053-load-balancer-proxies-haproxy-squid.uk.md │ ├── 053-load-balancer-proxies-squid.it.md │ ├── 053-load-balancer-proxies-squid.md │ ├── 053-load-balancer-proxies-squid.uk.md │ ├── 06-mails-servers.de.md │ ├── 06-mails-servers.fr.md │ ├── 06-mails-servers.it.md │ ├── 06-mails-servers.md │ ├── 06-mails-servers.uk.md │ ├── 07-high-availability.fr.md │ ├── 07-high-availability.it.md │ ├── 07-high-availability.md │ ├── 07-high-availability.uk.md │ └── img │ ├── squid-architecture-proxy-captif.png │ ├── squid-architecture-proxy.png │ ├── varnish_interactions.png │ ├── varnish_troobleshooting.png │ ├── varnish_website.png │ ├── varnish_website_with_varnish.png │ └── varnish_website_with_varnish_port_80.png ├── desktop ├── .pages ├── appimage │ ├── appimage_pool.de.md │ ├── appimage_pool.fr.md │ ├── appimage_pool.it.md │ ├── appimage_pool.md │ ├── appimage_pool.uk.md │ ├── images │ │ ├── activites_appimage.webp │ │ ├── appimagepool │ │ │ ├── appimagepool_download.jpg │ │ │ ├── appimagepool_launch.jpg │ │ │ ├── appimagepool_remove.jpg │ │ │ └── appimagepool_select.jpg │ │ ├── download_krita_appimage.webp │ │ ├── file_properties_allow_executing_file_as_program_appimage.webp │ │ ├── file_properties_appimage.webp │ │ ├── files_downloads_appimage.webp │ │ ├── group_access_permissions_appimage.webp │ │ ├── group_access_permissions_appimage_read_and_write.webp │ │ ├── krita_launching.webp │ │ ├── permissions_appimage.webp │ │ ├── run_app_image.webp │ │ └── searchbar_files_appimage.webp │ ├── install_software_with_appimage.de.md │ ├── install_software_with_appimage.fr.md │ ├── install_software_with_appimage.it.md │ ├── install_software_with_appimage.md │ └── install_software_with_appimage.uk.md ├── display │ ├── installing_nvidia_gpu_drivers.de.md │ ├── installing_nvidia_gpu_drivers.fr.md │ ├── installing_nvidia_gpu_drivers.it.md │ ├── installing_nvidia_gpu_drivers.md │ └── installing_nvidia_gpu_drivers.uk.md ├── gaming │ ├── images │ │ ├── Timeline_1_01_00_22_00.jpg │ │ ├── Timeline_1_01_04_16_00.jpg │ │ ├── Timeline_1_01_06_09_04.jpg │ │ ├── Timeline_1_01_10_18_38.jpg │ │ ├── Timeline_1_01_10_58_27.jpg │ │ └── Timeline_1_01_11_07_44.jpg │ ├── proton.de.md │ ├── proton.fr.md │ ├── proton.it.md │ ├── proton.md │ └── proton.uk.md ├── gnome │ ├── .pages │ ├── dconf.de.md │ ├── dconf.fr.md │ ├── dconf.it.md │ ├── dconf.md │ ├── dconf.uk.md │ ├── decibels.de.md │ ├── decibels.fr.md │ ├── decibels.it.md │ ├── decibels.md │ ├── decibels.uk.md │ ├── decoder.de.md │ ├── decoder.fr.md │ ├── decoder.it.md │ ├── decoder.md │ ├── decoder.uk.md │ ├── file-shredder.de.md │ ├── file-shredder.fr.md │ ├── file-shredder.it.md │ ├── file-shredder.md │ ├── file-shredder.uk.md │ ├── flatpak.de.md │ ├── flatpak.fr.md │ ├── flatpak.it.md │ ├── flatpak.md │ ├── flatpak.uk.md │ ├── flatpak.zh.md │ ├── gnome-extensions.de.md │ ├── gnome-extensions.fr.md │ ├── gnome-extensions.it.md │ ├── gnome-extensions.md │ ├── gnome-extensions.uk.md │ ├── gnome-extensions.zh.md │ ├── gnome-tweaks.de.md │ ├── gnome-tweaks.fr.md │ ├── gnome-tweaks.it.md │ ├── gnome-tweaks.md │ ├── gnome-tweaks.uk.md │ ├── gnome-tweaks.zh.md │ ├── images │ │ ├── 01_decibels.png │ │ ├── 01_decoder-scan.png │ │ ├── 01_decoder-wifi.png │ │ ├── 01_decoder.png │ │ ├── 01_file-shredder.png │ │ ├── 01_flatpak.png │ │ ├── 01_tweaks.png │ │ ├── 01_valuta.png │ │ ├── 02_decibels.png │ │ ├── 02_decoder-scan.png │ │ ├── 02_decoder-text.png │ │ ├── 02_file-shredder.png │ │ ├── 02_flatpak.png │ │ ├── 02_tweaks.png │ │ ├── 02_valuta.png │ │ ├── 03_decibels.png │ │ ├── 03_decoder-scan.png │ │ ├── 03_decoder-text.png │ │ ├── 03_file-shredder.png │ │ ├── 03_tweaks.png │ │ ├── 03_valuta.png │ │ ├── 04_decibels.png │ │ ├── 04_decoder-scan.png │ │ ├── 04_tweaks.png │ │ ├── 05_tweaks.png │ │ ├── 06_decoder-text.png │ │ ├── 06_tweaks.png │ │ ├── 07_tweaks.png │ │ ├── 08_tweaks.png │ │ ├── 09_tweaks.png │ │ ├── activities.png │ │ ├── dconf-01.png │ │ ├── dconf-02.png │ │ ├── dconf-03.png │ │ ├── dconf-04.png │ │ ├── dconf-05.png │ │ ├── dconf-06.png │ │ ├── decibels-install.png │ │ ├── decoder_install.png │ │ ├── file-shredder_install.png │ │ ├── gnome_extensions_images │ │ │ ├── 04_decoder-scan.png │ │ │ ├── gnome-shell-extensions-toggle-btn.webp │ │ │ └── gnome-shell-installed-extensions.webp │ │ ├── onlineaccounts-01.png │ │ ├── onlineaccounts-02.png │ │ ├── onlineaccounts-03.png │ │ ├── rdp_images │ │ │ ├── 01-remmina.png │ │ │ ├── 02-remmina-config.png │ │ │ └── 03-rdp-connection.jpg │ │ ├── screenshot-01.png │ │ ├── screenshot-02.png │ │ ├── tweaks.png │ │ ├── user_group_acctmgt_images │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 16.png │ │ │ ├── 17.png │ │ │ ├── 18.png │ │ │ ├── 19.png │ │ │ ├── 2.png │ │ │ ├── 20.png │ │ │ ├── 21.png │ │ │ ├── 22.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── valuta-install.png │ │ └── x11vnc_plus_ssh_lan_images │ │ │ ├── vnc_ssh_tunnel.webp │ │ │ ├── vnc_viewer.webp │ │ │ ├── vnc_viewer_password.webp │ │ │ └── x11vnc_over_ssh_lan_conclusion.webp │ ├── onlineaccounts.de.md │ ├── onlineaccounts.fr.md │ ├── onlineaccounts.it.md │ ├── onlineaccounts.md │ ├── onlineaccounts.uk.md │ ├── rdp-server.de.md │ ├── rdp-server.fr.md │ ├── rdp-server.it.md │ ├── rdp-server.md │ ├── rdp-server.uk.md │ ├── rdp-server.zh.md │ ├── screenshot.de.md │ ├── screenshot.fr.md │ ├── screenshot.it.md │ ├── screenshot.md │ ├── screenshot.uk.md │ ├── user_and_group_account_management.de.md │ ├── user_and_group_account_management.fr.md │ ├── user_and_group_account_management.it.md │ ├── user_and_group_account_management.md │ ├── user_and_group_account_management.uk.md │ ├── user_and_group_account_management.zh.md │ ├── valuta.de.md │ ├── valuta.fr.md │ ├── valuta.it.md │ ├── valuta.md │ ├── valuta.uk.md │ ├── x11vnc_plus_ssh_lan.de.md │ ├── x11vnc_plus_ssh_lan.fr.md │ ├── x11vnc_plus_ssh_lan.it.md │ ├── x11vnc_plus_ssh_lan.md │ └── x11vnc_plus_ssh_lan.uk.md ├── index.de.md ├── index.fr.md ├── index.it.md ├── index.md ├── index.uk.md ├── printing │ ├── brother-all-in-one.de.md │ ├── brother-all-in-one.fr.md │ ├── brother-all-in-one.it.md │ ├── brother-all-in-one.md │ ├── brother-all-in-one.uk.md │ ├── hp-all-in-one.de.md │ ├── hp-all-in-one.fr.md │ ├── hp-all-in-one.it.md │ ├── hp-all-in-one.md │ └── hp-all-in-one.uk.md └── tools │ ├── businessapps.de.md │ ├── businessapps.fr.md │ ├── businessapps.it.md │ ├── businessapps.md │ ├── businessapps.uk.md │ ├── firewallgui.de.md │ ├── firewallgui.fr.md │ ├── firewallgui.it.md │ ├── firewallgui.md │ ├── firewallgui.uk.md │ ├── images │ ├── businessapps-01.png │ ├── businessapps-02.png │ ├── firewallgui-01.png │ ├── firewallgui-02.png │ ├── firewallgui-03.png │ ├── firewallgui-04.png │ ├── firewallgui-05.png │ ├── kitty_tabs.png │ ├── kitty_tilling.png │ ├── ksnip.png │ ├── ksnip_image_opened.png │ ├── terminator-01.png │ ├── terminator-02.png │ ├── terminator-03.png │ ├── terminator-04.png │ ├── terminator-05.png │ ├── terminator-06.png │ └── terminator-07.png │ ├── kitty.de.md │ ├── kitty.fr.md │ ├── kitty.it.md │ ├── kitty.md │ ├── kitty.uk.md │ ├── ksnip.de.md │ ├── ksnip.fr.md │ ├── ksnip.it.md │ ├── ksnip.md │ ├── ksnip.uk.md │ ├── terminator.de.md │ ├── terminator.fr.md │ ├── terminator.it.md │ ├── terminator.md │ └── terminator.uk.md ├── gemstones ├── .pages ├── containers │ ├── docker.de.md │ ├── docker.es.md │ ├── docker.fr.md │ ├── docker.it.md │ ├── docker.ko.md │ ├── docker.md │ ├── docker.uk.md │ ├── podman.de.md │ ├── podman.fr.md │ ├── podman.md │ └── podman.uk.md ├── core │ ├── view_kernel_conf.de.md │ ├── view_kernel_conf.fr.md │ ├── view_kernel_conf.it.md │ ├── view_kernel_conf.ko.md │ ├── view_kernel_conf.md │ └── view_kernel_conf.uk.md ├── dnf-swap.de.md ├── dnf-swap.fr.md ├── dnf-swap.it.md ├── dnf-swap.ko.md ├── dnf-swap.md ├── dnf-swap.uk.md ├── gemstone_template.fr.md ├── gemstone_template.it.md ├── gemstone_template.md ├── gemstone_template.uk.md ├── git │ ├── 00-gh_cli_installation.de.md │ ├── 00-gh_cli_installation.fr.md │ ├── 00-gh_cli_installation.it.md │ ├── 00-gh_cli_installation.md │ ├── 00-gh_cli_installation.uk.md │ ├── 01-gh_cli_1st_pr.de.md │ ├── 01-gh_cli_1st_pr.fr.md │ ├── 01-gh_cli_1st_pr.it.md │ ├── 01-gh_cli_1st_pr.md │ ├── 01-gh_cli_1st_pr.uk.md │ ├── 02-gh_cli_edit_pr_title.fr.md │ ├── 02-gh_cli_edit_pr_title.it.md │ ├── 02-gh_cli_edit_pr_title.md │ ├── 02-gh_cli_edit_pr_title.uk.md │ ├── 02_github_web_edit_pr_title.fr.md │ ├── 02_github_web_edit_pr_title.it.md │ ├── 02_github_web_edit_pr_title.md │ ├── 02_github_web_edit_pr_title.uk.md │ ├── feature_branch_workflow.fr.md │ ├── feature_branch_workflow.it.md │ ├── feature_branch_workflow.md │ ├── feature_branch_workflow.uk.md │ ├── fork_and_branch_workflow.fr.md │ ├── fork_and_branch_workflow.it.md │ ├── fork_and_branch_workflow.md │ ├── fork_and_branch_workflow.uk.md │ ├── git_pull_vs_git_fetch.fr.md │ ├── git_pull_vs_git_fetch.it.md │ ├── git_pull_vs_git_fetch.md │ ├── git_pull_vs_git_fetch.uk.md │ ├── git_remote_add.fr.md │ ├── git_remote_add.it.md │ ├── git_remote_add.md │ ├── git_remote_add.uk.md │ ├── tracking_and_nontracking_branch.fr.md │ ├── tracking_and_nontracking_branch.it.md │ ├── tracking_and_nontracking_branch.md │ └── tracking_and_nontracking_branch.uk.md ├── htop.de.md ├── htop.es.md ├── htop.fr.md ├── htop.it.md ├── htop.ko.md ├── htop.md ├── htop.uk.md ├── htop.zh.md ├── https_rsa_keygen.es.md ├── https_rsa_keygen.fr.md ├── https_rsa_keygen.it.md ├── https_rsa_keygen.ko.md ├── https_rsa_keygen.md ├── https_rsa_keygen.uk.md ├── https_rsa_keygen.zh.md ├── images │ ├── podman_nextcloud.png │ ├── string_color_image1.png │ └── torsocks.png ├── index.de.md ├── index.fr.md ├── index.hi.md ├── index.it.md ├── index.ja.md ├── index.ko.md ├── index.md ├── index.uk.md ├── index.zh.md ├── markdown-demo-v2.es.md ├── markdown-demo-v2.fr.md ├── markdown-demo-v2.it.md ├── markdown-demo-v2.ja.md ├── markdown-demo-v2.ko.md ├── markdown-demo-v2.md ├── markdown-demo-v2.pl.md ├── markdown-demo-v2.pt.md ├── markdown-demo-v2.uk.md ├── markdown-demo-v2.zh.md ├── network │ ├── RL9_network_manager.fr.md │ ├── RL9_network_manager.it.md │ ├── RL9_network_manager.ko.md │ ├── RL9_network_manager.md │ ├── RL9_network_manager.uk.md │ ├── RL9_network_manager.zh.md │ ├── iftop.fr.md │ ├── iftop.it.md │ ├── iftop.md │ ├── iftop.uk.md │ ├── mtr.de.md │ ├── mtr.es.md │ ├── mtr.fr.md │ ├── mtr.it.md │ ├── mtr.ko.md │ ├── mtr.md │ ├── mtr.uk.md │ ├── mtr.zh.md │ ├── nload.fr.md │ ├── nload.it.md │ ├── nload.md │ ├── nload.uk.md │ ├── nmcli.fr.md │ ├── nmcli.it.md │ ├── nmcli.ko.md │ ├── nmcli.md │ ├── nmcli.uk.md │ ├── nmcli.zh.md │ ├── nmtui.de.md │ ├── nmtui.fr.md │ ├── nmtui.it.md │ ├── nmtui.ko.md │ ├── nmtui.md │ ├── nmtui.uk.md │ └── nmtui.zh.md ├── perl_search_replace.de.md ├── perl_search_replace.es.md ├── perl_search_replace.fr.md ├── perl_search_replace.it.md ├── perl_search_replace.ko.md ├── perl_search_replace.md ├── perl_search_replace.uk.md ├── perl_search_replace.zh.md ├── rpaste.fr.md ├── rpaste.it.md ├── rpaste.ko.md ├── rpaste.md ├── rpaste.uk.md ├── scripts │ ├── NoSleep.fr.md │ ├── NoSleep.it.md │ ├── NoSleep.ko.md │ ├── NoSleep.md │ ├── NoSleep.uk.md │ ├── bash_stub.de.md │ ├── bash_stub.es.md │ ├── bash_stub.fr.md │ ├── bash_stub.it.md │ ├── bash_stub.ko.md │ ├── bash_stub.md │ ├── bash_stub.uk.md │ └── bash_stub.zh.md ├── sed_search_replace.es.md ├── sed_search_replace.fr.md ├── sed_search_replace.it.md ├── sed_search_replace.ko.md ├── sed_search_replace.md ├── sed_search_replace.uk.md ├── setup_local_repo.es.md ├── setup_local_repo.fr.md ├── setup_local_repo.it.md ├── setup_local_repo.ko.md ├── setup_local_repo.md ├── setup_local_repo.uk.md ├── string_color.fr.md ├── string_color.it.md ├── string_color.ko.md ├── string_color.md ├── string_color.uk.md ├── string_color.zh.md ├── systemd_service_for_python_script.de.md ├── systemd_service_for_python_script.fr.md ├── systemd_service_for_python_script.it.md ├── systemd_service_for_python_script.ko.md ├── systemd_service_for_python_script.md ├── systemd_service_for_python_script.uk.md ├── test_cpu_compat.fr.md ├── test_cpu_compat.it.md ├── test_cpu_compat.md ├── test_cpu_compat.uk.md ├── torsocks.de.md ├── torsocks.fr.md ├── torsocks.it.md ├── torsocks.md └── torsocks.uk.md ├── guides ├── .pages ├── 8_6_installation.fr.md ├── 8_6_installation.it.md ├── 8_6_installation.ja.md ├── 8_6_installation.ko.md ├── 8_6_installation.md ├── 8_6_installation.sv.md ├── 8_6_installation.uk.md ├── 8_6_installation.zh.md ├── automation │ ├── anacron.de.md │ ├── anacron.fr.md │ ├── anacron.it.md │ ├── anacron.ko.md │ ├── anacron.md │ ├── anacron.uk.md │ ├── anacron.zh.md │ ├── cron_jobs_howto.de.md │ ├── cron_jobs_howto.es.md │ ├── cron_jobs_howto.fr.md │ ├── cron_jobs_howto.it.md │ ├── cron_jobs_howto.ko.md │ ├── cron_jobs_howto.md │ ├── cron_jobs_howto.uk.md │ ├── cron_jobs_howto.zh.md │ ├── cronie.it.md │ ├── cronie.ko.md │ ├── cronie.md │ ├── cronie.uk.md │ ├── cronie.zh.md │ ├── olivetin.es.md │ ├── olivetin.it.md │ ├── olivetin.ko.md │ ├── olivetin.md │ ├── olivetin.uk.md │ ├── olivetin.zh.md │ ├── olivetin │ │ ├── containeraction.png │ │ └── screenshotDesktop.png │ ├── templates-automation-packer-vsphere.fr.md │ ├── templates-automation-packer-vsphere.it.md │ ├── templates-automation-packer-vsphere.ko.md │ ├── templates-automation-packer-vsphere.md │ ├── templates-automation-packer-vsphere.uk.md │ └── templates-automation-packer-vsphere.zh.md ├── backup │ ├── dump_restore.md │ ├── dump_restore.uk.md │ ├── images │ │ ├── code.png │ │ └── zip.png │ ├── mirroring_lsyncd.es.md │ ├── mirroring_lsyncd.fr.md │ ├── mirroring_lsyncd.it.md │ ├── mirroring_lsyncd.ko.md │ ├── mirroring_lsyncd.md │ ├── mirroring_lsyncd.uk.md │ ├── mirroring_lsyncd.zh.md │ ├── rsnapshot_backup.es.md │ ├── rsnapshot_backup.it.md │ ├── rsnapshot_backup.ko.md │ ├── rsnapshot_backup.md │ ├── rsnapshot_backup.uk.md │ ├── rsync_ssh.es.md │ ├── rsync_ssh.it.md │ ├── rsync_ssh.ko.md │ ├── rsync_ssh.md │ ├── rsync_ssh.uk.md │ ├── rsync_ssh.zh.md │ ├── tar.md │ └── tar.uk.md ├── cloud │ ├── migration-to-new-azure-images.md │ └── migration-to-new-azure-images.uk.md ├── cms │ ├── chyrp_lite.md │ ├── chyrp_lite.uk.md │ ├── cloud_server_using_nextcloud.it.md │ ├── cloud_server_using_nextcloud.ko.md │ ├── cloud_server_using_nextcloud.md │ ├── cloud_server_using_nextcloud.uk.md │ ├── dokuwiki_server.es.md │ ├── dokuwiki_server.it.md │ ├── dokuwiki_server.ko.md │ ├── dokuwiki_server.md │ ├── dokuwiki_server.uk.md │ ├── wordpress-on-lamp.de.md │ ├── wordpress-on-lamp.md │ └── wordpress-on-lamp.uk.md ├── communications │ ├── asterisk_installation.fr.md │ ├── asterisk_installation.it.md │ ├── asterisk_installation.ko.md │ ├── asterisk_installation.md │ └── asterisk_installation.uk.md ├── containers │ ├── .pages │ ├── img │ │ ├── podman_nextcloud_db_setup.png │ │ ├── rancher_cluster_create.png │ │ ├── rancher_cluster_ready.png │ │ ├── rancher_create_custom_cluster.png │ │ ├── rancher_hosts_registration.png │ │ ├── rancher_k3s_local_cluster.png │ │ └── rancher_login.png │ ├── lxd_web_servers.it.md │ ├── lxd_web_servers.ko.md │ ├── lxd_web_servers.md │ ├── lxd_web_servers.uk.md │ ├── podman-nextcloud.it.md │ ├── podman-nextcloud.ko.md │ ├── podman-nextcloud.md │ ├── podman-nextcloud.uk.md │ ├── podman_guide.md │ ├── podman_guide.uk.md │ ├── rancher_and_kubernetes.ko.md │ ├── rancher_and_kubernetes.md │ └── rancher_and_kubernetes.uk.md ├── contribute │ ├── .pages │ ├── README.de.md │ ├── README.es.md │ ├── README.fr.md │ ├── README.it.md │ ├── README.ko.md │ ├── README.md │ ├── README.tr.md │ ├── README.uk.md │ ├── README.zh.md │ ├── beginners.it.md │ ├── beginners.ko.md │ ├── beginners.md │ ├── beginners.uk.md │ ├── beginners.zh.md │ ├── copy_option.png │ ├── createnew.it.md │ ├── createnew.ko.md │ ├── createnew.md │ ├── createnew.uk.md │ ├── createnew.zh.md │ ├── index.fr.md │ ├── localdocs │ │ ├── .pages │ │ ├── index.de.md │ │ ├── index.fr.md │ │ ├── index.it.md │ │ ├── index.md │ │ ├── index.uk.md │ │ ├── local_docs.es.md │ │ ├── local_docs.fr.md │ │ ├── local_docs.it.md │ │ ├── local_docs.ko.md │ │ ├── local_docs.md │ │ ├── local_docs.uk.md │ │ ├── mkdocs_lsyncd.it.md │ │ ├── mkdocs_lsyncd.ko.md │ │ ├── mkdocs_lsyncd.md │ │ ├── mkdocs_lsyncd.uk.md │ │ ├── mkdocs_venv.it.md │ │ ├── mkdocs_venv.ko.md │ │ ├── mkdocs_venv.md │ │ ├── mkdocs_venv.uk.md │ │ ├── rockydocs_web_dev.de.md │ │ ├── rockydocs_web_dev.es.md │ │ ├── rockydocs_web_dev.fr.md │ │ ├── rockydocs_web_dev.it.md │ │ ├── rockydocs_web_dev.ko.md │ │ ├── rockydocs_web_dev.md │ │ ├── rockydocs_web_dev.uk.md │ │ ├── rockydocs_web_dev.zh.md │ │ ├── rockydocs_webdev_v2.it.md │ │ ├── rockydocs_webdev_v2.ko.md │ │ ├── rockydocs_webdev_v2.md │ │ ├── rockydocs_webdev_v2.pt-BR.md │ │ ├── rockydocs_webdev_v2.pt.md │ │ └── rockydocs_webdev_v2.uk.md │ ├── navigation.fr.md │ ├── navigation.it.md │ ├── navigation.ko.md │ ├── navigation.md │ ├── navigation.uk.md │ ├── navigation.zh.md │ ├── rockydocs_formatting.it.md │ ├── rockydocs_formatting.ko.md │ ├── rockydocs_formatting.md │ ├── rockydocs_formatting.uk.md │ ├── style_guide.it.md │ ├── style_guide.ko.md │ ├── style_guide.md │ ├── style_guide.uk.md │ └── style_guide.zh.md ├── custom-linux-kernel.fr.md ├── custom-linux-kernel.it.md ├── custom-linux-kernel.ko.md ├── custom-linux-kernel.md ├── custom-linux-kernel.uk.md ├── custom-linux-kernel.zh.md ├── database │ ├── database_mariadb-server.de.md │ ├── database_mariadb-server.es.md │ ├── database_mariadb-server.it.md │ ├── database_mariadb-server.ko.md │ ├── database_mariadb-server.md │ └── database_mariadb-server.uk.md ├── desktop │ ├── images │ │ ├── eula.png │ │ ├── kde_boot.png │ │ ├── kde_config.png │ │ ├── kde_finish_config.png │ │ ├── kde_install.png │ │ ├── kde_install_2.png │ │ ├── kde_install_final.png │ │ ├── kde_language.png │ │ ├── kde_live.png │ │ ├── kde_screen.png │ │ ├── mate_boot.png │ │ ├── mate_desktop.png │ │ ├── mate_finish.png │ │ ├── mate_install.png │ │ ├── mate_install_2.png │ │ ├── mate_install_final.png │ │ ├── mate_live.png │ │ ├── xfce_9_min_1.png │ │ ├── xfce_9_min_2.png │ │ ├── xfce_9_min_3.png │ │ ├── xfce_9_min_4.png │ │ ├── xfce_9_min_5.png │ │ ├── xfce_9_min_6.png │ │ ├── xfce_9_min_7.png │ │ ├── xfce_9_min_8.png │ │ ├── xfce_boot.png │ │ ├── xfce_desktop.png │ │ ├── xfce_install.png │ │ ├── xfce_install_2.png │ │ ├── xfce_install_3.png │ │ ├── xfce_install_final.png │ │ └── xfce_language.png │ ├── kde_installation.fr.md │ ├── kde_installation.it.md │ ├── kde_installation.ko.md │ ├── kde_installation.md │ ├── kde_installation.uk.md │ ├── mate_installation.es.md │ ├── mate_installation.fr.md │ ├── mate_installation.it.md │ ├── mate_installation.ko.md │ ├── mate_installation.md │ ├── mate_installation.uk.md │ ├── xfce_installation.es.md │ ├── xfce_installation.fr.md │ ├── xfce_installation.it.md │ ├── xfce_installation.ko.md │ ├── xfce_installation.md │ └── xfce_installation.uk.md ├── dns │ ├── images │ │ └── dns_filter.png │ ├── knot_authoritative_dns.de.md │ ├── knot_authoritative_dns.fr.md │ ├── knot_authoritative_dns.md │ ├── knot_authoritative_dns.uk.md │ ├── nsd_authoritative_dns.de.md │ ├── nsd_authoritative_dns.fr.md │ ├── nsd_authoritative_dns.md │ ├── nsd_authoritative_dns.uk.md │ ├── private_dns_server_using_bind.fr.md │ ├── private_dns_server_using_bind.it.md │ ├── private_dns_server_using_bind.ko.md │ ├── private_dns_server_using_bind.md │ ├── private_dns_server_using_bind.uk.md │ ├── unbound_recursive_dns.de.md │ ├── unbound_recursive_dns.fr.md │ ├── unbound_recursive_dns.md │ └── unbound_recursive_dns.uk.md ├── editors │ ├── .pages │ ├── images │ │ ├── font_nerd_view.png │ │ ├── micro-text-editor.png │ │ ├── nvchad_final.png │ │ ├── nvchad_init.png │ │ ├── nvchad_rocky.png │ │ └── nvchad_themes.png │ ├── micro.es.md │ ├── micro.fr.md │ ├── micro.it.md │ ├── micro.ko.md │ ├── micro.md │ └── micro.uk.md ├── email │ ├── 01-email-system.fr.md │ ├── 01-email-system.it.md │ ├── 01-email-system.ko.md │ ├── 01-email-system.md │ ├── 01-email-system.uk.md │ ├── 02-basic-email-system.it.md │ ├── 02-basic-email-system.md │ ├── 02-basic-email-system.uk.md │ ├── email-images │ │ ├── Wietse Venema.png │ │ ├── email-system01.jpg │ │ ├── email-system02.jpg │ │ ├── email-system03.jpg │ │ ├── test1.jpg │ │ ├── test2.jpg │ │ ├── test3.jpg │ │ └── test4.jpg │ ├── postfix_reporting.fr.md │ ├── postfix_reporting.it.md │ ├── postfix_reporting.ko.md │ ├── postfix_reporting.md │ └── postfix_reporting.uk.md ├── file_sharing │ ├── glusterfs.es.md │ ├── glusterfs.it.md │ ├── glusterfs.ko.md │ ├── glusterfs.md │ ├── glusterfs.uk.md │ ├── nfsserver.it.md │ ├── nfsserver.ko.md │ ├── nfsserver.md │ ├── nfsserver.uk.md │ ├── samba_file_share.fr.md │ ├── samba_file_share.md │ ├── samba_file_share.uk.md │ ├── secure_ftp_server_vsftpd.it.md │ ├── secure_ftp_server_vsftpd.ko.md │ ├── secure_ftp_server_vsftpd.md │ ├── secure_ftp_server_vsftpd.uk.md │ ├── sftp.it.md │ ├── sftp.ko.md │ ├── sftp.md │ ├── sftp.uk.md │ ├── transmission_daemon.md │ └── transmission_daemon.uk.md ├── hardware │ ├── hpe_amsd.fr.md │ ├── hpe_amsd.md │ ├── hpe_amsd.uk.md │ ├── x710_bridge_vlan.md │ └── x710_bridge_vlan.uk.md ├── images │ ├── Il01-kernel.png │ ├── Il02-kernel.png │ ├── Thumbs.db │ ├── anacron_01.png │ ├── asterisk_menuselect.png │ ├── caddy_example.png │ ├── caddy_php.png │ ├── chyrp_lite.png │ ├── chyrp_lite_setup.png │ ├── cockpit_dashboard.png │ ├── cockpit_login.png │ ├── cockpit_root_dashboard.png │ ├── cockpit_vm_create_1.png │ ├── cockpit_vm_create_2.png │ ├── cockpit_vm_create_3.png │ ├── cockpit_vm_dashboard.png │ ├── cockpit_vm_ip.png │ ├── cockpit_vm_terminal.png │ ├── gw_atomunstaged.png │ ├── gw_fork.png │ ├── gw_gcbranches.png │ ├── gw_gitcolaunstaged.png │ ├── gw_greencode.png │ ├── gw_sshcopy.png │ ├── haproxy_apache_lxd.png │ ├── henet_1.png │ ├── henet_2.png │ ├── hpe_ilo_amsd.png │ ├── i2p_proxy_ff_1.png │ ├── i2p_proxy_ff_2.png │ ├── i2p_proxy_ff_3.png │ ├── i2p_proxy_ff_4.png │ ├── install_8_9_01.png │ ├── install_9_3_01.png │ ├── installation-F01.png │ ├── installation-F02.png │ ├── installation-F03.png │ ├── installation-F04.png │ ├── installation-F06.png │ ├── installation_8.5_F01.png │ ├── installation_8.5_F02.png │ ├── installation_8_F02.png │ ├── installation_9.0_F01.png │ ├── installation_9.0_F02.png │ ├── installation_9.0_F03.png │ ├── installation_9.2_F01.png │ ├── installation_9_F02.png │ ├── intel_x710_drivers.png │ ├── librenms_add_device.png │ ├── librenms_administrative_user.png │ ├── librenms_alert_rule.png │ ├── librenms_configure_database.png │ ├── librenms_configure_database_status.png │ ├── librenms_login.png │ ├── librenms_prechecks.png │ ├── lxd-web-server-01.png │ ├── lxd-web-server-02.png │ ├── lxd-web-server-03.png │ ├── lxd-web-server-04.png │ ├── migrate2rocky-convert-01.png │ ├── migrate2rocky-convert-02.png │ ├── migrate2rocky-convert-03.png │ ├── migrate2rocky-github-zip.png │ ├── nextcloud_screen.jpg │ ├── onion_service.png │ ├── samba_nautilus.png │ ├── selinux_001.png │ ├── selinux_002.png │ ├── selinux_003.png │ ├── selinux_004.png │ ├── tailscale_1.png │ ├── tailscale_2.png │ ├── tailscale_3.png │ ├── transmission.png │ ├── vbox-01.png │ ├── vbox-02.png │ ├── vbox-03.png │ ├── vbox-04.png │ ├── vbox-05.png │ ├── vbox-06.png │ ├── vbox-07.png │ ├── vbox-08.png │ ├── vbox-09.png │ ├── vbox-10.png │ ├── vbox-11.png │ └── vbox-12.png ├── index.af.md ├── index.en.md ├── index.es.md ├── index.fr.md ├── index.it.md ├── index.ja.md ├── index.ko.md ├── index.zh.md ├── installation.it.md ├── installation.ko.md ├── installation.md ├── installation.uk.md ├── installation.zh.md ├── interoperability │ ├── import_rocky_to_wsl.de.md │ ├── import_rocky_to_wsl.es.md │ ├── import_rocky_to_wsl.fr.md │ ├── import_rocky_to_wsl.it.md │ ├── import_rocky_to_wsl.ko.md │ ├── import_rocky_to_wsl.md │ └── import_rocky_to_wsl.uk.md ├── isos │ ├── iso_creation.de.md │ ├── iso_creation.fr.md │ ├── iso_creation.md │ └── iso_creation.uk.md ├── kernel │ ├── regenerate_initramfs.de.md │ ├── regenerate_initramfs.fr.md │ ├── regenerate_initramfs.md │ └── regenerate_initramfs.uk.md ├── migrate2rocky.es.md ├── migrate2rocky.fr.md ├── migrate2rocky.it.md ├── migrate2rocky.ja.md ├── migrate2rocky.ko.md ├── migrate2rocky.md ├── migrate2rocky.uk.md ├── migrate2rocky.zh.md ├── mirror_management │ ├── add_mirror_manager.fr.md │ ├── add_mirror_manager.it.md │ ├── add_mirror_manager.ko.md │ ├── add_mirror_manager.md │ ├── add_mirror_manager.sv.md │ └── add_mirror_manager.uk.md ├── network │ ├── accel-ppp_pppoe_server.fr.md │ ├── accel-ppp_pppoe_server.md │ ├── accel-ppp_pppoe_server.uk.md │ ├── basic_network_configuration.fr.md │ ├── basic_network_configuration.it.md │ ├── basic_network_configuration.ko.md │ ├── basic_network_configuration.md │ ├── basic_network_configuration.uk.md │ ├── basic_network_configuration.zh.md │ ├── glances_network_monitoring.md │ ├── glances_network_monitoring.uk.md │ ├── hurricane_electric_ipv6_tunnel.fr.md │ ├── hurricane_electric_ipv6_tunnel.md │ ├── hurricane_electric_ipv6_tunnel.uk.md │ ├── images │ │ ├── glances-dashboard.webp │ │ ├── nmtui_automatic.png │ │ ├── nmtui_edit.png │ │ ├── nmtui_first.png │ │ ├── nmtui_manual.png │ │ └── nmtui_remove.png │ ├── librenms_monitoring_server.it.md │ ├── librenms_monitoring_server.ko.md │ ├── librenms_monitoring_server.md │ ├── librenms_monitoring_server.uk.md │ ├── openbgpd_bgp_router.md │ └── openbgpd_bgp_router.uk.md ├── package_management │ ├── .pages │ ├── dnf_package_manager.ko.md │ ├── dnf_package_manager.md │ ├── dnf_package_manager.uk.md │ ├── index.fr.md │ ├── index.it.md │ ├── index.ko.md │ ├── index.md │ ├── index.uk.md │ ├── package_build_troubleshooting.fr.md │ ├── package_build_troubleshooting.it.md │ ├── package_build_troubleshooting.ko.md │ ├── package_build_troubleshooting.md │ ├── package_build_troubleshooting.uk.md │ ├── package_build_troubleshooting.zh.md │ ├── package_debranding.it.md │ ├── package_debranding.ko.md │ ├── package_debranding.md │ ├── package_debranding.sv.md │ ├── package_debranding.uk.md │ ├── package_dev_start.it.md │ ├── package_dev_start.ko.md │ ├── package_dev_start.md │ ├── package_dev_start.uk.md │ ├── package_dev_start.zh.md │ ├── package_signing.de.md │ ├── package_signing.it.md │ ├── package_signing.ko.md │ ├── package_signing.md │ ├── package_signing.sv.md │ └── package_signing.uk.md ├── proxies │ ├── haproxy_apache_lxd.it.md │ ├── haproxy_apache_lxd.ko.md │ ├── haproxy_apache_lxd.md │ ├── haproxy_apache_lxd.uk.md │ ├── i2pd.md │ ├── i2pd.uk.md │ ├── images │ │ ├── pound_apache.jpg │ │ └── pound_nginx.jpg │ ├── pound.it.md │ ├── pound.ko.md │ ├── pound.md │ ├── pound.pl.md │ ├── pound.uk.md │ ├── tor_relay.it.md │ ├── tor_relay.md │ └── tor_relay.uk.md ├── repositories │ ├── images │ │ ├── empty_pulp_index.png │ │ └── pulp_index_content.png │ ├── pulp_fetch_upload.md │ └── pulp_fetch_upload.uk.md ├── security │ ├── .pages │ ├── authentication │ │ ├── active_directory_authentication.fr.md │ │ ├── active_directory_authentication.it.md │ │ ├── active_directory_authentication.ko.md │ │ ├── active_directory_authentication.md │ │ ├── active_directory_authentication.uk.md │ │ ├── active_directory_authentication_with_samba.fr.md │ │ ├── active_directory_authentication_with_samba.md │ │ └── active_directory_authentication_with_samba.uk.md │ ├── dnf_automatic.es.md │ ├── dnf_automatic.it.md │ ├── dnf_automatic.ko.md │ ├── dnf_automatic.md │ ├── dnf_automatic.uk.md │ ├── enabling_iptables_firewall.es.md │ ├── enabling_iptables_firewall.it.md │ ├── enabling_iptables_firewall.ko.md │ ├── enabling_iptables_firewall.md │ ├── enabling_iptables_firewall.sv.md │ ├── enabling_iptables_firewall.uk.md │ ├── firewalld-beginners.fr.md │ ├── firewalld-beginners.it.md │ ├── firewalld-beginners.ko.md │ ├── firewalld-beginners.md │ ├── firewalld-beginners.pl.md │ ├── firewalld-beginners.sv.md │ ├── firewalld-beginners.uk.md │ ├── firewalld.it.md │ ├── firewalld.ko.md │ ├── firewalld.md │ ├── firewalld.uk.md │ ├── freeradius_radius_server.de.md │ ├── freeradius_radius_server.md │ ├── freeradius_radius_server.uk.md │ ├── generating_ssl_keys_lets_encrypt.es.md │ ├── generating_ssl_keys_lets_encrypt.it.md │ ├── generating_ssl_keys_lets_encrypt.ko.md │ ├── generating_ssl_keys_lets_encrypt.md │ ├── generating_ssl_keys_lets_encrypt.uk.md │ ├── images │ │ ├── pam-001.png │ │ └── pam-002.png │ ├── learning_selinux.fr.md │ ├── learning_selinux.it.md │ ├── learning_selinux.ko.md │ ├── learning_selinux.md │ ├── learning_selinux.uk.md │ ├── openvpn.md │ ├── openvpn.uk.md │ ├── pam.it.md │ ├── pam.ko.md │ ├── pam.md │ ├── pam.uk.md │ ├── ssh_ca_key_signing.fr.md │ ├── ssh_ca_key_signing.md │ ├── ssh_ca_key_signing.uk.md │ ├── ssh_public_private_keys.es.md │ ├── ssh_public_private_keys.it.md │ ├── ssh_public_private_keys.ko.md │ ├── ssh_public_private_keys.md │ ├── ssh_public_private_keys.pl.md │ ├── ssh_public_private_keys.sv.md │ ├── ssh_public_private_keys.uk.md │ ├── ssh_public_private_keys.zh.md │ ├── ssl_keys_https.es.md │ ├── ssl_keys_https.it.md │ ├── ssl_keys_https.ko.md │ ├── ssl_keys_https.md │ ├── ssl_keys_https.pl.md │ ├── ssl_keys_https.uk.md │ ├── ssl_keys_https.zh.md │ ├── systemd_hardening.md │ ├── systemd_hardening.uk.md │ ├── tailscale_vpn.it.md │ ├── tailscale_vpn.ko.md │ ├── tailscale_vpn.md │ ├── tailscale_vpn.uk.md │ ├── wireguard_vpn.de.md │ ├── wireguard_vpn.md │ └── wireguard_vpn.uk.md ├── troubleshooting │ ├── kernel_panic.fr.md │ ├── kernel_panic.md │ └── kernel_panic.uk.md ├── update_versions.fr.md ├── update_versions.md ├── update_versions.uk.md ├── virtualization │ ├── cockpit-machines.fr.md │ ├── cockpit-machines.md │ ├── cockpit-machines.uk.md │ ├── libvirt-rocky.fr.md │ ├── libvirt-rocky.md │ ├── libvirt-rocky.uk.md │ ├── vbox-rocky.es.md │ ├── vbox-rocky.fr.md │ ├── vbox-rocky.it.md │ ├── vbox-rocky.ko.md │ ├── vbox-rocky.md │ ├── vbox-rocky.uk.md │ ├── vmware_tools.fr.md │ ├── vmware_tools.ko.md │ ├── vmware_tools.md │ └── vmware_tools.uk.md └── web │ ├── .pages │ ├── apache-sites-enabled.es.md │ ├── apache-sites-enabled.fr.md │ ├── apache-sites-enabled.it.md │ ├── apache-sites-enabled.ko.md │ ├── apache-sites-enabled.md │ ├── apache-sites-enabled.uk.md │ ├── apache-sites-enabled.zh.md │ ├── apache_hardened_webserver │ ├── .pages │ ├── images │ │ └── hardened_webserver_figure1.jpeg │ ├── index.it.md │ ├── index.ko.md │ ├── index.md │ ├── index.uk.md │ ├── modsecurity.it.md │ ├── modsecurity.ko.md │ ├── modsecurity.md │ ├── modsecurity.uk.md │ ├── ossec-hids.it.md │ ├── ossec-hids.ko.md │ ├── ossec-hids.md │ ├── ossec-hids.uk.md │ ├── rkhunter.es.md │ ├── rkhunter.fr.md │ ├── rkhunter.it.md │ ├── rkhunter.ko.md │ ├── rkhunter.md │ └── rkhunter.uk.md │ ├── caddy.it.md │ ├── caddy.md │ ├── caddy.uk.md │ ├── mod_SSL_apache.it.md │ ├── mod_SSL_apache.ko.md │ ├── mod_SSL_apache.md │ ├── mod_SSL_apache.uk.md │ ├── nginx-mainline.it.md │ ├── nginx-mainline.ko.md │ ├── nginx-mainline.md │ ├── nginx-mainline.uk.md │ ├── nginx-multisite.it.md │ ├── nginx-multisite.ko.md │ ├── nginx-multisite.md │ ├── nginx-multisite.uk.md │ ├── nginx │ └── images │ │ ├── Thumbs.db │ │ ├── multisite-nginx.png │ │ └── welcome-nginx.png │ ├── php.it.md │ ├── php.ko.md │ ├── php.md │ ├── php.uk.md │ ├── tor_onion_service.md │ └── tor_onion_service.uk.md ├── index.af.md ├── index.de.md ├── index.es.md ├── index.fr.md ├── index.hi.md ├── index.id.md ├── index.it.md ├── index.ja.md ├── index.ko.md ├── index.md ├── index.pt.md ├── index.tr.md ├── index.uk.md ├── index.zh.md ├── labs ├── .pages ├── index.de.md ├── index.fr.md ├── index.it.md ├── index.ja.md ├── index.ko.md ├── index.md ├── index.uk.md ├── index.zh.md ├── kubernetes-the-hard-way │ ├── .pages │ ├── 01-prerequisites.fr.md │ ├── images │ │ └── cc_by_sa.png │ ├── lab0-README.md │ ├── lab0-README.uk.md │ ├── lab1-prerequisites.fr.md │ ├── lab1-prerequisites.md │ ├── lab1-prerequisites.uk.md │ ├── lab10-configuring-kubectl.md │ ├── lab10-configuring-kubectl.uk.md │ ├── lab11-pod-network-routes.md │ ├── lab11-pod-network-routes.uk.md │ ├── lab12-smoke-test.md │ ├── lab12-smoke-test.uk.md │ ├── lab13-cleanup.md │ ├── lab13-cleanup.uk.md │ ├── lab2-jumpbox.md │ ├── lab2-jumpbox.uk.md │ ├── lab3-compute-resources.md │ ├── lab3-compute-resources.uk.md │ ├── lab4-certificate-authority.md │ ├── lab4-certificate-authority.uk.md │ ├── lab5-kubernetes-configuration-files.md │ ├── lab5-kubernetes-configuration-files.uk.md │ ├── lab6-data-encryption-keys.md │ ├── lab6-data-encryption-keys.uk.md │ ├── lab7-bootstrapping-etcd.md │ ├── lab7-bootstrapping-etcd.uk.md │ ├── lab8-bootstrapping-kubernetes-controllers.md │ ├── lab8-bootstrapping-kubernetes-controllers.uk.md │ ├── lab9-bootstrapping-kubernetes-workers.md │ └── lab9-bootstrapping-kubernetes-workers.uk.md ├── networking │ ├── lab5-nfs.it.md │ ├── lab5-nfs.md │ ├── lab5-nfs.uk.md │ ├── lab8-samba.md │ └── lab8-samba.uk.md ├── security │ ├── index.de.md │ ├── index.es.md │ ├── index.fr.md │ ├── index.it.md │ ├── index.ko.md │ ├── index.md │ ├── index.uk.md │ ├── index.zh.md │ ├── introduction.de.md │ ├── introduction.es.md │ ├── introduction.fr.md │ ├── introduction.it.md │ ├── introduction.ko.md │ ├── introduction.md │ ├── introduction.uk.md │ ├── introduction.zh.md │ ├── lab3-auditing_the_system.it.md │ ├── lab3-auditing_the_system.md │ ├── lab3-auditing_the_system.uk.md │ ├── lab8-iptables.it.md │ ├── lab8-iptables.md │ ├── lab8-iptables.uk.md │ ├── lab9-cryptography.it.md │ ├── lab9-cryptography.ko.md │ ├── lab9-cryptography.md │ └── lab9-cryptography.uk.md ├── systems_administration_I │ ├── lab3-system_utilities.md │ ├── lab3-system_utilities.uk.md │ ├── lab5-networking.md │ ├── lab5-networking.uk.md │ ├── lab6-user_and_group_management.md │ ├── lab6-user_and_group_management.uk.md │ ├── lab7-software_management.it.md │ ├── lab7-software_management.ko.md │ ├── lab7-software_management.md │ ├── lab7-software_management.uk.md │ ├── lab7-software_management.zh.md │ ├── lab8-system_and_process_monitoring-I.md │ └── lab8-system_and_process_monitoring-I.uk.md └── systems_administration_II │ ├── images │ ├── lab2-il01-kernel.png │ └── lab2-il02-kernel.png │ ├── lab3-bootup_and_startup.it.md │ ├── lab3-bootup_and_startup.md │ ├── lab3-bootup_and_startup.uk.md │ ├── lab4-advanced_system_process_monitoring.md │ ├── lab4-advanced_system_process_monitoring.uk.md │ ├── lab6-the_file_system.it.md │ ├── lab6-the_file_system.md │ ├── lab6-the_file_system.uk.md │ ├── lab7-the_linux_kernel.it.md │ ├── lab7-the_linux_kernel.md │ └── lab7-the_linux_kernel.uk.md ├── release_notes ├── .pages ├── 8-changelog.de.md ├── 8-changelog.es.md ├── 8-changelog.fr.md ├── 8-changelog.id.md ├── 8-changelog.it.md ├── 8-changelog.ja.md ├── 8-changelog.ko.md ├── 8-changelog.md ├── 8-changelog.pt.md ├── 8-changelog.sv.md ├── 8-changelog.uk.md ├── 8-changelog.zh.md ├── 8_10.de.md ├── 8_10.fr.md ├── 8_10.it.md ├── 8_10.md ├── 8_10.uk.md ├── 8_10.zh.md ├── 8_4.fr.md ├── 8_4.it.md ├── 8_4.ko.md ├── 8_4.md ├── 8_4.uk.md ├── 8_4.zh.md ├── 8_5.fr.md ├── 8_5.it.md ├── 8_5.ko.md ├── 8_5.md ├── 8_5.uk.md ├── 8_5.zh.md ├── 8_6.es.md ├── 8_6.fr.md ├── 8_6.it.md ├── 8_6.ko.md ├── 8_6.md ├── 8_6.uk.md ├── 8_6.zh.md ├── 8_7.es.md ├── 8_7.fr.md ├── 8_7.it.md ├── 8_7.ko.md ├── 8_7.md ├── 8_7.uk.md ├── 8_7.zh.md ├── 8_8.fr.md ├── 8_8.it.md ├── 8_8.ko.md ├── 8_8.md ├── 8_8.uk.md ├── 8_8.zh.md ├── 8_9.de.md ├── 8_9.fr.md ├── 8_9.it.md ├── 8_9.md ├── 8_9.uk.md ├── 8_9.zh.md ├── 9_0.es.md ├── 9_0.fr.md ├── 9_0.it.md ├── 9_0.ko.md ├── 9_0.md ├── 9_0.uk.md ├── 9_0.zh.md ├── 9_1.es.md ├── 9_1.fr.md ├── 9_1.it.md ├── 9_1.ko.md ├── 9_1.md ├── 9_1.uk.md ├── 9_1.zh.md ├── 9_2.fr.md ├── 9_2.it.md ├── 9_2.ko.md ├── 9_2.md ├── 9_2.uk.md ├── 9_2.zh.md ├── 9_3.de.md ├── 9_3.fr.md ├── 9_3.it.md ├── 9_3.md ├── 9_3.uk.md ├── 9_3.zh.md ├── 9_4.de.md ├── 9_4.fr.md ├── 9_4.it.md ├── 9_4.md ├── 9_4.uk.md ├── 9_4.zh.md ├── 9_5.de.md ├── 9_5.fr.md ├── 9_5.it.md ├── 9_5.md ├── 9_5.uk.md ├── 9_5.zh.md ├── 9_6.md ├── index.de.md ├── index.es.md ├── index.fr.md ├── index.hi.md ├── index.id.md ├── index.it.md ├── index.ko.md ├── index.md ├── index.uk.md ├── index.zh.md ├── summer-of-docs-2024.de.md ├── summer-of-docs-2024.fr.md └── summer-of-docs-2024.it.md └── rocky_insights ├── announcements ├── .pages ├── index.md └── rsod │ ├── 2024 │ ├── summer-of-docs-2024.de.md │ ├── summer-of-docs-2024.fr.md │ ├── summer-of-docs-2024.it.md │ ├── summer-of-docs-2024.md │ └── summer-of-docs-2024.uk.md │ ├── index.de.md │ ├── index.fr.md │ ├── index.md │ └── index.uk.md ├── blogs ├── active_voice.md ├── index.de.md ├── index.fr.md ├── index.it.md ├── index.md ├── index.uk.md ├── index.zh.md └── open_source.md └── links ├── .pages ├── index.md └── sigs ├── index.de.md ├── index.fr.md ├── index.it.md ├── index.md ├── index.pt.md ├── index.uk.md └── index.zh.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # We'll let Git's auto-detection algorithm infer if a file is text. If it is, 2 | # enforce LF line endings regardless of OS or git configurations. 3 | * text=auto eol=lf 4 | 5 | # Isolate binary files in case the auto-detection algorithm fails and 6 | # marks them as text files (which could brick them). 7 | *.{png,jpg,jpeg,gif,webp,woff,woff2} binary 8 | 9 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | #### Author checklist (Completed by original Author) 2 | - [ ] Good fit for the Rocky Linux project? Title and Author Metatags inserted ? 3 | - [ ] If applicable, steps and instructions have been tested to work 4 | - [ ] Initial self-review to fix basic typos and grammar completed 5 | 6 | #### Rocky Documentation checklist (Completed by Rocky team) 7 | - [ ] 1st Pass (Document is good fit for project and author checklist completed) 8 | - [ ] 2nd Pass (Technical Review - check for technical correctness) 9 | - [ ] 3rd Pass (Detailed Editorial Review and Peer Review) 10 | - [ ] Final approval (Final Review) 11 | 12 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Build and Deploy (Fastly) 3 | on: 4 | push: 5 | branches: ['main'] 6 | workflow_dispatch: 7 | 8 | jobs: 9 | trigger: 10 | runs-on: ubuntu-latest 11 | environment: production 12 | steps: 13 | - name: Trigger rocky-linux/docs.rockylinux.org Deploy 14 | uses: peter-evans/repository-dispatch@v3 15 | with: 16 | token: ${{ secrets.CROSS_REPO_PAT }} 17 | repository: rocky-linux/docs.rockylinux.org 18 | event-type: deploy 19 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Create monthly release 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: "0 0 1 * *" 6 | 7 | jobs: 8 | release: 9 | permissions: 10 | contents: write 11 | runs-on: ubuntu-latest 12 | steps: 13 | - name: Checkout 14 | uses: actions/checkout@v3 15 | - name: Get current date 16 | id: date 17 | run: echo "::set-output name=tag::$(date +'%b-%Y')" 18 | - name: Release 19 | uses: softprops/action-gh-release@v1 20 | with: 21 | generate_release_notes: true 22 | tag_name: "${{ steps.date.outputs.tag }}" 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build_pdf/pdf/*.pdf 2 | 3 | .cache 4 | -------------------------------------------------------------------------------- /build_pdf/README.MD: -------------------------------------------------------------------------------- 1 | # How to generate your own book 2 | 3 | ## Installation 4 | 5 | First, fork this repo. 6 | 7 | Next, please install the requirements: 8 | 9 | ```bash 10 | pip install --user -r requirements.txt 11 | ``` 12 | 13 | Then run the build process: 14 | 15 | ```bash 16 | cd build_pdf 17 | mkdocs build -f path_to_config_file.yml 18 | ``` 19 | 20 | or launch the bash script to build everything: 21 | 22 | ```bash 23 | bash build_all.sh 24 | ``` 25 | -------------------------------------------------------------------------------- /build_pdf/build_all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" 4 | cd $SCRIPTPATH 5 | 6 | for book in admin_book ansible_book bash_book disa_stig lxd_server middlewares rsync_book sed_awk_grep nvchad_book web_services 7 | 8 | do 9 | for config_file in $(ls ${SCRIPTPATH}/${book}/*.yml) 10 | do 11 | echo "Building $config_file" 12 | echo "---------------------" 13 | VERSION=$(date +%Y/%m/%d) mkdocs build -q -f $config_file -d ${SCRIPTPATH}/site/ 14 | echo "" 15 | done 16 | done 17 | rm -Rf ${SCRIPTPATH}/site/ 18 | -------------------------------------------------------------------------------- /build_pdf/build_en.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" 4 | cd $SCRIPTPATH 5 | 6 | for book in admin_book ansible_book bash_book disa_stig lxd_server middlewares rsync_book sed_awk_grep nvchad_book web_services 7 | 8 | do 9 | for config_file in $(ls ${SCRIPTPATH}/${book}/en.yml) 10 | do 11 | echo "Building $config_file" 12 | echo "---------------------" 13 | VERSION=$(date +%Y/%m/%d) mkdocs build -q -f $config_file -d ${SCRIPTPATH}/site/ 14 | echo "" 15 | done 16 | done 17 | rm -Rf ${SCRIPTPATH}/site/ 18 | -------------------------------------------------------------------------------- /build_pdf/build_webservices.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" 4 | cd $SCRIPTPATH 5 | 6 | for book in web_services 7 | 8 | do 9 | for config_file in $(ls ${SCRIPTPATH}/${book}/*.yml) 10 | do 11 | echo "Building $config_file" 12 | echo "---------------------" 13 | VERSION=$(date +%Y/%m/%d) mkdocs build -q -f $config_file -d ${SCRIPTPATH}/site/ 14 | echo "" 15 | done 16 | done 17 | rm -Rf ${SCRIPTPATH}/site/ 18 | -------------------------------------------------------------------------------- /build_pdf/disa_stig/en.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: DISA STIG On Rocky Linux 8 (English version) 20 | output_path: ../pdf/Disa_stig_rocky_linux.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - disa_stig/disa_stig_part1.md 26 | - disa_stig/disa_stig_part2.md 27 | - disa_stig/disa_stig_part3.md 28 | -------------------------------------------------------------------------------- /build_pdf/disa_stig/it.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: DISA STIG On Rocky Linux 8 (Italian version) 20 | output_path: ../pdf/Disa_stig_rocky_linux.it.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - disa_stig/disa_stig_part1.it.md 26 | - disa_stig/disa_stig_part2.it.md 27 | - disa_stig/disa_stig_part3.it.md 28 | -------------------------------------------------------------------------------- /build_pdf/disa_stig/uk.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: DISA STIG On Rocky Linux 8 (Ukrainian version) 20 | output_path: ../pdf/Disa_stig_rocky_linux.uk.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - disa_stig/disa_stig_part1.uk.md 26 | - disa_stig/disa_stig_part2.uk.md 27 | - disa_stig/disa_stig_part3.uk.md 28 | -------------------------------------------------------------------------------- /build_pdf/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs 2 | mkdocs-awesome-pages-plugin 3 | mkdocs-git-revision-date-localized-plugin 4 | mkdocs-localsearch 5 | mkdocs-material 6 | mkdocs-redirects 7 | mkdocs-static-i18n 8 | jieba 9 | mkdocs-with-pdf 10 | qrcode -------------------------------------------------------------------------------- /build_pdf/rsync_book/en.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: Learning Rsync On Rocky Linux (English version) 20 | output_path: ../pdf/learning_rsync_rocky_linux.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - learning_rsync/01_rsync_overview.md 26 | - learning_rsync/02_rsync_demo01.md 27 | - learning_rsync/03_rsync_demo02.md 28 | - learning_rsync/04_rsync_configure.md 29 | - learning_rsync/05_rsync_authentication-free_login.md 30 | - learning_rsync/06_rsync_inotify.md 31 | - learning_rsync/07_rsync_unison_use.md 32 | -------------------------------------------------------------------------------- /build_pdf/rsync_book/it.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: Learning Rsync On Rocky Linux (Italian version) 20 | output_path: ../pdf/learning_rsync_rocky_linux.it.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - learning_rsync/01_rsync_overview.it.md 26 | - learning_rsync/02_rsync_demo01.it.md 27 | - learning_rsync/03_rsync_demo02.it.md 28 | - learning_rsync/04_rsync_configure.it.md 29 | - learning_rsync/05_rsync_authentication-free_login.it.md 30 | - learning_rsync/06_rsync_inotify.it.md 31 | - learning_rsync/07_rsync_unison_use.it.md 32 | -------------------------------------------------------------------------------- /build_pdf/rsync_book/uk.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: Learning Rsync On Rocky Linux (Ukrainian version) 20 | output_path: ../pdf/learning_rsync_rocky_linux.uk.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - learning_rsync/01_rsync_overview.uk.md 26 | - learning_rsync/02_rsync_demo01.uk.md 27 | - learning_rsync/03_rsync_demo02.uk.md 28 | - learning_rsync/04_rsync_configure.uk.md 29 | - learning_rsync/05_rsync_authentication-free_login.uk.md 30 | - learning_rsync/06_rsync_inotify.uk.md 31 | - learning_rsync/07_rsync_unison_use.uk.md 32 | -------------------------------------------------------------------------------- /build_pdf/sed_awk_grep/en.yml: -------------------------------------------------------------------------------- 1 | --- 2 | INHERIT: ../build_base.yml 3 | 4 | # Do not modify this block 5 | pdf-config: &pdf-config 6 | author: Rocky Documentation Team 7 | cover: true 8 | cover_logo: ../assets/rocky-linux-logo.svg 9 | cover_subtitle: A book from the Documentation Team 10 | toc_level: 3 11 | ordered_chapter_level: 3 12 | verbose: false 13 | back_cover: true 14 | 15 | # You are free to configure here what you want 16 | plugins: 17 | - with-pdf: 18 | <<: *pdf-config 19 | cover_title: Sed & Awk & Grep - The Tree Swordsmen (English version) 20 | output_path: ../pdf/Sed_Awk_Grep_TheTreeSwordsmen.pdf 21 | 22 | # Customize your own book 23 | nav: 24 | - licence.md 25 | - sed_awk_grep/index.md 26 | 27 | - sed_awk_grep/1_regular_expressions_vs_wildcards.md 28 | - sed_awk_grep/2_grep_command.md 29 | - sed_awk_grep/3_sed_command.md 30 | - sed_awk_grep/4_awk_command.md 31 | -------------------------------------------------------------------------------- /build_pdf/templates/back_cover.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {%- set target_url = site_url or repo_url -%} 4 | {% if target_url is defined -%} 5 |
6 |
{{ target_url }}
7 | {%- endif %} 8 |
9 |
10 |
11 | -------------------------------------------------------------------------------- /build_pdf/templates/cover.html: -------------------------------------------------------------------------------- 1 |
2 | {% if cover_logo is defined %} 3 |
4 | 5 |
6 | {% else %} 7 |
8 | {% endif %} 9 |
10 |

{{ cover_title | e }}

11 |

{{ cover_subtitle | e }}

12 |

Version : {{ version | string | default('custom') }}

13 |
14 |
15 |
16 | {% if author is defined %} 17 |

{{ author | e }}

18 | {% endif %} 19 | {% if copyright is defined %} 20 | 21 | {% endif %} 22 |
23 |
24 |
-------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /docs/**/*.md 3 | ignore: 4 | - '*.af.md' 5 | - '*.de.md' 6 | - '*.cs.md' 7 | - '*.en.md' 8 | - '*.es.md' 9 | - '*.fr.md' 10 | - '*.hi.md' 11 | - '*.id.md' 12 | - '*.it.md' 13 | - '*.ja.md' 14 | - '*.ko.md' 15 | - '*.pl.md' 16 | - '*.pt.md' 17 | - '*.pt-BR.md' 18 | - '*.ru.md' 19 | - '*.sv.md' 20 | - '*.tr.md' 21 | - '*.uk.md' 22 | - '*.zh.md' 23 | - '/docs/release_notes/8.5.md' 24 | translation: /%original_path%/%file_name%.%two_letters_code%.%file_extension% 25 | update_option: update_as_unapproved 26 | -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - Guides: guides 5 | - Books: books 6 | - Labs: labs 7 | - Gemstones: gemstones 8 | - Desktop: desktop 9 | - Release Notes: release_notes 10 | - Rocky Insights: rocky_insights 11 | -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/rocky-linux-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/books/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - System Administrator's Guide: admin_guide 5 | - Learning Ansible: learning_ansible 6 | - Learning Bash: learning_bash 7 | - Learning Rsync: learning_rsync 8 | - LXD Server: lxd_server 9 | - Incus Server: incus_server 10 | - DISA STIG: disa_stig 11 | - Sed, Awk & Grep: sed_awk_grep 12 | - ... 13 | -------------------------------------------------------------------------------- /docs/books/admin_guide/00-toc.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 使用 Rocky 学习 Linux 3 | --- 4 | 5 | 6 | 7 | # 使用 Rocky 学习 Linux 8 | 9 | 《管理员指南》是侧重于系统管理员的教育文档的集合。 它们可以被想要快速入门的未来系统管理员使用,也可以被想要复习的现有系统管理员使用,或者被任何想要学习更多关于Linux环境、命令、进程等等的 Linux 用户使用。 与所有此类型的文档一样,它将随着时间的推移不断发展与更新。 10 | 11 | 我们从《Linux简介》开始,其中概述了 Linux、发行版和围绕我们操作系统的整个生态系统。 12 | 13 | User Commands 包含快速使用的 Linux 基本命令。 经验更丰富的用户还应该参考下面关于《高级Linux命令》的章节。 14 | 15 | VI 文本编辑器应该有它自己的章节。 虽然 Linux 附带了许多编辑器,但 VI 是最强大的编辑器之一。 其他命令有时使用与VI相同的语法(想起了`sed`)。 因此,了解一些关于 VI 的知识,或者至少了解其基本功能(如何打开文件、保存、退出或不保存而退出),是非常重要的。 用户在使用编辑器的过程中,会对VI的其他功能更加熟悉。 另一种选择是使用默认安装在Rocky Linux中的nano, 虽然功能不多,但它使用简单、直观,并且能完成工作。 16 | 17 | 接着,我们可以深入了解 Linux 的深层功能,以了解系统是如何解决以下问题: 18 | 19 | * 用户管理 20 | * 文件系统 21 | * 进程管理 22 | 23 | 备份和还原是系统管理员的重要信息。 Linux 附带了许多软件解决方案来加强备份(rsnapshot、lsyncd等)。 了解操作系统中存在的备份的基本组件是很有价值的。 在本章中,我们将研究两个工具:`tar` 和不太常用的 `cpio`。 24 | 25 | 《系统启动》也是需要重点阅读的,因为自从 systemd 出现后,系统在引导过程中的管理在最近几年已经有了很大的发展。 26 | 27 | 最后几章介绍了任务管理、网络实现和软件管理(包括安装)。 28 | -------------------------------------------------------------------------------- /docs/books/admin_guide/images/01-presentation-gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/01-presentation-gnome.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/01-presentation-kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/01-presentation-kde.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-001.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-002.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-003.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-004.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-005.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-006.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-007.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-008.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-009.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-010.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-011.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-012.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-013.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-014.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-015.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-016.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-017.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-018.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/07-file-systems-019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/07-file-systems-019.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/16-Kay-Sievers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/16-Kay-Sievers.jpg -------------------------------------------------------------------------------- /docs/books/admin_guide/images/16-Lennart-Poettering.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/16-Lennart-Poettering.jpg -------------------------------------------------------------------------------- /docs/books/admin_guide/images/16-effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/16-effect.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/16-init-compare.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/16-init-compare.jpg -------------------------------------------------------------------------------- /docs/books/admin_guide/images/16-tizen-systemd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/16-tizen-systemd.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/SetUID1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/SetUID1.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/SetUID2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/SetUID2.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/chage-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/chage-timeline.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/commands-pathabsolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/commands-pathabsolute.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/input-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/input-output.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/network-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/network-001.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/network-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/network-002.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/network-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/network-003.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/network-004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/network-004.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/operating_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/operating_system.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/pipe.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/shell-principle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/shell-principle.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/software-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/software-001.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/tasks-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/tasks-001.png -------------------------------------------------------------------------------- /docs/books/admin_guide/images/tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/admin_guide/images/tux.png -------------------------------------------------------------------------------- /docs/books/bash_programming/images/Shell01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/bash_programming/images/Shell01.png -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img1.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img10.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img11.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img12.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img13.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img14.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img15.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img16.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img17.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img18.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img19.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img2.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img20.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img3.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img4.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img5.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img6.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img7.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img8.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt1_img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt1_img9.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt2_img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt2_img1.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt2_img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt2_img2.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt2_img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt2_img3.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt2_img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt2_img4.jpg -------------------------------------------------------------------------------- /docs/books/disa_stig/images/disa_stig_pt2_img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/disa_stig/images/disa_stig_pt2_img5.jpg -------------------------------------------------------------------------------- /docs/books/index.ja.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 書籍・ホーム 3 | author: Steven Spencer 4 | contributors: Norio Yahata 5 | update: 13-Dec-2021 6 | --- 7 | 8 | # Rocky Linuxの取扱説明書 9 | 10 | このページはドキュメントの **「書籍」** に関するページです。ここには、より詳細なドキュメントが保管されています。これらのドキュメントは、自分のペースで作業を進めたり、進捗状況を把握したりしやすいように、セクションや「章」に分けられています。これらのドキュメントは、あなたと同じように、あるテーマに対する情熱を持った人々によって作成されています。 11 | 12 | あなたも、このセクションに追加の文章を書いてみたいと思いませんか?それは素晴らしいことです! 13 | [Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation)で会話に参加していただければ、私たちがあなたのお手伝をいします。 14 | -------------------------------------------------------------------------------- /docs/books/index.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 도서 3 | author: Steven Spencer 4 | contributors: '@fromoz' 5 | --- 6 | 7 | # Rocky Linux 교육용 도서들 8 | 9 | 이 문서는 **도서** 섹션입니다. 여기에서는 장문의 문서들이 보관됩니다. 이 문서들은 섹션 또는 "장(chapter)"으로 구성되어 있어 진행 속도를 자유롭게 조절하고 진행 상황을 추적하는 데 도움이 됩니다. 이 문서들은 특정 주제에 대한 열정을 가진 사람들과 같은 사람들이 만들었습니다. 10 | 11 | 이 섹션에 추가 내용을 작성해 보고 싶으신가요? 훌륭합니다! [Mattermost Documentation 채널](https://chat.rockylinux.org/rocky-linux/channels/documentation)에서 대화에 참여하시면 도움을 드리겠습니다. 12 | -------------------------------------------------------------------------------- /docs/books/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 书籍首页 3 | author: Steven Spencer 4 | contributors: '@fromoz, Ganna Zhyrnova' 5 | --- 6 | 7 | # Rocky Linux 教学书籍 8 | 9 | 您已经找到了文档的**"Books"** (书籍) 部分, 这是保存较长格式的详细文档的地方。 这些文档被拆分为若干部分或"章节",以便您可以按照自己的学习节奏轻松地阅读它们,掌握进度。 这些文档是由像您一样对某些主题充满热情的人创建的。 10 | 11 | 您想试着为这部分写一篇补充文章吗? 没问题! 只需加入[Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation) 对话频道即可,我们将为您提供帮助。 12 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ansible lernen mit Rocky Linux 3 | --- 4 | 5 | # Ansible lernen mit Rocky Linux 6 | 7 | Ansible ist eine einfache, aber leistungsstarke Automatisierungs-Engine für GNU/Linux. Dieses Tutorial führt Sie durch die Konzepte der Verwendung von Ansible zur Automatisierung Ihrer IT-Aufgaben auf eine Weise, die (hoffentlich) unterhaltsam und informativ ist. Die Verwendung der Übungen in diesen Kapiteln wird Ihnen dabei helfen, sich mit Ansible und realistischen Anwendungen vertraut zu machen. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.es.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Aprender Ansible con Rocky 3 | --- 4 | 5 | # Aprender Ansible con Rocky 6 | 7 | Ansible es un sencillo, pero potente motor de automatización para Linux. Este tutorial le guiará a través de los conceptos de uso de Ansible para automatizar sus tareas de TI de una manera que divertida e informativa. El uso de los ejercicios a lo largo de estos capítulos, le ayudará a ganar un nivel de comodidad con Ansible y su aplicacion en el mundo real. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Apprendre Ansible avec Rocky 3 | --- 4 | 5 | # Apprendre Ansible avec Rocky 6 | 7 | Ansible est un outil d'automatisation pour Linux simple, mais puissant. Ce tutoriel va vous guider au travers des concepts permettant d'utiliser Ansible pour automatiser vos tâches informatiques d'une façon amusante (espérons le) et informative. Les exercices présents dans ces chapitres vous permettront d'acquérir un niveau confortable pour utiliser Ansible en situation réelle. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.id.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Belajar Ansible dengan Rocky 3 | --- 4 | 5 | # Belajar Ansible dengan Rocky 6 | 7 | Ansible adalah mesin otomasi yang sederhana namun kuat untuk Linux. Tutorial ini akan memandu Anda melalui konsep penggunaan Ansible untuk mengotomatiskan tugas TI Anda dengan cara yang (semoga) menyenangkan dan informatif. Menggunakan latihan di seluruh bab ini, akan membantu Anda mendapatkan tingkat kenyamanan dengan Ansible dalam aplikasi dunia nyata. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Imparare Ansible con Rocky 3 | --- 4 | 5 | # Imparare Ansible con Rocky 6 | 7 | Ansible è un semplice, ma potente, motore di automazione per Linux. Questo tutorial ti guiderà attraverso i concetti dell'uso di Ansible per automatizzare le tue attività IT in un modo che sia (si spera) divertente e istruttivo. L'utilizzo degli esercizi in questi capitoli ti aiuterà a ottenere un buon livello di comfort con Ansible nelle applicazioni del mondo reale. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky와 Ansible 배우기 3 | --- 4 | 5 | # Rocky와 Ansible 배우기 6 | 7 | Ansible은 Linux를 위한 간단하면서도 강력한 자동화 엔진입니다. 이 튜토리얼은 Ansible을 사용하여 IT 작업을 자동화하는 개념을 재미있고 유익하게 안내합니다. 이 장에서 제공되는 연습문제를 사용하면 실제 응용 프로그램에서 Ansible에 대한 익숙함을 획득할 수 있습니다. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Learning Ansible with Rocky 3 | --- 4 | 5 | # Learning Ansible with Rocky 6 | 7 | Ansible is a simple, yet powerful, automation engine for Linux. This tutorial will guide you through the concepts of using Ansible to automate your IT tasks in a way that is (hopefully) fun and informative. Using the exercises throughout these chapters, will help you gain a comfort level with Ansible in real-world applications. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/00-toc.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Вивчаючи Ansible з Rocky 3 | --- 4 | 5 | # Вивчаючи Ansible з Rocky 6 | 7 | Ansible — це простий, але потужний механізм автоматизації для Linux. Цей підручник проведе вас через концепції використання Ansible для автоматизації ваших ІТ-завдань у (сподіваємось) цікавий та пізнавальний спосіб. Використання вправ у цих розділах допоможе вам отримати рівень комфорту з Ansible у реальних програмах. 8 | -------------------------------------------------------------------------------- /docs/books/learning_ansible/images/Michael_DeHaan01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_ansible/images/Michael_DeHaan01.jpg -------------------------------------------------------------------------------- /docs/books/learning_ansible/images/ansible-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_ansible/images/ansible-001.png -------------------------------------------------------------------------------- /docs/books/learning_ansible/images/ansistrano-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_ansible/images/ansistrano-001.png -------------------------------------------------------------------------------- /docs/books/learning_ansible/images/ansistrano-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_ansible/images/ansistrano-002.png -------------------------------------------------------------------------------- /docs/books/learning_ansible/images/handlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_ansible/images/handlers.png -------------------------------------------------------------------------------- /docs/books/learning_bash/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... 4 | - Appendix-Practical Examples: appendix 5 | -------------------------------------------------------------------------------- /docs/books/learning_rsync/images/Andrew_Tridgell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_rsync/images/Andrew_Tridgell.jpg -------------------------------------------------------------------------------- /docs/books/learning_rsync/images/Wayne_Davison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_rsync/images/Wayne_Davison.jpg -------------------------------------------------------------------------------- /docs/books/learning_rsync/images/rsync_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/learning_rsync/images/rsync_config.jpg -------------------------------------------------------------------------------- /docs/books/nvchad/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - ... | additional_software*.md 5 | - ... | install_nvim*.md 6 | - ... | install_nvchad*.md 7 | - ... | template_chadrc*.md 8 | - ... | nerd_fonts*.md 9 | - ... | vale_nvchad*.md 10 | - ... | marksman*.md 11 | - NvChad UI: nvchad_ui 12 | - Plugins: plugins 13 | -------------------------------------------------------------------------------- /docs/books/nvchad/images/e_tab_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/e_tab_command.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/find_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/find_command.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/font_nerd_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/font_nerd_view.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/help_visual_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/help_visual_mode.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/init_custom_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/init_custom_plugins.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/install_nvchad_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/install_nvchad_25.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/installed_first_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/installed_first_time.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_check.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_debug.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_help.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_install.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_log.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_nvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_nvim.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazy_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazy_profile.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazygit_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazygit_menu.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lazygit_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lazygit_ui.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/leader_ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/leader_ff.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lspconfig_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lspconfig_custom.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lua-language-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lua-language-server.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/lua_diagnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/lua_diagnostic.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/markdown_preview_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/markdown_preview_side.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/marksman_assistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/marksman_assistant.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/marksman_diagnostic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/marksman_diagnostic.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/marksman_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/marksman_enable.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/marksman_server_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/marksman_server_info.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/marksman_snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/marksman_snippets.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/mason_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/mason_help.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/mason_install_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/mason_install_ui.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/mason_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/mason_installed.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/mason_marksman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/mason_marksman.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/mason_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/mason_ui.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/neovim_tutor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/neovim_tutor.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nerd_fonts_site_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nerd_fonts_site_small.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvchad_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvchad_init.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvchad_rocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvchad_rocky.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvchad_th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvchad_th.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvchad_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvchad_ui.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvim_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvim_options.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvim_standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvim_standard.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvim_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvim_tree.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvimtree_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvimtree_basic.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvimtree_find_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvimtree_find_filter.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/nvimtree_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/nvimtree_git.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/preview_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/preview_commands.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/preview_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/preview_dark.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/preview_dark_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/preview_dark_on.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/preview_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/preview_mapping.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/remove_plugin_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/remove_plugin_01.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/remove_plugin_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/remove_plugin_02.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/telescope_find_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/telescope_find_files.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_default.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_default_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_default_light.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_escape_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_escape_key.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_nvchad_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_nvchad_split.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_statusline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_statusline.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_tabufline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_tabufline.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_wK_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_wK_01.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/ui_wK_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/ui_wK_key.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vale_ini_nvchad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vale_ini_nvchad.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vale_mason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vale_mason.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vale_mason_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vale_mason_installed.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vale_null-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vale_null-ls.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vale_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vale_sync.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/vsplit_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/vsplit_open.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/which_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/which_key.png -------------------------------------------------------------------------------- /docs/books/nvchad/images/yamlls_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/images/yamlls_server.png -------------------------------------------------------------------------------- /docs/books/nvchad/nvchad_ui/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | builtin_plugins*.md 4 | - ... | plugins_manager*.md 5 | - ... | nvchad_ui*.md 6 | - ... | using_nvchad*.md 7 | - ... | nvimtree*.md 8 | -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/markdown_preview_nvim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/markdown_preview_nvim.png -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/peek_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/peek_command.png -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/peek_webview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/peek_webview.png -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/plugins_lua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/plugins_lua.png -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/projectmgr_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/projectmgr_add.png -------------------------------------------------------------------------------- /docs/books/nvchad/plugins/images/projectmgr_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/nvchad/plugins/images/projectmgr_init.png -------------------------------------------------------------------------------- /docs/books/sed_awk_grep/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sed, Awk & Grep - the Three Swordsmen 3 | author: tianci li 4 | contributors: null 5 | tags: 6 | - grep 7 | - sed 8 | - awk 9 | - Expression régulière 10 | --- 11 | 12 | # Vue d'ensemble 13 | 14 | Le système d'exploitation GNU/Linux suit la philosophie selon laquelle « tout est un fichier ». Une conséquence de cette philosophie est que les administrateurs système doivent souvent interagir avec des fichiers, des noms de fichiers et leur contenu. 15 | 16 | En ce qui concerne le traitement du contenu des fichiers, les trois outils « grep », « sed » et « awk » sont puissants et fréquemment utilisés, c'est pourquoi les gens les appellent « Three Swordsmen ». 17 | -------------------------------------------------------------------------------- /docs/books/sed_awk_grep/index.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sed, Awk e Grep - i tre spadaccini 3 | author: tianci li 4 | contributors: null 5 | tags: 6 | - grep 7 | - sed 8 | - awk 9 | - Espressione regolare 10 | --- 11 | 12 | # Panoramica 13 | 14 | Il sistema operativo GNU/Linux segue la filosofia del "tutto è un file". Una conseguenza secondaria di questa filosofia è che gli amministratori di sistema devono spesso interagire con file, nomi di file e contenuti di file. 15 | 16 | Per quanto riguarda l'elaborazione del contenuto dei file, i tre strumenti `grep`, `sed` e `awk` sono potenti e frequentemente utilizzati, tanto che vengono chiamati i "tre spadaccini". 17 | -------------------------------------------------------------------------------- /docs/books/sed_awk_grep/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sed, Awk & Grep - the Three Swordsmen 3 | author: tianci li 4 | contributors: 5 | tags: 6 | - grep 7 | - sed 8 | - awk 9 | - Regular expression 10 | --- 11 | 12 | # Overview 13 | 14 | The GNU/Linux operating system follows the philosophy of "everything is a file". A side consequence of this philosophy is that system administrators often have to interact with files, file names, and file contents. 15 | 16 | Regarding processing file content, the three tools `grep`, `sed`, and `awk` are potent and frequently used, so people call them the "Three Swordsmen". 17 | -------------------------------------------------------------------------------- /docs/books/sed_awk_grep/index.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sed, Awk & Grep - три мечники 3 | author: tianci li 4 | contributors: null 5 | tags: 6 | - grep 7 | - sed 8 | - awk 9 | - Регулярний вираз 10 | --- 11 | 12 | # Огляд 13 | 14 | Операційна система GNU/Linux дотримується філософії «все є файлом». Побічним наслідком цієї філософії є те, що системним адміністраторам часто доводиться взаємодіяти з файлами, іменами файлів і вмістом файлів. 15 | 16 | Що стосується обробки вмісту файлу, три інструменти `grep`, `sed` і `awk` є потужними та часто використовуваними, тому люди називають їх "Трьома мечниками". 17 | -------------------------------------------------------------------------------- /docs/books/web_services/04-database-servers.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Capitolo 4. Server Database 5 | --- 6 | 7 | !!! info "Informazione" 8 | 9 | ``` 10 | È necessario scrivere un'introduzione sui server di database relazionali. 11 | ``` 12 | -------------------------------------------------------------------------------- /docs/books/web_services/04-database-servers.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: 3 | contributors: 4 | title: Part 4. Database Servers 5 | --- 6 | 7 | !!! info 8 | 9 | An introduction to relational database servers needs to be written. 10 | -------------------------------------------------------------------------------- /docs/books/web_services/04-database-servers.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Частина 4. Сервери баз даних 5 | --- 6 | 7 | !!! info 8 | 9 | ``` 10 | Треба написати вступ до серверів реляційних баз даних. 11 | ``` 12 | -------------------------------------------------------------------------------- /docs/books/web_services/05-load-balancer-proxies.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: Antoine Le Morvan 3 | contributors: null 4 | title: Chapitre 5 Équilibrage de charge, mise en cache et proxy 5 | --- 6 | 7 | # Chapitre 5 Équilibrage de charge, mise en cache et proxy 8 | 9 | Dans cette partie, nous discuterons des solutions existantes pour améliorer les performances du trafic et accepter de plus en plus de connexions clients. 10 | -------------------------------------------------------------------------------- /docs/books/web_services/05-load-balancer-proxies.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: Antoine Le Morvan 3 | contributors: null 4 | title: Capitolo 5. Load balancing, caching e proxy 5 | --- 6 | 7 | # Capitolo 5. Load balancing, caching e proxy 8 | 9 | In questa parte, discuteremo le soluzioni esistenti per migliorare le prestazioni del traffico e accettare un numero sempre maggiore di connessioni client. 10 | -------------------------------------------------------------------------------- /docs/books/web_services/05-load-balancer-proxies.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: Antoine Le Morvan 3 | contributors: 4 | title: Part 5. Load balancing, caching and proxyfication 5 | --- 6 | 7 | # Part 5. Load balancing, caching and proxyfication 8 | 9 | In this part, we will discuss existing solutions for improving traffic performance and accepting more and more client connections. 10 | -------------------------------------------------------------------------------- /docs/books/web_services/05-load-balancer-proxies.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: Antoine Le Morvan 3 | contributors: null 4 | title: Частина 5. Балансування навантаження, кешування та проксіфікація 5 | --- 6 | 7 | # Частина 5. Балансування навантаження, кешування та проксіфікація 8 | 9 | У цій частині ми обговоримо існуючі рішення для покращення продуктивності трафіку та прийняття все більшої кількості клієнтських підключень. 10 | -------------------------------------------------------------------------------- /docs/books/web_services/06-mails-servers.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Kapitel 6 – Mail-Server 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /docs/books/web_services/06-mails-servers.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Chapitre 6 Serveurs de messagerie 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /docs/books/web_services/06-mails-servers.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Capitolo 6. Server mail 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /docs/books/web_services/06-mails-servers.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: 3 | contributors: 4 | title: Part 6. Mail servers 5 | --- 6 | -------------------------------------------------------------------------------- /docs/books/web_services/06-mails-servers.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: null 3 | contributors: null 4 | title: Частина 6. Поштові сервери 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /docs/books/web_services/img/squid-architecture-proxy-captif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/squid-architecture-proxy-captif.png -------------------------------------------------------------------------------- /docs/books/web_services/img/squid-architecture-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/squid-architecture-proxy.png -------------------------------------------------------------------------------- /docs/books/web_services/img/varnish_interactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/varnish_interactions.png -------------------------------------------------------------------------------- /docs/books/web_services/img/varnish_troobleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/varnish_troobleshooting.png -------------------------------------------------------------------------------- /docs/books/web_services/img/varnish_website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/varnish_website.png -------------------------------------------------------------------------------- /docs/books/web_services/img/varnish_website_with_varnish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/varnish_website_with_varnish.png -------------------------------------------------------------------------------- /docs/books/web_services/img/varnish_website_with_varnish_port_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/books/web_services/img/varnish_website_with_varnish_port_80.png -------------------------------------------------------------------------------- /docs/desktop/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - GNOME: gnome 5 | - ... 6 | -------------------------------------------------------------------------------- /docs/desktop/appimage/images/activites_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/activites_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/appimagepool/appimagepool_download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/appimagepool/appimagepool_download.jpg -------------------------------------------------------------------------------- /docs/desktop/appimage/images/appimagepool/appimagepool_launch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/appimagepool/appimagepool_launch.jpg -------------------------------------------------------------------------------- /docs/desktop/appimage/images/appimagepool/appimagepool_remove.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/appimagepool/appimagepool_remove.jpg -------------------------------------------------------------------------------- /docs/desktop/appimage/images/appimagepool/appimagepool_select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/appimagepool/appimagepool_select.jpg -------------------------------------------------------------------------------- /docs/desktop/appimage/images/download_krita_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/download_krita_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/file_properties_allow_executing_file_as_program_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/file_properties_allow_executing_file_as_program_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/file_properties_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/file_properties_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/files_downloads_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/files_downloads_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/group_access_permissions_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/group_access_permissions_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/group_access_permissions_appimage_read_and_write.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/group_access_permissions_appimage_read_and_write.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/krita_launching.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/krita_launching.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/permissions_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/permissions_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/run_app_image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/run_app_image.webp -------------------------------------------------------------------------------- /docs/desktop/appimage/images/searchbar_files_appimage.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/appimage/images/searchbar_files_appimage.webp -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_00_22_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_00_22_00.jpg -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_04_16_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_04_16_00.jpg -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_06_09_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_06_09_04.jpg -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_10_18_38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_10_18_38.jpg -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_10_58_27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_10_58_27.jpg -------------------------------------------------------------------------------- /docs/desktop/gaming/images/Timeline_1_01_11_07_44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gaming/images/Timeline_1_01_11_07_44.jpg -------------------------------------------------------------------------------- /docs/desktop/gnome/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | dconf*.md 4 | - ... | decibels*.md 5 | - ... | decoder*.md 6 | - ... | rdp-server*.md 7 | - ... | x11vnc_plus_ssh_lan*.md 8 | - ... 9 | -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_decibels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_decibels.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_decoder-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_decoder-scan.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_decoder-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_decoder-wifi.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_decoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_decoder.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_file-shredder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_file-shredder.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_flatpak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_flatpak.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/01_valuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/01_valuta.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_decibels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_decibels.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_decoder-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_decoder-scan.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_decoder-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_decoder-text.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_file-shredder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_file-shredder.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_flatpak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_flatpak.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/02_valuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/02_valuta.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_decibels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_decibels.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_decoder-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_decoder-scan.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_decoder-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_decoder-text.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_file-shredder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_file-shredder.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/03_valuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/03_valuta.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/04_decibels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/04_decibels.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/04_decoder-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/04_decoder-scan.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/04_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/04_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/05_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/05_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/06_decoder-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/06_decoder-text.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/06_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/06_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/07_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/07_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/08_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/08_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/09_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/09_tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/activities.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-01.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-02.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-03.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-04.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-05.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/dconf-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/dconf-06.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/decibels-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/decibels-install.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/decoder_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/decoder_install.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/file-shredder_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/file-shredder_install.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/gnome_extensions_images/04_decoder-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/gnome_extensions_images/04_decoder-scan.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/gnome_extensions_images/gnome-shell-extensions-toggle-btn.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/gnome_extensions_images/gnome-shell-extensions-toggle-btn.webp -------------------------------------------------------------------------------- /docs/desktop/gnome/images/gnome_extensions_images/gnome-shell-installed-extensions.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/gnome_extensions_images/gnome-shell-installed-extensions.webp -------------------------------------------------------------------------------- /docs/desktop/gnome/images/onlineaccounts-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/onlineaccounts-01.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/onlineaccounts-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/onlineaccounts-02.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/onlineaccounts-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/onlineaccounts-03.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/rdp_images/01-remmina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/rdp_images/01-remmina.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/rdp_images/02-remmina-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/rdp_images/02-remmina-config.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/rdp_images/03-rdp-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/rdp_images/03-rdp-connection.jpg -------------------------------------------------------------------------------- /docs/desktop/gnome/images/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/screenshot-01.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/screenshot-02.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/tweaks.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/1.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/10.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/11.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/12.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/13.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/14.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/15.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/16.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/17.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/18.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/19.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/2.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/20.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/21.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/22.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/3.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/4.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/5.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/6.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/7.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/8.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/user_group_acctmgt_images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/user_group_acctmgt_images/9.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/valuta-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/valuta-install.png -------------------------------------------------------------------------------- /docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_ssh_tunnel.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_ssh_tunnel.webp -------------------------------------------------------------------------------- /docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_viewer.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_viewer.webp -------------------------------------------------------------------------------- /docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_viewer_password.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/vnc_viewer_password.webp -------------------------------------------------------------------------------- /docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/x11vnc_over_ssh_lan_conclusion.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/gnome/images/x11vnc_plus_ssh_lan_images/x11vnc_over_ssh_lan_conclusion.webp -------------------------------------------------------------------------------- /docs/desktop/index.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Desktop 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Einleitung 8 | 9 | Der Desktop-Bereich ist für Desktop- oder Shell-Anpassungen, Hilfethemen für Desktop-Anwendungen und im Allgemeinen für alles gedacht, was einem Benutzer dabei helfen kann, das Beste aus seinem Desktop und seinen Anwendungen herauszuholen. Wenn Sie nicht sicher sind, wo Ihr Thema passt, posten Sie Ihre Frage im Dokumentationskanal [auf unserem Chat-Server](https://chat.rockylinux.org) oder reichen Sie einfach ein Dokument ein und wir platzieren es dort, wo es am besten passt. 10 | 11 | Willkommen! 12 | -------------------------------------------------------------------------------- /docs/desktop/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Environnement de Bureau 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Introduction 8 | 9 | La zone Desktop est destinée aux personnalisations du bureau ou du shell, aux rubriques d'aide des applications de bureau et généralement à tout ce qui peut aider un utilisateur à tirer le meilleur parti de son bureau et de ses applications. Si vous ne savez pas où se situe votre sujet, postez votre question dans le canal de documentation [sur notre serveur de chat](https://chat.rockylinux.org) ou soumettez simplement un document et nous le placerons là où il convient le mieux. 10 | 11 | Bienvenue ! 12 | -------------------------------------------------------------------------------- /docs/desktop/index.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Desktop 3 | author: Spencer Steven 4 | contributors: null 5 | --- 6 | 7 | ## Introduzione 8 | 9 | L'area Desktop è dedicata alle personalizzazioni del desktop o della shell, agli help topics delle applicazioni desktop, in pratica a tutto ciò che può aiutare l'utente a sfruttare al meglio il proprio desktop e le proprie applicazioni. Se non si è sicuri della collocazione del proprio topic, fare domanda nel canale Documentazione [sul nostro server di chat](https://chat.rockylinux.org), oppure inviarci semplicemente il documento, lo collocheremo nella posizione migliore. 10 | 11 | Benvenuto! 12 | -------------------------------------------------------------------------------- /docs/desktop/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Desktop 3 | author: Steven Spencer 4 | contributors: 5 | --- 6 | 7 | ## Introduction 8 | 9 | The Desktop area is for desktop or shell customizations, desktop application help topics, basically anything that can help a user get the most out of their desktop and applications. If you are unsure where your topic might fit, place your question in the Documentation channel [on our chat server](https://chat.rockylinux.org), or simply submit the document, and we will place it where it fits best. 10 | 11 | Welcome! 12 | -------------------------------------------------------------------------------- /docs/desktop/index.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Робочий стіл 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Вступ 8 | 9 | Область «Робочий стіл» призначена для налаштувань робочого столу або оболонки, тем довідки програм для настільних Пк, загалом усього, що може допомогти користувачеві отримати максимальну віддачу від свого робочого столу та програм. Якщо ви не впевнені, куди підійде ваша тема, розмістіть своє запитання в каналі документації [на нашому сервері чату](https://chat.rockylinux.org) або просто надішліть документ, і ми розмістимо його там, де він найкраще підходить. 10 | 11 | Вітаємо! 12 | -------------------------------------------------------------------------------- /docs/desktop/tools/images/businessapps-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/businessapps-01.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/businessapps-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/businessapps-02.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/firewallgui-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/firewallgui-01.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/firewallgui-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/firewallgui-02.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/firewallgui-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/firewallgui-03.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/firewallgui-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/firewallgui-04.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/firewallgui-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/firewallgui-05.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/kitty_tabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/kitty_tabs.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/kitty_tilling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/kitty_tilling.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/ksnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/ksnip.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/ksnip_image_opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/ksnip_image_opened.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-01.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-02.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-03.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-04.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-05.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-06.png -------------------------------------------------------------------------------- /docs/desktop/tools/images/terminator-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/desktop/tools/images/terminator-07.png -------------------------------------------------------------------------------- /docs/gemstones/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - Core: core 5 | - Networking: network 6 | - Scripts: scripts 7 | - Containers: containers 8 | - Git: git 9 | - ... -------------------------------------------------------------------------------- /docs/gemstones/images/podman_nextcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/gemstones/images/podman_nextcloud.png -------------------------------------------------------------------------------- /docs/gemstones/images/string_color_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/gemstones/images/string_color_image1.png -------------------------------------------------------------------------------- /docs/gemstones/images/torsocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/gemstones/images/torsocks.png -------------------------------------------------------------------------------- /docs/gemstones/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 宝石首页 3 | author: Steven Spencer 4 | contributors: tianci li 5 | date: 2021-10-15 6 | --- 7 | 8 | # 宝石 9 | 10 | 欢迎来到 **宝石**! 我现在能听到你说:“宝石到底是什么,它们是如何融入到Rocky Linux文档中的?” 这是一个非常好的问题。虽然 **Guides** 指南包含了正常长度的操作文档,**Books**书籍包含了较长形式的文档,宝石,顾名思义就是智慧的小宝石。有没有你一直在使用的Linux代码,或者你最喜欢的命令?也许您已经用`bash`、`python`或者其他常见的Linux语言编写了一个脚本,来帮助日常使用Linux,您希望分享给大家。如果这些事情中有任何一件事情是真的,那么**宝石**就是你贡献的地方! 11 | 12 | ## 规范标准 13 | 14 | 您的代码、脚本或者命令文档应该简短。如果有很多页的长度,那么它属于文档中的其他地方。我们正在寻找一到两页长度的“宝石”,为了您的 “宝石”完整,我们建议包括: 15 | 16 | * 很好的描述 17 | * 您为什么要使用这样的特殊的方式做事,例如一个脚本 18 | * 简短的结论 19 | 20 | ## 贡献 21 | 22 | 您可以像贡献其他文档一样贡献您的 “宝石” (请参考: [Guides/Contribution/Contribution Guide](../guides/contribute/README.md)). 当您向Github提交拉取请求时(Pull requests),请在提交信息中包含“gemstone”。如果没有或者不想要Github账户,您只需将其提交到 [Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation) ,我们将为您编辑和创建您的 **宝石**,这非常简单! 23 | 24 | -------------------------------------------------------------------------------- /docs/gemstones/network/nmcli.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: nmcli - 设置自动连接 3 | author: wale soyinka 4 | tags: 5 | - nmcli 6 | --- 7 | 8 | # 修改 NetworkManager 配置文件的自动连接属性 9 | 10 | 在Rocky Linux 系统上,首先使用 nmcli 来查询和显示所有网络连接的自动连接属性的当前值。 输入: 11 | 12 | ```bash 13 | nmcli -f name,autoconnect connection 14 | ``` 15 | 16 | 要更改网络连接的属性值,请使用 `nmcli connect` 的子命令 `modify`。 例如,要将 `ens3` 连接配置文件中的 autoconnect 属性值从 `no` 改为 `yes`,输入: 17 | 18 | ```bash 19 | sudo nmcli con mod ens3 connection.autoconnect yes 20 | ``` 21 | 22 | ## 命令说明 23 | 24 | ```bash 25 | connection (con) : NetworkManager 连接对象 26 | modify (mod) : 修改给定连接配置文件的一个或多个属性。 27 | connection.autoconnect : 设置属性 (.) 28 | -f, --fields : 指定要输出的字段 29 | ``` 30 | 31 | ## 说明 32 | 33 | 这篇提示说明了修改现存的 NetworkManager 连接配置文件的方法。 当网络接口在新的Rocky Linux安装或系统更新后没有自动激活时,这很有用。 没有自动激活网络接口的原因往往是 autoconnect 属性值被设置为 `no`。 您可以使用 `nmcli` 命令快速将值更改为 `yes`。 34 | -------------------------------------------------------------------------------- /docs/guides/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - ... | index*.md 3 | - ... | installation*.md 4 | - ... | 8_6_installation*.md 5 | - ... | migrate2rocky*.md 6 | - ... | update_versions*.md 7 | - ... | custom-linux-kernel*.md 8 | - Contribute: contribute 9 | - RSOD: rsod 10 | - Automation: automation 11 | - Backup & Sync: backup 12 | - Content Management: cms 13 | - Communications: communications 14 | - Containers: containers 15 | - Cloud: cloud 16 | - Database: database 17 | - Desktop: desktop 18 | - DNS: dns 19 | - Editors: editors 20 | - Email: email 21 | - File Sharing Services: file_sharing 22 | - Hardware: hardware 23 | - Interoperability: interoperability 24 | - ISOs: isos 25 | - Kernel: kernel 26 | - Mirror Management: mirror_management 27 | - Network: network 28 | - Package Management: package_management 29 | - ... 30 | 31 | -------------------------------------------------------------------------------- /docs/guides/automation/olivetin/containeraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/automation/olivetin/containeraction.png -------------------------------------------------------------------------------- /docs/guides/automation/olivetin/screenshotDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/automation/olivetin/screenshotDesktop.png -------------------------------------------------------------------------------- /docs/guides/backup/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/backup/images/code.png -------------------------------------------------------------------------------- /docs/guides/backup/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/backup/images/zip.png -------------------------------------------------------------------------------- /docs/guides/containers/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - LXD Server: https://docs.rockylinux.org/books/lxd_server/00-toc/ 4 | - ... 5 | -------------------------------------------------------------------------------- /docs/guides/containers/img/podman_nextcloud_db_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/podman_nextcloud_db_setup.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_cluster_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_cluster_create.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_cluster_ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_cluster_ready.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_create_custom_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_create_custom_cluster.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_hosts_registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_hosts_registration.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_k3s_local_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_k3s_local_cluster.png -------------------------------------------------------------------------------- /docs/guides/containers/img/rancher_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/containers/img/rancher_login.png -------------------------------------------------------------------------------- /docs/guides/contribute/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | README*.md 4 | - ... | beginners*.md 5 | - ... | createnew*.md 6 | - ... | rockydocs_formatting*.md 7 | - Local Documentation: localdocs 8 | - ... | navigation*.md 9 | - ... | style_guide*.md 10 | - ... 11 | -------------------------------------------------------------------------------- /docs/guides/contribute/README.de.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.es.md: -------------------------------------------------------------------------------- 1 | ./../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.fr.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.it.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.ko.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.tr.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.uk.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/README.zh.md: -------------------------------------------------------------------------------- 1 | ../../../README.md -------------------------------------------------------------------------------- /docs/guides/contribute/copy_option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/contribute/copy_option.png -------------------------------------------------------------------------------- /docs/guides/contribute/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Présentation 3 | Author: Steven Spencer 4 | Contriibutors: null 5 | --- 6 | 7 | Voici toutes les ressources permettant de contribuer à la documentation de Rocky Linux. Que vous n'ayez jamais contribué à un projet auparavant ou que vous soyez un contributeur expérimenté, vous trouverez ici les documents pour vous aider à démarrer. N'hésitez pas à nous contacter sur notre [Canal Mattermost](https://chat.rockylinux.org/rocky-linux/channels/documentation) pour obtenir une aide supplémentaire. 8 | -------------------------------------------------------------------------------- /docs/guides/contribute/localdocs/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - ... | rockydocs_web_dev*.md 5 | - ... | mkdocs_lsyncd*.md 6 | - ... | rockydocs_webdev_v2*.md 7 | - ... | mkdocs_venv*.md 8 | - ... | local_docs*.md 9 | - ... 10 | -------------------------------------------------------------------------------- /docs/guides/desktop/images/eula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/eula.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_boot.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_config.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_finish_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_finish_config.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_install.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_install_2.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_install_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_install_final.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_language.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_live.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/kde_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/kde_screen.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_boot.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_desktop.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_finish.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_install.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_install_2.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_install_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_install_final.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/mate_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/mate_live.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_1.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_2.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_3.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_4.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_5.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_6.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_7.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_9_min_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_9_min_8.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_boot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_boot.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_desktop.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_install.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_install_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_install_2.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_install_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_install_3.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_install_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_install_final.png -------------------------------------------------------------------------------- /docs/guides/desktop/images/xfce_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/desktop/images/xfce_language.png -------------------------------------------------------------------------------- /docs/guides/dns/images/dns_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/dns/images/dns_filter.png -------------------------------------------------------------------------------- /docs/guides/editors/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | micro*.md 4 | - NvChad: https://docs.rockylinux.org/books/nvchad/ 5 | - vi: https://docs.rockylinux.org/books/admin_guide/05-vi/ 6 | -------------------------------------------------------------------------------- /docs/guides/editors/images/font_nerd_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/font_nerd_view.png -------------------------------------------------------------------------------- /docs/guides/editors/images/micro-text-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/micro-text-editor.png -------------------------------------------------------------------------------- /docs/guides/editors/images/nvchad_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/nvchad_final.png -------------------------------------------------------------------------------- /docs/guides/editors/images/nvchad_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/nvchad_init.png -------------------------------------------------------------------------------- /docs/guides/editors/images/nvchad_rocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/nvchad_rocky.png -------------------------------------------------------------------------------- /docs/guides/editors/images/nvchad_themes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/editors/images/nvchad_themes.png -------------------------------------------------------------------------------- /docs/guides/email/email-images/Wietse Venema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/Wietse Venema.png -------------------------------------------------------------------------------- /docs/guides/email/email-images/email-system01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/email-system01.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/email-system02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/email-system02.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/email-system03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/email-system03.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/test1.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/test2.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/test3.jpg -------------------------------------------------------------------------------- /docs/guides/email/email-images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/email/email-images/test4.jpg -------------------------------------------------------------------------------- /docs/guides/images/Il01-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/Il01-kernel.png -------------------------------------------------------------------------------- /docs/guides/images/Il02-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/Il02-kernel.png -------------------------------------------------------------------------------- /docs/guides/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/Thumbs.db -------------------------------------------------------------------------------- /docs/guides/images/anacron_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/anacron_01.png -------------------------------------------------------------------------------- /docs/guides/images/asterisk_menuselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/asterisk_menuselect.png -------------------------------------------------------------------------------- /docs/guides/images/caddy_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/caddy_example.png -------------------------------------------------------------------------------- /docs/guides/images/caddy_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/caddy_php.png -------------------------------------------------------------------------------- /docs/guides/images/chyrp_lite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/chyrp_lite.png -------------------------------------------------------------------------------- /docs/guides/images/chyrp_lite_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/chyrp_lite_setup.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_dashboard.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_login.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_root_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_root_dashboard.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_create_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_create_1.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_create_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_create_2.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_create_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_create_3.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_dashboard.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_ip.png -------------------------------------------------------------------------------- /docs/guides/images/cockpit_vm_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/cockpit_vm_terminal.png -------------------------------------------------------------------------------- /docs/guides/images/gw_atomunstaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_atomunstaged.png -------------------------------------------------------------------------------- /docs/guides/images/gw_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_fork.png -------------------------------------------------------------------------------- /docs/guides/images/gw_gcbranches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_gcbranches.png -------------------------------------------------------------------------------- /docs/guides/images/gw_gitcolaunstaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_gitcolaunstaged.png -------------------------------------------------------------------------------- /docs/guides/images/gw_greencode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_greencode.png -------------------------------------------------------------------------------- /docs/guides/images/gw_sshcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/gw_sshcopy.png -------------------------------------------------------------------------------- /docs/guides/images/haproxy_apache_lxd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/haproxy_apache_lxd.png -------------------------------------------------------------------------------- /docs/guides/images/henet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/henet_1.png -------------------------------------------------------------------------------- /docs/guides/images/henet_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/henet_2.png -------------------------------------------------------------------------------- /docs/guides/images/hpe_ilo_amsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/hpe_ilo_amsd.png -------------------------------------------------------------------------------- /docs/guides/images/i2p_proxy_ff_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/i2p_proxy_ff_1.png -------------------------------------------------------------------------------- /docs/guides/images/i2p_proxy_ff_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/i2p_proxy_ff_2.png -------------------------------------------------------------------------------- /docs/guides/images/i2p_proxy_ff_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/i2p_proxy_ff_3.png -------------------------------------------------------------------------------- /docs/guides/images/i2p_proxy_ff_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/i2p_proxy_ff_4.png -------------------------------------------------------------------------------- /docs/guides/images/install_8_9_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/install_8_9_01.png -------------------------------------------------------------------------------- /docs/guides/images/install_9_3_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/install_9_3_01.png -------------------------------------------------------------------------------- /docs/guides/images/installation-F01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation-F01.png -------------------------------------------------------------------------------- /docs/guides/images/installation-F02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation-F02.png -------------------------------------------------------------------------------- /docs/guides/images/installation-F03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation-F03.png -------------------------------------------------------------------------------- /docs/guides/images/installation-F04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation-F04.png -------------------------------------------------------------------------------- /docs/guides/images/installation-F06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation-F06.png -------------------------------------------------------------------------------- /docs/guides/images/installation_8.5_F01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_8.5_F01.png -------------------------------------------------------------------------------- /docs/guides/images/installation_8.5_F02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_8.5_F02.png -------------------------------------------------------------------------------- /docs/guides/images/installation_8_F02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_8_F02.png -------------------------------------------------------------------------------- /docs/guides/images/installation_9.0_F01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_9.0_F01.png -------------------------------------------------------------------------------- /docs/guides/images/installation_9.0_F02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_9.0_F02.png -------------------------------------------------------------------------------- /docs/guides/images/installation_9.0_F03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_9.0_F03.png -------------------------------------------------------------------------------- /docs/guides/images/installation_9.2_F01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_9.2_F01.png -------------------------------------------------------------------------------- /docs/guides/images/installation_9_F02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/installation_9_F02.png -------------------------------------------------------------------------------- /docs/guides/images/intel_x710_drivers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/intel_x710_drivers.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_add_device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_add_device.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_administrative_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_administrative_user.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_alert_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_alert_rule.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_configure_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_configure_database.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_configure_database_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_configure_database_status.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_login.png -------------------------------------------------------------------------------- /docs/guides/images/librenms_prechecks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/librenms_prechecks.png -------------------------------------------------------------------------------- /docs/guides/images/lxd-web-server-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/lxd-web-server-01.png -------------------------------------------------------------------------------- /docs/guides/images/lxd-web-server-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/lxd-web-server-02.png -------------------------------------------------------------------------------- /docs/guides/images/lxd-web-server-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/lxd-web-server-03.png -------------------------------------------------------------------------------- /docs/guides/images/lxd-web-server-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/lxd-web-server-04.png -------------------------------------------------------------------------------- /docs/guides/images/migrate2rocky-convert-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/migrate2rocky-convert-01.png -------------------------------------------------------------------------------- /docs/guides/images/migrate2rocky-convert-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/migrate2rocky-convert-02.png -------------------------------------------------------------------------------- /docs/guides/images/migrate2rocky-convert-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/migrate2rocky-convert-03.png -------------------------------------------------------------------------------- /docs/guides/images/migrate2rocky-github-zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/migrate2rocky-github-zip.png -------------------------------------------------------------------------------- /docs/guides/images/nextcloud_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/nextcloud_screen.jpg -------------------------------------------------------------------------------- /docs/guides/images/onion_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/onion_service.png -------------------------------------------------------------------------------- /docs/guides/images/samba_nautilus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/samba_nautilus.png -------------------------------------------------------------------------------- /docs/guides/images/selinux_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/selinux_001.png -------------------------------------------------------------------------------- /docs/guides/images/selinux_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/selinux_002.png -------------------------------------------------------------------------------- /docs/guides/images/selinux_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/selinux_003.png -------------------------------------------------------------------------------- /docs/guides/images/selinux_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/selinux_004.png -------------------------------------------------------------------------------- /docs/guides/images/tailscale_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/tailscale_1.png -------------------------------------------------------------------------------- /docs/guides/images/tailscale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/tailscale_2.png -------------------------------------------------------------------------------- /docs/guides/images/tailscale_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/tailscale_3.png -------------------------------------------------------------------------------- /docs/guides/images/transmission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/transmission.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-01.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-02.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-03.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-04.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-05.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-06.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-07.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-08.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-09.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-10.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-11.png -------------------------------------------------------------------------------- /docs/guides/images/vbox-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/images/vbox-12.png -------------------------------------------------------------------------------- /docs/guides/index.af.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Gidse Tuis 3 | --- 4 | 5 | # Rocky Linux Gidse 6 | 7 | Welkom by die **Gidse** afdeling van die Rocky Linux dokumentasie. Jy sal talle "hoe-om" dokumente, en nog baie meer, hier vind. Hierdie afdeling verander die heeltyd. Daar is ook 'n paar langer dokumentgroepe in "Boeke" sowel as toekomstige beplande opvoedkundige "Labs" in die boonste kieslys te vinde. 8 | 9 | Die meeste van die kategorieë vereis geen verduideliking nie. As jy wil uitvind hoe om te help met die voortdurende ontwikkeling van Rocky Linux, sluit aan by die [Mattermost Ontwikkeling kanaal](https://chat.rockylinux.org/rocky-linux/channels/development). Vir diegene wat betrokke wil wees by dokumentasie, sluit aan by die [Mattermost Dokumentasie kanaal](https://chat.rockylinux.org/rocky-linux/channels/documentation) en sluit aan by die bespreking om meer uit te vind. 10 | 11 | As jy dadelik wil induik, kan jy [Rocky Linux](installation.md) nou installeer! 12 | -------------------------------------------------------------------------------- /docs/guides/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Guides Home 3 | --- 4 | 5 | # Rocky Linux guides 6 | 7 | Welcome to the **Guides** section of the Rocky Linux documentation. You will find many "how-to" documents and more here. These documents are changing all the time. Longer document groups are in **Books**, educational instructions are in **Labs**, while smaller bits of code shared by users are in **Gemstones** in the top menus. 8 | 9 | Most of the categories do not require any explanation. If you want to find out how to help in the ongoing development of Rocky Linux, join the [Mattermost Development channel](https://chat.rockylinux.org/rocky-linux/channels/development). For those wishing to help with documentation, join the [Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation) and share in the discussion. 10 | 11 | If you are wanting to jump right in, you can [install Rocky Linux](installation.md) now! 12 | -------------------------------------------------------------------------------- /docs/guides/index.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home Guide 3 | --- 4 | 5 | # Guide Rocky Linux 6 | 7 | Benvenuto nella sezione **Guide** della documentazione Rocky Linux. Troverete una serie di documenti "how-to" e molto altro ancora. Questa sezione sta cambiando continuamente. Ci sono anche alcuni gruppi di documenti più lunghi che possono essere trovati in "Libri" così come futuri programmi educativi "Labs", ognuno dei quali può essere trovato nel menu in alto. 8 | 9 | La maggior parte delle categorie non richiede alcuna spiegazione. Se vuoi scoprire come aiutare nello sviluppo in corso di Rocky Linux, unisciti al canale [Mattermost Development](https://chat.rockylinux.org/rocky-linux/channels/development). Per coloro che desiderano essere coinvolti nella documentazione, unisciti al canale [Mattermost Documentation](https://chat.rockylinux.org/rocky-linux/channels/documentation) e unisciti alla discussione per saperne di più. 10 | 11 | Se vuoi tuffarti subito, puoi [installare Rocky Linux](installation.md) adesso! 12 | -------------------------------------------------------------------------------- /docs/guides/index.ja.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ガイド・ホーム 3 | --- 4 | 5 | # Rocky Linux ガイド 6 | 7 | Rocky Linux ドキュメントの **ガイド** セクションへようこそ。 ここでは、多くの「ハウツー」文書やその他の情報を見つけることができます。 このセクションは常に更新されています。 また、"書籍"や、将来的には "ラボ"と呼ばれる教育用の長い文書もあり、それぞれトップメニューから見ることができます。 8 | 9 | ほとんどのカテゴリーは、特別な説明を必要としません。 現在進行中のRocky Linuxの開発にどのように協力できるかを知りたい方は、[Mattermost Development channel](https://chat.rockylinux.org/rocky-linux/channels/development)に参加してください。 ドキュメント作成に携わりたい方は、[Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation)に参加して、ディスカッションから詳細な情報を確認してください。 10 | 11 | 今すぐにでも[Rocky Linuxをインストール](installation.md)したいという方は、ぜひご利用ください! 12 | -------------------------------------------------------------------------------- /docs/guides/index.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 가이드 홈 3 | --- 4 | 5 | # Rocky Linux 가이드 6 | 7 | Rocky Linux 설명서의 **가이드** 섹션에 오신 것을 환영합니다. 여기에서 다양한 "방법(how-to)" 문서 등을 찾을 수 있습니다. 이 섹션은 항상 변경됩니다. 또한 "도서(Books)" 및 향후 계획된 교육용 "랩(Labs)"에서 찾을 수 있는 더 긴 문서 그룹이 있으며 각 그룹은 상단 메뉴에서 찾을 수 있습니다. 8 | 9 | 대부분의 카테고리는 설명이 필요하지 않습니다. Rocky Linux의 지속적인 개발에 도움이 되는 방법을 알아보려면 [Mattermost Development 채널](https://chat.rockylinux.org/rocky-linux/channels/development)에 가입하세요. 문서 작성에 참여하고 싶은 분들은 [Mattermost 문서 채널](https://chat.rockylinux.org/rocky-linux/channels/documentation)에 가입하고 토론에 참여하여 자세한 내용을 알아보세요. 10 | 11 | 바로 시작하고 싶다면 지금 [Rocky Linux를 설치](installation.md)할 수 있습니다! 12 | -------------------------------------------------------------------------------- /docs/guides/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 指南首页 3 | --- 4 | 5 | # Rocky Linux指南 6 | 7 | 欢迎访问Rocky Linux文档的 **指南** 部分。 您在这里可以找到许多"how-to"文档, 这部分一直在更新变化, 还有一些较长形式的文档组,可以在“书籍”和未来计划的有关教育的“实验室”中找到,每一个都可以在顶部菜单中找到。 8 | 9 | 大多数类别都无需解释。 如果您想了解如何帮助正在进行的Rocky Linux开发,请加入开发频道——[Mattermost Development channel](https://chat.rockylinux.org/rocky-linux/channels/development)。 对于那些希望参与文档的人,请加入文档频道—— [Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation) ,讨论以了解更多的信息。 10 | 11 | 如果您想直接进入,现在可以 [安装Rocky Linux](installation.md) 12 | -------------------------------------------------------------------------------- /docs/guides/network/images/glances-dashboard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/glances-dashboard.webp -------------------------------------------------------------------------------- /docs/guides/network/images/nmtui_automatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/nmtui_automatic.png -------------------------------------------------------------------------------- /docs/guides/network/images/nmtui_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/nmtui_edit.png -------------------------------------------------------------------------------- /docs/guides/network/images/nmtui_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/nmtui_first.png -------------------------------------------------------------------------------- /docs/guides/network/images/nmtui_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/nmtui_manual.png -------------------------------------------------------------------------------- /docs/guides/network/images/nmtui_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/network/images/nmtui_remove.png -------------------------------------------------------------------------------- /docs/guides/package_management/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - ... 5 | -------------------------------------------------------------------------------- /docs/guides/package_management/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Introduction 3 | --- 4 | 5 | # Introduction 6 | 7 | Cette section de la documentation est dédiée aux compilations de paquets. 8 | 9 | !!! warning "Avertissement" 10 | 11 | Les documents dans cette section sont plus anciens et ont probablement besoin d'une ré-écriture. Si vous utilisez ces instructions et que vous avez des problèmes, veuillez signaler les problèmes afin que ces documents puissent être modifiés en conséquence. Vous pouvez signaler tout problème [here](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/index.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Introduzione 3 | --- 4 | 5 | # Introduzione 6 | 7 | Questa sezione della documentazione è dedicata alla compilazione dei pacchetti. 8 | 9 | !!! warning "Attenzione" 10 | 11 | I documenti in questa sezione sono più vecchi e probabilmente hanno bisogno di una riscrittura. Se usi queste istruzioni e hai problemi, segnala i problemi in modo che questi documenti possano essere modificati correttamente. Puoi segnalare qualsiasi problema [qui](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/index.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 소개 3 | --- 4 | 5 | # 소개 6 | 7 | 설명서의 이 섹션은 패키지 빌드 전용입니다. 8 | 9 | !!! warning "주의" 10 | 11 | 이 섹션의 문서는 오래되었으며 아마도 다시 작성해야 할 것입니다. 이 지침을 사용하고 문제가 있는 경우 이 문서를 올바르게 수정할 수 있도록 문제를 보고하십시오. 모든 문제를 [여기](https://chat.rockylinux.org/rocky-linux/channels/documentation)에서 보고할 수 있습니다. 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Introduction 3 | --- 4 | 5 | # Introduction 6 | 7 | This section of the documentation is dedicated to package builds. 8 | 9 | !!! warning 10 | 11 | Documents in this section are older and are probably in need of a re-write. If you use these instructions and have problems, please report the issues so that these documents can be properly modified. You can report any issues [here](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/index.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Вступ 3 | --- 4 | 5 | # Вступ 6 | 7 | Цей розділ документації присвячений збіркам пакетів. 8 | 9 | !!! warning "Важливо" 10 | 11 | Документи в цьому розділі старіші, і, можливо, їх потрібно переписати. Якщо ви використовуєте ці інструкції та маєте проблеми, будь ласка, повідомте про проблеми, щоб відповідним чином змінити ці документи. Ви можете повідомити про будь-які проблеми [тут](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_debranding.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 패키지 디브랜딩 3 | --- 4 | 5 | # Rocky 패키지 디브랜딩 방법 6 | 7 | Rocky Linux 배포용 패키지의 브랜드를 제거하는 방법을 설명합니다. 8 | 9 | 10 | 일반적인 방법 11 | 12 | 먼저, Rocky Linux 배포를 위해 패키지 내에서 변경해야 할 파일을 확인하세요. 이들은 텍스트 파일, 이미지 파일 또는 기타 파일일 수 있습니다. 해당 파일들을 확인하기 위해 git.centos.org/rpms/PACKAGE/을 살펴볼 수 있습니다. 13 | 14 | 이들 파일에 대한 대체 파일을 개발하세요. 하지만 Rocky 브랜딩이 적용된 파일로 대체해야 합니다. 특정 유형의 텍스트에 따라 차이(diff)/패치(patch) 파일도 필요할 수 있습니다. 이는 대체되는 내용에 따라 다릅니다. 15 | 16 | 대체 파일은 https://git.rockylinux.org/patch/PACKAGE/ROCKY/_supporting/ 아래에 배치하세요. 구성 파일(패치 적용 방법 지정)은 https://git.rockylinux.org/patch/PACKAGE/ROCKY/CFG/*.cfg에 있습니다. 17 | 18 | 참고: 탭이 아닌 스페이스를 사용하세요. Srpmproc이 패키지를 Rocky로 가져오려고 하면 https://git.rockylinux.org/patch/PACKAGE에서 수행한 작업을 보고, ROCKY/CFG/*.cfg 아래의 구성 파일을 읽어 저장된 브랜딩 해제 패치를 적용합니다. 19 | 20 | 21 | [디브랜딩 위키 페이지](https://wiki.rockylinux.org/team/release_engineering/debranding/)에서 가져온 내용입니다. 22 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Pakete Signieren und Testen 3 | --- 4 | 5 | # Pakete Signieren und Testen 6 | 7 | Von uns erstellte RPMs sollten kryptografisch mit einem Rocky-Linux-Schlüssel signiert sein, der Benutzern garantiert, dass das Paket vom Rocky-Linux-Projekt kompiliert wurde. 8 | 9 | Das Paket muss außerdem einigen Tests unterzogen werden – vorzugsweise automatisiert. Die Art der Tests muss noch festgelegt werden, aber wir werden zumindest einige Plausibilitätsprüfungen durchführen müssen, bevor wir es in der Welt veröffentlichen. (Ist das Paket installierbar? Fehlen Dateien? Führt es zu Abhängigkeitskonflikten in dnf/yum? etc.) 10 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Firma del pacchetto & Testing 3 | --- 4 | 5 | # Firma e testing dei pacchetti 6 | 7 | Gli RPM prodotti da noi dovrebbero essere firmati crittograficamente con una chiave di Rocky Linux, che garantisce agli utenti che il pacchetto è stato compilato dal progetto Rocky Linux. 8 | 9 | Il pacchetto dovrà anche essere sottoposto ad alcuni test - preferibilmente automatizzati. La natura dei test deve ancora essere determinata, ma vorremo fare almeno qualche controllo di correttezza prima di rilasciarlo nel mondo. (Questo pacchetto è installabile? Abbiamo perso accidentalmente dei file? Causa conflitti di dipendenze in dnf/yum? etc.) 10 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 패키지 서명 및 테스트 3 | --- 4 | 5 | # 패키지 서명 및 테스트 6 | 7 | 우리가 생성한 RPM 패키지는 반드시 Rocky Linux 키로 암호화하여 서명해야 합니다. 이를 통해 사용자들은 해당 패키지가 실제로 Rocky Linux 프로젝트에서 빌드된 것임을 보장받을 수 있습니다. 8 | 9 | 또한 해당 패키지는 일부 테스트를 거쳐야 합니다. 이러한 테스트는 가능한한 자동화되어야 합니다. 테스트의 성격은 아직 결정되지 않았지만, 최소한 기본적인 논리 검사를 수행하여 전세계에 배포하기 전에 몇 가지 확인을 수행할 것입니다. (이 패키지를 설치할 수 있나요? 우리가 실수로 파일을 누락하지는 않았나요? dnf/yum 의존성 충돌을 일으키나요? 등) 10 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Package Signing & Testing 3 | --- 4 | 5 | # Package signing and testing' 6 | 7 | RPMs produced by us should be cryptographically signed with a Rocky Linux key, which guarantees to users that the package was 8 | indeed built by the Rocky Linux project. 9 | 10 | The package will also need to be put through some testing - preferably automated. The nature of the testing is yet to be determined, 11 | but we’ll want to do some sanity checks at the bare minimum before unleashing it on the world. (Is this package installable? Did we accidentally miss any files? Does it cause dnf/yum dependency conflicts? etc.) 12 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.sv.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Paketsignering och testning' 3 | --- 4 | 5 | 6 | RPMs som produceras av oss ska vara kryptografiskt signerade med en Rocky Linux nyckel, vilket garanterar för användarna att paketet 7 | verkligen är byggt av Rocky Linux-projektet. 8 | 9 | Paketet måste också gå igenom någon sorts testning - helst automatiserad. Testningens karaktär är ännu inte fastställd, 10 | men vi vill göra några minst några snabba hälsokontroller innan vi släpper paket ut till världen. (Är detta pake installerbart? Missade vi några filer av misstag? Orsakar det konflikter mellan dnf/yum-beroende? t.ex.) 11 | -------------------------------------------------------------------------------- /docs/guides/package_management/package_signing.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Підписання пакетів та тестування 3 | --- 4 | 5 | # Підписання та тестування пакетів 6 | 7 | Вироблені нами RPM мають бути криптографічно підписані ключем Rocky Linux, який гарантує користувачам, що пакет було дійсно створений проектом Rocky Linux. 8 | 9 | Пакет також потрібно буде протестувати - бажано автоматизовано. Характер тестування ще належить визначити, але ми захочемо хоча б провести деякі перевірки розумності перед тим, як розв’язати його у світі. (Чи можна встановити цей пакет? Ми випадково пропустили якісь файли? Чи викликає це конфлікти залежностей dnf/yum? тощо) 10 | -------------------------------------------------------------------------------- /docs/guides/proxies/images/pound_apache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/proxies/images/pound_apache.jpg -------------------------------------------------------------------------------- /docs/guides/proxies/images/pound_nginx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/proxies/images/pound_nginx.jpg -------------------------------------------------------------------------------- /docs/guides/repositories/images/empty_pulp_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/repositories/images/empty_pulp_index.png -------------------------------------------------------------------------------- /docs/guides/repositories/images/pulp_index_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/repositories/images/pulp_index_content.png -------------------------------------------------------------------------------- /docs/guides/security/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - Authentication: authentication 4 | - ... | firewalld-beginners*.md 5 | - ... | firewalld*.md 6 | - ... | ssl_keys_https*.md 7 | - ... | generating_ssl_keys_lets_encrypt*.md 8 | - ... | dnf_automatic*.md 9 | - ... | pam*.md 10 | - Rootkit Hunter: https://docs.rockylinux.org/guides/web/apache_hardened_webserver/rkhunter/ 11 | - ... | learning_selinux*.md 12 | - ... | ssh_public_private_keys*.md 13 | - ... | tailscale_vpn*.md 14 | - ... 15 | -------------------------------------------------------------------------------- /docs/guides/security/images/pam-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/security/images/pam-001.png -------------------------------------------------------------------------------- /docs/guides/security/images/pam-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/security/images/pam-002.png -------------------------------------------------------------------------------- /docs/guides/web/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - apache_hardened_webserver 4 | - ... 5 | -------------------------------------------------------------------------------- /docs/guides/web/apache_hardened_webserver/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Apache Hardened Webserver' -------------------------------------------------------------------------------- /docs/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/web/apache_hardened_webserver/images/hardened_webserver_figure1.jpeg -------------------------------------------------------------------------------- /docs/guides/web/nginx/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/web/nginx/images/Thumbs.db -------------------------------------------------------------------------------- /docs/guides/web/nginx/images/multisite-nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/web/nginx/images/multisite-nginx.png -------------------------------------------------------------------------------- /docs/guides/web/nginx/images/welcome-nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/guides/web/nginx/images/welcome-nginx.png -------------------------------------------------------------------------------- /docs/labs/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - System Administration I Labs: systems_administration_I 5 | - System Administration II Labs: systems_administration_II 6 | - Networking Labs: networking 7 | - Security Labs: security 8 | - Kubernetes the Hard Way (Rocky Linux): kubernetes-the-hard-way 9 | 10 | -------------------------------------------------------------------------------- /docs/labs/index.ja.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: チュートリアル・ラボ 3 | --- 4 | 5 | # Rocky Linux チュートリアル・ラボ 6 | 7 | **ラボ**とは? **書籍**のような長いフォーマットのドキュメントとはどう違うのですか? **ラボ**は、ステップバイステップで理解を深めることができるように設計されており、知識を試すための演習も含まれています。 これらは、「教育的」という点に重点を置いた教育的文書です。特定のテーマについての理解を助け、同時に実用的な知識を提供するように設計されています。ふう。これは大変な量ですね。 8 | 9 | 10 | 特定のテーマについてラボに転用した経験はありますか?それは素晴らしいことです。私たちはあなたに参加してほしいと思っています。参加方法は、Rocky Linuxのドキュメントに参加する方法となんら変わりません。単に[Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation)に行って、会話に参加し、あなたが書きたいことを教えてくれれば、私たちはそのお手伝いします。 11 | -------------------------------------------------------------------------------- /docs/labs/index.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 랩 튜토리얼 3 | --- 4 | 5 | # Rocky 랩 튜토리얼 6 | 7 | **랩(Labs)**은 어떻게 **책(Books)**과 같은 장문의 문서와 다른지 알고 있나요? **랩** 섹션은 단계별로 진행되는 과정의 작업을 위해 설계되었습니다. 지식을 확인하는 연습문제를 포함합니다. 이러한 문서들은 "교육적"이라는 강조를 가진 교육적인 문서입니다. 특정 주제에 대한 이해를 돕고 동시에 작동 지식을 제공하는 데 목적이 있습니다. 와! 정말 많죠? 8 | 9 | 랩을 작성할 수 있는 주제에 대한 경험이 있나요? 멋지네요! 우리는 여기서 당신의 참여를 환영합니다. 참여하는 것은 Rocky Linux 문서와 참여하는 것과 다를 바 없습니다. 간단히[Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation)로 가서 대화에 참여하고, 무엇을 작성하고 싶은지 알려주세요. 우리가 도와드리겠습니다. 10 | -------------------------------------------------------------------------------- /docs/labs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Tutorial Labs 3 | --- 4 | 5 | # Rocky Linux tutorial labs 6 | 7 | What are **Labs** and how do they differ from longer-form documentation like **Books**? Well **Labs** are for step by step processes that can further your understanding. They include exercises to test your knowledge. The intention of these labs is to be purely for educational and instructional purposes. They will help you understand particular system administration topics, stimulate experimentation, and encourage collaboration in a safe and simulated lab environment. 8 | 9 | Do you have experience in a subject that translates into a lab? That is great! We would love your participation here. Getting involved is just like getting involved with any of Rocky Linux documentation -- head over to the [Mattermost Documentation channel](https://chat.rockylinux.org/rocky-linux/channels/documentation), join the conversation, let us know what you want to write, and we will help you on your way. 10 | -------------------------------------------------------------------------------- /docs/labs/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 教程实验室 3 | --- 4 | 5 | # Rocky Linux 教程实验室 6 | 7 | 什么是 **实验室**?它们与 **书籍** 等较长的文档有什么不同? **实验室** 是为了循序渐进地工作而设计的,可帮助您进一步加深理解。 其中包括测试你知识的练习。 这些实验室的目的纯粹是为了教育和教学目的。 它们将帮助您理解特定的系统管理主题,激发实验兴趣,并鼓励在安全和模拟的实验室环境中进行协作。 8 | 9 | 您是否拥有可以转换到实验室的学科经验? 如果有的话就太好了! 我们希望您能参与进来。 参与进来与参与任何 Rocky Linux 文档没有什么不同——只需前往 [Mattermost Documentation 频道](https://chat.rockylinux.org/rocky-linux/channels/documentation),加入对话,让我们知道您想写什么,我们将在您的路上帮助您。 10 | -------------------------------------------------------------------------------- /docs/labs/kubernetes-the-hard-way/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | lab0-README*.md 4 | - ... | lab1-prerequisites*.md 5 | - ... | lab2-jumpbox*.md 6 | - ... | lab3-compute-resources*.md 7 | - ... | lab4-certificate-authority*.md 8 | - ... | lab5-kubernetes-configuration-files*.md 9 | - ... | lab6-data-encryption-keys*.md 10 | - ... | lab7-bootstrapping-etcd*.md 11 | - ... | lab8-bootstrapping-kubernetes-controllers*.md 12 | - ... | lab9-bootstrapping-kubernetes-workers*.md 13 | - ... | lab10-configuring-kubectl*.md 14 | - ... | lab11-pod-network-routes*.md 15 | - ... | lab12-smoke-test*.md 16 | - ... | lab13-cleanup*.md 17 | - ... 18 | -------------------------------------------------------------------------------- /docs/labs/kubernetes-the-hard-way/images/cc_by_sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/labs/kubernetes-the-hard-way/images/cc_by_sa.png -------------------------------------------------------------------------------- /docs/labs/security/introduction.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 简介 3 | --- 4 | 5 | # 简介 6 | 7 | 实验室的设计对象是一家虚构的公司(称为Example Incorporated)。 Example Incorporated在世界各地都有办事处, Example Incorporated制作小物件, 这家公司拥有现代公司开展业务所需的一切常规技能。 8 | 9 | Example Organization具有联网的分支机构,它们的计算机扮演着不同的角色,发挥着不同的作用。 有些计算机是工作站,有些是防火墙,有些是服务器(文件服务器、Web服务器、邮件服务器、数据库服务器、应用程序服务器、拨号服务器等)。 10 | 11 | 而在本手册中,对我们最重要的是——该公司的管理员可以管理这些计算机。 作为读者的您,将成为其中一个分支机构的管理员。 12 | 13 | 您将与合作伙伴(同时也是管理员)合作,以确保公司的系统始终处于正常运行状态。 因为对所使用的硬件和软件有很高的标准和要求,Example Incorporated最终选择在其系统上部署了Rocky Linux。 14 | 15 | 用户可以从Linux操作系统的命令行(Shell)执行任务。 用户也可以从操作系统的图形用户界面(GUI)执行这些任务。 不过,我们的大部分工作将在本手册的命令行中完成。 16 | 17 | 这样做的目的是让你在使用命令行时感到舒适,之后就没有什么任务是你不能从命令行执行的。 18 | 19 | 命令行是一种快速完成任务的方式,它也是Linux的一个特性(除了内核之外),在各种版本的Linux中,它的外观、感受和功能都是一致的。 20 | -------------------------------------------------------------------------------- /docs/labs/systems_administration_II/images/lab2-il01-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/labs/systems_administration_II/images/lab2-il01-kernel.png -------------------------------------------------------------------------------- /docs/labs/systems_administration_II/images/lab2-il02-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky-linux/documentation/bec9c45fcfe16cfa236a617e9472990bb6be7e5e/docs/labs/systems_administration_II/images/lab2-il02-kernel.png -------------------------------------------------------------------------------- /docs/release_notes/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - ... | 9_6*.md 5 | - ... | 8_10*.md 6 | - ... | 9_5*.md 7 | - ... | 9_4*.md 8 | - ... | 9_3*.md 9 | - ... | 8_9*.md 10 | - ... | 9_2*.md 11 | - ... | 8_8*.md 12 | - ... | 9_1*.md 13 | - ... | 9_0*.md 14 | - ... | 8_7*.md 15 | - ... | 8_6*.md 16 | - ... | 8_5*.md 17 | - ... | 8_4*.md 18 | - ... | 8-changelog*.md 19 | - ... | summer-of-docs-2024*.md 20 | -------------------------------------------------------------------------------- /docs/release_notes/8-changelog.ko.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 변경 로그 8 3 | author: Louis Abel 4 | contributors: Steven Spencer, tianci li 5 | tags: 6 | - rocky 변경 로그 7 | - 변경 로그 8 | --- 9 | 10 | # Rocky Linux 8 변경 로그 11 | 12 | Rocky Linux 버전에 대한 변경 로그 데이터는 현재 진행 중인 작업입니다. 이 문서는 버전 8에 대한 변경 로그 정보를 찾을 수 있는 위치를 다룹니다. 버전 9도 포함하는 더욱 공식화된 접근 방식이 제공될 것입니다. 이 정보가 향후에 어떻게 표시되는지 알아보려면 [이 문제](https://github.com/rocky-linux/peridot/issues/9)를 살피고 의견을 추가하십시오. 또한 [여기](https://errata.build.resf.org/)에서 버전 8의 현재 및 과거 변경 사항을 확인할 수 있습니다. 13 | 14 | 업스트림 이후에 릴리스된 업데이트는 현재 아키텍처 전체에 게시됩니다. 모든 사용자는 기존 Rocky Linux 시스템에서 오늘 발표된 콘텐츠를 포함하여 *모든* 업데이트를 적용할 것을 강력히 권장합니다. `dnf upgrade`를 실행하면 됩니다. 15 | 16 | 모든 Rocky Linux 구성 요소는 [git.rockylinux.org](https://git.rockylinux.org)에서 호스팅되는 소스에서 구축됩니다. 또한 SRPM은 해당 "source" 디렉토리의 리포지토리와 함께 게시됩니다. 미러 사이트 중 어느 곳에서나 찾을 수 있습니다. 이러한 소스 패키지는 우리가 출시하는 모든 바이너리 RPM과 일치합니다. 17 | -------------------------------------------------------------------------------- /docs/release_notes/8-changelog.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 8 版本的变更日志 3 | author: Louis Abel 4 | contributors: tianci li, Steven Spencer 5 | tags: 6 | - rocky的变更日志 7 | - 变更日志 8 | --- 9 | 10 | # Rocky Linux 8 变更日志 11 | 12 | Rocky Linux版本的更改日志数据目前正在进行中。 此文档将介绍如何找到版本 8 的更改日志信息。 将会有一种更正式的方法即将到来,它也将包括版本9。 如果您想对这个信息在未来将如何出现发表意见,请查看 [这个 issue ](https://github.com/rocky-linux/peridot/issues/9) 并添加您的评论。 此外,您还可以在 [此处](https://errata.build.resf.org/) 找到版本8的当前和历史更改。 13 | 14 | 因为上游发布的更新是在我们当前的架构中发布的, 所以强烈建议所有用户在您当前的 Rocky Linux 计算机中应用 *全部* 更新(包括今天发布的内容), 您可以通过运行 `dnf update` 来完成更新动作。 15 | 16 | 所有 Rocky Linux 组件都是由托管在[git.rockylinux.org](https://git.rockylinux.org) 上的源代码进行构建的。 此外,SRPM 与存储库将一起发布在对应的 "source" 目录中, 您可以在我们的任意镜像网站上找到它们, 镜像网站的源码包与我们发布的每个二进制 RPM 相同。 17 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/.pages: -------------------------------------------------------------------------------- 1 | --- 2 | nav: 3 | - ... | index*.md 4 | - RSOD: rsod 5 | - ... 6 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Introduction 3 | author: Steven Spencer 4 | contributors: 5 | --- 6 | 7 | This is a new area meant to deal with team and project announcements. This will include things such as "Rocky Summer of Docs" (RSOD) guidelines, and documentation team goals. You will find the archived RSOD projects here as well. 8 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/rsod/index.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Summer of Docs 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Einleitung 8 | 9 | Rocky Summer of Docs (RSOD) ist ein Programm, das im Sommer 2024 gestartet wurde. Basierend auf Googles Summer of Code fordert RSOD neue und bestehende Dokumentation-Mitwirkende dazu auf, Dokumentation basierend auf bestimmten Zielen des Dokumentationsteams hinzuzufügen. Das Rocky Linux-Team hofft, dieses Programm jährlich anbieten zu können. 10 | 11 | Wenn Sie Vorschläge für zukünftige RSOD-Projekte haben, freuen wir uns über Ihre Anregungen. Sie erreichen uns über den [Kanal des Documentation Team Mattermost](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/rsod/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Summer of Docs 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Introduction 8 | 9 | Rocky Summer of Docs (RSOD) est un programme qui a débuté à l'été 2024. Basé sur le Summer of Code de Google, RSOD met au défi les contributeurs de documentation nouveaux et existants d'ajouter de la documentation en fonction des objectifs particuliers de l'équipe de documentation. Nous espérons pouvoir offrir ce programme chaque année. 10 | 11 | Si vous avez des idées pour de futurs projets RSOD, nous serions ravis de connaître vos suggestions. N'hésitez pas à nous contacter sur [le canal de l'équipe de documentation Mattermost](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/rsod/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Summer of Docs 3 | author: Steven Spencer 4 | contributors: 5 | --- 6 | ## Introduction 7 | 8 | Rocky Summer of Docs (RSOD) is a program that began in the summer of 2024. Based on Google's Summer of Code, RSOD challenges new and existing documentation contributors to add documentation based on particular Documentation team goals. The hope is to offer this program annually. 9 | 10 | If you have suggestions for future RSOD projects, we would love to hear your suggestions. You can reach us on [Documentation Team Mattermost channel](https://chat.rockylinux.org/rocky-linux/channels/documentation). 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/announcements/rsod/index.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Summer of Docs 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | ## Вступ 8 | 9 | Rocky Summer of Docs (RSOD) — це програма, яка стартувала влітку 2024 року. Базуючись на Google Summer of Code, RSOD закликає нових і існуючих учасників документації додавати документацію на основі конкретних цілей команди документації. Сподіваюся пропонувати цю програму щорічно. 10 | 11 | Якщо у вас є пропозиції щодо майбутніх проектів RSOD, ми будемо раді їх почути. Ви можете зв’язатися з нами на [каналі Documentation Team Mattermost](https://chat.rockylinux.org/rocky-linux/channels/documentation). 12 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - ... | index*.md 3 | - SIGs: sigs 4 | - ... 5 | 6 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rocky Links 3 | author: Steven Spencer 4 | contributors: 5 | --- 6 | 7 | * Rocky Linux [main website](https://rockylinux.org) 8 | * Docs Team [Mattermost](https://chat.rockylinux.org/rocky-linux/channels/documentation) 9 | * [Forums](https://forums.rockylinux.org) 10 | * [Wiki](https://wiki.rockylinux.org) 11 | * [Code of Conduct](https://rockylinux.org/about/coc) 12 | * [Account Services](https://accounts.rockylinux.org) 13 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.de.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Special Interest Groups 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | - Alternative Architektur [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - Cloud-Dienste [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - Infrastruktur [SIG/Infra](https://infra.rocky.page/) 10 | - Release Engineering [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.fr.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Groupes d'Intérêts Spéciaux 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | - Architecture Alternative [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - Services Cloud [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - Infrastructure [SIG/Infra](https://infra.rocky.page/) 10 | - Ingénierie de Publication [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.it.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Special Interest Groups 3 | author: Spencer Steven 4 | contributors: null 5 | --- 6 | 7 | - Architetture Alternative [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - Servizi Cloud [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - Infrastruttura [SIG/Infra](https://infra.rocky.page/) 10 | - Release Engineering [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Special Interest Groups 3 | author: Steven Spencer 4 | contributors: 5 | --- 6 | 7 | * Alternate Architecture [SIG/AltArch](https://sig-altarch.rocky.page) 8 | * Cloud Services [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | * Infrastructure [SIG/Infra](https://infra.rocky.page/) 10 | * Release Engineering [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.pt.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Grupo de Interesse Especial (SIG) 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | - Arquitetura Alternativa [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - Serviços em Nuvem [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - Infraestrutura [SIG/Infra](https://infra.rocky.page/) 10 | - Engenharia de Lançamento [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.uk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Групи по інтересам 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | - Альтернативна архітектура [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - Хмарні служби [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - Інфраструктура [SIG/Infra](https://infra.rocky.page/) 10 | - Розробка релізу [SIG/Core](https://sig-core.rocky.page) 11 | -------------------------------------------------------------------------------- /docs/rocky_insights/links/sigs/index.zh.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 特别兴趣小组(SIG) 3 | author: Steven Spencer 4 | contributors: null 5 | --- 6 | 7 | - 新架构 [SIG/AltArch](https://sig-altarch.rocky.page) 8 | - 云服务 [SIG/Cloud](https://sig-cloud.rocky.page/) 9 | - 基础设施 [SIG/Infra](https://infra.rocky.page/) 10 | - 发布工程 [SIG/Core](https://sig-core.rocky.page) 11 | --------------------------------------------------------------------------------