From 75c0985dddab4b211ec4c156feb385ab25c11f60 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 12 Feb 2025 02:30:43 +0100 Subject: [PATCH] ouh --- .../Articles/TylkoLinux-Installation/index.md | 201 +++++++++++++++++- public/404.html | 2 +- public/Articles/index.html | 4 +- .../tylkolinux-installation/index.html | 166 ++++++++++++++- public/index.html | 2 +- public/search_index.en.js | 2 +- 6 files changed, 359 insertions(+), 18 deletions(-) diff --git a/content/Articles/TylkoLinux-Installation/index.md b/content/Articles/TylkoLinux-Installation/index.md index 5ff9f1a..5307f51 100644 --- a/content/Articles/TylkoLinux-Installation/index.md +++ b/content/Articles/TylkoLinux-Installation/index.md @@ -1,14 +1,16 @@ +++ -title = "TylkoLinux is done, here's how to install it." +title = "TylkoLinux install guide (Delirium)." description = "This article will go over the installation guide for the distro" date = 2025-01-30 trigger = "TylkoLinux is still in experimental stage, and you should only install it if you know what you're doing. We do not take responsibility for any bricked machine as a result of not following the guide." disclaimer = """ Do not follow this article. This page is NOT done yet. """ +[extra] +toc = true +++ -`TylkoLinux 25.1/.2 Snyx x86_64` +Requires the branch for `TylkoLinux 25.2 Delirium x86_64` As you may have read in the description, this article serves as a guide to install (build) TylkoLinux on your machine. {% alert(important=true) %} @@ -18,8 +20,11 @@ Prerequisites: - CPU with at least four cores - 8GB RAM - A linux system running on the host system +- INTERNET ACCESS!!! (also required for other install scripts in EIC) {% end %} +# Update as of now: DON'T PROCEED WITH THE GUIDE YET. The script is still in its testing phase, and I'm halfway done successfully testing it :p + ## S1: Cloning the repository The repository is available on GitHub. You can clone into it by running the following (if you have Git installed): ```bash @@ -32,6 +37,12 @@ Proceed to change directory into it. cd ./TylkoLinux/ ``` +And switch branch into the version. + +```bash +git checkout delirium +``` + ## S2: Run the compatibility checker Run the compatibility check by running the script that is inside of the repository: ```bash @@ -131,6 +142,17 @@ To download packages and patches to the directory, type in the following functio einrichter> einrichter.installer.pkgs ``` This action will proceed to download the packages and patches to $LFS/sources, and also the checksums. +Watch out, here's the next step: + +Extract the packages and rename them to the appropriate directory names +```bash +einrichter> einrichter.xr +``` + +IMPORTANT!! Run this too, to prepare for the installation of Linux, and more. +```bash +einrichter> einrichter.add.fs +``` ### S6.2: Creating a limited directory layout @@ -197,6 +219,11 @@ einrichter/eic> eic.essentials.create # Creates necessary tools einrichter/eic> eic.essentials.install # Installs the tools einrichter/eic> eic.clean # Clean up the environment ``` +BEFORE BUILDING THE ACTUAL SYSTEM!!!! +Run this command. It applies the RrX bugfix that removes and re-extracts affected packages. +```bash +einrichter/eic> eic.bugfix.RrX +``` Build the system by running the following: ```bash einrichter/eic> eic.system.build @@ -288,7 +315,171 @@ To configure the hostname, enter the following command: einrichter/eic> eic.config.network.hostname # Replace with the desired hostname ``` -#### S9.1.6: Customising the /etc/hosts file -Remind me to work on this section. -# under construction!!! +#### S9.1.6: Customising the /etc/hosts file +~~Remind me to work on this section.~~ Call me lazy (please don't), but to get over this guide a tiny tiny bit faster, I recommend you to google (or otherwise look up) "how to set up etc hosts". Usually it's managed by systemd I think? (obv unless you disabled it) + +### S9.2: System time +You can tell the system whether your hardware clock is set to local time or UTC. + +Either run: + +// When in chroot, +```bash +einrichter/eic> eic.config.time.createAdj +``` +// When in a booted system, +```bash +einrichter/eic> eic.config.time.clarifyUTC +``` +Either can be set back to nothing by either deleting /etc/adjtime +```bash +einrichter/eic> rm /etc/adjtime +``` +or by using timedatectl +```bash +timedatectl set-local-rtc 0 +``` + + +To interactively change the system time (when in a booted system ofc) +do: +```bash +einrichter/eic> eic.config.time.set +``` +then respond to the questions. + +To set the timezone on a running system, run the following: +```bash +einrichter/eic> eic.config.time.tz +# replace with the timezone +``` + +To get the list of timezones in the first place, do: +```bash +timedatectl list-timezones +``` + +In systemd 216 and up, the network time synchronisation service is enabled by default. **If you want, disable/enable it like this:** +```bash +# In shell and EIC +systemctl disable systemd-timesyncd +systemctl enable systemd-timesyncd +# In EIC exclusively +einrichter/eic> eic.config.time.nts on +einrichter/eic> eic.config.time.nts off +``` + +### S9.3: Configuring the Linux console +Write defaults: +```bash +einrichter/eic> eic.config.console.preset +``` +Set keymap: +```bash +einrichter/eic> eic.config.console.keymap +# Replace with keymap code, e.g. de-latin1 +``` + +### S9.4: Localisation + +Run this and answer questions: +```bash +einrichter/eic> eic.config.locale.set +``` + +### S9.5: Creating files under /etc/ +Run these to create the /etc/inputrc and /etc/shells files +```bash +einrichter/eic> eic.config.create.inputrc +einrichter/eic> eic.config.create.shells +``` + +### S9.6: More config... +Disable screen clearing: +```bash +einrichter/eic> eic.config.systemd.disableScreenClearing +``` +Limit core dump size to something (in the format of 5M, 5G etc): +```bash +einrichter/eic> eic.config.systemd.limitCoreDumpSize <(Size)(G/M/K)> +``` +To remove the limit: +```bash +rm /etc/systemd/coredump.conf.d/maxuse.conf +``` +## S10: Making it boot +### S10.1: Making an /etc/fstab +Make a filesystem table like this: +```bash +cat > /etc/fstab << "EOF" +# Begin /etc/fstab + +# file system mount-point type options dump fsck +# order + +/dev/ / defaults 1 1 +/dev/ swap swap pri=1 0 0 + +# End /etc/fstab +EOF +``` + +Replace and with the appropriate values, don't add the swap line if you didn't make a swap partition. + +Replace with the filesystem type + +For any additional configuration, check this page: https://www.linuxfromscratch.org/lfs/view/stable-systemd/chapter10/fstab.html + +### S10.2: BOOTING LINUX!!!! +Don't get excited too yet, we need to verify something. +```bash +cd /sources/linux/ +ls -a | grep .config +``` +If you see the .config file, we can continue. If not, don't run this step, exit out of the Einrichter-in-chroot.sh script to go back to the Einrichter-CLI.sh script. After that, run: +```bash +einrichter> einrichter.add.linuxConfig +``` +Alright, we can continue. RUN THE FOLLOWING: +```bash +einrichter/eic> eic.linux.install +``` +Later it will ask you this: +```bash +[i] Mount boot partition? : +``` +Say yes if you want the kernel to be in the boot partition instead of the root one. Otherwise, **no.** + +### S10.3: Bootloader configuration +Using UEFI bootloader? Check this: +https://www.linuxfromscratch.org/blfs/view/stable-systemd/postlfs/grub-setup.html#uefi-kernel +[This page shows instructions on installing GRUB.](https://www.linuxfromscratch.org/lfs/view/stable-systemd/chapter10/grub.html) +Not needed of course, if you want to tweak your current GRUB to also detect other OSes, add this to your /etc/default/grub (on the host machine) +``GRUB_DISABLE_OS_PROBER=false`` +Update the GRUB config with the respective command. + +### S10.4: Package management +Need a package manager? Install RPM: +```bash +einrichter/eic> eic.rpm.install +``` + +To install tdnf, vmware's implementation of DNF, do: +```bash +einrichter/eic> eic.tdnf.install +``` + +If you want to add more packages to your system, including NetworkManager, run: +```bash +einrichter/eic> eic.plus +``` + + +## S11: The End:tm: +Well, you made it! Congrats on installing the basics of TylkoLinux... If you want, you can also mark your installation as a TylkoLinux one by running this: +```bash +einrichter/eic> eic.signoff +``` + +Hope you had as much fun following the guide as I did writing it! diff --git a/public/404.html b/public/404.html index 030feeb..3a3ae3c 100644 --- a/public/404.html +++ b/public/404.html @@ -1,7 +1,7 @@ - + diff --git a/public/Articles/index.html b/public/Articles/index.html index 7b2bf07..ba0654a 100644 --- a/public/Articles/index.html +++ b/public/Articles/index.html @@ -1,7 +1,7 @@ - + @@ -73,7 +73,7 @@
-

TylkoLinux is done, here's how to install it.

+

TylkoLinux install guide (Delirium-FolieA2).

This article will go over the installation guide for the distro

diff --git a/public/Articles/tylkolinux-installation/index.html b/public/Articles/tylkolinux-installation/index.html index 31ce4e3..d08c74a 100644 --- a/public/Articles/tylkolinux-installation/index.html +++ b/public/Articles/tylkolinux-installation/index.html @@ -1,12 +1,12 @@ - + - TylkoLinux is done, here's how to install it. - RSCC + TylkoLinux install guide (Delirium-FolieA2). - RSCC @@ -17,7 +17,7 @@ - + @@ -62,10 +62,41 @@ -

TylkoLinux is done, here's how to install it.

+

TylkoLinux install guide (Delirium-FolieA2).

-

TylkoLinux 25.1/.2 Snyx x86_64

+

Requires the branch for TylkoLinux 25.2 Delirium x86_64

As you may have read in the description, this article serves as a guide to install (build) TylkoLinux on your machine.

@@ -77,10 +108,12 @@

  • CPU with at least four cores
  • 8GB RAM
  • A linux system running on the host system
  • +
  • INTERNET ACCESS!!! (also required for other install scripts in EIC)
  • +

    Update as of now: DON'T PROCEED WITH THE GUIDE YET. The script is still in its testing phase, and I'm halfway done successfully testing it :p

    S1: Cloning the repository

    The repository is available on GitHub. You can clone into it by running the following (if you have Git installed):

    git clone https://github.com/kevadesu/TylkoLinux
    @@ -168,7 +201,14 @@ To automatically remount the partition on boot, modify /etc/fstab by adding this
     

    To download packages and patches to the directory, type in the following function:

    einrichter> einrichter.installer.pkgs
     
    -

    This action will proceed to download the packages and patches to $LFS/sources, and also the checksums.

    +

    This action will proceed to download the packages and patches to $LFS/sources, and also the checksums. +Watch out, here's the next step:

    +

    Extract the packages and rename them to the appropriate directory names

    +
    einrichter> einrichter.xr
    +
    +

    IMPORTANT!! Run this too, to prepare for the installation of Linux.

    +
    einrichter> einrichter.add.linuxConfig
    +

    S6.2: Creating a limited directory layout

    Run the following command:

    einrichter> einrichter.installer.DirLayout
    @@ -219,6 +259,10 @@ Run the following commands:

    einrichter/eic> eic.essentials.install # Installs the tools einrichter/eic> eic.clean # Clean up the environment
    +

    BEFORE BUILDING THE ACTUAL SYSTEM!!!! +Run this command. It applies the RrX bugfix that removes and re-extracts affected packages.

    +
    einrichter/eic> eic.bugfix.RrX
    +

    Build the system by running the following:

    einrichter/eic> eic.system.build
     
    @@ -300,8 +344,114 @@ For most systems, there is only one network interface for each type of connectio
    # Replace <hostname> with the desired hostname

    S9.1.6: Customising the /etc/hosts file

    -

    Remind me to work on this section.

    -

    under construction!!!

    +

    Remind me to work on this section. Call me lazy (please don't), but to get over this guide a tiny tiny bit faster, I recommend you to google (or otherwise look up) "how to set up etc hosts". Usually it's managed by systemd I think? (obv unless you disabled it)

    +

    S9.2: System time

    +

    You can tell the system whether your hardware clock is set to local time or UTC.

    +

    Either run:

    +

    // When in chroot,

    +
    einrichter/eic> eic.config.time.createAdj
    +
    +

    // When in a booted system,

    +
    einrichter/eic> eic.config.time.clarifyUTC
    +
    +

    Either can be set back to nothing by either deleting /etc/adjtime

    +
    einrichter/eic> rm /etc/adjtime
    +
    +

    or by using timedatectl

    +
    timedatectl set-local-rtc 0
    +
    +

    To interactively change the system time (when in a booted system ofc) +do:

    +
    einrichter/eic> eic.config.time.set
    +
    +

    then respond to the questions.

    +

    To set the timezone on a running system, run the following:

    +
    einrichter/eic> eic.config.time.tz <TZ>
    +# replace <TZ> with the timezone
    +
    +

    To get the list of timezones in the first place, do:

    +
    timedatectl list-timezones
    +
    +

    In systemd 216 and up, the network time synchronisation service is enabled by default. If you want, disable/enable it like this:

    +
    # In shell and EIC
    +systemctl disable systemd-timesyncd
    +systemctl enable systemd-timesyncd
    +# In EIC exclusively
    +einrichter/eic> eic.config.time.nts on
    +einrichter/eic> eic.config.time.nts off
    +
    +

    S9.3: Configuring the Linux console

    +

    Write defaults:

    +
    einrichter/eic> eic.config.console.preset
    +
    +

    Set keymap:

    +
    einrichter/eic> eic.config.console.keymap <keymap>
    +# Replace <keymap> with keymap code, e.g. de-latin1
    +
    +

    S9.4: Localisation

    +

    Run this and answer questions:

    +
    einrichter/eic> eic.config.locale.set
    +
    +

    S9.5: Creating files under /etc/

    +

    Run these to create the /etc/inputrc and /etc/shells files

    +
    einrichter/eic> eic.config.create.inputrc
    +einrichter/eic> eic.config.create.shells
    +
    +

    S9.6: More config...

    +

    Disable screen clearing:

    +
    einrichter/eic> eic.config.systemd.disableScreenClearing <yes/no>
    +
    +

    Limit core dump size to something (in the format of 5M, 5G etc):

    +
    einrichter/eic> eic.config.systemd.limitCoreDumpSize <(Size)(G/M/K)>
    +
    +

    To remove the limit:

    +
    rm /etc/systemd/coredump.conf.d/maxuse.conf
    +
    +

    S10: Making it boot

    +

    S10.1: Making an /etc/fstab

    +

    Make a filesystem table like this:

    +
    cat > /etc/fstab << "EOF"
    +# Begin /etc/fstab
    +
    +# file system  mount-point  type     options             dump  fsck
    +#                                                              order
    +
    +/dev/<foo>     /            <owo>    defaults            1     1
    +/dev/<bar>     swap         swap     pri=1               0     0
    +
    +# End /etc/fstab
    +EOF
    +
    +

    Replace and with the appropriate values, don't add the swap line if you didn't make a swap partition.

    +

    Replace with the filesystem type

    +

    For any additional configuration, check this page: https://www.linuxfromscratch.org/lfs/view/stable-systemd/chapter10/fstab.html

    +

    S10.2: BOOTING LINUX!!!!

    +

    Don't get excited too yet, we need to verify something.

    +
    cd /sources/linux/
    +ls -a | grep .config
    +
    +

    If you see the .config file, we can continue. If not, don't run this step, exit out of the Einrichter-in-chroot.sh script to go back to the Einrichter-CLI.sh script. After that, run:

    +
    einrichter> einrichter.add.linuxConfig
    +
    +

    Alright, we can continue. RUN THE FOLLOWING:

    +
    einrichter/eic> eic.linux.install
    +
    +

    Later it will ask you this:

    +
    [i] Mount boot partition? <Y/N>: 
    +
    +

    Say yes if you want the kernel to be in the boot partition instead of the root one. Otherwise, no.

    +

    S10.3: Bootloader configuration

    +

    Using UEFI bootloader? Check this: +https://www.linuxfromscratch.org/blfs/view/stable-systemd/postlfs/grub-setup.html#uefi-kernel +This page shows instructions on installing GRUB. +Not needed of course, if you want to tweak your current GRUB to also detect other OSes, add this to your /etc/default/grub (on the host machine) +GRUB_DISABLE_OS_PROBER=false +Update the GRUB config with the respective command.

    +

    S11: The End:tm:

    +

    Well, you made it! Congrats on installing the basics of TylkoLinux... If you want, you can also mark your installation as a TylkoLinux one by running this:

    +
    einrichter/eic> eic.signoff
    +
    +

    Hope you had as much fun following the guide as I did writing it!

    diff --git a/public/index.html b/public/index.html index 129737a..f76f673 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,7 @@ - + diff --git a/public/search_index.en.js b/public/search_index.en.js index 6d7e2e4..51238ce 100644 --- a/public/search_index.en.js +++ b/public/search_index.en.js @@ -1 +1 @@ -window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"5":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"1":{"docs":{},"df":0,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"3":{"docs":{},"df":0,"2":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"8":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.1622776601683795}},"df":1}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"g":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.242640687119285}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"q":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"2":{"docs":{},"df":0,"s":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}},"h":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.605551275463989}},"df":1,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.0}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":2,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":2}},"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":2,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"t":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.242640687119285}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"k":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2},"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"q":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.0}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.1622776601683795}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"í":{"docs":{},"df":0,"z":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/":{"tf":1.7320508075688772}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.898979485566356}},"df":1}}},"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"5":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"7":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"8":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"9":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"5":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"u":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"y":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.47213595499958}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.242640687119285}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"x":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,"_":{"docs":{},"df":0,"6":{"docs":{},"df":0,"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"title":{"root":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"documentStore":{"save":true,"docs":{"https://rootsource.cc/":{"body":"RootSourceCC\nWelcome to RootSourceCC! You could technically call this: \"The child of Raíz1, Icycoide and Costmiku\"\nWith the ownership by Raíz1, hosted on and also being in charge of Costmiku, and hosting Icycoide's stuff!\nLinks:\n\nAlpsource (Git forge)\n\n-Raíz1 - Icycoide 2025.\n","id":"https://rootsource.cc/","title":"Home - RootSourceCC"},"https://rootsource.cc/Articles/":{"body":"","id":"https://rootsource.cc/Articles/","title":"Articles"},"https://rootsource.cc/Articles/tylkolinux-installation/":{"body":"TylkoLinux 25.1/.2 Snyx x86_64\nAs you may have read in the description, this article serves as a guide to install (build) TylkoLinux on your machine.\n\n\t\n\t\tImportant\n\tPrerequisites:\n\nx86_64 machine\nAt least 32GB of storage\nCPU with at least four cores\n8GB RAM\nA linux system running on the host system\n\n\n\n\nS1: Cloning the repository\nThe repository is available on GitHub. You can clone into it by running the following (if you have Git installed):\n\nProceed to change directory into it.\n\nS2: Run the compatibility checker\nRun the compatibility check by running the script that is inside of the repository:\n\nMake sure everything is successful. If not, update your packages.\nS3: Partitioning the target device\nNow that we have the installer ready, let's not run it just yet!\nFirst, we need to partition the drive we want to install it to.\nNow, of course, there are a lot of guides on how to do that online and depending on what setup you might want to achieve.\nWhat IS clear though, is that you need a boot partition and a root partition, those are the bare minimum.\nObviously, I won't be able to write an ENTIRE guide on how to partiton your drive. If you don't know how to do that in the first place, then you shouldn't use TylkoLinux.\nS4: Setting the $LFS variable\nSet the $LFS variable to point to /mnt/lfs. Of course, if you desire, you may also make it point to a different destination.\n\n\n\t\n\t\tCaution\n\tMake sure that the $LFS variable always points to the correct destination.\nIt is recommended to always mount the target root partition under /mnt/lfs and set your variable to that.\nFailure to do so may lead you to absolutely fuck up your system.\n\n\n\n\t\n\t\tTip\n\tFrom the LFS handbook:\nOne way to ensure that the LFS variable is always set is to edit the .bash_profile file in both your personal home directory and in /root/.bash_profile and enter the export command above. In addition, the shell specified in the /etc/passwd file for all users that need the LFS variable must be bash to ensure that the /root/.bash_profile file is incorporated as a part of the login process.\nAnother consideration is the method that is used to log into the host system. If logging in through a graphical display manager, the user's .bash_profile is not normally used when a virtual terminal is started. In this case, add the export command to the .bashrc file for the user and root. In addition, some distributions use an \"if\" test, and do not run the remaining .bashrc instructions for a non-interactive bash invocation. Be sure to place the export command ahead of the test for non-interactive use.\n\n\nS5: Mounting the partitions\nCreate the mount point and mount the filesystem using the following commands:\n\nIf using multiple partitions for TylkoLinux (for example, one for the root and one for the home partition), mount them as followed:\n\n\n\t\n\t\tCaution\n\tThe instructions above assume that you are not rebooting your computer during the build. (imagine)\nTo automatically remount the partition on boot, modify /etc/fstab by adding this line:\n\nIf you use additional (optional) partitions, add them as well.\n\n\nIf also using swap, mount with the swapon command:\n\nS5.1: Move bash.bashrc out of the way\nSeveral commercial distributions add an undocumented instantiation of /etc/bash.bashrc to the initialization of bash. This file has the potential to modify the lfs user's environment in ways that can affect the building of critical TylkoLinux (LFS) packages. To make sure the lfs user's environment is clean, check for the presence of /etc/bash.bashrc and, if present, move it out of the way. As the root user, run:\n\nS6: Start the core installation tool\nTo start the installer, make sure you're in the same directory as the git repo we cloned, running as the root user, then type the following:\n\nIf this command fails, make sure it has the permissions to be executed by running the following:\n\nS6.1: Download packages\nWhen in the script, you should see the following:\n\nTo download packages and patches to the directory, type in the following function:\n\nThis action will proceed to download the packages and patches to $LFS/sources, and also the checksums.\nS6.2: Creating a limited directory layout\nRun the following command:\n\nS7: Enter lfs user\nEnter the LFS environment to build the cross toolchain and temporary tools by entering the following:\n\nS7.1: Going through pending steps\nYou are about to build a cross toolchain and temporary tools. You're going to see the following:\n\nEither type R to run, S to skip or Q to quit.\nDo the same for the other remaining quesitons:\n\nAnd eventually...\n\nBefore you know it, you're done!\nNow HERE begins the real work (insert lqtroll emoji)\nS8: Actually building the system itself\n\n\t\n\t\tTip\n\tBefore proceeding with the build,\nOne way to ensure that the LFS variable is always set is to edit the .bash_profile file in both your personal home directory and in /root/.bash_profile and enter the export command above. In addition, the shell specified in the /etc/passwd file for all users that need the LFS variable must be bash to ensure that the /root/.bash_profile file is incorporated as a part of the login process.\nAnother consideration is the method that is used to log into the host system. If logging in through a graphical display manager, the user's .bash_profile is not normally used when a virtual terminal is started. In this case, add the export command to the .bashrc file for the user and root. In addition, some distributions use an \"if\" test, and do not run the remaining .bashrc instructions for a non-interactive bash invocation. Be sure to place the export command ahead of the test for non-interactive use.\n\n\nNow that you finished that section, enter the chroot environment like this:\n\nThis command changes ownership of the commands under $LFS from the user lfs to root\nIt also mounts the virtual kernel file systems.\nThen, it chroots you into the bash shell. Continue the installer by running the following command inside of the chroot:\n\nThis boots you into the eic shell.\nRun the following commands:\n\nBuild the system by running the following:\n\nGCC, due to its nature of taking so long to build, gets its own function:\n\nContinue building as if nothing happened\n\nS8.1: Strip system (optional)\nDone after so long? If you don't plan on doing any debugging on the system software/aren't that much of a programmer, you can remove debugging symbols and unnecessary symbol table entries from binaries and libraries.\nThis frees up about 2GB(?) on the system.\nTo do so, run the following:\n\nS8.2: Cleaning up\nFinally, after all of that, clean up extra leftovers and the tester account by running this command:\n\nS9: Setting up the system\nYou are now in the stage where you set up your system and actually make an attempt at making your system bootable!\nS9.1: Networking\n(This section only applies if a network card is to be configured.)\nS9.1.1: Network Device Naming\n\n\t\n\t\tTip\n\tModified from the LFS handbook: The interface names depend on the implementation and configuration of the udev daemon running on the system. The udev daemon for TylkoLinux (well, LFS) (systemd-udevd) will not run unless the TylkoLinux/LFS system is booted. So it's unreliable to determine the interface names being used in the TylkoLinux system by running those commands on the host distro, even though you are in the chroot environment.\n\n\n\nUdev normally assigns network card interface names based on physical system characteristics such as enp2s1. If you are not sure what your interface name is, you can always run ip link after you have booted your system.\nFor most systems, there is only one network interface for each type of connection. For example, the classic interface name for a wired connection is eth0. A wireless connection will usually have the name wifi0 or wlan0.\nIf you'd like to use classic/customised network names, run the following function and enter the demanded information:\n\nS9.1.2: Static IP configuration\nThis makes a basic config file for a Static IP setup\n\nS9.1.3: DHCP configuration\n\nS9.1.4: /etc/resolv.conf\n\n\t\n\t\tTip\n\tFrom the LFS handbook: If using methods incompatible with systemd-resolved to configure your network interfaces (ex: ppp, etc.), or if using any type of local resolver (ex: bind, dnsmasq, unbound, etc.), or any other software that generates an /etc/resolv.conf (ex: a resolvconf program other than the one provided by systemd), the systemd-resolved service should not be used.\nTo switch settings about whether this should be allowed or not, run the command below ↓\n\n\n\nS9.1.4.1: Static resolv.conf\nWant to create a static file? Here:\n\nS9.1.5: Hostname\nTo configure the hostname, enter the following command:\n\nS9.1.6: Customising the /etc/hosts file\nRemind me to work on this section.\nunder construction!!!\n","id":"https://rootsource.cc/Articles/tylkolinux-installation/","title":"TylkoLinux is done, here's how to install it."}},"docInfo":{"https://rootsource.cc/":{"body":25,"title":2},"https://rootsource.cc/Articles/":{"body":0,"title":1},"https://rootsource.cc/Articles/tylkolinux-installation/":{"body":827,"title":4}},"length":3},"lang":"English"} \ No newline at end of file +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"5":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"1":{"docs":{},"df":0,"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"5":{"docs":{},"df":0,".":{"docs":{},"df":0,"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"3":{"docs":{},"df":0,"2":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"5":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"8":{"docs":{},"df":0,"g":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.1622776601683795}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.3166247903554}},"df":1}}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"g":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.47213595499958}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.0}},"df":1}}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"k":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"h":{"docs":{},"df":0,"c":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"q":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}},"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"u":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,":":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"2":{"docs":{},"df":0,"s":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"j":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}},"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}},"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.0}},"df":1,"s":{"docs":{},"df":0,"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.358898943540674}},"df":1}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"g":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":2,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"_":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"_":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"=":{"docs":{},"df":0,"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"d":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":2}},"p":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":2,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{},"df":0,"f":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,".":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}},"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/":{"tf":1.4142135623730951}},"df":1,"e":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.605551275463989}},"df":1},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"t":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"z":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.242640687119285}},"df":1,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1},"k":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2},"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"o":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"q":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"d":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.605551275463989}},"df":1}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}},"v":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.0}},"df":1}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"w":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/":{"tf":1.0},"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":2}}}}}}}}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.4641016151377544}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"í":{"docs":{},"df":0,"z":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/":{"tf":1.7320508075688772}},"df":1}}}},"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.0}},"df":1,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}}}}}}}}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.7320508075688772}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":5.916079783099616}},"df":1}}},"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"5":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"7":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"8":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"9":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"1":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"5":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"3":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"5":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"6":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1},"r":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.605551275463989}},"df":1,"u":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{},"df":0,"#":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"/":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}},"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":5.196152422706632}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.1622776601683795}},"df":1,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.449489742783178}},"df":1}}}},"u":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":3.0}},"df":1,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":4.47213595499958}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1,"'":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.0}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.8284271247461903}},"df":1}}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.6457513110645907}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"y":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":2.23606797749979}},"df":1}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"0":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}},"x":{"docs":{},"df":0,"8":{"docs":{},"df":0,"6":{"docs":{},"df":0,"_":{"docs":{},"df":0,"6":{"docs":{},"df":0,"4":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1},"r":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.7320508075688772}},"df":1}}}}}}},"title":{"root":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/":{"tf":1.0}},"df":1}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"2":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}},"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{"https://rootsource.cc/":{"tf":1.0}},"df":1}}}}}}}}}}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{},"df":0,"x":{"docs":{"https://rootsource.cc/Articles/tylkolinux-installation/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"documentStore":{"save":true,"docs":{"https://rootsource.cc/":{"body":"RootSourceCC\nWelcome to RootSourceCC! You could technically call this: \"The child of Raíz1, Icycoide and Costmiku\"\nWith the ownership by Raíz1, hosted on and also being in charge of Costmiku, and hosting Icycoide's stuff!\nLinks:\n\nAlpsource (Git forge)\n\n-Raíz1 - Icycoide 2025.\n","id":"https://rootsource.cc/","title":"Home - RootSourceCC"},"https://rootsource.cc/Articles/":{"body":"","id":"https://rootsource.cc/Articles/","title":"Articles"},"https://rootsource.cc/Articles/tylkolinux-installation/":{"body":"Requires the branch for TylkoLinux 25.2 Delirium x86_64\nAs you may have read in the description, this article serves as a guide to install (build) TylkoLinux on your machine.\n\n\t\n\t\tImportant\n\tPrerequisites:\n\nx86_64 machine\nAt least 32GB of storage\nCPU with at least four cores\n8GB RAM\nA linux system running on the host system\nINTERNET ACCESS!!! (also required for other install scripts in EIC)\n\n\n\n\nUpdate as of now: DON'T PROCEED WITH THE GUIDE YET. The script is still in its testing phase, and I'm halfway done successfully testing it :p\nS1: Cloning the repository\nThe repository is available on GitHub. You can clone into it by running the following (if you have Git installed):\n\nProceed to change directory into it.\n\nS2: Run the compatibility checker\nRun the compatibility check by running the script that is inside of the repository:\n\nMake sure everything is successful. If not, update your packages.\nS3: Partitioning the target device\nNow that we have the installer ready, let's not run it just yet!\nFirst, we need to partition the drive we want to install it to.\nNow, of course, there are a lot of guides on how to do that online and depending on what setup you might want to achieve.\nWhat IS clear though, is that you need a boot partition and a root partition, those are the bare minimum.\nObviously, I won't be able to write an ENTIRE guide on how to partiton your drive. If you don't know how to do that in the first place, then you shouldn't use TylkoLinux.\nS4: Setting the $LFS variable\nSet the $LFS variable to point to /mnt/lfs. Of course, if you desire, you may also make it point to a different destination.\n\n\n\t\n\t\tCaution\n\tMake sure that the $LFS variable always points to the correct destination.\nIt is recommended to always mount the target root partition under /mnt/lfs and set your variable to that.\nFailure to do so may lead you to absolutely fuck up your system.\n\n\n\n\t\n\t\tTip\n\tFrom the LFS handbook:\nOne way to ensure that the LFS variable is always set is to edit the .bash_profile file in both your personal home directory and in /root/.bash_profile and enter the export command above. In addition, the shell specified in the /etc/passwd file for all users that need the LFS variable must be bash to ensure that the /root/.bash_profile file is incorporated as a part of the login process.\nAnother consideration is the method that is used to log into the host system. If logging in through a graphical display manager, the user's .bash_profile is not normally used when a virtual terminal is started. In this case, add the export command to the .bashrc file for the user and root. In addition, some distributions use an \"if\" test, and do not run the remaining .bashrc instructions for a non-interactive bash invocation. Be sure to place the export command ahead of the test for non-interactive use.\n\n\nS5: Mounting the partitions\nCreate the mount point and mount the filesystem using the following commands:\n\nIf using multiple partitions for TylkoLinux (for example, one for the root and one for the home partition), mount them as followed:\n\n\n\t\n\t\tCaution\n\tThe instructions above assume that you are not rebooting your computer during the build. (imagine)\nTo automatically remount the partition on boot, modify /etc/fstab by adding this line:\n\nIf you use additional (optional) partitions, add them as well.\n\n\nIf also using swap, mount with the swapon command:\n\nS5.1: Move bash.bashrc out of the way\nSeveral commercial distributions add an undocumented instantiation of /etc/bash.bashrc to the initialization of bash. This file has the potential to modify the lfs user's environment in ways that can affect the building of critical TylkoLinux (LFS) packages. To make sure the lfs user's environment is clean, check for the presence of /etc/bash.bashrc and, if present, move it out of the way. As the root user, run:\n\nS6: Start the core installation tool\nTo start the installer, make sure you're in the same directory as the git repo we cloned, running as the root user, then type the following:\n\nIf this command fails, make sure it has the permissions to be executed by running the following:\n\nS6.1: Download packages\nWhen in the script, you should see the following:\n\nTo download packages and patches to the directory, type in the following function:\n\nThis action will proceed to download the packages and patches to $LFS/sources, and also the checksums.\nWatch out, here's the next step:\nExtract the packages and rename them to the appropriate directory names\n\nIMPORTANT!! Run this too, to prepare for the installation of Linux.\n\nS6.2: Creating a limited directory layout\nRun the following command:\n\nS7: Enter lfs user\nEnter the LFS environment to build the cross toolchain and temporary tools by entering the following:\n\nS7.1: Going through pending steps\nYou are about to build a cross toolchain and temporary tools. You're going to see the following:\n\nEither type R to run, S to skip or Q to quit.\nDo the same for the other remaining quesitons:\n\nAnd eventually...\n\nBefore you know it, you're done!\nNow HERE begins the real work (insert lqtroll emoji)\nS8: Actually building the system itself\n\n\t\n\t\tTip\n\tBefore proceeding with the build,\nOne way to ensure that the LFS variable is always set is to edit the .bash_profile file in both your personal home directory and in /root/.bash_profile and enter the export command above. In addition, the shell specified in the /etc/passwd file for all users that need the LFS variable must be bash to ensure that the /root/.bash_profile file is incorporated as a part of the login process.\nAnother consideration is the method that is used to log into the host system. If logging in through a graphical display manager, the user's .bash_profile is not normally used when a virtual terminal is started. In this case, add the export command to the .bashrc file for the user and root. In addition, some distributions use an \"if\" test, and do not run the remaining .bashrc instructions for a non-interactive bash invocation. Be sure to place the export command ahead of the test for non-interactive use.\n\n\nNow that you finished that section, enter the chroot environment like this:\n\nThis command changes ownership of the commands under $LFS from the user lfs to root\nIt also mounts the virtual kernel file systems.\nThen, it chroots you into the bash shell. Continue the installer by running the following command inside of the chroot:\n\nThis boots you into the eic shell.\nRun the following commands:\n\nBEFORE BUILDING THE ACTUAL SYSTEM!!!!\nRun this command. It applies the RrX bugfix that removes and re-extracts affected packages.\n\nBuild the system by running the following:\n\nGCC, due to its nature of taking so long to build, gets its own function:\n\nContinue building as if nothing happened\n\nS8.1: Strip system (optional)\nDone after so long? If you don't plan on doing any debugging on the system software/aren't that much of a programmer, you can remove debugging symbols and unnecessary symbol table entries from binaries and libraries.\nThis frees up about 2GB(?) on the system.\nTo do so, run the following:\n\nS8.2: Cleaning up\nFinally, after all of that, clean up extra leftovers and the tester account by running this command:\n\nS9: Setting up the system\nYou are now in the stage where you set up your system and actually make an attempt at making your system bootable!\nS9.1: Networking\n(This section only applies if a network card is to be configured.)\nS9.1.1: Network Device Naming\n\n\t\n\t\tTip\n\tModified from the LFS handbook: The interface names depend on the implementation and configuration of the udev daemon running on the system. The udev daemon for TylkoLinux (well, LFS) (systemd-udevd) will not run unless the TylkoLinux/LFS system is booted. So it's unreliable to determine the interface names being used in the TylkoLinux system by running those commands on the host distro, even though you are in the chroot environment.\n\n\n\nUdev normally assigns network card interface names based on physical system characteristics such as enp2s1. If you are not sure what your interface name is, you can always run ip link after you have booted your system.\nFor most systems, there is only one network interface for each type of connection. For example, the classic interface name for a wired connection is eth0. A wireless connection will usually have the name wifi0 or wlan0.\nIf you'd like to use classic/customised network names, run the following function and enter the demanded information:\n\nS9.1.2: Static IP configuration\nThis makes a basic config file for a Static IP setup\n\nS9.1.3: DHCP configuration\n\nS9.1.4: /etc/resolv.conf\n\n\t\n\t\tTip\n\tFrom the LFS handbook: If using methods incompatible with systemd-resolved to configure your network interfaces (ex: ppp, etc.), or if using any type of local resolver (ex: bind, dnsmasq, unbound, etc.), or any other software that generates an /etc/resolv.conf (ex: a resolvconf program other than the one provided by systemd), the systemd-resolved service should not be used.\nTo switch settings about whether this should be allowed or not, run the command below ↓\n\n\n\nS9.1.4.1: Static resolv.conf\nWant to create a static file? Here:\n\nS9.1.5: Hostname\nTo configure the hostname, enter the following command:\n\nS9.1.6: Customising the /etc/hosts file\nRemind me to work on this section. Call me lazy (please don't), but to get over this guide a tiny tiny bit faster, I recommend you to google (or otherwise look up) \"how to set up etc hosts\". Usually it's managed by systemd I think? (obv unless you disabled it)\nS9.2: System time\nYou can tell the system whether your hardware clock is set to local time or UTC.\nEither run:\n// When in chroot,\n\n// When in a booted system,\n\nEither can be set back to nothing by either deleting /etc/adjtime\n\nor by using timedatectl\n\nTo interactively change the system time (when in a booted system ofc)\ndo:\n\nthen respond to the questions.\nTo set the timezone on a running system, run the following:\n\nTo get the list of timezones in the first place, do:\n\nIn systemd 216 and up, the network time synchronisation service is enabled by default. If you want, disable/enable it like this:\n\nS9.3: Configuring the Linux console\nWrite defaults:\n\nSet keymap:\n\nS9.4: Localisation\nRun this and answer questions:\n\nS9.5: Creating files under /etc/\nRun these to create the /etc/inputrc and /etc/shells files\n\nS9.6: More config...\nDisable screen clearing:\n\nLimit core dump size to something (in the format of 5M, 5G etc):\n\nTo remove the limit:\n\nS10: Making it boot\nS10.1: Making an /etc/fstab\nMake a filesystem table like this:\n\nReplace and with the appropriate values, don't add the swap line if you didn't make a swap partition.\nReplace with the filesystem type\nFor any additional configuration, check this page: https://www.linuxfromscratch.org/lfs/view/stable-systemd/chapter10/fstab.html\nS10.2: BOOTING LINUX!!!!\nDon't get excited too yet, we need to verify something.\n\nIf you see the .config file, we can continue. If not, don't run this step, exit out of the Einrichter-in-chroot.sh script to go back to the Einrichter-CLI.sh script. After that, run:\n\nAlright, we can continue. RUN THE FOLLOWING:\n\nLater it will ask you this:\n\nSay yes if you want the kernel to be in the boot partition instead of the root one. Otherwise, no.\nS10.3: Bootloader configuration\nUsing UEFI bootloader? Check this:\nhttps://www.linuxfromscratch.org/blfs/view/stable-systemd/postlfs/grub-setup.html#uefi-kernel\nThis page shows instructions on installing GRUB.\nNot needed of course, if you want to tweak your current GRUB to also detect other OSes, add this to your /etc/default/grub (on the host machine)\nGRUB_DISABLE_OS_PROBER=false\nUpdate the GRUB config with the respective command.\nS11: The End:tm:\nWell, you made it! Congrats on installing the basics of TylkoLinux... If you want, you can also mark your installation as a TylkoLinux one by running this:\n\nHope you had as much fun following the guide as I did writing it!\n","id":"https://rootsource.cc/Articles/tylkolinux-installation/","title":"TylkoLinux install guide (Delirium-FolieA2)."}},"docInfo":{"https://rootsource.cc/":{"body":25,"title":2},"https://rootsource.cc/Articles/":{"body":0,"title":1},"https://rootsource.cc/Articles/tylkolinux-installation/":{"body":1122,"title":5}},"length":3},"lang":"English"} \ No newline at end of file