上一页 1 2 3 4 5 6 7 8 9 10 ··· 35 下一页
SSH原理与运用(二):远程操作与端口转发 作者:阮一峰 (Image credit: Tony Narlock) 七、远程操作 SSH不仅可以用于远程主机登录,还可以直接在远程主机上执行操作。 上一节的操作,就是一个例子: $ ssh user@host 'mkdir -p .ssh && cat Read More
posted @ 2016-09-02 18:13 godjob Views(233) Comments(0) Diggs(0)
SSH是每一台Linux电脑的标准配置。 随着Linux设备从电脑逐渐扩展到手机、外设和家用电器,SSH的使用范围也越来越广。不仅程序员离不开它,很多普通用户也每天使用。 SSH具备多种功能,可以用于很多场合。有些事情,没有它就是办不成。本文是我的学习笔记,总结和解释了SSH的常见用法,希望对大家有 Read More
posted @ 2016-09-02 15:59 godjob Views(154) Comments(0) Diggs(0)
密码学中,区块(Block)密码的工作模式(英语:mode of operation)允许使用同一个区块密码密钥对多于一块的数据进行加密,并保证其安全性。[1][2] 区块密码自身只能加密长度等于密码区块长度的单块数据,若要加密变长数据,则数据必须先被划分为一些单独的密码块。通常而言,最后一块数据也 Read More
posted @ 2016-09-01 22:59 godjob Views(4050) Comments(0) Diggs(0)
文件形式的邮件 #!/usr/bin/env python3 #coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header sender = '***' recei Read More
posted @ 2016-09-01 16:53 godjob Views(711) Comments(0) Diggs(0)
2. TCP keepalive overview In order to understand what TCP keepalive (which we will just call keepalive) does, you need do nothing more than read the n Read More
posted @ 2016-09-01 12:48 godjob Views(273) Comments(0) Diggs(0)
一、htop 简介 This is htop, an interactive process viewer for Linux. It is a text-mode application (for console or X terminals) and requires ncurses. Comp Read More
posted @ 2016-08-30 10:29 godjob Views(206) Comments(0) Diggs(0)
问题:我有个 Linux 进程运行在多核处理器系统上。怎样才能找出哪个 CPU 内核正在运行该进程? 当你在 多核 NUMA 处理器上运 行需要较高性能的 HPC(高性能计算)程序或非常消耗网络资源的程序时,CPU/memory 的亲和力是限度其发挥最大性能的重要因素之一。在同一 NUMA 节点上调 Read More
posted @ 2016-08-30 10:24 godjob Views(423) Comments(0) Diggs(0)
RTP协议分析 第1章. RTP概述 1.1. RTP是什么 RTP全名是Real-time Transport Protocol(实时传输协议)。它是IETF提出的一个标准,对应的RFC文档为RFC3550(RFC1889为其过期版本)。RFC3550不仅定义了RTP,而且定义了配套的相关协议RT Read More
posted @ 2016-08-28 11:12 godjob Views(529) Comments(0) Diggs(0)
完整的C/S架构的基于RTP/RTCP的H.264视频传输方案。此方案中,在服务器端和客户端分别进行了功能模块设计。 服务器端:RTP封装模块主要是对H.264码流进行打包封装;RTCP分析模块负责产牛和发送RTCP包并分析接收到的RTCP包;QoS反馈控制模块则根据RR报文反馈信息动态的对发送速率 Read More
posted @ 2016-08-28 10:38 godjob Views(3865) Comments(0) Diggs(0)
目录 [hide] 1 RTSP消息格式 2 简单的rtsp交互过程 3 rtsp中常用方法 3.1 OPTION 3.2 DESCRIBE 3.3 SETUP 3.4 PLAY 3.5 PAUSE 3.6 TEARDOWN 3.7 其他方法 4 sdp的格式 5 RTSP点播消息流程实例 目录 [ Read More
posted @ 2016-08-28 00:14 godjob Views(466) Comments(0) Diggs(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 35 下一页