Linux
文章平均质量分 73
tj_boce_gjp
乐观向上
展开
-
Linux 常用命令
1. 复制命令 cp 1) 把ab目录下的所有记录 复制到 当前目录 cp -r ab . 2.把ab目录下的所有记录 复制到 当前目录覆盖原来已有的ab 目录 cp -rf ab . 如果需要显示进度的话需要加参数 v 如 cp -rfv ab . 2. 查看防火墙状态 chkconfig iptables --list 关闭防火墙 chkconf...原创 2014-12-26 12:08:34 · 115 阅读 · 0 评论 -
ssh命令和 scp 命令
ssh常用用法小结 1、连接到远程主机: 命令格式 : ssh name@remoteserver 或者 ssh remoteserver -l name 说明:以上两种方式都可以远程登录到远程主机,server代表远程主机,name为登录远程主机的用户名。 2、连接到远程主机指定的端口: 命令格式: ssh name@remoteserver -p 2222 或者 ssh ...原创 2015-02-27 16:35:53 · 323 阅读 · 0 评论 -
Failed to load session “ubuntu"问题解决总结
1.使用sudo lightdm 启用默认界面,发现没有安装,然后执行 sudo apt-get install lightdm 进行安装 然后执行 sudo lightdm 启动界面, 但是输入密码后提示: Failed to load session “ubuntu 使用下面步骤解决: sudo apt-get update sudo apt-get insta...原创 2017-07-11 11:22:53 · 440 阅读 · 0 评论 -
Linux下使用grep,tail 查看查找日志
有时候日志文件比较大,有几G 无法使用工具打开文件,这个时候就需要使用命令来查找错误信息。 一 tail 命令 例如查看 catalina.out 后50行日志 [color=darkred]tail -50f catalina.out[/color] [img]http://dl2.iteye.com/upload/attachment/0126/3510/06af93b4-64...原创 2017-08-01 11:12:35 · 17923 阅读 · 0 评论 -
看到端口打开数量
1.查看linux 下Tomcat 端口打开数量,使用命令: netstat -an |grep "8888" |wc -l 查看状态为TIME_WAIT 的个数 netstat -an |grep "8888"|grep TIME_WAIT |wc -l [img]http://dl2.iteye.com/upload/attachment/0126/5685/f1775...原创 2017-08-17 10:41:51 · 485 阅读 · 0 评论 -
利用SecureCRT上传,下载文件
在SecureCRT上 使用rz 上传文件, sz 下载文件 ,首先在linux 上安装lrzsz , 命令如下:yum install lrzsz [img]http://dl2.iteye.com/upload/attachment/0126/5749/c54623ee-a86e-36e1-9a18-1f24dde1b7b0.png[/img] 上传文件命令:rz ...原创 2017-08-17 17:15:12 · 156 阅读 · 0 评论