File: installanduninstall.rst

package info (click to toggle)
kworkflow 1%3A0.6.2-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 4,148 kB
  • sloc: sh: 22,233; perl: 2,172; ansic: 96; python: 72; sql: 28; makefile: 19
file content (130 lines) | stat: -rw-r--r-- 4,002 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
=======================
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
------
Every time you want to get a new version of `kw`, just pull from this
repository and install 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.