======================= Install and Remove `kw` ======================= .. _install-and-remove-kw: .. contents:: :depth: 1 :local: :backlinks: none .. highlight:: console Package Dependencies -------------------- We currently support *arch*, *debian* and *fedora* for automatic dependencies installation. These are the current dependencies for *Arch*: .. include:: ../dependencies/arch.dependencies These are the current dependencies for *Debian*: .. include:: ../dependencies/debian.dependencies These are the current dependencies for *Fedora*: .. include:: ../dependencies/fedora.dependencies If you want to build the documentation as it is displayed on our website you also need this pip package: .. include:: ../dependencies/pip.dependencies .. note:: Our base support is Ubuntu LTS. i.e., the dependency packages installed in your system should be at least as new as those present in Ubuntu LTS. Recommendations ~~~~~~~~~~~~~~~ If you want to use Qemu, we suggest the following steps: 1. Create a Qemu image; 2. Create a working directory in your host machine at: `mkdir -p ~/p/mount`; 3. After you have your working QEMU image, we recommend you to setup basic stuff (this can vary depending on the distribution you choose - kernel setup, ssh, etc); Install ------- Manual install ~~~~~~~~~~~~~~ In the kw's directory, type:: ./setup.sh -i bash --login This command will install `kw` in `~/.local/`, and append the following lines at the end of your `.bashrc`.:: # kw PATH=$HOME/.local/bin:$PATH # kw source /home/$USER/.local/lib/kw/bash_autocomplete.sh If you use another shell (`ksh`, for example), you will need to manually add the path to `kw` to `PATH` environment variable. To check if the installations was ok, open another terminal and type:: kw help Package install ~~~~~~~~~~~~~~~ - Arch Linux: Available at AUR: https://aur.archlinux.org/packages/kworkflow-git/ Update ------ - Update using `kw self-update`: The `kw self-update` feature allows you to update `kw` without having to clone the project's repository and manually install `kw`. For more information see :ref:`kw-self-update`. - Update manually: You can update `kw` manually by pulling the project's repository and installing `kw` again (`./setup.sh -i` removes legacy files and installs new ones). Remove ------ There's two way to remove kw: soft and hard way. The soft way (recommended method) does not remove ~/.kw files under kw management and you can type:: ./setup.sh --uninstall # or just -u .. warning:: Beware that the following command is dangerous! Use it only if you are entirely aware of what are you doing. We do not recommend it! If you want to remove all files under kw management (e.g., ~/.kw files and data statistic), you can use:: ./setup.sh --completely-remove Global Configuration File ------------------------- All the default configurations adopted by kworflow can be seen at `$XDG_CONFIG_HOME/kw/kworkflow_template.config`; this config file has a comment on each configuration option. Finally, it is essential to highlight that kw loads the default configurations; next, it tries to find a local configuration file (detailed ahead) and overwrites the global options with the ones read from the local config file. In summary, the local config has higher precedence than the global config. Local Configuration File ------------------------ Kw allows you to have a specific set of configuration per project. For example, if you have a particular kernel tree named ‘drm-work’ and want a different configuration from the default you can follow these steps: 1. copy your config file (i.e. `$XDG_CONFIG_HOME/kw/kworkflow.config`) to `/path/to/your/kernel/tree/drm-work/kworkflow.config` .. note:: The default name **must be** `kworkflow.config` 2. Change the options inside as you want. You can also remove settings you do not want to customize; In this case, kw will read them from the global configuration file. 3. Done! Every time you execute any command in the root dir of drm-work the local configuration file will be read. And if the file does not exist, the default settings will be used.