Penguin
Annotated edit history of JWM version 18, including all changes. View license author blame.
Rev Author # Line
18 ElroyLiddington 1 !!! Joes Window Manager
13 ElroyLiddington 2
3 ----
4
17 ElroyLiddington 5 !! Basic config of Light-Weight Window Manager on Ubuntu 10.04.1 LTS Server install.
13 ElroyLiddington 6
7 ----
8
9 ! NOTES: As 'root' user
10
16 ElroyLiddington 11 <br><br>
13 ElroyLiddington 12
13 ! 1. Install xorg (X Window System) and jwm (Window Manager)
14
15 "apt-get install xorg jwm mc" - make sure xorg is installed FIRST - installing jwm first then xorg does NOT work :-)
16
17 'mc' is 'Midnight Commander' - a very useful text-based file manager.
18
16 ElroyLiddington 19 <br><br>
13 ElroyLiddington 20
21 ! 2. If you run "startx" now, you will get a cursor and a locked machine - at least I did
22
23 This is due to no config file being found.
24
25 The location for the system-wide config file was not created for me so:
26
27 "mkdir /etc/jwm"
28
16 ElroyLiddington 29 <br><br>
13 ElroyLiddington 30
31
32 ! 3. Locate the jwmrc config file - this tells jwm and xorg how everything is set up - if xorg? cannot find this config file, you get the above result
33
34 I found a default one here:
35
36 '/usr/share/doc/jwm/examples/example.jwmrc.gz'
37
38 Note the '*.gz' on the end - this indicates it is compressed, and needs uncompressing first.
39
40
16 ElroyLiddington 41 <br><br>
13 ElroyLiddington 42
43 ! 4. Copy the config file to '/tmp' (a place where we can do temporary file operations where we can't screw any system settings up)
44
45 "cp /usr/share/doc/jwm/examples/example.jwmrc.gz /tmp"
46
16 ElroyLiddington 47 <br><br>
13 ElroyLiddington 48
49
50 ! 5. Move to '/tmp' directory
51
52 "cd /tmp"
53
54 Do a "ls" to make sure you see the above *jwmrc.gz file is present - if not something is wrong.
55
56
16 ElroyLiddington 57 <br><br>
13 ElroyLiddington 58
59 ! 6. Uncompress the config file
60
61 "gunzip /tmp/example.jwmrc.gz" - this should leave a 'example.jwmrc' file in the '/tmp' directory - do another 'ls' to make sure.
62
63
16 ElroyLiddington 64 <br><br>
13 ElroyLiddington 65
66
67 ! 7. Copy the config file to the correct location AND rename it at the same time
68
69 "cp /tmp/example.jwmrc /etc/jwmrc"
70
71
15 ElroyLiddington 72 <br><br>
13 ElroyLiddington 73
74
75 ! 8. Check to make sure the file is in the right place '/etc/jwm' and is named correctly 'jwmrc'
76
77 'ls /etc/jwm'
78
79
80
15 ElroyLiddington 81 <br><br>
82
13 ElroyLiddington 83
84 ! 9. Fire up xwindows/xorg to see if it works
85
86 "startx"
87
88 Hopefully you boot into a very minmal window manager with at least a menu you can click on :-)
89
90
91
92 ----
93
94
95 Helpful Links:
96
97 http://www.tuxfiles.org/linuxhelp/xwtf.html
98
99 http://joewing.net/programs/jwm/index.shtml
18 ElroyLiddington 100
101 ----
17 ElroyLiddington 102
103 <br>
104
18 ElroyLiddington 105 Part of CategoryWindowManager
17 ElroyLiddington 106
107 <br>