-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathINSTALL
96 lines (67 loc) · 2.26 KB
/
INSTALL
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
==================
MyBashBurn INSTALL
==================
----------
( TAR FILE )
----------
If you use the tarball source:
Unpack the file:
$ tar xvjf mybashburn-{version}-{release}.tar.bz2
Arrive to the directory where unpack:
$ cd mybashburn-{version}/
Run the Makefile, you need privileges of root:
$ su -c 'make install'
Install you config file as user:
$ make conf
When finished you can delete the folder you unpacked MyBashBurn in,
open any console and type:
$ mybashburn
For read the manual type:
$ man mybashburn
==================
----------
( RPM FILE )
----------
If you use the rpm file as root to install using RPM command:
$ rpm -ivh mybashburn-{version}-{release}.noarch.rpm
When the package is installed open any console and type:
$ mybashburn
For read the manual type:
$ man mybashburn
==================
--------------
( DEB WAY/FILE )
--------------
If you use a Debian unstable system:
$ aptitude install mybashburn
When the package is installed open any console and type:
$ mybashburn
For read the manual type:
$ man mybashburn
Only if you downloaded the deb file, as root to install using dpkg command:
$ dpkg -i mybashburn_{version}-{release}_all.deb
==================
-------
( NOTES )
-------
When run for first time, remember that you must have to setup MyBashBurn
before trying to use it, you have to enter in the menu "Configure MyBashBurn",
alternatively check you system by the backend applications using the option in
the menu "Check Program Paths" search function and install manually if not
FOUND them.
==================
-----------------
( TROUBLESHOOTING )
-----------------
For those that have systems where the bash executable isn't located
in /bin/bash, you should fix it of two ways:
1) Create a symlink from the executable to /bin/bash (recommend).
$ ln -s /path/to/bash /bin/bash
2) To look all scripts for the line '/usr/bin/env bash' and replace it
with '/path/to/bash' us to has used find and perl command for found and adjust
(very hard, not recommend):
$ find -type f -perm /a+x -exec perl -i.back -pe 's/^#!\/bin\/bash$/#!\/path\/to\/bash\//' {} \;
For more information visit:
http://mybashburn.sf.net/index.html#Users
===============================================
$Id: INSTALL 35 2007-05-24 12:06:48Z k0k $