学无止境 第5页
记录学习的过程
记录一下在Ubuntu19.10下安装mysql8.0时候踩的坑-天煜博客

记录一下在Ubuntu19.10下安装mysql8.0时候踩的坑

安装mysql8.0之后与网上大多教程不同的是我没有遇到设置root密码的界面。 输入 sudo apt install mysql-server之后直接就安装成功了。 尝试了很多办法,都不能成功的修改root密码,直到参考这篇...
haoxuan的头像-天煜博客haoxuan5年前
09811
linux如何mount挂载磁盘并设置开机自动mount-天煜博客

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

fdisk -l # 查看可挂载的磁盘 df -h # 查看已经挂载的磁盘 mkfs.ext4 /dev/vdb # 初始化磁盘,格式是ext4,注意这里会格式化可挂载磁盘 mount /dev/vdb /u01 # mount 磁盘到/u01,保证/u01为空 bl...
haoxuan的头像-天煜博客haoxuan5年前
021711
搬运自知乎的20道嵌入式软件工程师面试题(附答案)-天煜博客

搬运自知乎的20道嵌入式软件工程师面试题(附答案)

1.嵌入式系统中经常要用到无限循环,如何用C编写死循环 答:while(1){}或者for(;;) 2.程序的局部变量存在于哪里,全局变量存在于哪里,动态申请数据存在于哪里。 答:程序的局部变量存在于栈区...
线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy-天煜博客

线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy

主要函数说明 int pthread_mutex_init (pthread_mutex_t *__mutex,const pthread_mutexattr_t *__mutexattr)创建一个锁; int pthread_mutex_destroy (pthread_mutex_t *__mutex)销毁锁; int pth...
haoxuan的头像-天煜博客haoxuan4年前
05411
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(四)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(四)SQL Developer & Putty

If you’ve installed the Oracle Client successfully, you can get SQL Developer up and running in no time. Click on SQL Developer from the Start menu Once you get the following wi...
haoxuan的头像-天煜博客haoxuan2年前
08911
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(六)Kibana

I’ve seen a lot of posts where people have had Kibana up and running, out of the (virtual)box from HCM PI 34. I had issues getting the dashboards and visualizations to work. Many ...
haoxuan的头像-天煜博客haoxuan2年前
017111
Oracle Linux 7.9安装PeopleSoft Campus Solution 9.2步骤-天煜博客

Oracle Linux 7.9安装PeopleSoft Campus Solution 9.2步骤

安装前准备 1.下载安装包 2.安装Oracle Linux 7.9 安装类型选basic web server 3.修改hosts文件 删除 “::1”一行 vi /etc/hosts 4.终端运行yum -y install oracle-database-preinstall-19c 如...
haoxuan的头像-天煜博客haoxuan2年前
013511
一本关于HTTP的恋爱日记-天煜博客

一本关于HTTP的恋爱日记

1991年 8月 我叫客户端,英文名字 client。 她叫服务端,英文名字 server。 这一年,我们出生了。 是的,我们都是90后。 我爱她,可是她却远在天边。 为了和她可以互诉衷肠,我同时发明了HTTP协...
haoxuan的头像-天煜博客haoxuan4年前
014111
linux usb驱动——host与device电路-天煜博客

linux usb驱动——host与device电路

host、device usb协议中,设备连接是主从模式,具体定义自行了解usb协议,比较直观的认识,如下: USB Host是指驱动过后,板子就可以连接USB接口连接的器件,读取和装载数据了。 USB Device是指...
haoxuan的头像-天煜博客haoxuan4年前
026611
Linux Shell脚本入门学习-天煜博客

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

本文是一篇关于Linux Shell脚本入门学习的文章,好久没用了有些遗忘,本次主要想巩固基础,为后续开发做准备。 0 什么是Shell Shell 是一个用 C 语言编写的程序,它是用户使用 Linux 的桥梁。Sh...
haoxuan的头像-天煜博客haoxuan2年前
014411