command

2021-10-18 11:32:12 浏览数 (1)

命令

开启php-fgm

/usr/local/php7/sbin/php-fpm -c /usr/local/php7/etc/php.ini

关闭php-fgm

ps -ef | grep php-fpm kill -9 上一条命令查到的PID

查看自动启动项

systemctl list-unit-files

断开ssh继续运行

nohup xxx &

目录中查找字符串

grep -rn 'https://bshare.optimix.asia/barCode' *

打包压缩

tar -zcvf xxx.tar.gz xxx

解包解压缩

tar -zxvf xxx.tar.gz

html中引入其他html

查看目录大小

du -h --max-depth=1

git强制覆盖

git fetch --all && git reset --hard origin/master && git pull

ubuntu 启动级别

sudo systemctl set-default multi-user.target sudo systemctl set-default graphical.target

PS1

export PS1='[u@h W]$ '

nmap局域网端口扫描

sudo nmap -sS -p 22 -oG - 172.16.6.0/23 | grep open

springboot jar读取静态资源,注意路径别写错

SSLUtil.class.getClassLoader().getResourceAsStream(cert)

0 人点赞