Centos 9 中安装 php 7.4
dnf install https://rpms.remirepo.net/enterprise/remi-release-9.rpm
dnf module list php
dnf install php74-php php74-php-fpm php74-php-mysqlnd php74-php-mcrypt php74-php-gd php74-php-bcmath php74-php-json php74-php-mbstring php74-php-xml php74-php-zip
systemctl enable php74-php-fpm
# /etc/opt/remi/php74/php.ini
# /etc/opt/remi/php74/php-fpm.conf
# 检查依赖是否完整...
标签为 linux 的文章:
两种方式:
[upall@server ~]$ command &
[upall@server ~]$ nohup command &
第一种在关掉终端后命令也会跟着退出,第二种在关掉终端后命令不会退出。
在后台执行的进程,其父进程还是当前终端shell的进程,一旦父进程退出,则会发送hangup信号给所有子进程,子进程收到hangup以后也会退出。如果我们要在退出shell的时候继续运行进程,则需要使用nohup忽略hangup信号,nohup就是不挂起的意思( no hang up)。
另外...
说明:
修改 /var/www 中所有目录的权限为755,文件除外。
代码:
find /var/www -type d -print0 | xargs -0 chmod 755
# 以上代码摘自 seamonkey 在这里的回复:
# http://www.linuxsir.org/bbs/thread259958.html
<完>
说明:
wget 是个不错的下载工具,可惜不知道怎么使用断点续传功能(貌似没有这功能)。axel 可以继点续传,喜欢的朋友可以试试。
安装:
[upall@local ~]# wget http://soft.shangpan.com/linux/axel-2.4.tar.gz
[upall@local ~]# tar zxvf axel-2.4.tar.gz
[upall@local ~]# cd axel-2.4
[upall@local ~]# ./configure
[upall@local ~]# make && make install
用法:
[upall@local ~]# axel http://dn/axel...