Linux: Copy/Rename/Move/Remove Directory – 复制/重命名/移动/删除目录

Categories: Linux; Tagged with: ; @ September 2nd, 2010 17:38

1. Copy 复制:

[root@ip-10-* webapps]# cp -r sourceDir/ /targetDir/ 
//将被复制到targetDir文件夹下 The SourceDir will be found under "targetDir"

2. Rename 重命名:

[root@ip-10-* 20100102update]# mv sourceDir/ newName

3. Move 移动:

mv Source.zip targetDir/

4. 移除整个目录:

[root@ip-10*webapps]# rm -rf Athena_Java/

使用PHP运行Shell命令 – PHP Ajax Shell

Categories: LinuxPHP; Tagged with: ; @ August 17th, 2010 23:07

对于PHP的虚拟主机, 有时需要查看系统配置或是运行其他的Shell命令,

网上有很多类似的代码, 一般来说很短一个PHP文件即可运行Shell命令, 便于更方便的管理虚拟主机.

image (more…)

Vi Reference Card 常用命令表

Categories: Linux; Tagged with: ; @ August 5th, 2010 22:06

仅罗列我个人常用的VI命令. 很少, 很简单.
>>点此进入Vi ReferenceCard.pdf下载页面<<

Linux下设置Java Environment(环境变量)

Categories: JavaLinux; Tagged with: ; @ August 5th, 2010 21:47

今天在安装好Java后, 设置了环境变量, 并且source了profile一次, java -version, 测试成功;
后来用putty在外面用的时候发现java变量未生效. vi profile, 文件中变量已设置. 后来才知道每次Source /etc/profile, 只是在当前Terminal内有效… 因此在重启以前, 每次新开的Terminal都需要先source下 profile.

附, 环境变量设置:

#vi /etc/profile

shift+g跳到文件末尾, 追加:

export JAVA_HOME=/usr/lib/jdk
export PATH=$PATH:$JAVA_HOME/bin

Linux下Apache安装及配置

Categories: Linux; Tagged with: ; @ August 5th, 2010 21:34

Apache yum安装, httpd.conf配置, Service操作
image

(more…)

Newer Posts <-> Older Posts



// Proudly powered by Apache, PHP, MySQL, WordPress, Bootstrap, etc,.