ICode9

精准搜索请尝试: 精确搜索
  • Hadoop2020-11-09 19:32:47

    [atguigu@hadoop101 hadoop-2.7.2]$ ll 总用量 52 drwxr-xr-x. 2 atguigu atguigu 4096 5月 22 2017 bin drwxr-xr-x. 3 atguigu atguigu 4096 5月 22 2017 etc drwxr-xr-x. 2 atguigu atguigu 4096 5月 22 2017 include drwxr-xr-x. 3 atguigu atguigu 4096 5月 22 2017

  • 权限2020-10-20 18:33:29

    chown 更改权限 [root@yxlll ~]# ll -d /root/dir drwxr-xr-x 2 root root 4096 Oct 19 14:51 /root/dir [root@yxlll ~]# chown yxlaa1 /root/dir [root@yxlll ~]# ll -d /root/dir drwxr-xr-x 2 yxlaa1 root 4096 Oct 19 14:51 /root/dir [root@yxlll ~]# chown .dba /root/dir

  • Alexnet网络2020-10-19 08:33:47

    Alexne t网络 从这个图我们可以很清楚地看到Alexnet的整个网络结构是由5个卷积层和3个全连接层组成的,深度总共8层。图片上已经有一个较清楚的层与层直接转换的过程,那么接下来就对各层做个简单的解读。 conv1 输入Input的图像规格: 224X224X3(RGB图像),实际上会经过预处理变为227X22

  • linux的命令与操作2020-10-18 21:02:13

    1.poweroff命令 系统关机和重启   poweroff命令用来关闭计算机操作系统并且切断系统电源。   语法 poweroff(选项)   选项 -n:关闭操作系统时不执行sync操作;   -w:不真正关闭操作系统,仅在日志文件“/var/log/wtmp”中;   -d:关闭操作系统时,不将操作写入日志文件“/var/log/wtmp”

  • sysctl系统优化参数2020-08-25 10:50:26

    内核参数优化net.core.somaxconn = 20480net.core.rmem_default = 262144net.core.wmem_default = 262144net.core.rmem_max = 16777216net.core.wmem_max = 16777216net.ipv4.tcp_rmem = 4096 4096 16777216net.ipv4.tcp_wmem = 4096 4096 16777216net.ipv4.tcp_mem = 786432 2097

  • elk启动常见错误2020-06-12 15:07:01

    1、max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]   每个进程最大同时打开文件数太小,可通过下面2个命令查看当前数量 ulimit -Hn ulimit -Sn   修改/etc/security/limits.conf文件,增加配置,用户退出后重新登录生效 *

  • CV 第九课 CNN框架 全连接层2020-05-27 16:55:49

    以VGG-16为例,对224x224x3的输入,最后一层卷积可得输出为7x7x512,如后层是一层含4096个神经元的FC,则可用卷积核为7x7x512x4096的全局卷积来实现这一全连接运算过程,其中该卷积核参数如下: “filter size = 7, padding = 0, stride = 1, D_in = 512, D_out = 4096” 经过此卷积操作后

  • composer psr4自动加载,引入适用第三方开源项目2020-04-23 12:01:23

    [root@izbp18dv3a3metugyd02qxz syhuo.net]# vim composer.json { "require" : { "elasticsearch/elasticsearch": "~2.0", "qcloud/cos-sdk-v5": ">=1.0", "aliyuncs/oss-sdk-php&q

  • hadoop编译2020-03-31 15:02:46

    1.hadoop源代码下载 [root@testdb sourcecode]# pwd /opt/sourcecode [root@testdb sourcecode]# ll total 33756 -rw-r--r--. 1 root root 34523353 Aug 20 12:14 hadoop-2.8.1-src.tar.gz [root@testdb sourcecode]# tar -xzvf hadoop-2.8.1-src.tar.gz [root@testdb sourcecode

  • 部署k8s所需的docker环境遇到问题总结2020-03-23 17:00:18

    部署采用的是阿里云的一键部署脚本:curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun创建所需目录:mkdir -p /etc/docker /data/docker然后修改docker的配置文件:/etc/docker/daemon.json {   "graph": "/data/docker",   "storage-driver": "ov

  • elasticsearch启动常见错误2020-03-16 10:06:23

    elasticsearch启动常见错误 Elasticsearch访问 IP:9200 问题   问题出现环境,OS版本:CentOS-7-x86_64-Minimal-1708;ES版本:elasticsearch-6.2.2。 1、max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]   每个进程最大同时打开文

  • Docker入门 安装Tomcat以及报404解决方案2020-02-29 11:57:05

      时间:2020/1/18 17:34:09 浏览:24 来源:互联网 记录简单的在Docker 上安装Tomcat 首先我是在云服务器上(Centos系统)安装的Docker,我们需要在https://hub.docker.com/ 上查找Tomcat镜像 [root@VM_0_17_centos ~]# docker pull tomcat 拉取完官方的Tomcat的镜像后,我们可以

  • python subprocess2020-02-25 09:00:28

    原文地址:https://www.cnblogs.com/zhou2019/p/10582716.html subprocess模块 subprocess是Python 2.4中新增的一个模块,它允许你生成新的进程,连接到它们的 input/output/error 管道,并获取它们的返回(状态)码。这个模块的目的在于替换几个旧的模块和方法,如: os.system os.spawn* 1.

  • idtcp实现文件下载和上传2020-01-09 09:03:36

    unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, StdCtrls; type TForm1 = class(TForm) btnReceive: TButton; IdTCPCl

  • 进程间通信效率测试2019-10-05 09:52:07

    来源 Type These are kinds of IPC in Linux as the following: type feature pipe unnamed pipe fifo named pipe socketpair unnamed unix domain socket unix domain socket named unix domain socket TCP remote domain socket UDP loopback interface

  • AtcoderABC-142E-GetEverything2019-09-29 19:57:46

         典型的数位DP #include<bits/stdc++.h>using namespace std;int n, m, a, b, c, dp[4096];int main() { cin >> n >> m; int s = (1 << n); dp[0] = 0; for(int i = 1; i < s; i++) dp[i] = 1e9; while(m--) { cin >>

  • 计算机系统与云计算12019-09-04 11:03:56

    1.有CPU和内存就是计算机 2.固态硬盘SSD 持久存储 3.src是源代码 4.文件是被命名的二进制的串 5.控制台上写东西如printf 6.scanf从标准输入(键盘)来读,标准输出(显示器) 7.stdin/stdout  即stdio 8.出错时 stderror 9.r w x 可读 可写 可执行 10.第一位是d的表示是目录(directory) 一组

  • cenos7创建删除软连接ln -s2019-08-19 10:38:42

    创建软链接 ln -s [源文件或目录] [目标文件或目录] rm –rf 软链接名称(请注意不要在后面加”/” 例: [root@master aaa]# ll total 12 drwxr-xr-x 2 root root 4096 Aug 19 10:06 bb drwxr-xr-x 2 root root 4096 Aug 19 10:00 cc drwxr-xr-x 2 root root 4096 Aug 19 0

  • hotspot的内存对齐2019-08-09 09:03:33

      上界对齐 #define ALIGN(x,a) (((x)+(a)-1)&~(a-1))  就是以a为上界对齐的意思。举个例子4k页面边界的例子,即a=4096:如果x = 3888;那么以上界对齐,执行结果就是4096。如果x = 4096;结果是4096.如果x = 4222; 则结果为8192.  下界对齐 #define ALIGN(x,a) ((x)&~(a-1)) 就是以a为

  • springboot feign too many bytes written executing POST2019-08-06 18:01:10

    解決办法: feign.compression.request.min-request-size=4096 默认为2048,设置大一点。参数字节ign.compression.request.min-request-size=4096   默认为2048,设置大一点。参数大小字节超出就会报错  

  • 程序员的浪漫:调皮弹窗表白代码,赶紧拿去试试吧2019-08-05 22:35:35

    七夕快到了,在抖音看那些大手子用代码撩自己喜欢的小姐姐是不是心痒难耐,愤恨不已,是不是也想撩一撩自己喜欢的小姐姐,那就来试试吧! 其实这用的只是很基础的VB脚本代码就能做出来了,而这次小编专门收集了一些很有意思的代码分享给大家。有各种代码哦,表白,恶搞的都有,具体操作很简

  • P1896 [SCOI2005]互不侵犯2019-07-28 23:51:54

    ______________________________________________________________ 和上一题差不多,注意初始化与判断即可 #include<bits/stdc++.h>using namespace std;long long int n,kk,tot,can[4096],dp[11][1096][121],cnt[4096];long long ans;int main(){ cin>>n>>kk; for(in

  • pwnable.kr第二题collision2019-07-23 17:53:21

    1 col@prowl:~$ ls -al 2 total 36 3 drwxr-x--- 5 root col 4096 Oct 23 2016 . 4 drwxr-xr-x 114 root root 4096 May 19 15:59 .. 5 d--------- 2 root root 4096 Jun 12 2014 .bash_history 6 -r-sr-x--- 1 col_pwn col 7341 Jun 11 201

  • strace命令的应用——执行df命令卡死2019-07-19 15:58:06

      在1台CentOS机器执行“ls”、“df”命令,都会卡死。时间久一点,“ctrl”+“c”都不一定能退出,只能关掉远程连接,重新连接登录。  执行命令:[root@iZ23l20815kZ ~]# strace df -h execve("/bin/df", ["df", "-h"], [/* 24 vars */]) = 0 brk(0)           

  • oracle 在已有实力上创建用户 并导入数据2019-07-14 23:02:59

    原文链接:http://www.cnblogs.com/itcx/p/4096436.html oracle@hpws:~$ cd /opt/ora12c/oradata/ oracle@hpws:/opt/ora12c/oradata$ ll total 12 drwxr-x--- 3 oracle oinstall 4096 6?.25 17:55 ./ drwxr-xr-x 11 oracle oinstall 4096 6?.26 08:31

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有