secureCRT密钥登陆
1、为了试验的真实性,修改ssh远程登录的配置文件: vim /etc/ssh/sshd_config //修改以下参数: RSAAuthentication yes(去除注释状态) PubkeyAuthentication yes(去除注释状态) AuthorizedKeysFile .ssh/authorized_keys (去除注释状态) PasswordAuthentication n…
1、为了试验的真实性,修改ssh远程登录的配置文件: vim /etc/ssh/sshd_config //修改以下参数: RSAAuthentication yes(去除注释状态) PubkeyAuthentication yes(去除注释状态) AuthorizedKeysFile .ssh/authorized_keys (去除注释状态) PasswordAuthentication n…
Alt + ↓ / ↑ \downarrow / \uparrow ↓ / ↑ :将当前行内容,下移或者上移。 Shift + Ctrl + K :删除光标所在行。 Ctrl + \ : 横向重复打开当前编辑窗口。(目前只在mardown编辑窗口试过) Shift + Ctrl + Enter :在光标所在行之前,插入一个空行。 Ctrl + ]/[ : 缩进/回退制表符,相当于tab键。 Shi…
备份 1.手机电脑连接同一网络 2.手机登录QQ 3.电脑登录QQ 4.手机QQ–设置–通用–连天记录备份与迁移–备份聊天记录到电脑–打开电脑授权– 5.电脑QQ–选择好目录,点击开始备份 5.回到手机QQ–选择聊天记录–等待加载一会儿数据–勾选需要备份的消息记录–点击下一步 6.电脑QQ自动执行 7.去到刚刚选择的路径下 恢复 1.电脑QQ–最左下角–聊天记录备份与恢复 选择聊天即可。 版权声明…
1:调用代码如下: package com.rt.plm.document; import java.sql.Connection; import java.sql.DriverManager; public class test { public static void main(String[] args) { String driverName="com.microsoft.sqlserve…
I'm not professional in query writing, but wrote many from the time I began MySQL. Recently I noticed there is no need to type AS keyword in name aliasing. SELECT name AS n equals to SELECT name n How…
Domain Name: svipav.top Registry Domain ID: D20191009G10001G_20780770-top Registrar WHOIS Server: whois.namesilo.com Registrar URL: https://www.namesilo.com Updated Date: 2019-10-09T08:08:46Z Creation…
本文主要记录一下学习JavaScript的时候的学习笔记。 1.效果展示 2.源代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta n…
uni.chooseLocation({ success: function (res) { console.log('位置名称:' + res.name); console.log('详细地址:' + res.address); console.log('纬度:' + res.latitude); console.log('经度:' + res.longitude); } }); //打开第三方…
文章目录 一、非时间指标 1、机器字长:指机器一次能处理的二进制位数 2、总线宽度:数据总线一次能并行传送的最大信息的位数 3、主存容量与存储带宽 二、时间指标 1、主频f/时钟周期T,外频、倍频 2、CPI(Clock cycles Per Instruction) 3、MIPS(Million Instructions Per Second) 4、CPU时间 三、时间指标的应用思考 一、非时间…
系列文章目录 第一章:二分查找及大O表示法 第二章:选择排序 第三章:递归和快速排序 第四章:散列表 第五章:广度优先搜索 第六章:狄克斯特拉算法 文章目录 系列文章目录 前言 一、加权图 二、算法原理 三、算法实现 四、总结 前言 积累算法,记录学习 一、加权图 上一章介绍的图是没有权重的,即每一条边的意义一样,这样并不全面,因此引出一种加权图,这种图通常伴随的问题是 最快路径问题 比如对应下面…