- 博客(7)
- 收藏
- 关注
原创 ubuntu qt
1.下载qthttps://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.run2.配置终端1.查看安装路径我的路径为/home/bai/Qt5.14.2/Tools/QtCreator/bin2.在/usr/bin目录下创建启动脚本
2022-05-02 15:01:00 223
原创 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 3343
原创 gcc初学体验
1,下载gccsudo apt install -y build-essentialsudo apt install gccgcc --version2,编辑hello.cvim hello.cgcc hello.c./hellogcc编译,./运行以下指令gcc -E hello.c -o hello.igcc -S hello.i -o hello.sgcc -c hello.s -o hello.ogcc hello.o -o h...
2022-03-31 13:26:54 1514
转载 scp的安装与文件复制
1,安装sshsudo apt-get updatesudo apt-get install openssh-serversudo apt-get install openssh-client分别是更新,安装服务端,安装客户端2,启动sshsudo service ssh startservice ssh status分别是启动ssh及查看ssh状态3,进行文件复制scp -r /nfs/1 ipual@10.0.2.15:“/nfs/1”为目..
2022-03-28 19:03:32 790
转载 Ubuntu配置NFS
1,安装NFSsudo apt-get install nfs-kernel-serversudo 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 16115
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人