Lines 106-129
sudo privileges, however some need to be run directly as root.
Link Here
|
106 |
|
106 |
|
107 |
1.5 Get Koha |
107 |
1.5 Get Koha |
108 |
|
108 |
|
109 |
There are three suggested ways to install Koha. If you will be |
109 |
There are two ways to install Koha. The easy way is using Debian/Ubuntu |
110 |
participating in Koha's development, the Download from Git |
110 |
packages (check http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages |
111 |
is the recommended way (See 1.5.1 below). |
111 |
for further instructions). |
112 |
If you would like to skip some of these tedious tasks, visit |
112 |
|
113 |
the following URL: |
113 |
The other way is installing from sources. You can get Koha's source |
114 |
http://wiki.koha-community.org/wiki/Koha_3.8_on_Debian_Squeeze |
114 |
either using git (see 1.5.1) or downloading the stable release tarball. |
115 |
If you will not be, then follow the Download from Tarball |
|
|
116 |
instructions (See 1.5.2 below). |
117 |
|
115 |
|
118 |
1.5.1 Download from Git |
116 |
1.5.1 Download from Git |
119 |
|
117 |
|
120 |
Install Git: |
118 |
Install Git: |
121 |
$ sudo apt-get install git-core |
119 |
$ sudo apt-get install git |
122 |
|
120 |
|
123 |
Download Koha: |
121 |
Download Koha (the 3.10.x branch): |
124 |
$ git clone git://git.koha-community.org/koha.git kohaclone |
122 |
$ git clone git://git.koha-community.org/koha.git kohaclone |
125 |
$ cd kohaclone |
123 |
$ cd kohaclone |
126 |
$ git checkout -b myinstall origin |
124 |
$ git checkout -b myinstall origin/3.10.x |
127 |
|
125 |
|
128 |
NOTE: for more information about Git, please see the Koha Git |
126 |
NOTE: for more information about Git, please see the Koha Git |
129 |
Usage Guide: |
127 |
Usage Guide: |
Lines 141-164
sudo privileges, however some need to be run directly as root.
Link Here
|
141 |
|
139 |
|
142 |
Determine the version and change directory: |
140 |
Determine the version and change directory: |
143 |
$ ls |
141 |
$ ls |
144 |
koha-3.08.03 koha-lastest.tar.gz |
142 |
koha-3.10.00 koha-lastest.tar.gz |
145 |
$ cd koha-3.08.03 |
143 |
$ cd koha-3.10.00 |
146 |
|
144 |
|
147 |
|
145 |
|
148 |
1.6 Install additional Ubuntu dependencies |
146 |
1.6 Install additional Ubuntu dependencies |
149 |
|
147 |
|
150 |
Several Koha dependencies have been conveniently packaged and |
148 |
Several Koha dependencies have been conveniently packaged and |
151 |
will be installed issuing the following commands: |
149 |
will be installed issuing the following command: |
152 |
|
|
|
153 |
$ sudo apt-get install dselect |
154 |
$ sudo dpkg --set-selections < install_misc/ubuntu.packages |
155 |
$ sudo dselect |
156 |
|
150 |
|
157 |
Choose [I]nstall and accept packages to be installed and hit |
151 |
$ sudo apt-get install `cat install_misc/ubuntu.12.04.packages | \ |
158 |
return. Be patient. This may take a long time. |
152 |
cut -f1 | grep -v '#' | grep -v -e '^$'` |
159 |
Choose [C]onfigure, [R]emove and [Q]uit until dselect has |
|
|
160 |
completed. |
161 |
|
153 |
|
|
|
154 |
Confirm that you want to install the required packages when prompted, |
162 |
|
155 |
|
163 |
1.7 Install Perl dependencies that aren't packaged |
156 |
1.7 Install Perl dependencies that aren't packaged |
164 |
|
157 |
|