'Linux'에 해당되는 글 2건

  1. 2013.08.21 fedora19 + redmine 2.3
  2. 2013.08.02 fedora 19 desktop setting

1.install redmine 

* fedora installation prerequisites

yum install ruby-devel
yum install ImageMagick-devel
yum install mariadb-devel

http://www.redmine.org/projects/redmine/wiki/Fedora_installation_prerequisites

* download redmin 2.3 using svn 

svn co http://svn.redmine.org/redmine/branches/2.3-stable redmine-2.3

* create database

CREATE DATABASE redmine CHARACTER SET utf8;
CREATE USER 'redmine'@'localhost' IDENTIFIED BY 'my_password';
GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost';

* edit config/database.yml (copy config/database.yml.examle)

production:
  adapter: mysql2
  database: redmine
  host: localhost
  username: redmine
  password: my_password

* dependencies installation

gem install bundler
bundle install --without development test

* database scema object creation

RAILS_ENV=production rake db:migrate

* database default data set

RAILS_ENV=production rake redmine:load_default_data

* test the installation

ruby script/rails server webrick -e production (just test)
puma -e production -p 3000 

* visit http://localhost:3000/.

http://www.redmine.org/projects/redmine/wiki/RedmineInstall

2. redmin plugin

find plugin at the plugin drectory(http://www.redmine.org/plugins)

download plugin into #{RAILS_ROOT}/plugin

install

rake redmine:plugins:migrate RAILS_ENV=production

unistall (maybe need 'bundle install')

rake redmine:plugins:migrate NAME=plugin_name VERSION=0 RAILS_ENV=production

http://www.redmine.org/projects/redmine/wiki/Plugins




'framework&tools > etc' 카테고리의 다른 글

aptana studio  (0) 2013.03.29
yalp framework  (0) 2013.03.25
Asgard by Netflix  (0) 2012.11.21
Posted by 뚜벅이조
,

1. 원격 로그인 (ssh)

setting > 공유(share) 에서 설정.


2.  HDMI sound

yum install pavucontrol

소프트웨어(software) > pavucontrol 설치

어플리케이션 별로  sound를 hdmi 로 내보낼지 설정가능.


3. desk top icon(shortcut/links) 

sudo yum -y install dconf-editor

Alt + F2 

dconf-editor

org > desktop > background > show-desktop-icon check(체크)

ref: https://ask.fedoraproject.org/question/10016/fedora-gnome-3-desktop-questions/


4. mp4 player

software > VLC media player core 설치


역시 리눅스는 머 하나 할려면 하나하나 검색해봐야 하는구나..ㅜ.ㅜ

'os > linux' 카테고리의 다른 글

fedora19 systemd (init.d 대체)  (0) 2013.08.16
fedora 19 + haswell + vritual box  (0) 2013.08.02
shell script 요약  (0) 2012.10.18
vi tips  (0) 2012.10.17
Posted by 뚜벅이조
,