Linux 常用命令整理
Posted 艾白羊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 常用命令整理相关的知识,希望对你有一定的参考价值。
1、解压缩到指定文件夹:
// 将 /usr/local/software 下的 apache-maven-3.5.0-bin.tar.gz 解压到 apache-maven-3.5.0 文件夹
tar zxvf /usr/local/software/apache-maven-3.5.0-bin.tar.gz -C apache-maven-3.5.0
2、后台启动服务,nohup就是不挂起的意思( no hang up):
// command 表示待执行的命令
nohup command &
以上是关于Linux 常用命令整理的主要内容,如果未能解决你的问题,请参考以下文章