【Linux】01 linux 基础命令(修改运行内存)

一、日常命令

创建文件的三种方式:

# echo "kkk">> 1.txt

# touch 1.txt

查看防火墙状态

# service firewalld status

# service firewalld stop

# service firewalld status

# ping www.baidu.com

# ifconfig //查看ip地址

# ip addr

启动查看服务

# systemctl start 服务名

# systemctl status 服务名

# systemctl stop 服务名

# systemctl restart 服务名

例子:

# systemctl status docker

查看日志

# tailf app.log 查看日志 //实时查看日志

# vim app.log

/+搜索内容 + 回车 n 下一个。shift + n 上一个 ==> 从上着

?+搜索内容 + 回车 n 下一个。shift + n 上一个 ==> 从下找

四、问题

# sysctl -a|grep vm.max_map_count //查看内存大小

# vim /etc/sysctl.conf

添加:vm.max_map_count=262144 //2G

# sysctl -p

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(【linux】)