随笔分类 - Linux
摘要:之前尝试过windows下的简单TCP客户端服务器编写,这次尝试下一下Linux环境下的TCP 客户端代码 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/soc
阅读全文
摘要:1、在/home/hf/Desktop/pin/pin-3.30-98830-g1d7b601b3-gcc-linux/source/tools/ManualExamples/目录下写自己的pintools 去到该目录 cd /home/hf/Desktop/pin/pin-3.30-98830-g
阅读全文
摘要:ubuntu 配置ssh 1、查看ssh服务的开启状态 ps -e|grep ssh 2、如果终端没有返回 sshd,则需安装ssh-server sudo apt-get install openssh-server 3、启动服务 sudo /etc/init.d/ssh start 现在查看ss
阅读全文