自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 ubuntu qt

1.下载qt https://download.qt.io/archive/qt/5.14/5.14.2/ 下载之后添加权限 sudo chmod +x qt-opensource-linux-x64-5.14.2.run 安装qt ./qt-opensource-linux-x86-5.4.2.run 2.配置终端 1.查看安装路径 我的路径为 /home/bai/Qt5.14.2/Tools/QtCreator/bin 2.在/usr/bin目录下创建启动脚本

2022-05-02 15:01:00 276

原创 i2C驱动app

查看i2C源代码 在Ubuntu运行

2022-04-25 15:20:13 385

原创 Linux网络编程 TCP

server #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <sys/un.h> #include <netdb.h> #include <unistd.h> #include <errno.h> #include <signal.h> #include <sys/wait.h> #inc...

2022-04-19 11:40:47 3382

原创 线程和进程

##查看源代码 ##

2022-04-12 11:31:31 115

原创 gcc初学体验

1,下载gcc sudo apt install -y build-essential sudo apt install gcc gcc --version 2,编辑hello.c vim hello.c gcc hello.c ./hello gcc编译,./运行 以下指令 gcc -E hello.c -o hello.i gcc -S hello.i -o hello.s gcc -c hello.s -o hello.o gcc hello.o -o h...

2022-03-31 13:26:54 1544

转载 scp的安装与文件复制

1,安装ssh sudo apt-get update sudo apt-get install openssh-server sudo apt-get install openssh-client 分别是更新,安装服务端,安装客户端 2,启动ssh sudo service ssh start service ssh status 分别是启动ssh及查看ssh状态 3,进行文件复制 scp -r /nfs/1 [email protected]: “/nfs/1”为目..

2022-03-28 19:03:32 836

转载 Ubuntu配置NFS

1,安装NFS sudo apt-get install nfs-kernel-server sudo apt-get install nfs-common 第一个是安装NFS服务器端,第二个是安装NFS客户端 2,添加NFS共享目录 (1) sudo vim /etc/exports 在文件的最后添加想要共享的文件 /nfsroot *(rw,sync,no_root_squash) "/nfsroot"是要共享的目录,“ * ”意思是所有人都能挂载 (2) 此时..

2022-03-28 18:26:13 16201

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除