• 2024-08-25[英语单词] feedback
    Embeddedcomputersandnetworksmonitorandcontrolthephysicalprocesses,usuallywithfeedbackloopswherephysicalprocessesaffectcomputationsandviceversa.https://www2.eecs.berkeley.edu/Pubs/TechRpts/2007/EECS-2007-72.pdffeedback的普遍意思是,
  • 2024-08-19CSCI 4210 — Operating Systems
    CSCI 4210 — Operating SystemsSimulation Project Part II (document version 1.0)Processes and CPU SchedulingOverview•  This assignment is due in Submitty by 11:59PM EST on Thursday,August 15, 2024• Thisprojectistobecom
  • 2024-08-14操作系统-进程创建、同步与锁、通信、调度算法-学习笔记
    1.进程的基础概念1.1进程是什么?定义:进程是操作系统管理的一个程序实例。它包含程序代码及其当前活动的状态。每个进程有自己的内存地址空间,拥有独立的栈、堆、全局变量等。操作系统通过进程来分配资源(如CPU时间、内存等)并管理任务的执行。进程vs程序:程序:静态的代
  • 2024-07-29Pentester Academy -Windows API Exploitation Recipes: Processes, Tokens and Memory RW 2017版本
    早年为PentesterAcademy(https://www.pentesteracademy.com/),如今为INE(https://ine.com/)002安装VS社区版https://visualstudio.microsoft.com/zh-hans/003processlistingapi正在运行的是什么:服务,AV,HIDS/IPS等其他attack开始的点:进程注入,内存dump/修改,TokenSt
  • 2024-07-12GSOE9340 – Life Cycle Engineering
    GSOE9340– Life Cycle EngineeringAssignmentTwo-Term 2-2024Assignment weight: 30%Purpose: Thepurposeof thisassignmentistodevelopanunderstanding of the second step of operationalizing the framework of LCE,  which  is  
  • 2024-07-093.1 nginx全局块和events块配置
    1example#运行Nginx进程的用户usernginx;worker_processes8;worker_cpu_affinityauto;#定义存储某类型的全局错误的日志位置#nginx日志分为很多级别[debug|info|notice|warn|error|crit|alert|emerg]error_log/var/log/nginx/error.logerror;
  • 2024-06-08php-status监控流程
    1.开启php的状态页功能#基于php-fpm进程做的实验yuminstallphp-fpm-y修改配置文件,开启php,status功能即可,打开如下参数即可要求你访问php状态页面的入口就是/status_php[root@web-7~]#grep'status_'/etc/php-fpm.d/www.confpm.status_path=/status_phpphp-fpm
  • 2024-04-30较为平滑的 Linux ps 命令入门
    初衷一些无关紧要的Balabala。在国内外的各类网站上,关于Linux的几乎每一条命令都可以找到很多介绍,其中自然有许多得到了广泛认可的课程和文档。在具有一定基础知识的前提下直接参考这些有价值的资料无疑是具有极高效率的做法,个人写一条介绍命令用法的博客实在是浪费自己的时
  • 2024-04-11Understanding the linux kernel Chapter 7 Process Scheduling
    SchedulingPolicyLinuxschedulingisbasedonthetimesharingtechnique:severalprocessesrunin“timemultiplexing”becausetheCPUtimeisdividedintoslices(called,quantum),oneforeachrunnableprocess.Analternativeclassificationdistinguis
  • 2024-03-19MySQL 术语 : processes, threads, connections
    MySQL是单进程、多线程架构。通常说的连接(connections)是指TCP/IP连接。每个连接对应一个专用的线程。但是这些线程有时候被叫做进程,有时候被当作连接。这也是为什么processes,threads,connections三者会让人产生混淆的原因。MySQL确实是一个单进程服务器。它是多线程的,因为
  • 2024-02-03【优先级调度算法:抢占式与非抢占式】
    (文章目录)前言在操作系统中,进程调度决定了哪个进程应该获得CPU的使用权,以便能够执行。而优先级调度算法就是其中之一,它通过为每个进程分配一个优先级来决定进程的执行顺序。什么是优先级调度算法?优先级调度算法是一种用于确定哪个进程将在CPU上执行的方法。每个进程都会被分配
  • 2024-01-24Understanding the linux kernel Chapter3 Processes
    ProcessDescriptorHowProcessesAreOrganizedtheprocessinstate:TASK_RUNNINGorganizedinrunqueuelistgroupTASK_STROPPED\EXIT_ZOMBIE\EXIT_DEADThereisnoneedtogroupprocessesinanyofthesethreestates,becausestopped,zombie,andd
  • 2024-01-24Operation system note
    KeywordsContextSwitchTime  bigparts: CommunicationbetweenaDeviceandtheCPU •MethodOne:PollingorHand-shaking•MethodTwo:Interrupts•MethodThree:DMA–DirectMemoryAccess  MemoryManagementAmemorymanagementunitorMMU
  • 2024-01-20linux修改max user processes limits
    突破ulimit限制修改普通用户单个用户可同时运行的最大进程数(默认为4096)[root@xxxdevops]#cat/etc/security/limits.d/20-nproc.conf#Defaultlimitfornumberofuser'sprocessestoprevent#accidentalforkbombs.#Seerhbz#432903forreasoning.*
  • 2024-01-12快速查看显卡使用情况和占用用户
    这是一个转载博客转载于:https://zinglix.xyz/2021/11/17/gpu-user/ pipinstall xmltodictimportsubprocessimportxmltodict,pwd,jsonUID=1EUID=2defowner(pid):"""ReturnusernameofUIDofprocesspid"""forlnino
  • 2023-12-22linux -bash: fork: retry: No child processes 解决
    Text.Text.Text.Text.[ubuntu@iZj6cc8f0831kkdffvlhjhZtools]$date-bash:fork:retry:Nochildprocesses-bash:fork:retry:Nochildprocesses-bash:fork:retry:NochildprocessesFriDec2209:56:49CST2023corefilesize(blocks,-c)
  • 2023-11-30plsql调试存储过程卡住的原因以及处理
    用PLSQL调试存储过程的时候,经常会遇到这个的情况,点调试后,继续点单步都是灰色,想停下来,但是取消也要点很多次才能取消掉。就像下面的情况:   一直以为是个BUG,直到最近有人告诉我了真相。出现这个问题的原因,是因为  1:调试存储过程要发起两个会话(运行、调试)  2:我们plsq
  • 2023-11-19THM-核心Windows进程(Core Windows Processes)
    任务管理器使用任务管理器可以管理系统中常见的进程,以及进程的相关信息右键其中的名称或者PID等列选择列,可以选择一些平常看不到的信息,例如路径名称、命令行系统自带的任务管理器的功能是有限的,这里推荐使用方便查看的工具ProcessExplorer:https://learn.microsoft.com/e
  • 2023-11-09process-exporter 监控linux机器进程使用情况
    process-exporter监控linux机器进程使用情况背景前期一直想进行关于IP地址的来源和目的地的监控但是耗费了很多精力都没有搞定.感觉应该去偷师一下安全监控软件的使用方式.今天晚上再github上面漫无目的的进行exporter的查找依旧一无所获,但是找到了process-expor
  • 2023-11-09Recurrent Marked Temporal Point Processes: Embedding Event History to Vector
    目录概MotivationMarkedTemporalPointProcess代码DuN.,DaiH.,TrivediR.,UpadhyayU.,Gomez-RodriguzeM.andSongL.Recurrentmarkedtemporalpointprocesses:Embeddingeventhistorytovector.KDD,2016.概利用RNN学习强度函数\(\lambda^*\).在往下
  • 2023-11-09Temporal Point Processes
    目录TPPEvolutionarypointprocessesConditionalintensityfunction[\(t\)]Conditionalintensityfunction[\(t,\kappa\)]InferenceSimulationInverseMethodOgata’smodifiedthinningalgorithm例子RasmussenJ.G.Lecturenotes:Temporalpointprocessesandt
  • 2023-11-02操作系统实验——进程管理的算法实现
    前言笔者在大学下属的事业单位上班,最近去帮着带下操作系统的实验课,这里随手水点参考代码,欢迎各位领导老师莅临指正实验目标编写一个简单的进程调度器实验内容进程控制块(PCB)的定义与管理进程调度算法的实现进程创建、销毁和切换给定一批进程对比3-4种调度算法的时间(自选算
  • 2023-10-29常见问题解决 --- 安卓12关闭phantom processes killer杀后台功能
    1.adb连接成功后,执行adbdevices2.执行adbshell3.执行device_configset_sync_disabled_for_testspersistentdevice_configputactivity_managermax_phantom_processes2147483647settingsputglobalsettings_enable_monitor_phantom_procsfalse
  • 2023-10-16R语言和Python用泊松过程扩展:霍克斯过程Hawkes Processes分析比特币交易数据订单到达自激过程时间序列|附代码数据
    全文下载链接:http://tecdat.cn/?p=25880 最近我们被客户要求撰写关于泊松过程的研究报告,包括一些图形和统计输出。本文描述了一个模型,该模型解释了交易的聚集到达,并展示了如何将其应用于比特币交易数据。这是很有趣的,原因很多。例如,对于交易来说,能够预测在短期内是否有更多的买
  • 2023-10-08Zabbix监控PHP状态
    1.开启php的监控数据监控功能#使用部署了php-fpm的机器即可#yuminstallphp-fpm-y安装报错就是遇到了php版本冲突,卸载老版本,如:rpm-qa|grepphp71wrpm-e`rpm-qa|grepphp71w`#1.修改参数[root@web-7/etc/php-fpm.d]#grep'^pm.status'/etc/php-fpm.d/www.con