摘要:
常用命令:文件和目录:# cd /home 进入 '/home' 目录# cd .. 返回上一级目录# cd ../.. 返回上两级目录# cd - 返回上次所在目录# cp file1 file2 将file1复制为file2# cp -a dir1 dir2 复制一个目录# cp -a /tmp/dir1 . 复制一个目录到当前工作目录(.代表当前目录)# ls 查看目录中的文件# ls -a ... 阅读全文
摘要:
MySQL名字的来历MySQL是一个小型关系型数据库管理系统,MySQL被广泛地应用在Internet上的中小型网站中。由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,许多中小型网站为了降低网站总体拥有成本而选择了MySQL作为网站数据库。CentOS系统中操作mysql的常用命令。1、CentOS系统中MySQL常用命令create database name; 创建数据库use databasename; 选择数据库drop database name 直接删除数据库,不提醒show tables; 显示表describe tablename; 表的详细描述select 中加 阅读全文
摘要:
su - root is the same as su -just like login as root, then the shell is login shell,which mean it will expericene a login process,usually .bash_profile and .bashrc will be sourcedsurootis the same as sulike you open an interactive shell in root name,then only .bashrc will be sourced.su 后面不加用户是默认切到 r 阅读全文