日期:2014-05-16 浏览次数:20703 次
【LINUX 常用命令总结:】***************************************************************
------------------------------------------------Begin---------------------------------------------
远程登陆命令:
//远程登陆
telnet 99.1.76.3
//用户名、密码
system/orcl
//启动 Tomcat
cd /home/ssmp/3Party/tomcat/bin
./shutdown.sh
//查看包含 3Party 的进程
ps -ef|grep 3Party
//杀死进程
kill <PID>
./startup.sh
编辑文件:
vi log
shif +g 跳到最后一行
vi sysctrl.conf ?按i 进行修改状态 ESC 后:wq保存退出
查看命令:
ls -lt :显示详细信息
ls /etc | wc -l ?:有多少个文件
ls /etc -l | grep "^d"|wc -l?
压缩文件目录 :
tar -cvf 20110914ssmp.tar ./webapps/
解压 tar.gz文件:
tar zxvf 文件名.tar.gzls?
安装Oracle时错误:Could not execute auto check for display colors using command /usr/bin/xdpyinfo 解决方法
use root login,then ?
#xhost +
#su - oracle
#./runInstaller
关机:
halt
显示当前目录:
pwd
查看存储空间状态:
df -k;
复制文件:?
cp -rf /mnt/hgfs/DataBase/tomcat/* /home/ssmp/3Party/tomcat
linux客户端:xMangemnt
export ?DISPLAY:99.1.68..36:0.0
------------------------------------------------End-----------------------------------------------
?
?
【LINUX下启动数据监听和服务步骤:】***************************************************************
------------------------------------------------Begin---------------------------------------------