linux
人生有味是清欢
这个作者很懒,什么都没留下…
展开
-
配置oh my zsh的命令自动补全
配置oh my zsh的命令自动补全。原创 2023-09-06 17:35:12 · 935 阅读 · 0 评论 -
windows wsl ssh 配置流程 Permission denied (publickey)
重新安装openssh-service其中的 PasswordAuthentication 改为yes。wsl没有systemctl,使用service启动。原创 2023-09-06 17:21:57 · 897 阅读 · 0 评论 -
完美解决ubuntu20.04 google谷歌浏览器 输入钥匙环密码
ubuntu 20.04 解决谷歌浏览器登录时,需输入钥匙环密码原创 2022-06-09 09:44:18 · 1914 阅读 · 0 评论 -
修复 fix: ubuntu 18.04安装NVIDIA显卡驱动 nvidia-340 开机黑屏 总线错误
修复由于安装NVIDIA显卡驱动 导致的ubuntu 黑屏原创 2022-05-12 10:28:55 · 1751 阅读 · 1 评论 -
cmake ninja
1 创建最简单的cmake工程#include <iostream>using namespace std;int main(int argc, char const *argv[]){ cout << "hello world of cmake " << endl; return 0;}cmake_minimum_required(VERSION 3.5)project(hello_cmake)add_executable(he原创 2022-05-07 10:15:15 · 464 阅读 · 0 评论 -
ubuntu spawn ssh 自动登录
spawn ssh 自动登录经常需要远程登录服务器可以采用如下方式,快速登录。#!/usr/bin/expect set timeout 30spawn bash -c "ssh root@192.168.1.1"expect { "password:" {send "123456\r"}}expect #interact原创 2022-05-05 11:07:58 · 1728 阅读 · 0 评论 -
Linux系统编程001
Linux系统编程0011 文件系统:硬链接和软链接;硬链接:主要能确保一个文件,多个人指向后,会产生一个计数。如果计数为0,那么系统删除文件软链接:主要类比window的快捷方式2 特殊文件系统:主要是:块设备,字符设备命名管道,socket--其中,块设备,就像cd机一样,可以随机读取,但是字符设备,是顺序读取的,而且一定不会出错。或者是颠倒顺序。剩下的命名管道和socket就是IPC通信的问题。借助于进程间的通信机制,让Linux更加强大。3 Linux进程和线程进程的意义原创 2022-04-30 17:46:47 · 344 阅读 · 0 评论 -
ubuntu20.04签名错误 http://download.opensuse.org/repositories/home:/colomboem/xUbuntu_16.04 Release:
原来是重复勾选了多个其他的源。建议参考如下,关闭从此畅通无阻仅此总结记录![在这里插入图片描述](https://img-blog.csdnimg.cn/91a8265292c947b4848f36fc5950faa5.png#pic_center)https://blog.csdn.net/baidu_40705570/article/details/117992665...转载 2022-04-26 18:27:58 · 282 阅读 · 0 评论 -
makefile特殊写法
https://blog.csdn.net/lgibsion/article/details/70854565转载 2022-02-11 15:40:20 · 100 阅读 · 0 评论 -
vscode中使用 launch和tasks的配置qt项目
vscode 中配置qt编译环境原创 2021-12-15 11:35:51 · 626 阅读 · 0 评论 -
linux如何查看 可执行程序的内存分布
size a.out # 你的可执行程序名__TEXT __DATA __OBJC others dec hex16384 16384 0 4295000064 4295032832 100010000原创 2021-12-01 19:25:28 · 825 阅读 · 0 评论 -
修复 统信uos 国产操作系统 屏幕闪烁
修复uos 国产操作系统 屏幕闪烁操作系统:uos v20显卡型号:英伟达 730修复方法:在设置里,修改屏幕刷新赫兹我的60hz就闪烁,59.94就ok了原创 2021-09-22 10:42:14 · 2628 阅读 · 0 评论 -
linux uos zsh: command not found: go
zsh: command not found: gozsh和普通的bash环境变量配置不一样zsh的环境变量配置文件在。/etc/zsh/zshrc而不是~/.zshrc获取go解压后的文件地址记得设置好后,重新加载,使之生效#进入/etc/zsh/zshrc#尾部添加,变量名大写#根目录export GOROOT=/usr/local/go#bin目录export GOBIN=$GOROOT/bin#工作目录export GOPATH=/usr/local/gopath原创 2021-09-07 10:17:25 · 834 阅读 · 0 评论 -
Failed to start sshd.service: Unit sshd.service not found.
Failed to start sshd.service: Unit sshd.service not found.ssh 连接失败#sudo apt install openssh-serversystemctl enable ssh.serviceservice sshd start原创 2021-07-08 10:13:43 · 8718 阅读 · 2 评论 -
linux pipe管道
#include<stdio.h>#include<unistd.h>#include<string.h>int main(){ int fd[2]; if (pipe(fd) < 0){ printf("pipe 失败\n"); } char *line = NULL; line = "hello world"; write(fd[1],line,200); pid_t child; child = fork().原创 2021-05-18 10:02:03 · 89 阅读 · 0 评论