linux 普通用户 make install报错:/usr/bin/install: cannot create regular file '/usr/local/lib/libzip.so.5.0.0': Permission denied  /usr/bin/mkdir -p '/usr/local/lib' /bin/sh ../libtool --mode=ins...

转载自:https://blog.csdn.net/qq_37998320/article/details/104791440 报错信息如下: ``` the requested PHP extension fileinfo is missing from your system the requested PHP extension zip is missing...

问题描述:升级fedora 33后,使用git clone,git pull,git push等需要与远程publickey进行权限校验时,提示Permission Denied (publickey) 错误原因以及解决方案: Fedora 33移除了sha1 加密算法,但是在...

1,使用fedora33 官方刻录工具,制作U盘fedora镜像。 2,从U盘启动,安装fedora33。 3,安装过程中,选择自定义分区,不安装引导程序,等系统安装后,在win7中手动添加引导。 4,因为未安装引导程序,且...

git 命令行设置代理

设置代理 git config --global http.proxy 代理地址 git config --global https.proxy 代理地址 取消代理 git config --global --unset http.proxy git config --global --unset https.proxy 查看当前...

在给网站配置https时,利用宝塔生成免费的Let's Encrypt证书十分方便,但生成后的证书信息在校验时会提示缺少中间证书。 这时,可使用ssl工具 获取中间证书内容,操作方法如下: 1,打开ssl工具 2,从宝...

当项目使用了负载均衡后,使用文件存储session,会导致在刷新或登录时,登录状态失效。所以应当将session存储至负载均衡末端每个服务器公用的的位置,如redis,而不是各自存储。本篇文章介绍thinkphp 5 项目使用r...

名称 大小 网络请求 生命周期 cookie 4kb左右 每次都会携带在HTTP头中,如果使用cookie保存过多数据会带来性能问题 默认是关闭浏览器后失效, 但是也可以设置过期时间 localstorage...

server { listen 80; server_name sitename.com; location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/ind...

created_at,updated_at默认显示的时间格式是UTC,转换为北京时间,只需在对应的模型文件中将这两个字段类型进行转换即可。 class Account extends Model { protected $casts = [ 'created_at' =...

大文件拆分 split //将large.txt每三行拆分成一个小文件 split -l 3 large.txt small 替换指定内容 sed //将testfile.txt中的old批量替换为new sed -i 's/old/new/g' testfile.txt //使用正则,去除原来括...

转载自:https://weibo.com/ttarticle/p/show?id=2309404374516481555265 5月21日,华为创始人兼CEO任正非先生,在中国深圳的华为总部接受了多家媒体的圆桌采访,并透露了更多他对于美国打击华为一事的看法,...

国产战争片老电影

《解放大西北》, 《犬王》, 《延河战火》, 《四渡赤水》, 《万水千山》, 《战上海》, 《跳动的火焰》, 《血魂》, 《南征北战》, 《落鹰峡上》, 《十天》, 《小伙伴》, 《飞虎》, 《黑...

转自:https://www.cnblogs.com/dion-90/articles/8917222.html Tomcat根目录介绍   【bin】目录主要是用来存放tomcat的命令,主要有两大类,一类是以.sh结尾的(linux命令),另一...