gem 패키지 설치시 에러
extconf.rb:1:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:1
간단하다..
mkmf는 ruby1.8-dev 패키지에 포함되어 있으므로 패키지를 설치하면 된다.
extconf.rb:1:in `require': no such file to load -- mkmf (LoadError)
from extconf.rb:1
script/generate processor PersistMessage
라는 명령을 실행시키는데 에러가 나왔다. 이건 뭐냐 -_-;;
구글링 결과
vendor/plugins/activemessaging/lib/activemessaging.rb
파일을 수정하란다.
이 파일을 열고 64번 줄에 가면 다음 내용이 있다.
다음과 같이 바꾼다.
이건 뭐 파일도 없는데 load하려고 하냐;;
While tools to measure network performance, such as ttcp, exist, most are very old and have confusing options. Iperf was developed as a modern alternative for measuring TCP and UDP bandwidth performance.
Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of various parameters and UDP characteristics. Iperf reports bandwidth, delay jitter, datagram loss.
Multi Platform supports.어차피 영문만 들어갈 필드들... 결국 필드 character set을 latin1으로 바꿨다.CREATE TABLE identities (id INTEGER AUTO_INCREMENT NOT NULL PRIMARY KEY,
account VARCHAR(255) character set latin1 NOT NULL, url TEXT character set latin1 NOT NULL,
UNIQUE (account, url(255)));CREATE TABLE sites (account VARCHAR(255) character set latin1 NOT NULL,
trust_root character set latin1 TEXT, trusted BOOLEAN,
UNIQUE (account, trust_root(255)));