
Linux
结婚兔
一只兔子
展开
-
X220 安装Mac
1、安装VMware10虚拟机 2、安装MAC系统 教程见 http://www.phperz.com/article/14/0810/15208.html 3、原创 2014-10-25 09:25:47 · 1721 阅读 · 0 评论 -
Mac 安装Eclipse +PyDev
1、Eclipse 在原创 2014-10-26 21:16:40 · 610 阅读 · 0 评论 -
在Ubuntu系统中设置everpad
sudo add-apt-repository ppa:nvbn -rm/ppa sudo apt-get update ##这步是系统更新,应该是为了防止缺少安装的某些依赖。 sudo apt-get install everpad翻译 2014-11-12 10:58:07 · 1033 阅读 · 0 评论 -
在Ubuntu系统 设置Python+selenium
On Ubuntu/Debian systems, this will install pip (and dependencies) and then install the Selenium Python bindings from PyPI: $ sudo apt-get install python-pip $ sudo pip install selenium原创 2014-11-04 19:50:40 · 591 阅读 · 0 评论 -
虚拟机 android 唤醒
virtualbox 安装了最新版的android x86 ,版本4.2.2 系统设置,显示中,默认30分钟无操作休眠, 唤醒的方式,按一下键盘最下面,空格键边上的打印键, 即可唤醒系统。转载 2014-12-24 11:16:04 · 1378 阅读 · 0 评论 -
vi编辑器
为什么要学vi 所有的Unix Like 系统都会内建 vi 文书编辑器 基本上 vi 共分为三种模式,分别是『一般模式』、『编辑模式』与『指令列命令模式』。 这三种模式 的作用分别是: 一般模式: 以 vi 打开一个档案就直接迚入一般模式了(这是默认的模式)。在这个模式中, 你可以使用『上下左右』按键来移劢光标,你可以使用『删除字符』或『删除整行』来处理档案内容,翻译 2015-01-20 09:49:50 · 405 阅读 · 0 评论 -
Linux的一些命令
cd:变换目录 pwd:显示当前目录(路径) ,加 -P 参数,显示完整路径 mkdir:建立一个新的目录 rmdir:删除一个空的目录 ls -la :以list形式显示目录下的所有文件 df :列出磁盘系统的整体磁盘使用量 ,-h 以较为容易阅读的单位显示 du:评估文件系统的磁盘使用量(常用在评估目录所占容量)原创 2015-01-20 09:11:58 · 515 阅读 · 0 评论 -
Installing Jenkins on Centos 7
So guide how to get jenkins up and running on centos 7 1. First install it ! yum install -y wget sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo sudo rpm -转载 2015-05-17 15:44:49 · 490 阅读 · 0 评论