在Ubuntu虚拟机中,模拟arm开法环境的话,一般是需要交叉编译工具链和qemu来配合使用。安装qemu过程中遇到的问题,我将记录下来。 sudo apt-get install qemu 处理办法便是,依照这个链接进行。如果你能成功那自然好。但是我并没有成功,安装aptitude的时候出现了这个 ...
分类:
系统相关 时间:
2021-07-28 21:25:33
阅读次数:
0
1.定义返回码枚举 1 public interface ResultCode { 2 public static Integer SUCCESS = 20000; 3 public static Integer ERROR = 20001; 4 } 2. 创建结果类 1 @Data 2 publi ...
分类:
其他好文 时间:
2021-07-27 17:30:58
阅读次数:
0
os模块: os.system os.system("cat/cmd等...") os.popen print os.popen("adb shell ls ../aa.png").read() >>> 输出:aa.png 爆出包含文件 {{%20config.__class__.__init__. ...
分类:
编程语言 时间:
2021-07-26 16:40:48
阅读次数:
0
进去od发现 push call 有壳 脱完 第一个打开有个弹窗 直接 bp MessageBoxA 下断点 找到关键地方下个断点重新运行分析 判断了当前文件夹是否有reg.dat 文件 接着看他们的窗体事件 应该又是几个失焦事件 来算密码把ok解开 定位看1第一个事件代码 这段代码是吧 输入值转成 ...
分类:
其他好文 时间:
2021-07-26 16:25:29
阅读次数:
0
你需要在集群内每个节点上安装一个 容器运行时 以使 Pod 可以运行在上面。 在 Linux 上结合 Kubernetes 使用的几种通用容器运行时: containerd CRI-O Docker Cgroup 驱动程序 控制组用来约束分配给进程的资源。 当某个 Linux 系统发行版使用 sys ...
分类:
其他好文 时间:
2021-07-22 17:32:40
阅读次数:
0
using UnityEngine; using System.Collections; public class AudioPlay : MonoBehaviour { public static AudioPlay Instance; public AudioClip[] FuChuAudio; ...
分类:
编程语言 时间:
2021-07-21 17:40:35
阅读次数:
0
###一.sshd简介 sshd(secure shell)服务使用ssh协议远程开启其他主机shell的服务。首先需要打开sshd 服务 ###二.sshd服务状态调整 systemctl status sshd 查看服务状态 systemctl start sshd 打开服务 systemctl ...
分类:
系统相关 时间:
2021-07-21 17:39:31
阅读次数:
0
本文主要介绍 C# 命名空间 System.Buffers.Binary 中的一些二进制处理类和 Span 的简单使用方法,这些二进制处理类型是上层应用处理二进制数据的基础,掌握这些类型后,我们可以很容易地处理类型和二进制数据之间的转换以及提高程序性能。 C# 原语类型 按照内存分配来区分,C# 有 ...
分类:
其他好文 时间:
2021-07-21 17:35:03
阅读次数:
0
git commit -m "hello world" Commit message 的格式 每次提交,Commit message 都包括三个部分:Header,Body 和 Footer。 <type>(<scope>): <subject> // 空一行 <body> // 空一行 <foot ...
分类:
其他好文 时间:
2021-07-21 17:32:24
阅读次数:
0
import com.logistics.channel.constant.BizException;import com.logistics.channel.tool.CommonErrorEnum;import com.logistics.channel.tool.ResultBody;impo ...
分类:
其他好文 时间:
2021-07-21 17:30:16
阅读次数:
0