NFS

NFS: Unix/Linux Windows 服务器端:nfs-utils nfs: nfsd(nfs服务), mountd(挂载), quotad(配额) nfsd: 2049/tcp, …

openssl以及加密

对称加密 DES: Data Encription Standard, 56bit 3DES: AES: Advanced AES192, AES256, AE…

Qt中Udp:Send、Recv

//==============send============== #include "widget.h" #include <QHostAddress> #incl…

Qt中Tcp:Server、Client

//============server============== #include "TcpServer.h" #include <QHBoxLayout> #in…

curl 命令提交post表单

POST (HTTP) It’s easy to post data using curl. This is done using the -d option. The post data must …

【转】用shell模拟多进程

#!/bin/bash #sub process do something function a_sub_process { echo "processing in pid [$$…

LVM-逻辑卷

pv: physical volume vg: volume group lv: logical volume pv: pvcreate, pvremove, pvscan, pvdisplay, …

Qt设置程序的图标

一、设置程序运行时左上角的图标,和最小化图标 this->setWindowIcon(QPixmap(“main.icon”)); 二、 程序的桌面图标 ①在源文件存放的目录中放入图标icon文…

Qt的slot和signal

1)信号的定义必须在signals保留字下,并且不需要实现 2)槽的定义必须在slots:保留字下,需要实现 3)信号和槽通过QObject::connect函数连接 4)当信号被触发时,槽函数被调用…

RAID之mdadm命令

MBR: 主引导记录(512字节) Master Boot Record 446 bytes: BootLoader, 一段程序 64 bytes: 每16bytes标识一个分区 ,所以: 主+扩展…