A man can fail many times, but he isn't a failure until he begins to blame somebody else.—— J. Burroughs一个人可以失败许多次,但是只要他没有开始责怪别人,他还不是一个失败者。——巴勒斯
分类:
其他好文 时间:
2014-07-16 23:20:38
阅读次数:
203
1、下载openssh。2、安装。 安装很简单,就像其它windows下的软件一样,双击即可。安装到大半,会有提示框弹出,说“必须要设置../etc/passwd文件才可以正常运作openssh,详情可以参阅readme.txt或quickstart.txt文件。”不用管它,按确定继续完成安装。安装...
OpenERP对象支持的字段类型有,基础类型:char, text, boolean, integer, float, date, time, datetime, binary;复杂类型:selection, function, related;关系类型:one2one, one2many, man...
分类:
其他好文 时间:
2014-07-10 11:13:07
阅读次数:
339
Problem Description:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a...
分类:
其他好文 时间:
2014-07-07 16:03:32
阅读次数:
168
今天简单学习了一下vi和gcc/g++的使用。 首先是第一次用root超级管理用户登录了Linux系统,因为Ubuntu系统第一次登录只能是普通用户,但是很多事情必要要用root权限,所以今天特地上网搜了怎么用root用户,先用普通用户登录,然后输入sudo passwd root,就可以设置...
分类:
系统相关 时间:
2014-07-07 13:14:26
阅读次数:
245
Ubuntu 下获得root 权限在终端中输入:sudo passwd rootEnter new UNIX password: (在这输入你的密码)Retype new UNIX password: (确定你输入的密码)passwd: password updated successfully以后...
分类:
其他好文 时间:
2014-07-02 21:30:47
阅读次数:
247
Look Info : ls -a 全部文件 -h 将大小转换为为GB,KB -l 列出属性和权限 -R 子目录内容也列出来 --full-time 显示完整时间 ... 我常用的就是这几个了,其他它请自行 man 吧Copy: cp cp 源文件1,源文件1... 目标文件 -i...
分类:
其他好文 时间:
2014-07-01 19:33:22
阅读次数:
206
yum -y install subversion 建立版本库目录 mkdir /opt/svn/repo 修改配置文件(3个文件authz passwd svnserve.conf) cd /opt/svn/repo/conf vi svnserve.conf ...
分类:
Web程序 时间:
2014-07-01 00:55:07
阅读次数:
278
file /usr/share/man/man1/mysqlshow.1.gz from install of MySQL-client-4.1.16-1.glibc23 conflicts with file from package mysql-3.23.54a-11--------------...
分类:
数据库 时间:
2014-06-28 09:41:36
阅读次数:
328
要求:批量创建10个系统账号oldboy01-oldboy10,并设置生成密码(密码不同).实现脚本:#!/bin/bash
#Question3
foriin$(seq-w10)
do
useradd-s/bin/basholdboy$i
echo"password$i"|md5sum|tee-apasswd.txt|passwd--stdinoldboy$i
done脚本执行效果:[root@localhostq4]#shq4.sh
Cha..
分类:
其他好文 时间:
2014-06-28 06:21:21
阅读次数:
340