From a3628fc49db4d88ff3e4067268650710d1da3f6f Mon Sep 17 00:00:00 2001 From: Silvino Silva <silvino@bk.ru> Date: Fri, 12 Feb 2021 03:59:34 +0000 Subject: initial openbsd support --- linux/toolchain.html | 187 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 187 insertions(+) create mode 100644 linux/toolchain.html (limited to 'linux/toolchain.html') diff --git a/linux/toolchain.html b/linux/toolchain.html new file mode 100644 index 0000000..23f5655 --- /dev/null +++ b/linux/toolchain.html @@ -0,0 +1,187 @@ +<!DOCTYPE html> +<html dir="ltr" lang="en"> + <head> + <meta charset='utf-8'> + <title>2.6.3. Toolchain</title> + </head> + <body> + + <a href="index.html">Core OS Index</a> + + <h1 id="toolchain">2.6.3. Toolchain</h1> + + <p>Add flags to pkgmk configuration and change specific ports that + don't build with hardening flags. More information about + <a href="https://wiki.archlinux.org/index.php/DeveloperWiki:Security">arch security</a>, + gentoo security, + <a href="http://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html#Instrumentation-Options">gcc</a> instrumentation-options + and <a href="http://www.gnu.org/software/libc/manual/html_node/Configuring-and-compiling.html">glibc</a> + configuring and compiling. Edit /etc/pkgmk.conf;</p> + + <pre> + export CPPFLAGS="-D_FORTIFY_SOURCE=2" + export CFLAGS="-O2 -march=native -mtune=native -fstack-protector-strong --param=ssp-buffer-size=4" + export CXXFLAGS="${CFLAGS}" + export LDFLAGS="-z relro" + </pre> + + <p>Above should compile most of the packages, for more + "restrict" and other flags combinations check <a href="conf/pkgmk.conf.harden">pkgmk.conf.handen</a>.</p> + + <h3>Core</h3> + + <p>Ports in core collection that need to be changed in order + to build with pkgmk harden configuration.</p> + + <h4>Glibc</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/lfs/view/development/chapter06/glibc.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/glibc">arch</a></li> + </ul> + + <pre> + export CPPFLAGS="" + export CFLAGS="-O2 -march=native -mtune=native" + export CXXFLAGS="${CFLAGS}" + export LDFLAGS="" + </pre> + + <pre> + ../$name-${version:0:4}/configure --prefix=/usr \ + --libexecdir=/usr/lib \ + --with-headers=$PKG/usr/include \ + --enable-kernel=3.12 \ + --enable-add-ons \ + --enable-static-nss \ + --disable-profile \ + --disable-werror \ + --without-gd \ + --enable-obsolete-rpc \ + --enable-multi-arch \ + --enable-stackguard-randomization \ + --enable-stack-protector=strong + </pre> + + <h4>Gcc</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/lfs/view/development/chapter06/gcc.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/gcc">arch</a></li> + </ul> + + <pre> + export CPPFLAGS="" + export CFLAGS="-O2 -march=native -mtune=native" + export CXXFLAGS="${CFLAGS}" + export LDFLAGS="" + </pre> + + <h4>Openssl</h4> + + <p>Replace openssl by libressl, view if + <a href="https://raw.githubusercontent.com/6c37/crux-ports-dropin/3.3/libressl/Pkgfile">libressl port</a> from 6c37-dropin is updated with + latest <a href="https://raw.githubusercontent.com/libressl-portable/portable/master/ChangeLog">libressl upstream</a>. First install libressl + to ensure it gets all the sources; + + <pre> + $ sudo prt-get depinst libressl + </pre> + + <p>After complaining about openssl files remove openssl; + + <pre> + $ sudo prt-get remove openssl + $ sudo prt-get depinst libressl + </pre> + + + <h4>libcap</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/lfs/view/development/chapter06/libcap.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/libcap">arch</a></li> + </ul> + + <h4>bzip2</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/lfs/view/development/chapter06/bzip2.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/bzip2">arch</a></li> + </ul> + + <h4>hdparm</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/hdparm.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/hdparm">arch</a></li> + </ul> + + <h3>Opt</h3> + + <h4>lsof</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/lsof.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/lsof">arch</a></li> + </ul> + + <h4>python</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/python2.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/python2">arch</a></li> + </ul> + + <h4>zip</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/zip.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/zip">arch</a></li> + </ul> + + <h4>glew</h4> + + <ul> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/glew">arch</a></li> + </ul> + + <h4>dmenu</h4> + + <ul> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/dmenu">arch</a></li> + </ul> + + <h4>Boost</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/boost.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/boost">arch</a></li> + </ul> + + <pre> + export CPPFLAGS="" + export CFLAGS="-O2 -march=native -mtune=native" + export CXXFLAGS="${CFLAGS}" + export LDFLAGS="" + </pre> + + <h3>Contrib</h3> + + <h4>gsl</h4> + + <ul> + <li><a href="http://www.linuxfromscratch.org/blfs/view/svn/general/gsl.html">lfs</a></li> + <li><a href="https://git.archlinux.org/svntogit/packages.git/tree/trunk/PKGBUILD?h=packages/gsl">arch</a></li> + </ul> + + + <a href="index.html">Core OS Index</a> + <p>This is part of the Tribu System Documentation. + Copyright (C) 2020 + Tribu Team. + See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> + for copying conditions.</p> + + </body> +</html> -- cgit 1.4.1-2-gfad0 From 88ad431d4bef94a816b4a1031fb5a62d4bd8a0d7 Mon Sep 17 00:00:00 2001 From: Silvino Silva <silvino@bk.ru> Date: Fri, 26 Feb 2021 01:00:12 +0000 Subject: date and name fix --- dev/c/basic.html | 6 +++--- dev/c/datatypes.html | 6 +++--- dev/c/debugging.html | 6 +++--- dev/c/elements.html | 6 +++--- dev/c/hello.html | 6 +++--- dev/c/index.html | 6 +++--- dev/c/lib.html | 6 +++--- dev/c/system.html | 6 +++--- dev/git/branch.html | 6 +++--- dev/git/index.html | 6 +++--- dev/git/install.html | 6 +++--- dev/git/work.html | 6 +++--- dev/index.html | 6 +++--- dev/js/index.html | 6 +++--- dev/perl/index.html | 6 +++--- dev/php/hello.html | 6 +++--- dev/php/index.html | 6 +++--- dev/python/index.html | 6 +++--- dev/shell/dash.html | 6 +++--- dev/shell/index.html | 6 +++--- linux/apparmor.html | 10 +++++----- linux/bash.html | 10 +++++----- linux/configure.html | 10 +++++----- linux/dash.html | 10 +++++----- linux/exim.html | 10 +++++----- linux/hardening.html | 10 +++++----- linux/index.html | 12 ++++++------ linux/install.html | 10 +++++----- linux/linux.html | 10 +++++----- linux/network.html | 10 +++++----- linux/package.html | 10 +++++----- linux/ports.html | 10 +++++----- linux/reboot.html | 10 +++++----- linux/samhain.html | 10 +++++----- linux/sysctl.html | 10 +++++----- linux/toolchain.html | 10 +++++----- linux/tty-terminal.html | 10 +++++----- tools/dnsmasq.html | 6 +++--- tools/fail2ban.html | 6 +++--- tools/gitolite.html | 6 +++--- tools/gnupg.html | 8 ++++---- tools/index.html | 6 +++--- tools/irssi.html | 6 +++--- tools/logrotate.html | 6 +++--- tools/logwatch.html | 6 +++--- tools/lvm.html | 6 +++--- tools/lynx.html | 8 ++++---- tools/mutt.html | 6 +++--- tools/network.html | 6 +++--- tools/nginx.html | 6 +++--- tools/openssh.html | 6 +++--- tools/postgresql.html | 6 +++--- tools/qemu.html | 6 +++--- tools/squid.html | 6 +++--- tools/storage.html | 6 +++--- tools/syslog-ng.html | 6 +++--- tools/tar.html | 6 +++--- tools/tmux.html | 10 +++++----- tools/vim.html | 6 +++--- tools/wireless.html | 6 +++--- tools/x.html | 6 +++--- 61 files changed, 222 insertions(+), 222 deletions(-) (limited to 'linux/toolchain.html') diff --git a/dev/c/basic.html b/dev/c/basic.html index 84f93e2..0f56625 100644 --- a/dev/c/basic.html +++ b/dev/c/basic.html @@ -50,9 +50,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/datatypes.html b/dev/c/datatypes.html index 9ebb7db..e406d2c 100644 --- a/dev/c/datatypes.html +++ b/dev/c/datatypes.html @@ -173,9 +173,9 @@ </dl> <a href="index.html">C Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/c/debugging.html b/dev/c/debugging.html index 2128911..d146d80 100644 --- a/dev/c/debugging.html +++ b/dev/c/debugging.html @@ -136,9 +136,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/elements.html b/dev/c/elements.html index 78829d2..fb968b7 100644 --- a/dev/c/elements.html +++ b/dev/c/elements.html @@ -54,9 +54,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/hello.html b/dev/c/hello.html index f4b7039..948bbe5 100644 --- a/dev/c/hello.html +++ b/dev/c/hello.html @@ -125,9 +125,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/index.html b/dev/c/index.html index 0935866..1622cc1 100644 --- a/dev/c/index.html +++ b/dev/c/index.html @@ -80,9 +80,9 @@ <a href="../index.html">Development Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/lib.html b/dev/c/lib.html index f5f6acc..6cd1fca 100644 --- a/dev/c/lib.html +++ b/dev/c/lib.html @@ -246,9 +246,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/c/system.html b/dev/c/system.html index de9dab5..eedf242 100644 --- a/dev/c/system.html +++ b/dev/c/system.html @@ -171,9 +171,9 @@ <a href="index.html">C Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/git/branch.html b/dev/git/branch.html index c92da99..89ac8a9 100644 --- a/dev/git/branch.html +++ b/dev/git/branch.html @@ -306,9 +306,9 @@ </pre> <a href="index.html">Git Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/git/index.html b/dev/git/index.html index 198db7c..2939401 100644 --- a/dev/git/index.html +++ b/dev/git/index.html @@ -59,9 +59,9 @@ <a href="../index.html">Development Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/git/install.html b/dev/git/install.html index 923fc4c..3e5dbfb 100644 --- a/dev/git/install.html +++ b/dev/git/install.html @@ -46,9 +46,9 @@ </pre> <a href="index.html">Git Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/git/work.html b/dev/git/work.html index 993b413..b72cfae 100644 --- a/dev/git/work.html +++ b/dev/git/work.html @@ -162,9 +162,9 @@ <a href="index.html">Git Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/index.html b/dev/index.html index 461b99e..bacfe6c 100644 --- a/dev/index.html +++ b/dev/index.html @@ -35,9 +35,9 @@ </dl> <a href="../index.html">Documentation Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/js/index.html b/dev/js/index.html index ef89879..8e44637 100644 --- a/dev/js/index.html +++ b/dev/js/index.html @@ -19,9 +19,9 @@ <a href="../index.html">Development Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/perl/index.html b/dev/perl/index.html index dd4c857..94937a9 100644 --- a/dev/perl/index.html +++ b/dev/perl/index.html @@ -21,9 +21,9 @@ <a href="../index.html">Development Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/php/hello.html b/dev/php/hello.html index e7cdd62..320ce68 100644 --- a/dev/php/hello.html +++ b/dev/php/hello.html @@ -74,9 +74,9 @@ <a href="../index.html">PHP Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/php/index.html b/dev/php/index.html index a44b102..e9ad5c6 100644 --- a/dev/php/index.html +++ b/dev/php/index.html @@ -33,9 +33,9 @@ <a href="../index.html">Development Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/python/index.html b/dev/python/index.html index dea4d63..5ccffe3 100644 --- a/dev/python/index.html +++ b/dev/python/index.html @@ -19,9 +19,9 @@ <a href="../index.html">Development Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/dev/shell/dash.html b/dev/shell/dash.html index 4511584..229a1ce 100644 --- a/dev/shell/dash.html +++ b/dev/shell/dash.html @@ -15,9 +15,9 @@ <h2 id="if">Conditions</h2> <a href="../index.html">Development Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/dev/shell/index.html b/dev/shell/index.html index 1b742a9..8e2be1b 100644 --- a/dev/shell/index.html +++ b/dev/shell/index.html @@ -24,9 +24,9 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/apparmor.html b/linux/apparmor.html index fcb34fe..6cd6d4f 100644 --- a/linux/apparmor.html +++ b/linux/apparmor.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.6.1. AppArmor</h1> @@ -244,10 +244,10 @@ chache-loc=/var/cache/apparmor </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/bash.html b/linux/bash.html index f49d27e..1a7edb2 100644 --- a/linux/bash.html +++ b/linux/bash.html @@ -5,7 +5,7 @@ <title>2.5.2. Bash</title> </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="bash">2.5.2. Bash</h1> @@ -152,11 +152,11 @@ fi </pre> </pre> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/configure.html b/linux/configure.html index a548e5d..2e72c90 100644 --- a/linux/configure.html +++ b/linux/configure.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="chroot">1.2. Configure</h1> @@ -273,10 +273,10 @@ # End of file </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/dash.html b/linux/dash.html index a9aebee..8da34a3 100644 --- a/linux/dash.html +++ b/linux/dash.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.5.1. Dash</h1> @@ -18,10 +18,10 @@ </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/exim.html b/linux/exim.html index 028bfce..5cfed62 100644 --- a/linux/exim.html +++ b/linux/exim.html @@ -5,7 +5,7 @@ <title>2.5. Exim</title> </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.5. Exim</h1> <h2 id="conf">2.5.1. Exim Configuration</h2> @@ -222,11 +222,11 @@ poll pop.remote.com protocol POP3 user "drbob@remote.com" there with password "secretpass" is "bob@box" here </pre> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/hardening.html b/linux/hardening.html index 041f999..0fd13e3 100644 --- a/linux/hardening.html +++ b/linux/hardening.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.6. Hardening</h1> @@ -177,10 +177,10 @@ <p>Add unnecessary tests to profile to have less noise.</p> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/index.html b/linux/index.html index 089d143..33578f7 100644 --- a/linux/index.html +++ b/linux/index.html @@ -2,15 +2,15 @@ <html dir="ltr" lang="en"> <head> <meta charset='utf-8'> - <title>Core OS</title> + <title>GNU/Linux</title> </head> <body> <a href="../index.html">Documentation Index</a> - <h1>Core OS</h1> + <h1>GNU/Linux</h1> - <p>Core OS covers installation and configuration of + <p>GNU/Linux covers installation and configuration of basic functionality of Crux 3.5 Gnu\Linux operating system. This documentation try's to follow Crux HandBook installation method diverges, for example, by only installing and @@ -162,9 +162,9 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/install.html b/linux/install.html index 64fbe02..f42f4a2 100644 --- a/linux/install.html +++ b/linux/install.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>1.1. Install Crux 3.5</h1> @@ -397,10 +397,10 @@ $ sudo cp -R conf/skel $CHROOT/etc/ </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/linux.html b/linux/linux.html index 9d568e9..3d992e9 100644 --- a/linux/linux.html +++ b/linux/linux.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="kernel">2.1. Kernel Linux</h1> @@ -855,10 +855,10 @@ $ sudo rm /boot/System.map-4.9.86-gnu </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/network.html b/linux/network.html index 0d359f3..ec33b25 100644 --- a/linux/network.html +++ b/linux/network.html @@ -5,7 +5,7 @@ <title>2.2. Network</title> </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.2. Network</h1> @@ -425,11 +425,11 @@ nmcli> save persistent </pre> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/package.html b/linux/package.html index 5235d01..4b68b6a 100644 --- a/linux/package.html +++ b/linux/package.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.3. Package Management</h1> @@ -179,10 +179,10 @@ prt-get printf "%p %i %n %v\n" | grep "/usr/ports/contrib yes" </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/ports.html b/linux/ports.html index 78607bd..28047c5 100644 --- a/linux/ports.html +++ b/linux/ports.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>1.4. Ports</h1> @@ -254,11 +254,11 @@ DISTCC_LOG_LEVEL="info" </pre> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/reboot.html b/linux/reboot.html index 1a4783b..f8ab278 100644 --- a/linux/reboot.html +++ b/linux/reboot.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>1.3. Boot</h1> @@ -222,10 +222,10 @@ 36875 blocks </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/linux/samhain.html b/linux/samhain.html index 4c940ef..f679749 100644 --- a/linux/samhain.html +++ b/linux/samhain.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="samhain">2.6.4. Samhain</h1> @@ -253,11 +253,11 @@ # samhain -t update -l none --listfile=/root/list_of_files </pre> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/sysctl.html b/linux/sysctl.html index 3b1d492..9940d43 100644 --- a/linux/sysctl.html +++ b/linux/sysctl.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="sysctl">2.6.2. Sysctl</h1> @@ -166,10 +166,10 @@ # sysctl --system </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/toolchain.html b/linux/toolchain.html index 23f5655..1ee7c89 100644 --- a/linux/toolchain.html +++ b/linux/toolchain.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="toolchain">2.6.3. Toolchain</h1> @@ -176,10 +176,10 @@ </ul> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/linux/tty-terminal.html b/linux/tty-terminal.html index 4da3798..77c7b9d 100644 --- a/linux/tty-terminal.html +++ b/linux/tty-terminal.html @@ -6,7 +6,7 @@ </head> <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1>2.4. Consoles, terminals and shells</h1> @@ -71,10 +71,10 @@ </pre> - <a href="index.html">Core OS Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <a href="index.html">GNU/Linux Index</a> + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/dnsmasq.html b/tools/dnsmasq.html index 7c923dd..4d738e4 100644 --- a/tools/dnsmasq.html +++ b/tools/dnsmasq.html @@ -83,9 +83,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> diff --git a/tools/fail2ban.html b/tools/fail2ban.html index 38be371..71bbdf9 100644 --- a/tools/fail2ban.html +++ b/tools/fail2ban.html @@ -46,9 +46,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> diff --git a/tools/gitolite.html b/tools/gitolite.html index ea07129..fd9ad8c 100644 --- a/tools/gitolite.html +++ b/tools/gitolite.html @@ -826,9 +826,9 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/gnupg.html b/tools/gnupg.html index 89dfe84..a0da5d2 100644 --- a/tools/gnupg.html +++ b/tools/gnupg.html @@ -51,7 +51,7 @@ <pre> $ gpg2 --full-gen-key - gpg (GnuPG) 2.1.11; Copyright (C) 2020 Free Software Foundation, Inc. + gpg (GnuPG) 2.1.11; Copyright (C) 2021 Free Software Foundation, Inc. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. @@ -295,9 +295,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> diff --git a/tools/index.html b/tools/index.html index dc11f57..1febb5e 100644 --- a/tools/index.html +++ b/tools/index.html @@ -201,9 +201,9 @@ <a href="../index.html">Documentation Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/irssi.html b/tools/irssi.html index bcf714e..fc958d7 100644 --- a/tools/irssi.html +++ b/tools/irssi.html @@ -57,9 +57,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/logrotate.html b/tools/logrotate.html index fc07169..4f58aa1 100644 --- a/tools/logrotate.html +++ b/tools/logrotate.html @@ -361,9 +361,9 @@ # logrotate -f /etc/logrotate.conf </pre> - <p>This is part of the Tribu System Documentation. -Copyright (C) 2020 -Tribu Team. + <p>This is part of the LeetIO System Documentation. +Copyright (C) 2021 +LeetIO Team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/logwatch.html b/tools/logwatch.html index 20d1801..9718763 100644 --- a/tools/logwatch.html +++ b/tools/logwatch.html @@ -129,9 +129,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> diff --git a/tools/lvm.html b/tools/lvm.html index 4e25b10..211b181 100644 --- a/tools/lvm.html +++ b/tools/lvm.html @@ -158,9 +158,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/lynx.html b/tools/lynx.html index b26e660..f800fcc 100644 --- a/tools/lynx.html +++ b/tools/lynx.html @@ -16,7 +16,7 @@ <pre> # Description: Text-based web browser. # URL: http://lynx.isc.org/ - # Packager: Tribu Team, silvino at bk dot ru + # Packager: LeetIO Team, silvino at bk dot ru # Depends on: ncurses openssl zlib name=lynx @@ -51,9 +51,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/mutt.html b/tools/mutt.html index 7edac42..4cb5599 100644 --- a/tools/mutt.html +++ b/tools/mutt.html @@ -311,9 +311,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/network.html b/tools/network.html index 16549e8..080ba05 100644 --- a/tools/network.html +++ b/tools/network.html @@ -72,9 +72,9 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/nginx.html b/tools/nginx.html index 937be15..32685b9 100644 --- a/tools/nginx.html +++ b/tools/nginx.html @@ -446,9 +446,9 @@ <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/openssh.html b/tools/openssh.html index 271d919..aab5218 100644 --- a/tools/openssh.html +++ b/tools/openssh.html @@ -315,9 +315,9 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/postgresql.html b/tools/postgresql.html index f27b7d4..a87c0b9 100644 --- a/tools/postgresql.html +++ b/tools/postgresql.html @@ -350,9 +350,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/qemu.html b/tools/qemu.html index 1ceb969..04c367d 100644 --- a/tools/qemu.html +++ b/tools/qemu.html @@ -401,9 +401,9 @@ </pre> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/squid.html b/tools/squid.html index 25fb12e..d19494a 100644 --- a/tools/squid.html +++ b/tools/squid.html @@ -65,9 +65,9 @@ ssl_bump bump all </pre> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/storage.html b/tools/storage.html index 430b735..03e24ef 100644 --- a/tools/storage.html +++ b/tools/storage.html @@ -149,9 +149,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/syslog-ng.html b/tools/syslog-ng.html index 70dc994..f192fa5 100644 --- a/tools/syslog-ng.html +++ b/tools/syslog-ng.html @@ -374,9 +374,9 @@ <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. -Copyright (C) 2020 -Tribu Team. + <p>This is part of the LeetIO System Documentation. +Copyright (C) 2021 +LeetIO Team. See the file <a href="fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/tar.html b/tools/tar.html index dfcd3a0..32fe945 100644 --- a/tools/tar.html +++ b/tools/tar.html @@ -122,9 +122,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> diff --git a/tools/tmux.html b/tools/tmux.html index d6bf7a0..c00b046 100644 --- a/tools/tmux.html +++ b/tools/tmux.html @@ -7,7 +7,7 @@ <body> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <h1 id="tmux">2.5.3. Tmux</h1> <p>Install tmux, improves cli work efficiency;</p> @@ -106,11 +106,11 @@ <p>Before pasting on vim, set paste mode and then set nopaste.</p> - <a href="index.html">Core OS Index</a> + <a href="index.html">GNU/Linux Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/vim.html b/tools/vim.html index b76c111..6d34312 100644 --- a/tools/vim.html +++ b/tools/vim.html @@ -267,9 +267,9 @@ </dl> <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> diff --git a/tools/wireless.html b/tools/wireless.html index 0696cd5..e15b112 100644 --- a/tools/wireless.html +++ b/tools/wireless.html @@ -124,9 +124,9 @@ <a href="index.html">Tools Index</a> - <p>This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + <p>This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> diff --git a/tools/x.html b/tools/x.html index 2172a56..0e9a4eb 100644 --- a/tools/x.html +++ b/tools/x.html @@ -216,9 +216,9 @@ <a href="index.html">Tools Index</a> <p> - This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a> for copying conditions.</p> </body> </html> -- cgit 1.4.1-2-gfad0