ubuntu
iteye_2629
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu常用命令
1.pstree查看进程树 2.禁止开发启动 在/etc/rc.d/rc*.d的目录系找到相关的启动脚本,然后把该脚本前边的S改为K就行了 ls /etc/rc* #对于以K开头的文件,系统将终止对应的服务; #对于以S开头的文件,系统将启动对应的服务; #Ubuntu默认是在runlevel 2启动的,那么我们之需要修改rc2.d中的文件 sudo apt-get instal...原创 2014-07-20 11:25:50 · 114 阅读 · 0 评论 -
ubuntu vim 使用技巧
# 打开新的tab ctrl + shift + T # 关闭标签页 ctrl + shift + Q # 标签页切换 ctrl + pgup/pgdn # 查找并打开文件 cd ./blog set path=.,page/,src/ # vim :find msgs_controller.rb # 支持table键 # 也可以使用 lookup...原创 2014-11-18 12:51:31 · 132 阅读 · 0 评论 -
waiting apache2: Could not reliably determine the server's fully qualified domai
ubuntu 12.04 waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName 解决方法 # http://aslamnajeebdeen.com/blog/how-to-fix-apache-coul...原创 2014-11-15 14:53:20 · 333 阅读 · 0 评论 -
ubuntu 14.04 安装 redis stable
wget http://download.redis.io/redis-stable.tar.gz tar xvzf redis-stable.tar.gz cd redis-stable make make test sudo make install cd utils sudo ./install_server.sh sudo service redis_6379 sta...原创 2014-10-28 18:08:51 · 129 阅读 · 0 评论 -
ubuntu14.04 atom 安装 atom-beauitfy 插件
# Clone repo git clone git@github.com:Glavin001/atom-beautify.git # Change into repo directory cd atom-beautify/ # Install dependencies npm config set registry http://registry.npmjs.org/ # n...原创 2014-10-08 21:39:35 · 270 阅读 · 0 评论 -
使用vagrant创建统一的开发环境
一.安装vagrant和virtual box并下载ubuntu 12.04 32 bit镜像 # virtual box https://www.virtualbox.org/wiki/Downloads # vagrant http://downloads.vagrantup.com/ # ubuntu 12.04 32 bit http://files.vagrantup...原创 2014-09-28 00:47:35 · 252 阅读 · 0 评论 -
linux下企业邮件服务器的搭建
一.配置域名MX记录和A记录 http://www.comingchina.com/dnsconfig.htm#num4_2_a http://www.iteye.com/topic/1131137 http://www.ezloo.com/2011/04/a_mx_cname_txt_aaaa_ns.html http://www.cnblogs.com/dudu/archiv...原创 2014-09-22 22:57:26 · 4031 阅读 · 0 评论 -
ubuntu下apache+passenger+php+mysql
一.安装apache2+php+mysql sudo apt-get install mysql-server mysql-client sudo apt-get install libmysql-ruby libmysqlclient15-dev sudo apt-get install apache2 #/var/www #/etc/apache2/apache2.conf ...原创 2014-08-16 21:15:29 · 200 阅读 · 0 评论 -
修复ubuntupackage broken命令
http://www.upubuntu.com/2013/05/how-to-fix-broken-packages-using.html If you cannot install new packages using the terminal under Ubuntu 13.04/12.10 or older and you receive this type of error: ...原创 2014-07-31 01:55:33 · 1042 阅读 · 0 评论 -
ubuntu12.04 32bit下android手机(小米1S)真机调试
本人从http://blog.youkuaiyun.com/whucyl/article/details/17057859获益颇多。 一.官网下载android adt(我下载的是带eclipse的) 二.配置$ANDROID_HOME和$PATH gedit ~/.bashrc export ANDROID_HOME=/opt/android/sdk export PATH=$ANDROID_...原创 2014-07-30 20:49:47 · 156 阅读 · 0 评论 -
ubuntu12.04安装jdk7,android studio,14.04安装chrome, phantomjs
sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java7-installer It'll keep your java 7 installation up to date. To automatically set up the Java 7...原创 2014-07-26 21:54:43 · 201 阅读 · 0 评论 -
linux运维书籍
# 《构建web高性能架构》和《构建高可用linux服务器》原创 2014-11-22 22:45:47 · 225 阅读 · 0 评论
分享