08 2023 档案

摘要:惠普hp 笔记本摄像头黑色看不到,之前是好的。 制造商为了保护用户隐私,给摄像头设置了一个机械开关遮挡, 摄像头上面边缘处有个很小的开关: ### 1.轻拨到左边是不遮挡摄像头,如下图: ![image](https://img2023.cnblogs.com/blog/597729/202308/ 阅读全文
posted @ 2023-08-31 17:42 悟透 阅读(359) 评论(0) 推荐(0) 编辑
摘要:ubuntu nautilus 文件管理器点击不启动 转圈 ### 原因: 程序错误,卡死了,不能自动退出 ### 解决方法: 1. 查看 nautilus 进程 ```bash ps -ef |grep nautilus ``` ![image](https://img2023.cnblogs.c 阅读全文
posted @ 2023-08-31 17:27 悟透 阅读(356) 评论(0) 推荐(0) 编辑
摘要:mlc-llm 文章总目录:https://www.cnblogs.com/wutou/p/17668924.html ## 环境说明 物理机系统: Windows 11 VMware 虚拟机:16.2.4 build-20089737 VMware 虚拟机系统:[ubuntu-22.04.3-de 阅读全文
posted @ 2023-08-31 10:42 悟透 阅读(159) 评论(0) 推荐(0) 编辑
摘要:mlc-llm 文章总目录:https://www.cnblogs.com/wutou/p/17668924.html mlc-llm 是一个可以在普通PC家用电脑、甚至是手机上搭建的一个 ai 对话服务的模型。 > 介绍文章:https://mp.weixin.qq.com/s?__biz=MzA 阅读全文
posted @ 2023-08-31 10:31 悟透 阅读(66) 评论(0) 推荐(0) 编辑
摘要:## mlc-llm 文章总目录 介绍: https://www.cnblogs.com/wutou/p/17668928.html 环境介绍、源码下载:https://www.cnblogs.com/wutou/p/17668974.html 阅读全文
posted @ 2023-08-31 10:30 悟透 阅读(38) 评论(0) 推荐(0) 编辑
摘要:Vmware 16.2 安装 ubuntu 22.04,提示如下: > error:inalid arch-independent ELF magic > Entering rescue mode... > grub rescue> ![image](https://img2023.cnblogs. 阅读全文
posted @ 2023-08-30 18:29 悟透 阅读(450) 评论(0) 推荐(0) 编辑
摘要:### 对比时候界面右下角会提示: ![image](https://img2023.cnblogs.com/blog/597729/202308/597729-20230828175847930-793997304.png) > 空白就是空格 ### 一、diff 对比严格模式,不忽略空格差异 ` 阅读全文
posted @ 2023-08-25 10:38 悟透 阅读(1305) 评论(0) 推荐(0) 编辑
摘要:文件路径: ~/.vscode/extensions/ms-ceintl.vscode-language-pack-zh-hans-1.80.2023072409/translations > 1.80.2023072409 是 vscode 版本,每人可能不一样 (在界面: 帮助--关于 里可以看 阅读全文
posted @ 2023-08-25 10:22 悟透 阅读(653) 评论(0) 推荐(0) 编辑
摘要:Linux Ubuntu: > /home/${用户名}/.config/Code/User/settings.json Windows: > C:\Users\用户名\AppData\Roaming\Code\User 来源、参考: https://blog.csdn.net/cyqzy/arti 阅读全文
posted @ 2023-08-25 09:47 悟透 阅读(811) 评论(0) 推荐(0) 编辑
摘要:全局 cat t.json { "env_AB":{ "DB_PATH":"/bin/data", "DB_NAME":"aa.db", "RULE_DB":[ { "RULE_DB_1":"bb_rules1.db", "RULE_DB_2":"bb_rules2.db", "RULE_DB_3" 阅读全文
posted @ 2023-08-23 17:48 悟透 阅读(3138) 评论(0) 推荐(0) 编辑
摘要:### 一、一行显示 commit-ID 分支名 提交说明 ```bash branch_name=`git branch --show-current`; curr_commit_ID=`git log -1 --format="%H %s"`; echo "$branch_name $curr_ 阅读全文
posted @ 2023-08-19 10:55 悟透 阅读(111) 评论(0) 推荐(0) 编辑
摘要:一、显示本地分支 git branch 二、显示当前所在分支 某些时候,我们只想显示,当前分支名 git branch --show-current 老版本不支持此命令 参考、来源: https://git-scm.com/docs/git-branch/zh_HANS-CN 阅读全文
posted @ 2023-08-19 10:07 悟透 阅读(271) 评论(0) 推荐(0) 编辑
摘要:### 一、 ```bash git branch -v 或 git branch -vv ``` ![image](https://img2023.cnblogs.com/blog/597729/202308/597729-20230819095433915-193300772.png) 参考、来 阅读全文
posted @ 2023-08-19 09:56 悟透 阅读(20) 评论(0) 推荐(0) 编辑
摘要:### 一、修改一条提交: ```bash git commit --amend --author="作者 " --no-edit git push --force ``` -f, --force 强制提交,否则服务端认为你是有误的修改 参考、来源: https://blog.csdn.net/sh 阅读全文
posted @ 2023-08-19 09:48 悟透 阅读(599) 评论(0) 推荐(0) 编辑
摘要:select命令语句,默认只能输入一个选择项。但有时候需要让用户输入多个 选项,就需要加for循环处理多选项了。 ### 一、示例代码 ```bash #!/usr/bin/env bash choices=( 'one' 'two' 'three' 'four' 'five' ) # sample 阅读全文
posted @ 2023-08-18 14:03 悟透 阅读(409) 评论(0) 推荐(0) 编辑
摘要:默认安装版本 一、添加 git 官方源 sudo add-apt-repository ppa:git-core/ppa 根据提示 回车继续 二、更新仓库包索引 sudo apt update 不更新,即便 git 官方有更新,你也搜索不到 三、查看有什么软件可以更新 apt list --upgr 阅读全文
posted @ 2023-08-18 13:06 悟透 阅读(770) 评论(0) 推荐(0) 编辑
摘要:### 测试 cmmit log ![image](https://img2023.cnblogs.com/blog/597729/202308/597729-20230816175404933-81591067.png) ## 命令: | 命令 | 解释说明 | 官方中文说明 | 官方英文说明 | 阅读全文
posted @ 2023-08-16 18:11 悟透 阅读(298) 评论(0) 推荐(0) 编辑
摘要:### shell 变量值传递给 read 变量 ```bash read selChoices 参考: https://qa.1r1g.com/sf/ask/2128520901/ 阅读全文
posted @ 2023-08-16 16:19 悟透 阅读(66) 评论(0) 推荐(0) 编辑
摘要:vmware虚拟机 安装好 ubuntu 系统后,需要文件拖动、复制、粘贴,还有共享物理机的文件。 **纠正一个说法:** > 网上说 ubuntu 系统自带 open-vm-tools 工具。这个"自带"的意思是 ubuntu 提供 open-vm-tools 工具,而不是说 ubuntu 系统里 阅读全文
posted @ 2023-08-14 18:10 悟透 阅读(21188) 评论(0) 推荐(3) 编辑
摘要:### 一、-nt 判断file1是否比file2新 ```bash ["/data/file1" -nt "/data/file2" ] ``` ### 二、-ot 判断file1是否比file2旧 ```bash ["/data/file1" -ot "/data/file2" ] ``` 参考 阅读全文
posted @ 2023-08-12 15:34 悟透 阅读(58) 评论(0) 推荐(0) 编辑
摘要:**Git 官方:** > book 说明大全,中文版:https://git-scm.com/book/zh/v2/ > book 说明大全,英文版:https://git-scm.com/book/en/v2/ > docs 说明大全,英文版:https://git-scm.com/docs * 阅读全文
posted @ 2023-08-11 09:43 悟透 阅读(31) 评论(0) 推荐(0) 编辑
摘要:大部分人的企业微信登录都是用微信注册的,但是发邮件时候还是会显示微信昵称,这样不友好,别人也不直观,看到是谁发的。 ### 一、打开企业微信官网 https://open.work.weixin.qq.com/ 在页面最下面的,右下角,扫描 企业微信客服 ![image](https://img20 阅读全文
posted @ 2023-08-10 17:57 悟透 阅读(1447) 评论(0) 推荐(1) 编辑
摘要:PowerShell拆分窗格 ### 一、拆分选项卡窗格 **1.鼠标操作:** ![image](https://img2023.cnblogs.com/blog/597729/202308/597729-20230809094954658-2060218793.png) **2.快捷键操作:Al 阅读全文
posted @ 2023-08-09 11:17 悟透 阅读(548) 评论(0) 推荐(0) 编辑
摘要:执行 configure 时,提示各种命令都没有找到 ### 一、执行 ```bash ./configure CFLAGS=-D_GNU_SOURCE ``` ### 二、错误提示 ```bash ./configure CFLAGS=-D_GNU_SOURCE ./configure: line 阅读全文
posted @ 2023-08-08 12:16 悟透 阅读(425) 评论(0) 推荐(0) 编辑
摘要:### 一、echo 输出提示 ```bash #!/bin/bash echo "请输入要选择的数字(1-9): " read num ``` 效果: ![image](https://img2023.cnblogs.com/blog/597729/202308/597729-2023080422 阅读全文
posted @ 2023-08-04 22:50 悟透 阅读(155) 评论(0) 推荐(0) 编辑
摘要:因为某些原因,你的仓库IP或网址编了,不得不修改远程仓库的地址。 ### 方法一: 删除本地仓库,重新从远程拉取仓库。这样虽然简单,但是耗时间。 ### 方法二:命令行,修改 https 协议地址 假设,本地仓库关联了 gitee 远程仓库,执行下面命令 ```bash git remote -v 阅读全文
posted @ 2023-08-04 22:37 悟透 阅读(390) 评论(0) 推荐(0) 编辑
摘要:### 彩色库: ```bash ## Color msg ## 来源:https://gitee.com/ApolloAuto/apollo/blob/master/scripts/apollo.bashrc BOLD='\033[1m' RED='\033[0;31m' BLUE='\033[1 阅读全文
posted @ 2023-08-02 12:52 悟透 阅读(123) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示