We currently support arch, debian and fedora for automatic dependencies installation. These are the current dependencies for Arch:
These are the current dependencies for Debian:
These are the current dependencies for Fedora:
If you want to build the documentation as it is displayed on our website you also need this pip package:
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.
If you want to use Qemu, we suggest the following steps:
- Create a Qemu image;
- Create a working directory in your host machine at: mkdir -p ~/p/mount;
- 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);
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
- Arch Linux:
- Available at AUR: https://aur.archlinux.org/packages/kworkflow-git/
- 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<self-update-doc>`.
- 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).
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
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.
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:
- 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
- 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.
- 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.