3-3 进程调度 2022-10-03 约 463 字 预计阅读 1 分钟 3-3 进程调度 进程调度 pcntl_fork创建一个子进程,此时会存在两个进程,此时cpu先执行那个进程由操作系统决定,一般父进程先运行几率高 在P 阅读更多
iptables 2022-10-03 约 2254 字 预计阅读 5 分钟 iptables ip + tables tables : mangle filter nat 清空规则链 先配置默认的规则链,否则清空后无法远程连接服务器 1 2 iptables -P INPUT ACCEPT # 默认运行 iptables -F # 清空 链 1 2 # root iptables -L -L 参数查询所有的链 阅读更多
oracle操作 2022-10-03 约 3684 字 预计阅读 8 分钟 oracle操作 查看数据库服务状态:lsnrctl status 启动监听:lsnrctl start 连接 远程 or 本地 1 sqlplus user_haut/[email protected]:1521/chemdb.thinks.net.cn 查询当前用户 1 2 show user select user from dual 查询所有用户 1 阅读更多
虚拟机VMWare 2022-10-03 约 1464 字 预计阅读 3 分钟 虚拟机VMWare centos下载地址 http://mirrors.aliyun.com/centos/7/isos/x86_64/ 16G机器,i5 10代 配置 2个cpu 4核 6G内存流畅运行 安装完成,配置静态ip (使用 NAT 方式) 可以使用 阅读更多
进程关系与守护进程 2022-10-03 约 1016 字 预计阅读 3 分钟 进程关系与守护进程 [[进程组]] [[Bash会话]] [[守护进程]] [[作业控制]] 什么是终端 输入单元(键盘),主机[cpu,内存] ,输出单 阅读更多
3-2进程exec 2022-10-03 约 270 字 预计阅读 1 分钟 3-2进程exec 进程exec exec函数的功能 : 用来执行一个程序,PHP中使用 pcntl_exec https://www.php.net/manual/zh/function.pcntl-exec.php, 内部调用时 execve https://man7.org/linux/man-pages/man2/execve.2.html 一般的用法: 父进程先创建一个子进程,然后子 阅读更多
firewalld 2022-10-03 约 181 字 预计阅读 1 分钟 firewalld 服务相关命令 运行停止 systemctl status | start | stop | restart firewalld 开机自启/禁止 systemctl disable | enable firewalld 常用命令 firewall-cmd –state # 显示状态 firewall-cmd –get-active-zones # 查看区域信息 firewall-cmd –get-zone-of-interface=ens33 # 查看指定接口所属区域 firewall-cmd –reload # 更新 阅读更多
php56-fpm 2022-10-03 约 173 字 预计阅读 1 分钟 php56-fpm 基于 alpine 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 docker pull alpine:3.13 \ # run docker run --name alpine -it alpine:3.13 \ # 改 阅读更多
charles注册码 2022-10-03 约 47 字 预计阅读 1 分钟 charles注册码 生成注册码地址:https://www.charles.ren/ Registered Name:https://zhile.io License Key: 48891cf209c6d32bf4 阅读更多
git-bash配置 2022-10-03 约 437 字 预计阅读 1 分钟 git-bash配置 配置好 git-bash 后可以代替绝大多数时候开发的需求.不需要额外折腾 powershell 等工具.大道至简👀 fish 将 fish 以 子进程的方式在 Git-bash 中运行,可以进行命令 阅读更多
powershell 2022-10-03 约 446 字 预计阅读 1 分钟 powershell 升级 1 2 3 Update-Module PowerShellGet Invoke-Expression "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" oh-my-posh https://ohmyposh.dev/docs/installation/windows 1 scoop install https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/oh-my-posh.json readline https://docs.microsoft.com/zh-cn/powershell/module/psreadline/about/about_psreadline?view=powershell-7.2 1 2 Install-Module -Name PSReadLine -AllowClobber -Force show module 1 get-installedModule theme 1 Get-PoshThemes install module 1 2 3 4 5 6 7 8 9 10 11 12 13 Set-ExecutionPolicy Bypass Set-PSRepository -Name 'PSGallery' -InstallationPolicy Trusted Install-Script -Name RefreshEnv -Force -Scope CurrentUser Install-Module oh-my-posh -Scope CurrentUser Install-Module 阅读更多
umask 系统屏蔽字 2022-10-03 约 1123 字 预计阅读 3 分钟 umask 系统屏蔽字 文件|目录的默认权限与隐藏权限 当我们创建一个文件或者目录时即使我们未对其非配权限,其也会存在默认权限 [root@localhost tmp]# mkdir newdir [root@localhost tmp]# ls -dl newdir drwxr-xr-x 2 root root 4096 阅读更多
非血缘进程间管道通信 2022-10-03 约 237 字 预计阅读 1 分钟 非血缘进程间管道通信 非血缘进程间管道通信 读端(要设置为非阻塞模式,不然会阻塞住) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <?php // 非血缘关系间 // 接 阅读更多
apache-php 2022-10-03 约 928 字 预计阅读 2 分钟 apache-php 基础软件及apache 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 yum install wget -y # mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak # wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo yum makecache yum install epel-release \ yum install expat 阅读更多