-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
43 lines (27 loc) · 876 Bytes
/
Copy pathINSTALL
File metadata and controls
43 lines (27 loc) · 876 Bytes
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
Before installing clwebctrl, install a lisp implementation
like clisp (http://clisp.cons.org), sbcl (http://www.sbcl.org/) or
cmucl (http://www.cons.org/cmucl/).
First, create a new configuration file with your login and password
and modules you want to use for this machine:
~/.clwebctrlrc
----------------------------------------------------
(in-package :clwebctrl)
(defparameter *login* "your_login_name")
(defparameter *password* "your_login_password")
(add-module 'shutdown 'webcam ...)
----------------------------------------------------
Second compile the source code:
$ your-lisp
> (load "load.lisp")
or
$ clisp load.lisp
or
$ sbcl --load load.lisp
or
$ cmucl -load load.lisp
or
$ your-lisp <load-option> load.lisp
And then you can control your machine with a web browser
pointed at http://your_ip_address:clwebctrl_port.
Have fun,
Philippe Brochard