Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2401117
  • 博文数量: 328
  • 博客积分: 4302
  • 博客等级: 上校
  • 技术积分: 5486
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-01 11:14
个人简介

悲剧,绝对的悲剧,悲剧中的悲剧。

文章分类

全部博文(328)

文章存档

2017年(6)

2016年(18)

2015年(28)

2014年(73)

2013年(62)

2012年(58)

2011年(55)

2010年(28)

发布时间:2016-02-01 04:23:57

Kerberos协议:Kerberos协议主要用于计算机网络的身份鉴别(Authentication), 其特点是用户只需输入一次身份验证信息就可以凭借此验证获得的票据(ticket-granting ticket)访问多个服务,即SSO(Single Sign On)。由于在每个Client和Service之间建立了共享密钥,使得该协议具有相当的安全性。条件先来看看Kerberos.........【阅读全文】

阅读(7970) | 评论(0) | 转发(1)

发布时间:2016-01-29 20:15:51

MacTab and window shortcutsShortcutAction?+NOpens a new window.?+TOpens a new tab..........【阅读全文】

阅读(1356) | 评论(0) | 转发(0)

发布时间:2016-01-28 21:55:35

SSH (or Secure Shell) is a great service to enable on your Mac at home or work. This useful tool not only enables the ability to remotely access the command line interface of your Mac, but also to remotely access your files through a secure FTP (SFTP) connection, which gives you the ability to .........【阅读全文】

阅读(1520) | 评论(0) | 转发(0)

发布时间:2016-01-28 19:16:20

Git SetupI would recommend editing your ~/.gitignore_global file and adding the following lines (to eliminate common system-created files while working in your Git repositories):*~.*.swp.DS_StoreAdd the following to your ~/.gitconfig file:[user]    name = <You.........【阅读全文】

阅读(1654) | 评论(0) | 转发(0)

发布时间:2015-12-15 13:21:48

Python 中的 paramiko模块是一个非常方便好用的连接远端 ssh 通道的方法。使用起来也很方便:import paramiko ssh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect('localhost',username=name,password=pw) 实践中,遇到.........【阅读全文】

阅读(28007) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册