Linux 标准 输入 输出 重定向. printf 不输出到屏幕的解决办法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
- 方法1:
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- int main()
- {
- fflush(stdout);
- setvbuf(stdout,NULL,_IONBF,0);
- printf("test stdout\n");
- int save_fd = dup(STDOUT_FILENO); // 保存标准输出 文件描述符 注:这里一定要用 dup 复制一个文件描述符. 不要用 = 就像是Winodws下的句柄.
- int fd = open("test1.txt",(O_RDWR | O_CREAT), 0644);
- dup2(fd,STDOUT_FILENO); // 用我们新打开的文件描述符替换掉 标准输出
- printf("test file\n");
- //再恢复回来标准输出. 两种方式
- //方法1 有保存 标准输出的情况
- //dup2(save_fd,STDOUT_FILENO);
- //方法2 没有保存 标准输出的情况
- int ttyfd = open("/dev/tty",(O_RDWR), 0644);
- dup2(ttyfd,STDOUT_FILENO);
- printf("test tty\n");
- }
- 方法2:
- #include <stdlib.h>
- #include <stdio.h>
- #include <unistd.h>
- int main()
- {
- fflush(stdout);
- setvbuf(stdout,NULL,_IONBF,0);
- printf("test stdout\n");
- freopen("test1.txt","w",stdout); //注: 不要使用这类的代码 stdout = fopen("test1.txt","w"); 这样的话输出很诡异的. 最好使用 freopen 这类的函数来替换它.
- printf("test file\n");
- freopen("/dev/tty","w",stdout);
- printf("test tty\n");
- }
- 到这里我们就可以轻松解决 prinft 不输出到屏幕的问题了.
- 不外乎两种情况.
- 第1 标准输出被重定向了.
- 第2 输出缓冲区的问题. 就是 我们上两例中 开头的两行代码了.
- fflush(stdout); // 刷新一下缓冲区 让它马上输出. 在printf 之后调用它,就会马上输出了.
- setvbuf(stdout,NULL,_IONBF,0); //如果你嫌上个方法麻烦, 就使用这个函数. 直接将缓冲区禁止了. 它就直接输出了.
- 这两个函数都是有关流缓冲区的. 具体使用和说明网上有很多. 我只说一下什么是流缓冲区, 是做什么用的. 操作系统为减少 IO操作 所以设置了缓冲区. 等缓冲区满了再去操作IO. 这样是为了提高效率.
找到当前设备使用的那个串口终端的的方法:
可以通过uboot启动参数setenv bootargs mem=700M console=ttyAMA0,115200root=/dev/ram0
可以看到,console设备为ttyAMA0,
测试可以telnet到设备,echo “hello world” > /dev/ttyAMA0 查看串口是否有打印
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献19条内容
所有评论(0)