├── .gitattributes ├── .github └── workflows │ └── github_pages.yml ├── .gitignore ├── .gitmodules ├── .nojekyll ├── .reuse └── dep5 ├── CNAME ├── LICENSE ├── LICENSES └── MIT.txt ├── README.md ├── docs ├── .pages ├── CNAME ├── archive │ ├── .pages │ └── index.md ├── assets │ ├── grub_ex.png │ ├── grub_ex_fedora.png │ ├── logo.png │ ├── proton.png │ ├── silent_hill.png │ ├── silent_hill_16.png │ ├── silent_hill_32.png │ └── statusline.png ├── el │ ├── builds.md │ ├── freeipa.md │ ├── freeipa.old │ ├── index.md │ ├── nat.md │ ├── openldap.md │ ├── pxeboot.md │ ├── sysadmin.md │ └── unbound.md ├── index.md ├── misc │ ├── euphemism.md │ ├── ipv6he.md │ ├── mingw.md │ └── port465.md └── training │ └── ex362.md ├── mkdocs.yml ├── overrides └── partials │ └── comments.html ├── requirements.txt └── source ├── _static ├── css │ ├── nojs.css │ ├── prism-gruvbox-dark.css │ └── style.css ├── favicon.ico ├── img │ ├── grub_ex.png │ ├── grub_ex_fedora.png │ ├── logo.png │ ├── proton.png │ ├── silent_hill.png │ ├── silent_hill_16.png │ ├── silent_hill_32.png │ └── statusline.png └── js │ └── prism-freeipa.js ├── about └── contributors.rst ├── conf.py ├── el ├── builds.rst ├── freeipa.rst ├── nat.rst ├── openldap.rst ├── pxeboot.rst ├── sysadmin.rst └── unbound.rst ├── errata ├── removed.rst └── upcoming.rst ├── exts └── customwriter.py ├── fedora ├── backups.rst ├── btrfs.rst ├── cipc.rst ├── clang.rst ├── copr.rst ├── dnf.rst ├── dns.rst ├── docker.rst ├── emulators.rst ├── firefox.rst ├── gcc.rst ├── git.rst ├── gnometips.rst ├── grub.rst ├── iphone.rst ├── mcafee.rst ├── misc.rst ├── mpv.rst ├── nvidia.rst ├── pip.rst ├── powerline.rst ├── tmux.rst ├── vim.rst ├── winetips.rst └── xscreensaver.rst ├── index.rst ├── macos └── image.rst ├── misc ├── euphemism.rst ├── ipv6he.rst ├── mingw.rst ├── port465.rst └── vnc.rst ├── security ├── antipatterns.rst ├── myths.rst └── passwords.rst ├── themes └── sphinx_rtd_theme │ ├── __init__.py │ ├── breadcrumbs.html │ ├── footer.html │ ├── layout.html │ ├── layout_old.html │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── sphinx.pot │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ ├── sphinx.mo │ │ └── sphinx.po │ ├── searchbox.html │ ├── static │ └── css │ │ └── theme.css │ ├── theme.conf │ └── versions.html └── training ├── ex362.rst ├── ex407.rst └── ex415.rst /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/github_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/.github/workflows/github_pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | linuxguideandhints.com 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/README.md -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | linuxguideandhints.com 2 | -------------------------------------------------------------------------------- /docs/archive/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/archive/.pages -------------------------------------------------------------------------------- /docs/archive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/archive/index.md -------------------------------------------------------------------------------- /docs/assets/grub_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/grub_ex.png -------------------------------------------------------------------------------- /docs/assets/grub_ex_fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/grub_ex_fedora.png -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/assets/proton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/proton.png -------------------------------------------------------------------------------- /docs/assets/silent_hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/silent_hill.png -------------------------------------------------------------------------------- /docs/assets/silent_hill_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/silent_hill_16.png -------------------------------------------------------------------------------- /docs/assets/silent_hill_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/silent_hill_32.png -------------------------------------------------------------------------------- /docs/assets/statusline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/assets/statusline.png -------------------------------------------------------------------------------- /docs/el/builds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/builds.md -------------------------------------------------------------------------------- /docs/el/freeipa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/freeipa.md -------------------------------------------------------------------------------- /docs/el/freeipa.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/freeipa.old -------------------------------------------------------------------------------- /docs/el/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/index.md -------------------------------------------------------------------------------- /docs/el/nat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/nat.md -------------------------------------------------------------------------------- /docs/el/openldap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/openldap.md -------------------------------------------------------------------------------- /docs/el/pxeboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/pxeboot.md -------------------------------------------------------------------------------- /docs/el/sysadmin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/sysadmin.md -------------------------------------------------------------------------------- /docs/el/unbound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/el/unbound.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/misc/euphemism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/misc/euphemism.md -------------------------------------------------------------------------------- /docs/misc/ipv6he.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/misc/ipv6he.md -------------------------------------------------------------------------------- /docs/misc/mingw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/misc/mingw.md -------------------------------------------------------------------------------- /docs/misc/port465.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/misc/port465.md -------------------------------------------------------------------------------- /docs/training/ex362.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/docs/training/ex362.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/overrides/partials/comments.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/requirements.txt -------------------------------------------------------------------------------- /source/_static/css/nojs.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/_static/css/prism-gruvbox-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/css/prism-gruvbox-dark.css -------------------------------------------------------------------------------- /source/_static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/css/style.css -------------------------------------------------------------------------------- /source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/favicon.ico -------------------------------------------------------------------------------- /source/_static/img/grub_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/grub_ex.png -------------------------------------------------------------------------------- /source/_static/img/grub_ex_fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/grub_ex_fedora.png -------------------------------------------------------------------------------- /source/_static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/logo.png -------------------------------------------------------------------------------- /source/_static/img/proton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/proton.png -------------------------------------------------------------------------------- /source/_static/img/silent_hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/silent_hill.png -------------------------------------------------------------------------------- /source/_static/img/silent_hill_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/silent_hill_16.png -------------------------------------------------------------------------------- /source/_static/img/silent_hill_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/silent_hill_32.png -------------------------------------------------------------------------------- /source/_static/img/statusline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/img/statusline.png -------------------------------------------------------------------------------- /source/_static/js/prism-freeipa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/_static/js/prism-freeipa.js -------------------------------------------------------------------------------- /source/about/contributors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/about/contributors.rst -------------------------------------------------------------------------------- /source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/conf.py -------------------------------------------------------------------------------- /source/el/builds.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/builds.rst -------------------------------------------------------------------------------- /source/el/freeipa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/freeipa.rst -------------------------------------------------------------------------------- /source/el/nat.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/nat.rst -------------------------------------------------------------------------------- /source/el/openldap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/openldap.rst -------------------------------------------------------------------------------- /source/el/pxeboot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/pxeboot.rst -------------------------------------------------------------------------------- /source/el/sysadmin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/sysadmin.rst -------------------------------------------------------------------------------- /source/el/unbound.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/el/unbound.rst -------------------------------------------------------------------------------- /source/errata/removed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/errata/removed.rst -------------------------------------------------------------------------------- /source/errata/upcoming.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/errata/upcoming.rst -------------------------------------------------------------------------------- /source/exts/customwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/exts/customwriter.py -------------------------------------------------------------------------------- /source/fedora/backups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/backups.rst -------------------------------------------------------------------------------- /source/fedora/btrfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/btrfs.rst -------------------------------------------------------------------------------- /source/fedora/cipc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/cipc.rst -------------------------------------------------------------------------------- /source/fedora/clang.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/clang.rst -------------------------------------------------------------------------------- /source/fedora/copr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/copr.rst -------------------------------------------------------------------------------- /source/fedora/dnf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/dnf.rst -------------------------------------------------------------------------------- /source/fedora/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/dns.rst -------------------------------------------------------------------------------- /source/fedora/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/docker.rst -------------------------------------------------------------------------------- /source/fedora/emulators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/emulators.rst -------------------------------------------------------------------------------- /source/fedora/firefox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/firefox.rst -------------------------------------------------------------------------------- /source/fedora/gcc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/gcc.rst -------------------------------------------------------------------------------- /source/fedora/git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/git.rst -------------------------------------------------------------------------------- /source/fedora/gnometips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/gnometips.rst -------------------------------------------------------------------------------- /source/fedora/grub.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/grub.rst -------------------------------------------------------------------------------- /source/fedora/iphone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/iphone.rst -------------------------------------------------------------------------------- /source/fedora/mcafee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/mcafee.rst -------------------------------------------------------------------------------- /source/fedora/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/misc.rst -------------------------------------------------------------------------------- /source/fedora/mpv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/mpv.rst -------------------------------------------------------------------------------- /source/fedora/nvidia.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/nvidia.rst -------------------------------------------------------------------------------- /source/fedora/pip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/pip.rst -------------------------------------------------------------------------------- /source/fedora/powerline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/powerline.rst -------------------------------------------------------------------------------- /source/fedora/tmux.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/tmux.rst -------------------------------------------------------------------------------- /source/fedora/vim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/vim.rst -------------------------------------------------------------------------------- /source/fedora/winetips.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/winetips.rst -------------------------------------------------------------------------------- /source/fedora/xscreensaver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/fedora/xscreensaver.rst -------------------------------------------------------------------------------- /source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/index.rst -------------------------------------------------------------------------------- /source/macos/image.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/macos/image.rst -------------------------------------------------------------------------------- /source/misc/euphemism.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/misc/euphemism.rst -------------------------------------------------------------------------------- /source/misc/ipv6he.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/misc/ipv6he.rst -------------------------------------------------------------------------------- /source/misc/mingw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/misc/mingw.rst -------------------------------------------------------------------------------- /source/misc/port465.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/misc/port465.rst -------------------------------------------------------------------------------- /source/misc/vnc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/misc/vnc.rst -------------------------------------------------------------------------------- /source/security/antipatterns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/security/antipatterns.rst -------------------------------------------------------------------------------- /source/security/myths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/security/myths.rst -------------------------------------------------------------------------------- /source/security/passwords.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/security/passwords.rst -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/__init__.py -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/breadcrumbs.html -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/footer.html -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/layout.html -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/layout_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/layout_old.html -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/sphinx.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/sphinx.pot -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/searchbox.html -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/static/css/theme.css -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/theme.conf -------------------------------------------------------------------------------- /source/themes/sphinx_rtd_theme/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/themes/sphinx_rtd_theme/versions.html -------------------------------------------------------------------------------- /source/training/ex362.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/training/ex362.rst -------------------------------------------------------------------------------- /source/training/ex407.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/training/ex407.rst -------------------------------------------------------------------------------- /source/training/ex415.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nazunalika/linux-guide-and-hints/HEAD/source/training/ex415.rst --------------------------------------------------------------------------------