关键信息 系统环境 | 选项 | 参数 | | | | | 系统 | | | 内核 | | | 替换内核 | | | 磁盘大小 | | 编译环境 | 选项 | 安装方式 | | | | | | 在线安装 | | | 在线安装 | | | 在线安装 | | | 下载压缩包离线安装 | 网盘下载地址: ...
分类:
系统相关 时间:
2020-05-17 19:13:39
阅读次数:
96
1.记得选择使用GPU # 授权绑定Google Drive !apt-get install -y -qq software-properties-common python-software-properties module-init-tools !add-apt-repository -y ...
分类:
其他好文 时间:
2020-05-17 01:37:32
阅读次数:
143
在装vim go插件遇到的一大堆缺包问题,尝试GoInstallBinaries时候一大堆request timeout, dial tcp 172.217.24.17:443: i/o timeout,其实就是go get被墙了。 网上大多都是叫你去 git clone https://githu ...
分类:
系统相关 时间:
2020-05-17 01:31:36
阅读次数:
97
下载了最新版的commons-beanutils-1.9.3.jar http://commons.apache.org/proper/commons-beanutils/download_beanutils.cgi ...
分类:
Web程序 时间:
2020-05-16 20:32:59
阅读次数:
127
引言 Nginx 作为一个高性能的 HTTP 和反向代理 Web 服务器。如今很多项目都会选择 Nginx 作为反向代理服务器,但是避免不了在使用的过程中,会遇到各种各样的问题。因此 echo nginx module 专门针对 Nginx 的调试模块诞生了,下面就简单的介绍一下它的安装与使用方法。 ...
分类:
其他好文 时间:
2020-05-16 18:44:23
阅读次数:
78
linkis: links/conf/conf.sh deployUser=hadoop ### The install home path of LinkisLINKIS_INSTALL_HOME=/home/hadoop/Install/Linkis #Must provided WORKSPA ...
分类:
Web程序 时间:
2020-05-16 17:13:40
阅读次数:
123
今天在用yarn安装vue-cli时出现了错误../vue-hackernews-2.0> yarnyarn install v1.12.3[1/5] Validating package.json...[2/5] Resolving packages...[3/5] Fetching packag ...
分类:
其他好文 时间:
2020-05-16 16:23:35
阅读次数:
452
Q:今天有人问我lsof是怎么实现的? 然后当时在想要是我应该怎么实现? 通过每个进程的file_table list 出来!!! 实际上怎么出来的呢??strace lsof 结果可知 就是通过读取 /proc/pid/fdinfo 。。。。。。。。。。。。。。平时会用到proc/pid/ 却没有 ...
分类:
其他好文 时间:
2020-05-16 00:22:10
阅读次数:
75
短训练序列 Verilog代码 module short_generator( input wire FFT_CLK, input wire RESET, input wire SHORT_ACK, output reg [7:0] SHORT_RE, output reg [7:0] SHORT_ ...
分类:
其他好文 时间:
2020-05-15 23:00:30
阅读次数:
120
[TOC] 模块 为了编写可维护的代码,我们把很多函数分组,分别放到不同的文件里,这样,每个文件包含的代码就相对较少,很多编程语言都采用这种组织代码的方式。在Python中,一个.py文件就称之为一个模块(Module)。 使用模块有什么好处? 当一个模块编写完毕,就可以被其他地方引用。我们在编写程 ...
分类:
编程语言 时间:
2020-05-15 14:03:22
阅读次数:
65