linux的简单命令

Linux简单知识

1 帮助命令
whatis
man
2 创建文件,创建文件夹,删除文件,复制文件,删除文件夹

touch file1 file2
mkdir dir
rm file
cp file home(文件夹)
rm -r dir

3 常用快捷键
tab键补全
ctrl+c 退出当前操作
ctrl+d 退出终端

4 有趣的简单命令
who am i

5 查看系统信息
cat /etc/*release*


wangyin

Okay. So 2 * 3 is an expression, x is an expression, 6 is an expression, var x = 2 * 3 is also an expression.A: Right. Expressions can be a variety of things. Now define another variable y and see what happens.

No, it has only two parts: the parameter x and the function body x * x. The arrow => is there just to separate the two parts.


文件夹介绍
etc:系统配置文件
home:每一个用户都在当前目录下拥有一个专属文件夹
mnt:一般用来挂载扩充磁盘
opt:存放软件安装包等资料
usr:软件安装目录
var:软件运行数据,日志 进程等


查找文件
find / -name test.*

查找文件中的字符
grep 要查找的字符 文件

开启端口号
firewall-cmd --permanent --zone=public --add-port=8080/tcp

firewall-cmd --reload

查找运行的进程
ps -ef|grep java

精准查找端口号进程
netstat -unltp|grep 8082

Nginx常用命令
cd /usr/local/nginx/sbin/
./nginx 启动
./nginx -s stop 停止
./nginx -s quit 安全退出
./nginx -s reload 重新加载配置文件
ps aux|grep nginx 查看Nginx进行

查看开放的端口号
netstat -anp

linux的简单命令

上一篇:[转]C#创建Windows服务与安装


下一篇:图文解说PhpStorm 7.0版本语法着色