huihuiwith
码龄13年
关注
提问 私信
  • 博客:495,714
    问答:2,738
    498,452
    总访问量
  • 99
    原创
  • 1,905,055
    排名
  • 45
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:安徽省
  • 加入CSDN时间: 2011-06-10
博客简介:

huihuiwith的博客

查看详细资料
个人成就
  • 获得130次点赞
  • 内容获得29次评论
  • 获得405次收藏
  • 代码片获得145次分享
创作历程
  • 3篇
    2022年
  • 5篇
    2021年
  • 8篇
    2020年
  • 26篇
    2019年
  • 60篇
    2018年
  • 22篇
    2017年
  • 16篇
    2016年
  • 2篇
    2015年
成就勋章
TA的专栏
  • Xavier
    2篇
  • 数字图像
    1篇
  • UNIX网络编程--note
    13篇
  • 数据结构与算法--note
    6篇
  • APUE--note
    3篇
  • UNIX-Linux编程实践--note
    2篇
  • C/C++
    20篇
  • Ubuntu相关集合
    18篇
  • Qt
    12篇
  • Libuv
    7篇
  • Libusb
    3篇
  • Boost
    3篇
  • UNIX/Linux-API
    4篇
  • Linux kernel
    12篇
  • Linux shell 编程
    9篇
  • Error 集合
    8篇
  • OpenCV
    4篇
  • Python
    5篇
  • 忄吾
  • Git
    2篇
  • windows 编程
    8篇
  • Qml
    2篇
创作活动更多

HarmonyOS开发者社区有奖征文来啦!

用文字记录下您与HarmonyOS的故事。参与活动,还有机会赢奖,快来加入我们吧!

0人参与 去创作
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

Qml virtualkeyboard basic example 改写

TextArea.qml/******************************************************************************** Copyright (C) 2018 The Qt Company Ltd.** Contact: https://www.qt.io/licensing/**** This file is part of the Qt Virtual Keyboard module of the Qt Toolkit.
原创
发布博客 2022.02.19 ·
646 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Putty: Using pscp/plink for automated file transfer and command execution from a Windows host

The Putty suite contains several executables beyond the main application. It also has pscp.exe, a command line scp client, and plink.exe which is a command line ssh client.These clients can be used to run file transfers and commands against hosts in con.
转载
发布博客 2022.01.24 ·
594 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

openssl 使用

1. 首先需要使用 openssl 生成一个 2048 位的密钥 rsa.key 文件 (rsa.key 密钥文件中包含了私钥和公钥)# openssl genrsa -out rsa.key 20482. 然后从 rsa.key 密钥文件中提取出公钥 pub.key# openssl rsa -in rsa.key -pubout -out pub.key3. 使用 pub.key 公钥加密一个文件 (data.zip 为原始文件,back.zip 为加密之后的文件)# open
原创
发布博客 2022.01.21 ·
7298 阅读 ·
3 点赞 ·
1 评论 ·
12 收藏

指定网卡发送广播包

发送端:#include <sys/types.h>#include <sys/socket.h>#include <sys/ioctl.h>#include <netinet/in.h>#include <arpa/inet.h>#include <time.h>#include <string.h>#include <stdio.h>#include <unistd.h>#
原创
发布博客 2021.09.29 ·
3071 阅读 ·
0 点赞 ·
0 评论 ·
3 收藏

WiFi troubleshooting - Linux

Please follow these WiFi troubleshooting steps:Step 1: Check whether the kernel version customer uses supports this device:The reference table of Wireless adapters and corresponding kernel versions is available by the link:en:users:drivers:iwlwifi [Li.
转载
发布博客 2021.09.15 ·
388 阅读 ·
1 点赞 ·
0 评论 ·
2 收藏

Ubuntu 安装 dhcp-server

1.安装 sudo apt-get install isc-dhcp-server2.修改 sudo vim /etc/default/isc-dhcp-server NTERFACESv4="" 为指定网卡 注释掉“#”号:#DHCPDv4_CONF #DHCPDv4_PID 这是修改之后的: # Defaults for isc-dhcp-server (sourced by /etc/init.d/isc-dhcp-server) # Path ...
原创
发布博客 2021.09.06 ·
1459 阅读 ·
0 点赞 ·
0 评论 ·
4 收藏

Enable coredump 调试程序

1. 打开内核 coredump 功能sudo systemctl stop apport.servicesudo systemctl disable apport.servicesudo echo 'kernel.core_pattern=/var/crash/%e.%t.%s' >> /etc/sysctl.conf # /etc/sysctl.conf 可能要改变权限才能读写sudo echo '* soft core unlimited' >> /etc/s
原创
发布博客 2021.09.04 ·
283 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

libuv 编译使用,打印调用堆栈

libuv 编译选项:CFLAGS='-g -O0 -funwind-tables' ./configure --disable-silent-rules --disable-udev --enable-debug-logmake -j8 V=1其中 -funwind-tables 可以打印详细调用堆栈。写程序使用:t1.cc#include <ux.h>#include <unistd.h>#include <signal.h>#inclu
原创
发布博客 2021.08.28 ·
905 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

libuv 编译使用,打印调用堆栈

libuv 编译选项:CFLAGS='-g -O0 -funwind-tables' ./configure --disable-silent-rules --disable-udev --enable-debug-logmake -j8 V=1其中 -funwind-tables 可以打印详细调用堆栈。写程序使用:t1.cc#include <ux.h>#include <unistd.h>#include <signal.h>#inclu
原创
发布博客 2021.08.28 ·
905 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

Ubuntu 镜像

http://mirrors.aliyun.com/ubuntu-releases/
原创
发布博客 2020.10.14 ·
494 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

systemd.service

Index · Directives systemd 246Namesystemd.service — Service unit configurationSynopsisservice.serviceDescriptionA unit configuration file whose name ends in ".service" encodes information about a process controlled and supervised by systemd
转载
发布博客 2020.07.29 ·
588 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

AGX Xavier install pip3 and jtop

1. pip3 sudo apt-get install python3-pip2. jtop sudo -H pip3 install -U jetson-stats
原创
发布博客 2020.07.24 ·
724 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

How To Install XRDP on Ubuntu 18.04 LTS

How To Install XRDP on Ubuntu 18.04 LTSIn this tutorial we will show you how to install XRDP on Ubuntu 18.04 LTS. For those of you who didn’t know, XRDP is an Open Source Remote desktop Protocol server, which allows you to RDP to your Linux server. The p
转载
发布博客 2020.06.30 ·
369 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

双线性插值

下面是关于双线性插值的经典说明图例:首先,图中有5个像素点:Q_{00},Q_{01},Q_{10},Q_{11},P。其中四个红色点Q是原图的点,绿色点P就有意思了,理解了它的含义,对双线性插值原理就能有一个概念上的理解。这个点P,其实是目标图的像素点在原图上的投影!我们先跳出来想一下:双线性插值用来做什么?在CV领域,通常是用来改变原图的尺寸。那么目标图的每个像素点的像素值应该取多...
转载
发布博客 2020.03.25 ·
183 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

"Loading initial ramdisk" is slow at boot

I found out that the slow boot comes from a large initrd. I also found out that at that point the system is relying on a slow but reliable access method from the BIOS to load the kernel. That all make...
原创
发布博客 2020.03.18 ·
2301 阅读 ·
1 点赞 ·
1 评论 ·
3 收藏

configure 的依赖库搜索目录

转载:http://blog.sina.com.cn/s/blog_6e32babb0101l674.html如果有某个依赖库XXX的版本不合,往往需要自己安装一个新的版本, 这时候往往可以用./configure --with-XXX=/path1/path2/..这样的方式把新安装的库指定进去。但是有的时候,./configure --help 会发现,并没有对XXX...
转载
发布博客 2020.03.06 ·
8018 阅读 ·
4 点赞 ·
0 评论 ·
9 收藏

version Qt_5 not defined in file libQt5Core.so.5 with link time reference

在 .pro 文件中加入: CONFIG -= qt
原创
发布博客 2020.01.16 ·
5258 阅读 ·
0 点赞 ·
0 评论 ·
3 收藏

OpenCV下载

转载:https://blog.csdn.net/qq_15698613/article/details/98360384
转载
发布博客 2019.11.15 ·
308 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

交叉编译busybox

转载自:https://www.cnblogs.com/hnrainll/archive/2011/06/10/2077259.html交叉编译器: 3.3.2# wget -c http://www.busybox.net/downloads/busybox-1.7.0.tar.bz2# tar jxvf busybox-1.7.0.tar.bz2修改源码、配置、编译---------...
转载
发布博客 2019.10.23 ·
490 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Mali_OpenGL_ES_SDK_Linux_x64.tar.gz

发布资源 2019.10.14 ·
gz
加载更多