码迷,mamicode.com
首页 >  
搜索关键字:12596 old lock file    ( 66212个结果
linux常用命令
1.ls命令 红色:表示hello.sh这个文件的所有者是root 绿色:表示hello.sh这个文件的所属组是root组。 分所有者和所有组是为了分配权限,rwxr-xr-x,中rwx的权限分配给所有者,即hello.sh这个文件,所有者root有读r,写w,执行x的权限,所属组root的权限是r ...
分类:系统相关   时间:2021-05-23 23:26:47    阅读次数:0
脱壳——UPX脱壳原理(脱壳helloworld)
脱壳——UPX脱壳原理 脱壳步骤 1 找到OEP 2 dump(导出)内存文件 3 修复 1 找到OEP 1 程序运行先从壳代码运行,壳代码执行完之后会跳转到真正的OEP,也就是是说第一步,首先要找到真正的OEP 如何找到OEP 大部分情况下,壳代码会在一个单独的区段里面,壳代码执行完一定会跳转到原 ...
分类:其他好文   时间:2021-05-23 23:12:06    阅读次数:0
ssh登录基于key验证
ssh基于key验证 1,在客户端生成公钥私钥对并将公钥拷到要连接的服务器上,验证是否成功 [root@localhost ~]# ssh-keygen Generating public/private rsa key pair. Enter file in which to save the k ...
分类:其他好文   时间:2021-05-23 22:59:40    阅读次数:0
Eclipse使用
关于Ecpilse使用 配置 选用JavaEE透视图,而非Java透视图 编码 UTF-8:Window-->prefrences-->General >Workspace >Text file encoding >Other -->UTF-8 字体调节:Window-->prefrences--> ...
分类:系统相关   时间:2021-05-23 22:58:22    阅读次数:0
Lock锁
Lock锁 公平锁:十分公平:可以先来后到 非公平锁:十分不公平:可以插队 (默认) public class Test02 { public static void main(String[] args) { //并发;多线程操作同一个资源类,把资源类丢入线程 Ticket1 ticket = n ...
分类:其他好文   时间:2021-05-20 17:50:58    阅读次数:0
golang 测试用例编写
前言 go的测试用例一般分两种 单元测试:主要测试代码可运行正确行,相当于运行一遍编写代码 基准测试:主要是对性能的测试 gotest 的变量 test.short : 一个快速测试的标记,在测试用例中可以使用 testing.Short() 来绕开一些测试 test.outputdir : 输出目 ...
分类:其他好文   时间:2021-05-04 16:32:30    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
Python----OS 文件目录处理
import os # os.mkdir("n1") # 创建目录 # 创建文件 # with open('1.txt',mode='w') as file: # file.write('11111') # os.mknod("n1.txt") # 创建文件,windows上面不支持,linux中支 ...
分类:编程语言   时间:2021-05-04 15:43:42    阅读次数:0
linux c++(makefile)
makefile makefile|Makefile 目标:依赖 tab键 规则命令 版本一 app:main.c add.c gcc -o app -I./include main.c add.c 版本二 app: main.o add.o gcc -o app -I./include main. ...
分类:编程语言   时间:2021-05-04 15:41:38    阅读次数:0
常用Windows 快捷键
windows 快捷键 (目录) 打开 cmd 当前目录下打开cmd:Windows 文件资源管理器路径栏中输入 cmd 当前目录下打开cmd:在文件夹中,按shift键,点击右键,选择在此处打开cmd user目录下:Windows+r,然后输入cmd 另外,在文件上shift+右键会多出来一个 ...
分类:Windows程序   时间:2021-05-04 15:37:05    阅读次数:0
66212条   上一页 1 ... 39 40 41 42 43 ... 6622 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!