Linux 常用命令 - ping命令详解 Linux
1、每隔0.6秒ping一次,一共ping 5次:
ping -c 5 -i 0.6 apios.ltd
2、指定次数后停止ping:
ping -c 3 qq.com
3、访问网址:
curl https://apios.ltd
composer 卸载扩展或删除扩展包
查看当前所有安装的扩展包
composer show -i
卸载扩展包,使用 composer remove
composer remove topthink/think-image
phpstorm调试XDebug 超时问题
phpstorm+xdebug+apache 调试代码时,一分钟就超时处理:
修改配置文件:
1.php.ini 设置xdebug, 增加
xdebug.remote_cookie_expire_time = 3600
max_execution_time=3600
max_input_time=3600
default_socket_timeout = 3...
Linux 压缩/解压 Linux
tar格式压缩和解压
(1)打包归档格式:
tar -cvf examples.tar files|dir
说明:
-c, --create create a new archive 创建一个归档文件
-v, --verbose verbosely list files processed 显示创建归档文件的进程
-f, --file=ARCHIVE u...