最新文章第3页
C语言基础教程-天煜博客

C语言基础教程指针详解

感觉写的不错,搬运来的。 一、什么是指针 C语言里,变量存放在内存中,而内存其实就是一组有序字节组成的数组,每个字节有唯一的内存地址。CPU 通过内存寻址对存储在内存中的某个指定数据对象...
linux如何mount挂载磁盘并设置开机自动mount-天煜博客

linux如何mount挂载磁盘并设置开机自动mount

fdisk -l # 查看可挂载的磁盘 df -h # 查看已经挂载的磁盘 mkfs.ext4 /dev/vdb # 初始化磁盘,格式是ext4,注意这里会格式化可挂载磁盘 mount /dev/vdb /u01 # mount 磁盘到/u01,保证/u01为空 bl...
编程麻瓜的头像-天煜博客编程麻瓜6年前
027811
Linux Shell脚本入门学习-天煜博客

Linux Shell脚本入门学习--正点原子【第一期】手把手教你学Linux之Ubuntu入门篇 P19 P20

本文是一篇关于Linux Shell脚本入门学习的文章,好久没用了有些遗忘,本次主要想巩固基础,为后续开发做准备。 0 什么是Shell Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁。Sh...
多种环境下使用Qt creator创建项目-天煜博客

多种环境下使用Qt creator创建项目Hello QT

环境准备 Window 10 专业版 Qt Creator 4.3.1 Based on Qt 5.9.0 (MSVC 2015, 32 bit) 创建步骤   这里是一个错误的示范,路径不要包含中文!!! 接下来选择构建套件(Kits),默认即可。 ...
Ubuntu ffmpeg开发环境搭建-天煜博客

Ubuntu ffmpeg开发环境搭建

本文参考《零声学院 ⾳视频⾼级教程 ubuntu ffmpeg开发环境搭建0.2》 进行操作。 虚拟机版本:VMware 16 Linux版本:Ubuntu desktop 16.04 FFmpeg版本:4.2.1 使用源码的方式编译和安装,本编译...
Deepin下Wireshark的错误修复-天煜博客

Deepin下Wireshark的错误修复Capture session could not be initiated on interface(you don't have permission to capture on 'wlan0')

在Deepin上面新装的Wireshark,选择网卡后报错提示Capture session could not be initiated on interface(you don't have permission to capture on 'wlan0') 在百度找了一些文章,主要有两种解...
OpenCV-Python快速入门系列30案例:实时人脸检测-天煜博客

OpenCV-Python快速入门系列30案例:实时人脸检测

代码 视频和模型库在第一篇文章中有git地址。 import cv2 as cv # 模型路径 MODEL_BIN = 'models/face_detector/opencv_face_detector_uint8.pb' CONFIG_TEXT = 'models/face_detector/opencv_f...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(五)ElasticSearch

We’re almost there! HCM PI 34 bundles ElasticSearch and Kibana. On Linux, both these directories are available under /opt/oracle/psft/pt/ES/pt. Sasank’s posts provide a lot of...
C语言函数练习题、递归-天煜博客

C语言函数练习题、递归

/** * File Name: test.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月23日 星期三 13时45分02秒 **/ #include /** * 利用递归求N的阶乘 */ double getJiecheng(dou...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(三)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(三)PeopleTools Installation

Link to the main post So, if you’ve come this far, you should be able to access the PeopleSoft home page without any issues In this post, let us look at installing PeopleTools. Fi...