文章分类 -  linux 基础

摘要:https://www.cnblogs.com/bigmagic/p/10309260.html 阅读全文
posted @ 2025-04-20 10:08 微笑的''80 阅读(2) 评论(0) 推荐(0)
摘要:CC := gcc ##立即赋值 CFLAGS = -Wall -O0 -g ##延时赋值 SRC = $(wildcard *.c) APP = $(patsubst %.c, %, $(SRC)) all: $(APP) %:%.c $(CC) $(CFLAGS) -o $@ $< -lpthr 阅读全文
posted @ 2025-04-18 11:35 微笑的''80 阅读(2) 评论(0) 推荐(0)
摘要:https://www.ibm.com/docs/zh/xl-c-and-cpp-aix/16.1.0?topic=pdf-format-documentation 阅读全文
posted @ 2025-04-17 13:01 微笑的''80 阅读(7) 评论(0) 推荐(0)
摘要:# Specify include directory. Leave blank for default system location. INCDIR = # Specify library directory. Leave blank for default system location. L 阅读全文
posted @ 2025-04-17 12:58 微笑的''80 阅读(3) 评论(0) 推荐(0)
摘要:https://cn.linux-console.net/?p=8215 https://cn.linux-console.net/?p=31136 阅读全文
posted @ 2025-04-16 14:59 微笑的''80 阅读(3) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/meng-xiang-tao-1999/p/17335673.html https://jingyan.baidu.com/article/ff411625d3fb2412e48237ca.html 阅读全文
posted @ 2025-04-15 19:45 微笑的''80 阅读(0) 评论(0) 推荐(0)
摘要:1. 配置linux samba共享目录 安装 samba 服务器1,下载安装 samba 服务器$ sudo apt-get update$ sudo apt-get install samba samba-common2,创建共享目录$ mkdir shared3,修改配置文件:/etc/sam 阅读全文
posted @ 2025-04-11 10:28 微笑的''80 阅读(168) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/lihefei_coder/article/details/83068512 阅读全文
posted @ 2025-04-11 10:20 微笑的''80 阅读(0) 评论(0) 推荐(0)
摘要:#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/types.h> #include <sys/wait.h> int main(int argc, const char* argv[]) { //__p 阅读全文
posted @ 2025-04-10 09:54 微笑的''80 阅读(3) 评论(0) 推荐(0)
摘要:修复Ubuntu系统盘的方法可以包括以下几种方式: 使用Live CD或Live USB启动系统,然后选择“修复系统”选项进行修复。 使用fsck命令检查和修复文件系统错误。可以在终端中输入以下命令:sudo fsck /dev/sda1(/dev/sda1是系统盘的设备名)。 使用GParted等 阅读全文
posted @ 2025-04-09 12:39 微笑的''80 阅读(76) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/wangzhizhuo/article/details/141190550 阅读全文
posted @ 2025-04-08 22:37 微笑的''80 阅读(32) 评论(0) 推荐(0)
摘要:# toolchain CC = arm-none-eabi-gcc CP = arm-none-eabi-objcopy AS = arm-none-eabi-gcc -x assembler-with-cpp # all the files will be generated with this 阅读全文
posted @ 2025-04-05 10:49 微笑的''80 阅读(7) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/m877087643/p/18725459 阅读全文
posted @ 2025-04-04 18:59 微笑的''80 阅读(4) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/lcw/p/3159386.html 阅读全文
posted @ 2025-03-19 14:18 微笑的''80 阅读(3) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_37620587/article/details/144656949 https://www.cnblogs.com/BinBinStory/p/7633296.html make CROSS_COMPILE=arm-linux-gnueab 阅读全文
posted @ 2025-03-08 17:33 微笑的''80 阅读(3) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/mq0036/p/18600712 挂在: sudo mount -t cifs -o username=Administrator,password=1,iocharset=utf8,dir_mode=0777,file_mode=0777 //19 阅读全文
posted @ 2025-03-08 17:10 微笑的''80 阅读(1) 评论(0) 推荐(0)
摘要:https://www.yisu.com/ask/47020181.html [Unit] Description=Start TightVNC server at startup After=syslog.target network.target [Service] ExecStart=/usr 阅读全文
posted @ 2025-03-08 12:39 微笑的''80 阅读(25) 评论(0) 推荐(0)
摘要:https://www.advanced-ip-scanner.com/cn/download/ 阅读全文
posted @ 2025-03-08 11:13 微笑的''80 阅读(10) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/knight-monkey/p/cpp_learn_20220820.html https://blog.csdn.net/JasonZhao7/article/details/128159650 yum list | grep gcc-toolset 阅读全文
posted @ 2025-01-29 16:42 微笑的''80 阅读(39) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_41637473/article/details/109194209 https://blog.csdn.net/m0_48422893/article/details/136185387 添加用户: sudo vim /etc/tigervnc/v 阅读全文
posted @ 2025-01-28 23:20 微笑的''80 阅读(8) 评论(0) 推荐(0)