Linux系统下基本命令

Linux系统下基本命令:要区分大小写

 
 
系统
# uname -a # 查看内核/操作系统/CPU信息
# head -n 1 /etc/issue # 查看操作系统版本
# cat /proc/cpuinfo # 查看CPU信息
# hostname # 查看计算机名
# env # 查看环境变量
# dmidecode #查看硬件详细信息
 

资源
# free -m # 查看内存使用量和交换区使用量
# df -h # 查看各分区使用情况
# du -sh # 查看指定目录的大小
# uptime # 查看系统运行时间、用户数、负载

网络
# ifconfig # 查看所有网络接口的属性
# iptables -L # 查看防火墙设置
# route -n # 查看路由表
# netstat -lntp # 查看所有监听端口
# netstat -antp # 查看所有已经建立的连接
# netstat -s # 查看网络统计信息
# lsof #查看网络信息

进程
# ps -ef # 查看所有进程
# top # 实时显示进程状态

用户
# w # 查看活动用户
# id # 查看指定用户信息
# last # 查看用户登录日志
# finger root #查看管理信息
# cut -d: -f1 /etc/passwd # 查看系统所有用户
# cut -d: -f1 /etc/group # 查看系统所有组
# crontab -l # 查看当前用户的计划任务

服务
# chkconfig --list # 列出所有系统服务
# chkconfig --list | grep on # 列出所有启动的系统服务

程序
# rpm -qa # 查看所有安装的软件包


入侵
bash去掉history记录

export HISTSIZE=0

export HISTFILE=/dev/null

FTP命令详解:

FTP的命令行格式为:

FTP使用的内部命令如下(中括号表示可选项):


bin:使用二进制文件传输方式。

bye:退出ftp会话过程。

cdup:进入远程主机目录的父目录。

chmod mode file-name:将远程主机文件file-name的存取方式设置为mode,如:chmod 777 a.out。

delete remote-file:删除远程主机文件。

get remote-file[local-file]: 将远程主机的文件remote-file传至本地硬盘的local-file。

ls[remote-dir][local-file]:显示远程目录remote-dir, 并存入本地文件local-file。

mkdir dir-name:在远程主机中建一目录。

put local-file:将多个文件传输至远程主机。

quit:同bye,退出ftp会话。

system:显示远程主机的操作系统类型

echo $PATH   :查看系统变量
 
 
 
 
posted @ 2017-12-05 13:33  gscsd  阅读(247)  评论(0编辑  收藏  举报