- 浏览: 78418 次
- 性别:
- 来自: 上海
最新评论
-
我爱爸爸妈妈:
我在 mac下进行了配置,结果rails项目 还是不能运行起 ...
使用passenger和nginx布置rails项目 -
joylili:
学习啦~~~
FAT32转换NTFS格式的命令
文章列表
修改/etc/fonts/conf.d/49-sansserif.conf/49-sansserif.conf(记得先备份 )文件中的:
<edit name="family" mode="append_last">
<string>sans-serif</string>
</edit>
sans-serif修改为sans serif或者sans或者其它中文字体
各种语言API文档
http://www.gotapi.com/html
Rails API文档
http://www.railsbrain.com/
Rails, Ruby视频网站
http://mwrc2009.confreaks.com/index.html
gem install tzinfo builder memcache-client rack rack-test rack-mount erubis mail text-format thor bundler rack-mount i18n
gem install rails --pre
打开用户根目录下的配置文件:~/.bashrc
在文件添加如下内容,即是把所有的gem应用程序都加到系统环境变量路径,系统会自动加载它
expor PATH=/var/lib/gems/1.8/bin:$PATH
最后sudo source ~/.bashrc就可以用了,如rails -v
打开命令行,输入如下即可:
sudo apt-get install firefox-3.5
好像官方也快出deb版本了,个人喜欢用命令行安装东西
安装步骤如下:
1、下载。下载页面:
http://zh.openoffice.org/new/zh_cn/downloads.html
选择“Linux(Deb)”中文版。一百多兆,花不了多少时间就完成了。
2、卸载已有的OOo2.4:
sudo apt-get autoremove openoffice.org*
这是网上的方法,本人卸载旧版本时,直接在“新立得软件管理器”中检索openoffice将相关项一次性全部卸载了。
3、解压,安装:
解压到你的Home目录中,目录里会有许多个.deb文件,你可以通过以下命令进行安装。
sudo dpkg -i ~/OOO300_m9_nati ...
1. sudo gem install heroku
2. heroku create myapp
http://myapp.heroku.com/ | git@heroku.com:myapp.git
3. rails myapp -d mysql
git init
git add .
git commit -am 'initial import'
4. git remote add heroku git@heroku.com:myapp.git
git push heroku master
5. heroku rake db:migrate
6. heroku open ...
安装ssh和openssh-server
debian和ubuntu:
su
apt-get install ssh openssh-server
/etc/init.d/ssh start #start|resart|stop
or
service ssh start
sudo apt-get install libssl-dev
sudo gem install passenger
sudo passenger-install-nginx-module
sudo vim /opt/nginx/conf/nginx.conf
server {
listen 80;
server_name example.com;
root /somewhere/my_rails_app/public;
passenger_enabled on;
rails_spawn_method sma ...
1. sudo gem install inline RubyInline
2. create the config file '.irbrc' in user root directory
require 'rubygems'
require 'wirble'
#require 'bond'
#require 'bond/completion'
Wirble.init
Wirble.colorize
if ENV.include?('RAILS_ENV') && !Object.const_defined?('RAILS_DEFAULT_LOGGER')
requir ...
- 2009-12-01 13:39
- 浏览 1495
- 评论(0)
http://www.claytonlz.com/index.php/2009/04/how-to-setup-rspec-cucumber-webrat-rcov-and-autotest-on-leopard/
- 2009-11-20 15:16
- 浏览 926
- 评论(0)
http://www.roredu.com/
ubuntu下git安装与使用笔记
http://www.roredu.com/rubyrails/2008/08/04/ubuntu-git/
- 2009-11-19 15:04
- 浏览 1059
- 评论(0)
首先安装SSH Server:
打开Ubuntu Server终端,输入如下代码:
sudo apt-get install openssh-server
生成RSA Key(请su到普通用户来执行此命令):
ssh-keygen -t rsa
修改配置文件/etc/ssh/sshd_config:
Port 22 # 修改成你想要的登陆端口,如2222
PermitRootLogin n ...
- 2009-11-19 14:34
- 浏览 3293
- 评论(0)
以下Ubuntu命令集为网络搜集整理而得,主要用于参考查阅,并可能不断丰富:
apt(软件管理)使用参考
apt-cache search package 搜索包
apt-cache show package 获取包的相关信息,如说明、大小、版本等
sudo apt-get install package 安装包
sudo apt-get install package - - reinstall 重新安装包
sudo apt-get -f install 强制安装
sudo apt-get remove package 删除包
sudo apt-get remove package - - ...
- 2009-11-19 14:28
- 浏览 2448
- 评论(0)
deb http://security.ubuntu.com/ubuntu jaunty-security main restricted
deb-src http://security.ubuntu.com/ubuntu jaunty-security main restricted
deb http://security.ubuntu.com/ubuntu jaunty-security universe
deb-src http://security.ubuntu.com/ubuntu jaunty-security universe
deb http://security.ubuntu. ...
- 2009-11-17 09:22
- 浏览 2250
- 评论(0)