码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 指令

时间:2018-11-12 11:20:18      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:pwd   ifconf   kconfig   odi   tom   txt   mys   文件夹   指定   

 

 

 

Linux 常用命令:

1.ifconfig     查看Ip地址

2.cd /         取到Linux操作系统的根目录

  cd /usr      进入到指定目录下              绝对路径

  cd  usr      进入当前文件夹下的usr目录    相对路径

  cd  ../      返回上一目录

3.ls            查询当前文件夹下的文件信息

  ll    查询文件的详细信息

4.clear         清屏    /windows  cls

5.pwd           查询当前文件所在路径

6.mkdir aa bb cc   同时创建多个文件夹

  mkdir -p dd/ee/ff 可以实现递归创建

7.rm -rf  文件名称  删除文件
8.vim a.txt  
9.i: 进入编辑状态

10.esc: 退出编辑状态

11.u :  表示撤销

:wq  表示保存退出.

cp 需要复制文件 新文件名称    复制单个文件
cp -r aa ee   复制文件夹

12.移动命令

  mv 旧文件名称 文件路径/新名称

  mv  a.txt    ../         a.txt 移动到上一级

  mv a.txt     ../b.txt   a.txt移动到上一级并且改名为b.txt

 

关闭防火墙

1.service iptables stop        #临时关闭
2.service iptables start    #临时开启   重启虚拟机时失效
3.chkconfig iptables on     #永久开启
4.chkconfig iptables off    #永久关闭

 

修改JDBC连接

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://192.168.126.1:3306/jtdb?useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true
jdbc.username=root
jdbc.password=root

 

开关tomcat

./shutdown.sh
sh shutdown.sh

 

Linux 指令

标签:pwd   ifconf   kconfig   odi   tom   txt   mys   文件夹   指定   

原文地址:https://www.cnblogs.com/gxlaqj/p/9944689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!