Created Linux opensuse (markdown)

bsag 2011-07-16 08:15:54 -07:00
parent 887efc30d6
commit 7350fef932

50
Linux-opensuse.md Normal file

@ -0,0 +1,50 @@
h1. Linux Opensuse
h2. General opensuse installation
This is based on opensuse 10.2, up to date. The standard repo or the FACTORY repository both work. Please find a list of repository "here":http://en.opensuse.org/Additional_YaST_Package_Repositories.
This describes installation steps for tracks 1.043, with sqlite3 and WEBrick (part of ruby package). Make sure you have sqlite3 installed.
* Install the necessary ruby packages
<code>
> rug in ruby rubygem-sqlite3 rubygems rubygem-rake
</code>
Here is the list of ruby packages I have installed.
<code>
> rpm -aq |grep ruby
rubygem-sqlite3-1.1.0-30
rubygems-0.9.0-29
ruby-devel-1.8.5-18
ruby-1.8.5-18
rubygem-rake-0.7.1-27
</code>
* Download tracks in your chosen directory, unzip, and more to the directory.
<code>
> wget http://www.rousette.org.uk/projects/files/tracks-1.043.zip
> unzip tracks-1.043.zip
> cd tracks-1.043.zip
</code>
Since the tracks package already includes the config files setup for sqlite and webrick, we can start right away!
* Launch the server
<code>
> ruby script/server -e production &
> disown
</code>
* Go to the signup URL in your favorite browser to create your first admin user
<code>
http://127.0.0.1:3000/signup
</code>
[b]That's all :)[/b]