- 浏览: 274106 次
- 性别:
- 来自: 武汉
文章列表
linux 命令行基础
- 博客分类:
- Linux
1,\表示当一行满了后,,换到下一行接着输入
2,date +%Y-%m-%d ; date +%H:%M
3, cal [month] [year]
4, bc 计算器 quit退出
5, man
1: 用户可操作的命令和执行文件
2:系统调用的工具函数
3:常用函数和库
4:设备文件说明
5:设置文件格式
6:游戏
7:协议,惯例等
8:系统管理员可用的管理命令
9:内核有关文件
NAME: 说明
SYNOPSIS: 简短语法
DESCRIPTION: 完整说明
OPTIONS: 参数
COMMANDS: 执行时可以发出的命令
FILES: 使用或链接, ...
centos 安装skype
- 博客分类:
- Linux
1, 切换到root用户,安装所需的 32 位元组件:
[root@host]# yum install glibc.i686 alsa-lib.i686 libXv.i686 libXScrnSaver.i686 qt.i686 gtk2-engines.i686 \
PackageKit-gtk-module.i686 libcanberra.i686 libcanberra-gtk2.i686
2, [root@host]# yum install pulseaudio-libs.i686 alsa-plugins-pulseaudio.i686
3, 下载skype: http:// ...
centos 安装libreOffice
- 博客分类:
- Linux
1,下载libreoffice:http://www.libreoffice.org/download/, 有两个文件要下载
2,解压到一个目录下
3,进入到的RPMS目录,
4,切换到root 权限,执行 rpm -ivh *.rpm。
5,等待安装完成便可。
centos安装firefox浏览器
- 博客分类:
- Linux
一, firefox更换新版本
1, 下载 firefox 的tar包
2,到root 帐号
3,将下载的包解压到 /usr/local (tar -xjvf xxxx.tar.bz2 /usr/local)
4,ln -s /usr/local/firefox/firefox /usr/bin/firefox
Optional :可以继续在面板上调整属性,指向新版本的firefox,指明路径即可
附加:
命令解释:
1, tar 解压压缩
格式: tar [选项] [文件目录列表]
功能: 对文件目录进行打包备份
选项:
-c 压缩
-r 向归档文件末尾追加文件
-x 解压
-O 将文件 ...
添加user到sudoers
- 博客分类:
- Linux
在 ubuntu中由于禁用了root用户,默认情况下会把安装系统时建立的用户添加到sudoers中。但在redhat和centos中并没有把任何 root用户之外的用户默认的添加到sudoers之中。这样我们在执行sudo 命令时就会出现xxx is not in the sudoers file. This incident will be reported.这样的错误输出。现在为了安全起见比较提倡使用普通用户做日常操作,而在需要超级用户的时候使用sudo 来做,这样,我们就有必要把一些用户添加到sudoers之中。
其实把用户添加到sudoers之中很简单。
1,首先利用whereis 命 ...
1, 全局配置到 ~/.gitconfig文件
git config --global user.name "Your Name"
git config --global user.email "user@domain.com"
2,配置到 .git/config 文件
cd /path/to/repository
git config user.name "Your Name"
git config user.email "user@domain.com"
3,命令行颜色化
git config --glob ...
从centos minimal 安装桌面
- 博客分类:
- Linux
分类说明:
Desktop:基本的桌面系统,包括常用的桌面软件,如文档查看工具
Minimal Desktop:基本的桌面系统,包含的软件更少
Minimal:基本的系统,不包含任何可选的软件包
Basic Server:安装的基本系统的平台支持,不包含桌面
Database Server:基本系统平台,加上MySQL和PostgreSQL数据库的客户端,无桌面
Web Server:基本系统平台,加上PHP,Web server,还有MySQL和PostgreSQL数据库的客户端,无桌面
Virtual Host:基本系统加虚拟化平台
Software Development W ...
一,光标移动
回车:移到下一行起始位置
Ctrl+u:往上移动半屏
Crtl+d:往下半屏
Ctrl+f: 往下一屏
Ctrl+b:往上一屏
shift+h:移到本屏幕第一行开头第一个非空白字符
shift+m:移到本屏幕中间行第一个非空白字符
shift+l: 本屏幕最后 ...
一,安装jdk
• export JAVA_HOME=/usr/java/jdk1.7.0_03
• export JRE_HOME=/usr/java/jdk1.7.0_03/jre
• export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export PATH=.:$JAVA_HOME/bin: $PATH
二,安装tomcat
• export TOMCAT_HOME=/usr/local/tomcat
• export CATALINA_HOME=/usr/local/tomcat ...
U盘安装CENTOS
- 博客分类:
- Linux
一,制作启动U盘部分
1,电脑插上 U 盘,打开 UltraISO 软件,文件---打开,选择你下载好的CentOS-6.3-i386-bin-DVD1.iso 文件,点启动--写入硬盘镜像,在硬盘驱动器里面选择你的 U 盘(看清楚,千万别 ...
So I want to start by offering you a free no-tech life hack.And all it requires of you is this: that you change your posture for 2 minutes.But before I give it away (白送), I want to ask you to right now, do a little audit of your body and what you are doing with your body, so how many of you are sort ...
获取几种项目路径的方式(Done)
- 博客分类:
- Java
// 第一种:获取类加载的根路径 D:\git\daotie\daotie\target\classes
23 File f = new File(this.getClass().getResource("/").getPath());
24 System.out.println(f);
25
26 // 获取当前类的所在工程路径; 如果不加“/” 获取当前类的加载目录 D:\git\daotie\daotie\target\classes\my
27 File f2 = new File(this. ...
Spring 学习笔记-1
- 博客分类:
- Java
一,Maven配置
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>3.0.0.RELEASE</version>
<scope>runtime</scope>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<a ...
自动化测试遇到的一些问题
- 博客分类:
- Automation
1, 页面上的checkbox 上执行click来勾选,结果出现错误提示说 元素不可见,不能执行操作, 实际上元素是可见的,而且元素定位什么都没有任何问题。
解决: 改用执行 javascript语句替代selenium的click, 大致如下 executeJavascript("arguments[0].click", "WebElement")
错误提示:
The current branch is not configured for pull No value for key branch.master.merge found in configuration
方法1:
Go to Window > Preferences > Team > Git > Configuration.
Select the Repository Settings tab and then the repository that represents your project.
C ...