From a3628fc49db4d88ff3e4067268650710d1da3f6f Mon Sep 17 00:00:00 2001 From: Silvino Silva Date: Fri, 12 Feb 2021 03:59:34 +0000 Subject: initial openbsd support --- linux/ports.html | 265 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 linux/ports.html (limited to 'linux/ports.html') diff --git a/linux/ports.html b/linux/ports.html new file mode 100644 index 0000000..78607bd --- /dev/null +++ b/linux/ports.html @@ -0,0 +1,265 @@ + + + + + 1.4. Ports + + + + Core OS Index + +

1.4. Ports

+ +

This instructions are done + inside chroot.

+ +

1.4.1. Ports Layout

+ +

Make sure follow directories exist;

+ +
+	#  mkdir /usr/ports
+	#  mkdir -p /usr/ports/{distfiles,packages,work,pkgbuild}
+	
+ +

1.4.2. Build as user

+ +

For more information read + Fakeroot Ports. + Add a user that will be used by ports tools, this example pkgmk;

+ +
+        # useradd -r -U -d /usr/ports -s /bin/false pkgmk
+        
+ +

You can add your self to group pkgmk. Check if members of this + group are under tpe protection.

+ +
+        # usermod -a -G pkgmk username
+        
+ +
+	#  chown pkgmk /usr/ports/{distfiles,packages,work,pkgbuild}
+	#  chown pkgmk:pkgmk /usr/ports/pkgbuild
+	#  chmod g+w /usr/ports/pkgbuild
+        
+ +

Configure to + compile in ram + average of 3GB is recommended for core while firefox need at least 30G. + Discover id of pkgmk user;

+ +
+        # id pkgmk
+        uid=102(pkgmk) gid=102(pkgmk) groups=102(pkgmk)
+        
+ +

Edit fstab, change uid to id of pkgmk, this example 102;

+ +
+        pkgmk /usr/ports/work tmpfs size=30G,uid=102,defaults,mode=0750 0 0
+        
+ +

1.4.3. Configure pkgmk

+ +

Read 4.5. Adjust/Configure the Package Build Process + to take advantage of your specific hardware. Packages build with + native flag will not run on different hardware. This is the best choice + if you want gcc to find the best settings based on your hardware.

+ +

Edit /etc/pkgmk.conf, remove pipe from compiler flags and let the system + get from nproc how many cpu's it can use for compiling;

+ +
+        #
+        # /etc/pkgmk.conf: pkgmk(8) configuration
+        #
+
+        export CFLAGS="-O2 -march=x86-64"
+        export CXXFLAGS="${CFLAGS}"
+
+        export JOBS=$(nproc)
+        export MAKEFLAGS="-j $JOBS"
+
+        case ${PKGMK_ARCH} in
+                "64"|"")
+                        ;;
+                "32")
+                        export CFLAGS="${CFLAGS} -m32"
+                        export CXXFLAGS="${CXXFLAGS} -m32"
+                        export LDFLAGS="${LDFLAGS} -m32"
+                        export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
+                        ;;
+                *)
+                        echo "Unknown architecture selected! Exiting."
+                        exit 1
+                        ;;
+        esac
+
+        PKGMK_SOURCE_MIRRORS=(https://tribu.semdestino.org/mirror-3.4/distfiles/)
+        # PKGMK_SOURCE_DIR="$PWD"
+        PKGMK_SOURCE_DIR="/usr/ports/distfiles"
+        # PKGMK_PACKAGE_DIR="$PWD"
+        PKGMK_PACKAGE_DIR="/usr/ports/packages"
+        # PKGMK_WORK_DIR="$PWD/work"
+        PKGMK_WORK_DIR="/usr/ports/work/${name}"
+        # PKGMK_DOWNLOAD="no"
+        # PKGMK_IGNORE_SIGNATURE="no"
+        # PKGMK_IGNORE_MD5SUM="no"
+        # PKGMK_IGNORE_FOOTPRINT="no"
+        # PKGMK_IGNORE_NEW="no"
+        # PKGMK_NO_STRIP="no"
+        # PKGMK_DOWNLOAD_PROG="wget"
+        # PKGMK_WGET_OPTS=""
+        # PKGMK_CURL_OPTS=""
+        # PKGMK_COMPRESSION_MODE="gz"
+
+        # End of file
+        
+ +

If you want native build change the above example to;

+ +
+        export CFLAGS="-O2 -march=native -mtune=native"
+        
+ +

Check toolchain for more options on how packages + are build.

+ +

1.4.4. Configure prt-get

+ +

Edit /etc/prt-get.conf;

+ +
+        ###
+        ### prt-get conf
+        ###
+
+        # note: the order matters: the package found first is used
+        prtdir /usr/ports/core
+        prtdir /usr/ports/opt
+        prtdir /usr/ports/xorg
+
+        # the following line enables the multilib compat-32 collection
+        #prtdir /usr/ports/compat-32
+
+        # the following line enables the user maintained contrib collection
+        prtdir /usr/ports/contrib
+        prtdir /usr/ports/ports
+        prtdir /usr/ports/mate
+        prtdir /usr/ports/kde5
+
+        ### use mypackage form local directory
+        # prtdir /home/packages/build:mypackage
+
+        ### log options:
+        writelog enabled         # (enabled|disabled)
+        logmode  overwrite       # (append|overwrite)
+        rmlog_on_success yes     # (no|yes)
+        logfile  /usr/ports/pkgbuild/%n.log
+                                   # path, %p=path to port dir, %n=port name
+                                   #       %v=version, %r=release
+
+        ### use alternate cache file (default: /var/lib/pkg/prt-get.cache
+        # cachefile /mnt/nfs/cache
+
+        ### print README information:
+        readme verbose           # (verbose|compact|disabled)
+
+        ### prefer higher versions in sysup / diff
+        preferhigher yes      # (yes|no)
+
+        ### use regexp search
+        # useregex no        # (yes|no)
+
+        ### run pre- and post-installs scripts; yes is equivalent to the
+        ### --install-scripts option
+        runscripts yes            # (no|yes)
+
+        ### expert section ###
+
+        ### alternative commands
+        makecommand      sudo -H -u pkgmk fakeroot pkgmk
+        addcommand       sudo pkgadd
+        removecommand    sudo pkgrm
+        runscriptcommand sudo sh
+        
+ +

1.4.5. Ccache and distcc

+ +

Ccache avoids same code to be compiled by saving + the output from compilers and identifying same + input by using hashes and distcc distributes + compiling process across machines.

+ +

Don't set native or generic on /etc/pkgmk.conf.

+
+        $ prt-get depinst ccache distcc
+        
+ +

Configure pkgmk and define number of cores available, + in this example get dynamically Edit + /etc/pkgmk.conf and + set ccaching directory and instructs to use distcc + backend;

+ +
+        # ccache settings
+        export PATH="/usr/lib/ccache/:$PATH"
+        export CCACHE_DIR="/usr/ports/ccache"
+        export CCACHE_PREFIX="distcc"
+        export CCACHE_COMPILERCHECK="%compiler% -dumpversion; crux"
+        
+ +

Set distcc hosts and respective number of + cpu cores to send work, hosts names, exp; "worker" must + be configured on /etc/hosts.

+ +
+        ### compile using distcc without ccache
+        ##export PATH="/usr/lib/distcc/:$PATH"
+        ##export DISTCC_HOSTS="localhost/4,lzo,cpp xborg/4,lzo,cpp"
+        ##export PUMP_BUILD=yes
+
+        # distcc settings
+        export JOBS=$(/usr/bin/distcc -j 2> /dev/null)
+        export DISTCC_DIR="/usr/ports/distcc"
+        export MAKEFLAGS="-j ${JOBS}"
+        export SCONSFLAGS="$MAKEFLAGS"
+
+        # local compile only
+        #export JOBS=$(nproc)
+        #export MAKEFLAGS="-j $JOBS"
+        
+ +

Configure distcc daemon, edit + /etc/rc.d/distccd;

+ +
+        #!/usr/bin/env bash
+        #
+        # /etc/rc.d/distccd: start/stop distcc daemon
+        #
+
+        . /etc/distcc.conf
+        if [ -z "$DISTCC_ALLOW" ]; then
+        
+ +

Create /etc/distcc.conf;

+ +
+        DISTCC_ALLOW="10.0.0.0/8"
+        DISTCC_USER="pkgmk"
+        DISTCC_LOG_LEVEL="info"
+        
+ + Core OS Index +

+ This is part of the Tribu System Documentation. + Copyright (C) 2020 + Tribu Team. + See the file Gnu Free Documentation License + for copying conditions.

+ + -- cgit 1.4.1-2-gfad0 From 88ad431d4bef94a816b4a1031fb5a62d4bd8a0d7 Mon Sep 17 00:00:00 2001 From: Silvino Silva 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/ports.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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ C Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ C Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Git Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Git Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Git Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Documentation Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ PHP Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Development Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@

Conditions

Development Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Documentation Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.6.1. AppArmor

@@ -244,10 +244,10 @@ chache-loc=/var/cache/apparmor - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ 2.5.2. Bash - Core OS Index + GNU/Linux Index

2.5.2. Bash

@@ -152,11 +152,11 @@ fi - Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

1.2. Configure

@@ -273,10 +273,10 @@ # End of file - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.5.1. Dash

@@ -18,10 +18,10 @@ - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ 2.5. Exim - Core OS Index + GNU/Linux Index

2.5. Exim

2.5.1. Exim Configuration

@@ -222,11 +222,11 @@ poll pop.remote.com protocol POP3 user "drbob@remote.com" there with password "secretpass" is "bob@box" here - Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.6. Hardening

@@ -177,10 +177,10 @@

Add unnecessary tests to profile to have less noise.

- Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS + GNU/Linux Documentation Index -

Core OS

+

GNU/Linux

-

Core OS covers installation and configuration of +

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 @@ Documentation Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

1.1. Install Crux 3.5

@@ -397,10 +397,10 @@ $ sudo cp -R conf/skel $CHROOT/etc/ - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.1. Kernel Linux

@@ -855,10 +855,10 @@ $ sudo rm /boot/System.map-4.9.86-gnu - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ 2.2. Network - Core OS Index + GNU/Linux Index

2.2. Network

@@ -425,11 +425,11 @@ nmcli> save persistent - Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.3. Package Management

@@ -179,10 +179,10 @@ prt-get printf "%p %i %n %v\n" | grep "/usr/ports/contrib yes" - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

1.4. Ports

@@ -254,11 +254,11 @@ DISTCC_LOG_LEVEL="info" - Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

1.3. Boot

@@ -222,10 +222,10 @@ 36875 blocks - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.6.4. Samhain

@@ -253,11 +253,11 @@ # samhain -t update -l none --listfile=/root/list_of_files - Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.6.2. Sysctl

@@ -166,10 +166,10 @@ # sysctl --system - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.6.3. Toolchain

@@ -176,10 +176,10 @@ - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.4. Consoles, terminals and shells

@@ -71,10 +71,10 @@ - Core OS Index -

This is part of the Tribu System Documentation. - Copyright (C) 2020 - Tribu Team. + GNU/Linux Index +

This is part of the LeetIO System Documentation. + Copyright (C) 2021 + LeetIO Team. See the file Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@
         $ 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 @@
         Tools Index
 
         

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Documentation Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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
-

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@
         # 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 @@
 
         Tools Index
         

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@
Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ - Core OS Index + GNU/Linux Index

2.5.3. Tmux

Install tmux, improves cli work efficiency;

@@ -106,11 +106,11 @@

Before pasting on vim, set paste mode and then set nopaste.

- Core OS Index + GNU/Linux Index

- 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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index -

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 Gnu Free Documentation License for copying conditions.

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 @@ Tools Index

- 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 Gnu Free Documentation License for copying conditions.

-- cgit 1.4.1-2-gfad0