CentOSに付属のvim(vi)は、rubyオプションが有効になっていないので
vim-rubyを導入しても正しく動作しない。
よってvimの最新版をソースから導入する事にした。
作業前に、vimのrubyオプションが無効な事を確認
$ vim --version | grep ruby
+python +quickfix +reltime +rightleft -ruby +scrollbind +signs +smartindent
つ´Д`)つ
ソースをダウンロード
$ wget ftp://ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2
$ wget ftp://ftp.vim.org/pub/vim/extra/vim-7.2-extra.tar.gz
$ wget ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz
$ tar xvfj vim-7.2.tar.bz2
$ tar xvfz vim-7.2-extra.tar.gz
$ tar xvfz vim-7.2-lang.tar.gz
パッチをダウンロード
※ブラウザで、ftp://ftp.vim.org/pub/vim/patches/7.2/ にアクセスして、最新の番号を確認する
$ mkdir patches
$ cd patches
$ wget ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.001-100.gz
$ curl -O 'ftp://ftp.vim.org/pub/vim/patches/7.2/7.2.[101-124]'
$ cd ../vim72
$ zcat ../patches/7.2.* | patch -p0
configure
※--enable-rubyinterp を付ける
$ ./configure --enable-perlinterp --enable-pythoninterp --enable-tclinterp \
> --enable-rubyinterp --enable-multibyte --enable-xim --enable-fontset \
> --with-features=big --prefix=$HOME 2>&1 | tee config.log
makeして導入
$ make 2>&1 | tee make.log
$ make install
(prefixが、/usr/local とかならsudoを付ける)
確認
$ $HOME/bin/vim --version | grep ruby
+printer -profile +python +quickfix +reltime +rightleft +ruby +scrollbind
・-)
参照(っていうか、そのまんま・・・)
http://www.hazama.nu/t2o2/archives/002696.html
2009年2月23日月曜日
2008年8月2日土曜日
[ruby] rubygems でmysql ライブラリをインストールする
mysql-develが入っているか確認する
$ rpm -qa | grep -i mysql
mysql-5.0.45-7.el5
mysql-devel-5.0.45-7.el5
gemでインストールします(そのままだとエラーが出ますね)
$ sudo /opt/ruby/bin/gem install mysql --no-rdoc --no-ri
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/opt/ruby/bin/ruby extconf.rb install mysql --no-rdoc --no-ri
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lm... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lz... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lsocket... no
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lnsl... yes
checking for mysql_query() in -lmysqlclient... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/opt/ruby/bin/ruby
--with-mysql-config
--without-mysql-config
(snip)
Gem files will remain installed in /opt/ruby/lib/ruby/gems/1.8/gems/mysql-2.7 for inspection.
Results logged to /opt/ruby/lib/ruby/gems/1.8/gems/mysql-2.7/gem_make.out
mysqlの設定を、mysql-configから取得するように指定
$ sudo /opt/ruby/bin/gem install mysql --no-rdoc --no-ri -- --with-mysql-config
Building native extensions. This could take a while...
Successfully installed mysql-2.7
1 gem installed
チェックする(require でmysqlが読み込めればOK)
$ /opt/ruby/bin/irb -rrubygems
irb(main):001:0> require 'mysql'
=> true
irb(main):002:0> exit
成功したっぽい
$ rpm -qa | grep -i mysql
mysql-5.0.45-7.el5
mysql-devel-5.0.45-7.el5
gemでインストールします(そのままだとエラーが出ますね)
$ sudo /opt/ruby/bin/gem install mysql --no-rdoc --no-ri
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/opt/ruby/bin/ruby extconf.rb install mysql --no-rdoc --no-ri
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lm... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lz... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lsocket... no
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lnsl... yes
checking for mysql_query() in -lmysqlclient... no
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/opt/ruby/bin/ruby
--with-mysql-config
--without-mysql-config
(snip)
Gem files will remain installed in /opt/ruby/lib/ruby/gems/1.8/gems/mysql-2.7 for inspection.
Results logged to /opt/ruby/lib/ruby/gems/1.8/gems/mysql-2.7/gem_make.out
mysqlの設定を、mysql-configから取得するように指定
$ sudo /opt/ruby/bin/gem install mysql --no-rdoc --no-ri -- --with-mysql-config
Building native extensions. This could take a while...
Successfully installed mysql-2.7
1 gem installed
チェックする(require でmysqlが読み込めればOK)
$ /opt/ruby/bin/irb -rrubygems
irb(main):001:0> require 'mysql'
=> true
irb(main):002:0> exit
成功したっぽい
2008年7月28日月曜日
[unix] スペースを含むファイル名をfindとxargsで使う方法
Mac OS Xみたいに、ディレクトリやファイル名にスペースを含んでいる場合
find と xargsをそのまま実行すると
スペースの前後で別々の引数として処理される(´・ω・`)
・対応方法
スペースを区切り文字にするのではなく0(ゼロ、null)を区切り文字にする。
find には、-print0
xargsには、-0もしくは--null
オプションを指定する。
それでも正しく認識せんぞという場合は効率が悪いけど
xargs -i と "{}" を書くようにしよう・・・
find -print0 | xargs --null -i ls "{}"
find と xargsをそのまま実行すると
スペースの前後で別々の引数として処理される(´・ω・`)
・対応方法
スペースを区切り文字にするのではなく0(ゼロ、null)を区切り文字にする。
$ find . -type f -print0 | xargs -0 ls
のようにfind には、-print0
xargsには、-0もしくは--null
オプションを指定する。
それでも正しく認識せんぞという場合は効率が悪いけど
xargs -i と "{}" を書くようにしよう・・・
find -print0 | xargs --null -i ls "{}"
2008年7月24日木曜日
[bash][小ネタ] read でいろいろ
$ read -ep 'USERNAME: ' uname
$ echo $uname
$ echo $uname
-e で、readlineの機能(スクロールバックやCtrl-rでヒストリ検索など)を利用できる。
-p で、プロンプトを表示できます。
2008年7月16日水曜日
[nkf] nkfのインストール
ソースからnkfを入れる
http://sourceforge.jp/projects/nkf/ からダウンロード
Makefileを修正
修正内容
*** Makefile.bak 2008-07-16 20:59:16.000000000 +0900
--- Makefile 2008-07-16 21:02:19.000000000 +0900
***************
*** 1,5 ****
! CC = cc
! CFLAGS = -O
# CFLAGS = -O3
SHAR = shar
# SHAR = shar -T
--- 1,5 ----
! CC = gcc
! CFLAGS = -O3 -Wall
# CFLAGS = -O3
SHAR = shar
# SHAR = shar -T
デフォルト出力をutf8にする場合config.hファイルを修正
config.h 修正内容
*** config.h.bak 2007-07-25 00:13:03.000000000 +0900
--- config.h 2008-07-16 20:58:10.000000000 +0900
***************
*** 59,68 ****
/******************************/
/* デフォルトの出力コード選択 */
/* Select DEFAULT_CODE */
! #define DEFAULT_CODE_JIS
/* #define DEFAULT_CODE_SJIS */
/* #define DEFAULT_CODE_EUC */
! /* #define DEFAULT_CODE_UTF8 */
/******************************/
#else
#define DEFAULT_CODE_SJIS
--- 59,68 ----
/******************************/
/* デフォルトの出力コード選択 */
/* Select DEFAULT_CODE */
! /* #define DEFAULT_CODE_JIS */
/* #define DEFAULT_CODE_SJIS */
/* #define DEFAULT_CODE_EUC */
! #define DEFAULT_CODE_UTF8
/******************************/
#else
#define DEFAULT_CODE_SJIS
make
インストールは、パスの通っているディレクトリにコピー
http://sourceforge.jp/projects/nkf/ からダウンロード
$ wget http://iij.dl.sourceforge.jp/nkf/26243/nkf-2.0.8b.tar.gz
$ tar xvfz nkf-2.0.8b.tar.gz
$ cd nkf-2.0.8
$ cd nkf-2.0.8
Makefileを修正
$ vi Makefile
修正内容
$ diff -dc Makefile.bak Makefile
*** Makefile.bak 2008-07-16 20:59:16.000000000 +0900
--- Makefile 2008-07-16 21:02:19.000000000 +0900
***************
*** 1,5 ****
! CC = cc
! CFLAGS = -O
# CFLAGS = -O3
SHAR = shar
# SHAR = shar -T
--- 1,5 ----
! CC = gcc
! CFLAGS = -O3 -Wall
# CFLAGS = -O3
SHAR = shar
# SHAR = shar -T
デフォルト出力をutf8にする場合config.hファイルを修正
$ vi config.h
config.h 修正内容
$ diff -dc config.h.bak config.h
*** config.h.bak 2007-07-25 00:13:03.000000000 +0900
--- config.h 2008-07-16 20:58:10.000000000 +0900
***************
*** 59,68 ****
/******************************/
/* デフォルトの出力コード選択 */
/* Select DEFAULT_CODE */
! #define DEFAULT_CODE_JIS
/* #define DEFAULT_CODE_SJIS */
/* #define DEFAULT_CODE_EUC */
! /* #define DEFAULT_CODE_UTF8 */
/******************************/
#else
#define DEFAULT_CODE_SJIS
--- 59,68 ----
/******************************/
/* デフォルトの出力コード選択 */
/* Select DEFAULT_CODE */
! /* #define DEFAULT_CODE_JIS */
/* #define DEFAULT_CODE_SJIS */
/* #define DEFAULT_CODE_EUC */
! #define DEFAULT_CODE_UTF8
/******************************/
#else
#define DEFAULT_CODE_SJIS
make
$ make
インストールは、パスの通っているディレクトリにコピー
$ sudo cp -p nkf /usr/local/bin/
登録:
投稿 (Atom)