上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 77 下一页
摘要: 1.背景 ubuntu18.04 64bit 2.安装方法如下: 2.1.获取源码 curl -o wget-1.20.tar.gz ftp://ftp.gnu.org/gnu/wget/wget-1.20.tar.gz 2.2.解压源码 tar xvf wget-1.20.tar.gz 2.3.切 阅读全文
posted @ 2018-12-16 17:00 Jello 阅读(3451) 评论(0) 推荐(0)
摘要: 答:K-邻近算法,英文为K-nearest neighbor(KNN),就是计算要测试对象与k个样本对象之间的距离,通过距离的大小来对测试对象进行分类 阅读全文
posted @ 2018-12-15 22:16 Jello 阅读(272) 评论(0) 推荐(0)
摘要: 答: step 1: 以最高权限同步所有的缓存到磁盘中 sync sync step2: 执行以下命令指示内核对内存进行调整 echo 3 > /proc/sys/vm/drop_caches 解析:3表示清空所有缓存(pagecache、dentries 和 inodes) 2表示清空 dentr 阅读全文
posted @ 2018-12-15 18:08 Jello 阅读(5707) 评论(0) 推荐(0)
摘要: 答:执行以下命令即可,生成的密钥对在~/.ssh下,会生成两个文件,一个id_rsa和id_rsa.pub,前者是私钥,后者是公钥 ssh-keygen -t rsa -C "your_email@example.com" (红色部分记得替换成自己的噢) 阅读全文
posted @ 2018-12-15 11:59 Jello 阅读(5254) 评论(0) 推荐(0)
摘要: 答:./script/diff > defconfig 那么如何恢复添加的配置项呢? step 1:cat defconfig>>.config step 2:make defconfig 阅读全文
posted @ 2018-12-14 18:42 Jello 阅读(554) 评论(0) 推荐(0)
摘要: 答:使用curl的-u选项,使用方法如下 阅读全文
posted @ 2018-12-12 10:21 Jello 阅读(548) 评论(0) 推荐(0)
摘要: 答: sudo apt-get install python-pip (如果没有安装pip的话,需要这一操作) pip install pycrypto 阅读全文
posted @ 2018-12-11 18:10 Jello 阅读(5810) 评论(1) 推荐(0)
摘要: 答:1.可以重新定义同名函数或变量而编译时不报错 阅读全文
posted @ 2018-12-11 16:33 Jello 阅读(571) 评论(0) 推荐(0)
摘要: 1.完整的错误信息如下: E: Release file for http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease is not valid yet (invalid for another 11d 10min 50s 阅读全文
posted @ 2018-12-10 15:56 Jello 阅读(7716) 评论(0) 推荐(0)
摘要: 1.安装openssh-server sudo apt-get install openssh-server 2.启动ssh服务 sudo service ssh start 3.检测是否启动了ssh服务 ps aux|grep sshd 4. 自行编辑/etc/ssh/sshd_config配置o 阅读全文
posted @ 2018-12-10 14:55 Jello 阅读(4849) 评论(0) 推荐(0)
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 77 下一页