自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

RToax

行百里者半九十

  • 博客(22)
  • 资源 (215)
  • 问答 (3)
  • 收藏
  • 关注

原创 SSH远程链接:SCP远程拷贝文件与文件夹

scp是ssh的一部分,可以进行远程文件拷贝。下面以本地A和远程机器B为例介绍:首先本地A:用户名为rongtao,ip地址为:180.201.178.4远程机器B的信息如下:远程用户名Toa,ip地址:172.18.174.84在本地机器A上进行如下操作,可以讲文件拷贝至远程机器B上:在远程机器B上进行如下操作,可以将文件拷贝至本地机器上:

2017-12-16 22:30:56 7876

转载 ubuntu下MySQL的安装使用与卸载-程序编译

1.安装:原文链接在ubuntu下安装超级简单:1.sudo apt-get install mysql-server2.sudo apt-get install mysql-client3.sudo apt-get install libmysqlclient-dev安装过程中会提示输入密码并确认(记住这个密码)。检查是否安装成功:sudo netstat -

2017-12-16 15:19:47 362

原创 SSH远程连接:简单的连接

在已知用户名和ip的情况下,简答的ssh如下:rongtao@rongtao:~$ ssh Toa@172.18.174.84Toa@172.18.174.84's password: Last login: Sat Dec 16 13:53:18 2017 from 172.18.175.51-bash-4.1$ lsalgorithmsDataStructures clean.s

2017-12-16 13:41:43 1058

原创 c++用宏定义来编写函数#define

#include<iostream>#include<stdlib.h>#include<assert.h>#include"hello.h"#ifdef _OPENMP#include<omp.h>#endif#define CHECK(arg){ \ ...

2017-12-14 22:43:47 3758

原创 linux shell学习(一)第一个hello world

#!/bin/bash#we have less than 3 arguents# $#表示命令行参数的个数if [ $# -lt 3 ];then # $*表示命令行参数 echo $* elif [ $# -eq 3 ];then echo $*elif [ $# -gt 3 ];then echo $*fi# file是在命令行参数中的循环

2017-12-14 21:43:51 430

原创 C语言二叉树之二叉链表

#include#include#include#include/* 二叉链表 */typedef struct BTNode{ char ch; struct BTNode *lchild, *rchild;}BTNode, *BinTree;BTNode *newBTNode(char ch){ BTNode *node = (BTNode*)m

2017-12-05 22:56:47 1519

原创 C语言串 typedef char String[MaxLength + 1]

#include#include#includetypedef char String[250];/* 0索引号单元存放串的长度 */void setString(String str, char *chs){ str[0] = strlen(chs); int i; for(i=1;i<=str[0];i++) str[i] = *(ch

2017-12-05 22:07:39 991

原创 C语言斐波那契的递归函数 Fibonacci

#include#include/* 斐波那契的递归函数 */int Fibonacci(int i){ if(i<=1) return 1; else if(i==2) return 2; else return Fibonacci(i-1) + Fibonacci(i-2);}int main(int a

2017-12-05 20:52:48 2479

原创 C语言队列之链队列

#include#includetypedef struct Node{ int data; struct Node *next;}Node , *LinkList;typedef struct { LinkList front, rear; }LinkQueue;LinkQueue initQueue(){ LinkQueue Q

2017-12-05 20:41:58 479

原创 C语言队列之循环队列

#include#include#define max 10typedef struct { int data[max]; int front; int rear; }Queue;int init(Queue *Q){ Q->front = Q->rear = 0; return 1;}int clear(Queue

2017-12-05 19:43:54 758

原创 C语言堆栈之链栈

在Linux下的GCC这个程序是正确的:#include#includetypedef struct Node{ int data; struct Node *next; }Node, *Stack;/* */void show(Stack S){ if(S == NULL) { printf("Stack N

2017-12-05 19:39:41 481 1

原创 C语言堆栈之顺序栈

在linux下GCC这个程序是正确的:#include#include#define len 10;typedef struct{ int elem[10]; int top; }SqStack;void show(SqStack S){ printf("show:"); int i; for(i=0;i<S.top;

2017-12-05 19:30:19 427

原创 C语言线性表之双向循环链表

#include#include/* 结构体:双向循环链表 */typedef struct DuLNode{ int data; struct DuLNode *prior, *next;//内部有两个指针:前、后 }DuLNode, *DuLinkList;/* 创建双向链表 */DuLinkList CreatDuLinkList(int *

2017-12-05 19:21:42 424

原创 C语言线性表之循环单链表

#include#includeint typeOfLinkList;typedef struct LNode{ int data; struct LNode *next;}LNode, *LoopLinkList;/* 基本算法(遍历) */void show(LNode *L, int n){ int in = 0; printf(" S

2017-12-05 19:19:58 450

原创 C语言线性表之单链表

#include#includeint typeOfLinkList;typedef struct LNode{ int data; struct LNode *next;}LNode, *LinkList;/* 基本算法(遍历) */void show(LNode *L){ printf(" Show: "); do{ pr

2017-12-04 22:24:26 406

原创 C语言线性表之顺序表

#include#includetypedef int bool;#ifndef false#define false 0#endif#ifndef true #define true 1#endif#define MaxSize 100typedef struct{ int elem[MaxSize]; int length;} List;/*

2017-12-04 19:32:23 594

原创 C语言冒泡法排序(四种方法)

#include#includetypedef int bool;#ifndef false#define false 0#endif#ifndef true #define true 1#endifvoid exchange(int *a, int *b){ *a = *a + *b; *b = *a - *b; *a = *a - *b;}

2017-12-04 19:00:08 3873

原创 C++关键字

asm ;auto ;bool ;break ;case;catch ;char ;class ;const ;const_cast;continue ;default ;delete ;do ;double;dynamic_cast; else ;enum ;explicit ;export;extern ;false ;float ;for ;...

2017-12-03 21:08:11 756

原创 C++常量---初识

#includeusing namespace std;int main(int argc, char*argv[]){ char ch = 'a';//-128 ~ 127, unsigned char: 0 ~ 255 int a = sizeof ch; short b = sizeof(a); long c = sizeof(a) + sizeof

2017-12-03 20:32:47 249

原创 C语言assert关键字

这是C语言的assert.h头文件的定义#include "cvidef.h" #include "cvirte.h"

2017-12-03 17:33:59 888

原创 版本为2.5的OpenMP的所有API函数

函数名作用omp_in_parallel判断当前是否在并行域中omp_get_thread_num返回线程号omp_set_num_threads设置后续并行域中的线程个数omp_get_num_threads返回当前并行区域中的线程数omp_get_max_threads获取并行域可用的最大线程数目o

2017-12-01 17:31:48 616 1

原创 版本为2.5的OpenMP规范中的编译制导指令汇总

OpenMP的所有编译制导指令是以#pragma omp开始#pragmaomp指令 [子句[,子句]„] 版本为2.5的OpenMP规范中的指令有以下这些:parallel:用在一个结构块之前,表示这段代码将被多个线程并行执行; for:用于for循环语句之前,表示将循环计算任务分配到多个线程中并行执行,以实现任务分担,必须由编程人员自己保证每次循环之间无数据相关性;para

2017-12-01 17:22:36 982 1

C语言设计模式 PDF《C Design Pattern》

C语言设计模式 PDF《C Design Pattern》C语言设计模式 PDF《C Design Pattern》C语言设计模式 PDF《C Design Pattern》C语言设计模式 PDF《C Design Pattern》

2024-04-17

C, GNUC GCC 预处理《The C Preprocessor》

C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C, GNUC GCC 预处理《The C Preprocessor》,C

2024-04-16

iperf2 版本,有时候用 iperf3 测试不支持 多 stream

iperf2 版本,有时候用 iperf3 测试不支持 多 stream

2023-12-08

fedora aarch64 39 Docker镜像

fedora aarch64 39 Docker镜像

2023-12-07

ostools操作系统系列工具

ostools操作系统系列工具

2023-12-06

ostools归档压缩文件

ostools归档压缩文件

2023-12-06

unixbench测试程序

unixbench测试程序

2023-12-06

User Guide: Open Build Service

This guide is part of the Open Build Service documentation. These books are considered to contain only reviewed content, establishing the reference documentation of OBS. This guide does not focus on a specic OBS version. It is also not a replacement of the documentation inside of the openSUSE Wiki (https://en.opensuse.org/Portal:Build_Service) . However, content from the wiki may be included in these books in a consolidated form.

2022-05-13

CentOS Stream 9 nasm 安装包

可参考: https://vault.centos.org/8.5.2111/PowerTools/Source/SPackages/nasm-2.15.03-3.el8.src.rpm

2022-05-01

CentOS Stream 9 nasm 源码包

可参考:https://vault.centos.org/8.5.2111/PowerTools/Source/SPackages/nasm-2.15.03-3.el8.src.rpm

2022-05-01

CentOS Stream9 的 terminator 源码 RPM 包。

CentOS Stream9 的 terminator 源码 RPM 包。

2022-04-30

CentOS Stream9 的 terminator RPM包

CentOS Stream9 的 terminator RPM包

2022-04-30

vim配置文件,vim配置文件

vim配置文件,vim配置文件

2022-02-24

Optimizing Linux Kernel with BOLT.pdf

• What is BOLT • How it works • Linux Kernel Challenges

2022-01-21

red_hat_enterprise_linux-8-customizing_anaconda-en-us.pdf

自定义ISO安装过程Anaconda文档,参见 https://gitee.com/rtoax/cclinux-product.img

2022-01-18

多路服务器的价值与实现技术.pdf

多路服务器的价值与实现技术.pdf多路服务器的价值与实现技术.pdf

2021-12-27

vim-config.tar.gz

vim-config.tar.gz

2021-11-11

cclinux-coreos-34.20211111.3.0-live.x86_64.iso

cclinux-coreos-34.20211111.3.0-live.x86_64.iso

2021-11-11

Kernel Probes for ARM-ELC2007.pdf

Kernel Probes for ARM-ELC2007.pdf

2021-10-22

Ftrace Kernel Hooks-More than just tracing.pdf

Ftrace Kernel Hooks-More than just tracing.pdf

2021-10-22

The Amazing World of Kprobes-2016.pdf

The Amazing World of Kprobes-2016.pdf

2021-10-22

binary-protection-schemes.pdf

binary-protection-schemes.pdf

2021-09-10

protecting_binaries.pdf

protecting_binaries.pdf

2021-09-10

DPDK Getting Started Guide for Linux

DPDK Getting Started Guide for Linux

2021-09-10

cpumemory-What Every Programmer Should Know About Memory.pdf

cpumemory-What Every Programmer Should Know About Memory.pdf

2021-09-10

architecture-instruction-set-extensions-programming-reference

architecture-instruction-set-extensions-programming-reference

2021-09-10

history_Intel_CPU.pdf

history_Intel_CPU.pdf

2021-09-10

ia-introduction-basics-paper.pdf

ia-introduction-basics-paper.pdf

2021-09-10

System V Application Binary Interface - AMD64 Architecture

System V Application Binary Interface - AMD64 Architecture Processor Supplement-abi

2021-09-10

The P4 Language Specification.pdf

The P4 Language Specification.pdf

2021-09-10

Hidden Linux Metrics with Prometheus eBPF Exporter.pdf

Hidden Linux Metrics with Prometheus eBPF Exporter

2021-09-03

ASN.1-asn1c图.vsdx

ASN.1-asn1c图.vsdx

2021-09-02

O-RAN.WG3.E2AP-v01.01-看9.3章.docx

O-RAN.WG3.E2AP-v01.01

2021-09-02

E2APDesign 2.0.pptx

E2APDesign 2.0.pptx

2021-09-02

e2ap-v01.01.asn1

e2ap-v01.01.asn1

2021-08-25

e2ap-v01.00.00.asn

前面的文档讲述了如何编译asn1c,如何选取合适的asn1c软件版本,及其简单使用方法。本文将对asn1c的详细使用进行介绍和分析。并结合 O-RAN E2AP (参考**O-RAN.WG3.E2AP-v01.01**)进行编码测试与调试。

2021-08-25

fastq-test-4.select-3.10.0-693.2.2.rt56.623.el7.x86_64.rar

一些火焰图,

2021-08-24

BPF Internals.pdf

BPF Internals.pdf

2021-07-31

intel64 和IA-32 编程手册

intel64 和IA-32 编程手册

2021-07-10

Intel 64 and IA-32 Architectures Software Developer’s Manual Combined

Intel 64 and IA-32 Architectures Software Developer’s Manual Combined Volumes1, 2A, 2B, 2C, 2D, 3A, 3B, 3C, 3D and 4-解密注释.pdf

2021-07-07

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除