上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 58 下一页
摘要: http://blog.csdn.net/Timsley/article/details/50742755 阅读全文
posted @ 2018-01-12 21:01 酸奶加绿茶 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 一、docker环境支持(Docker、DockerCompose) 安装docker # 安装必要的一些系统工具 sudo apt-get update sudo apt-get -y install apt-transport-https ca-certificates curl softwar 阅读全文
posted @ 2018-01-11 18:27 酸奶加绿茶 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 1、vcpu vcpu就是虚拟cpu,一个物理cpu通过一定的计算公式可以转换成多个vcpu。系统可用的vcpu(逻辑处理器)=Socket数(CPU个数)*Core数(内核)*Thread数(超线程) 复制代码 # 总核数 = 物理CPU个数 X 每颗物理CPU的核数 # 总逻辑CPU数 = 物理 阅读全文
posted @ 2018-01-09 15:49 酸奶加绿茶 阅读(430) 评论(0) 推荐(0) 编辑
摘要: uniq; report or omit repeated lines omit(省略; 遗漏; 删掉;) 把重复的行输出或省略 usage:uniq file uniq -c file -c count 把重复的行数打印出来 uniq -d file -d repeated 只打印重复的行 阅读全文
posted @ 2018-01-09 15:44 酸奶加绿茶 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1.cut remove sections from each line of files (把每行中符合条件的一部分拿出来) usage: cut [-bn] [file] 或 cut [-c] [file] 或 cut [-df] [file] -b 字节分割 -c 字符分割 -d 自定义分割符 阅读全文
posted @ 2018-01-09 15:31 酸奶加绿茶 阅读(274) 评论(0) 推荐(0) 编辑
摘要: ''' @author :Eric-chen @contact:809512722@qq.com @time :2018/1/3 17:55 @desc :通过爬取http://movie.douban.com/top250/得到豆瓣Top 250的电影,并输出到文件movies.txt ''' import codecs import requests from bs4 import... 阅读全文
posted @ 2018-01-03 17:57 酸奶加绿茶 阅读(2296) 评论(0) 推荐(0) 编辑
摘要: 建表时的参数: http://blog.itpub.net/17203031/viewspace-688011/ 阅读全文
posted @ 2018-01-03 10:10 酸奶加绿茶 阅读(3735) 评论(0) 推荐(0) 编辑
摘要: 1.线性代数 https://www.bilibili.com/video/av12712432/?from=search&seid=287656763320746857#page=3 阅读全文
posted @ 2017-12-28 17:14 酸奶加绿茶 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1,默认情况下,oracle的日志文件记录在$ORACLE/rdbms/log目录下 [oracle@oracle log]$ pwd /home/oracle/oracle/product/11.2.0/db_1/rdbms/log 日志文件为(alert_<ORACLE_SID>.log): [ 阅读全文
posted @ 2017-12-27 15:51 酸奶加绿茶 阅读(27429) 评论(0) 推荐(0) 编辑
摘要: 1.set linesize 100 等价于 set lines 100 2.col XX format a30 等价于 col XX for a30 3.col XXX format 9,999,999,999 4.set heading off 表头不显示 5.清屏 clear scr clea 阅读全文
posted @ 2017-12-27 15:49 酸奶加绿茶 阅读(531) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 58 下一页