snippet
celltree001
这个作者很懒,什么都没留下…
展开
-
win10,win11禁用amd显卡驱动自动更新
运行regedit找到HKEY_LOCAL_MACHINE\software\POLICIES\MICROSOFT\WINDOWS\WINDOWSUPDATE右侧空白处,新建DWORD(32位)重命名为ExcludeWUDriverinQualityUpdate修改值为1关闭更新中的“接受其它Microsoft产品更新”重启原创 2024-01-25 09:59:06 · 1797 阅读 · 0 评论 -
ubuntu开启rdp服务
概要ssh登录用于终端,如果需要GUI的远程登陆ubuntu . 我了解到大概3中方案vncxrdp第三方软件,向日葵 TeamViewer之类的。因为vnc我一直配置不好,所以试了一下xrdp,这样windows上就自带客户端。遇到了一些问题,记录之。配置环境:ubuntu 20.04win10 21h1安装方法sudo apt install xrdpsudo adduser xrdp ssl-certsudo systemctl enable xrdpsudo syst原创 2021-12-02 09:49:31 · 4844 阅读 · 0 评论 -
postgresql tips
默认情况下postgresql不支持命令行中有密码,有时为了使用命令行定时备份,就需要自动读取密码psql使用.pgpass(linux)和pgpass.conf(win) 来存储密码, 参考PostgreSQL 自动输入密码使用环境变量PGPASSWORDpsql -c “\dt” “host=127.0.0.1 user=hello password=123 dbname=test”pg_dump使用db url pg_dump.exe -Fc -v --dbname=postgres原创 2021-10-09 14:48:27 · 7527 阅读 · 3 评论 -
windows装机常用软件
压缩软件 7-zip注意区分32或者64位,否则无法注册右键菜单文件管理 total commander基本设置方法: https://www.zhihu.com/question/21616258/answer/1545629286硬件查看 cpu-z gpu-z aida64 hdtune超频帧数查看 MSIAfterburnerSetup显卡驱动卸载 ddu浏览器 chrome firefox edge下载工具 free download manager记事本 sublime te.原创 2021-06-16 17:03:27 · 873 阅读 · 0 评论 -
禁止asp.net core 项目自动创建launchsettings.json
修改csproj文件,新增NoDefaultLaunchSettingsFile<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net5.0</TargetFramework> <IsPackable>false</IsPackable> <!-- Add this line --> <原创 2021-06-16 16:53:33 · 713 阅读 · 0 评论 -
docker常用操作备忘
删除过时image释放磁盘空间docker images|grep hello|awk '{ print $3 }'|xargs docker rmi原创 2021-06-16 16:36:53 · 707 阅读 · 0 评论 -
git常用操作
记录日常使用中的问题和常用操作git 自动更新git update-git-for-windows -ylinux 记录密码vim ~/.gitconfig [credential]helper= store别名git config --global alias.co checkoutgit config --global alias.ci commitgit config --global alias.st statusgit config --global alias.br原创 2021-06-16 16:29:21 · 607 阅读 · 0 评论 -
linux 常用操作
查看系统版本信息cat /etc/issuecat lsb_release -auname -acat /etc/*_issuecat /etc/*_releasetcpdump 抓包tcpdump tcp -i eth1 -t -s 0 and port 8000 and src net 192.168.1.0/24 -w ./test.captcpdump -XvvennSs 0 -i eth0 tcp[20:2]=0x4745 or tcp[20:2]=0x4854查看动态原创 2021-06-16 16:28:17 · 776 阅读 · 1 评论