Linux Linux

查看是否安装apache服务 apachectl -v //或 httpd -v 重启httpd服务 systemctl restart httpd 关闭、开启 systemctl stop httpd //关闭 systemctl start httpd //开启 修改HOSTS文件 # vim /etc/hosts
Le无忧 发布于 

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
Le无忧 发布于 

composer 卸载扩展或删除扩展包

查看当前所有安装的扩展包 composer show -i 卸载扩展包,使用 composer remove composer remove topthink/think-image
Le无忧 发布于 

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...
Le无忧 发布于 

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...
Le无忧 发布于