码迷,mamicode.com
首页 >  
搜索关键字:arch    ( 7043个结果
linux下安装mysql
#CentOS7的yum源中默认好像是没有mysql 1.1 下载mysql的repo源 cd /usr/local wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 1.2 安装mysql-community-r ...
分类:数据库   时间:2021-06-03 17:43:34    阅读次数:0
Docker常用安装
经过前六章的学习,我们对docker有了比较深入的认识 这章主要从一下几方面讲: 总体步骤: 搜索镜像 拉取镜像 查看镜像 启动镜像 停止容器 移除容器 安装tomcat: docker hub 上面查找tomcat镜像: docker search tomcat 从docker hub上拉取tom ...
分类:其他好文   时间:2021-06-02 18:53:15    阅读次数:0
初步动态分析
初步动态分析 1.静态分析确定的线索 Lab01-01.dll kerne132.dll 2.动态分析对上述线索的验证分析过程 Ⅰ.基础动态分析 ①Process Explorer 没有子进程 ②Process Monitor 规则设置 根据应用程序全名,只要寻找其TCP连接,打开文件,读文件,写文 ...
分类:其他好文   时间:2021-06-02 16:08:21    阅读次数:0
centos 内核更新到5.4
下载内核源rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm安装最新版本内核yum --enablerepo=elrepo-kernel install -y kernel-lt查看可用内核 cat >u ...
分类:其他好文   时间:2021-06-02 14:26:17    阅读次数:0
Oracle基本操作
--序列查询 SELECT 序列名.CURRVAL FROM dual; SELECT 序列名.NEXTVAL FROM DUAL; --查询表字段 SELECT column_name FROM user_tab_columns where table_name = upper('表名'); -- ...
分类:数据库   时间:2021-06-02 14:09:03    阅读次数:0
hadoop实践
hadoop 1.0 1. 创建用户hadoop 2. 下载: curl -o hadoop-1.2.1-bin.tar.gz https://archive.apache.org/dist/hadoop/common/hadoop-1.2.1/hadoop-1.2.1-bin.tar.gz 3. ...
分类:其他好文   时间:2021-06-02 14:05:53    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:48:33    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:43:42    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 13:37:21    阅读次数:0
MATLAB 统计矩阵中某行(列)出现的次数
统计矩阵center中重复的行的个数: [C,~,n]=unique(center,'rows'); s=sum(bsxfun(@eq,n,unique(n)')); unique函数的作用是去除掉重复的行,C为center去掉重复行之后剩余的矩阵,s为行向量,s某一位置的值代表C对应行在cente ...
分类:其他好文   时间:2021-06-02 13:18:02    阅读次数:0
7043条   上一页 1 2 3 4 5 ... 705 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!