<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>秘籍 on 彩票号码助手</title>
    <link>/blog/tags/%E7%A7%98%E7%B1%8D/</link>
    <description>Recent content in 秘籍 on 彩票号码助手</description>
    <generator>Hugo</generator>
    <language>zh-hans</language>
    <copyright>Copyright © 2000-2026 zc310.tech. All Rights Reserved.
</copyright>
    <lastBuildDate>Fri, 15 Oct 2021 00:00:00 +0000</lastBuildDate><atom:link href="/blog/tags/%E7%A7%98%E7%B1%8D/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>修复 ubuntu误删内核</title>
      <link>/blog/post/my/2021/boot/</link>
      <pubDate>Fri, 15 Oct 2021 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2021/boot/</guid>
      <description><![CDATA[<p>不小心把笔记本内核删掉了，导致无法开机，网上找了找教程：</p>
<p>用 ubuntu 安装盘启动系统，然后：</p>
<pre><code>sudo mount /dev/sda /media/a     #看好自己的sda序号
sudo mount --bind /dev /media/a/dev
sudo mount --bind /proc /media/a/proc
sudo mount --bind /sys /media/a/sys
sudo mount --bind /run /media/a/run

sudo chroot /media/a

apt-get install linux-image-generic

grub-install /dev/sda

exit
sudo umount /media/a/sys
sudo umount /media/a/proc
sudo umount /media/a/dev
sudo umount /media/a/run
sudo umount /media/a
reboot
</code></pre>
<p>重启电脑正常了。。。</p>]]></description>
    </item>
    
    <item>
      <title>Install Missing VMware Host Modules</title>
      <link>/blog/post/my/2021/install-vmware-host-modules/</link>
      <pubDate>Sat, 04 Sep 2021 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2021/install-vmware-host-modules/</guid>
      <description><![CDATA[<p>ubuntu 安装新内核<a href="https://kernel.ubuntu.com/~kernel-ppa/mainline/" target="_blank" rel="noopener noreferrer">v5.14<i class="fas fa-external-link-square-alt ms-1"></i></a>后 vmware 无法使用处理办法：</p>
<pre><code>wget https://github.com/mkubecek/vmware-host-modules/archive/refs/tags/w16.1.2-k5.14.tar.gz
tar -xzf w16.1.2-k5.14.tar.gz
cd vmware-host-modules-w16.1.2-k5.14/
tar -cf vmmon.tar vmmon-only
tar -cf vmnet.tar vmnet-only
sudo cp -v vmmon.tar vmnet.tar /usr/lib/vmware/modules/source/
sudo vmware-modconfig --console --install-all
</code></pre>

<h1 id="外部链接" data-numberify>外部链接<a class="anchor ms-1" href="#外部链接"></a></h1>
<ul>
<li><a href="https://github.com/mkubecek/vmware-host-modules" target="_blank" rel="noopener noreferrer">https://github.com/mkubecek/vmware-host-modules<i class="fas fa-external-link-square-alt ms-1"></i></a></li>
<li><a href="https://forums.linuxmint.com/viewtopic.php?t=324638" target="_blank" rel="noopener noreferrer">https://forums.linuxmint.com/viewtopic.php?t=324638<i class="fas fa-external-link-square-alt ms-1"></i></a></li>
</ul>]]></description>
    </item>
    
    <item>
      <title>vmware-authdlauncher: error while loading shared libraries: libssl.so.1.0.2</title>
      <link>/blog/post/my/2021/vmware-authdlauncher/</link>
      <pubDate>Tue, 27 Jul 2021 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2021/vmware-authdlauncher/</guid>
      <description><![CDATA[<blockquote>
<p>/usr/sbin/vmware-authdlauncher: error while loading shared libraries: libssl.so.1.0.2: cannot open shared object file: No such file or directory</p></blockquote>
<p>处理办法：</p>
<pre><code>sudo ln -s /usr/lib/vmware/lib/libssl.so.1.0.2/libssl.so.1.0.2 /usr/lib/libssl.so.1.0.2
sudo ln -s /usr/lib/vmware/lib/libcrypto.so.1.0.2/libcrypto.so.1.0.2 /usr/lib/libcrypto.so.1.0.2
</code></pre>

<h1 id="外部链接" data-numberify>外部链接<a class="anchor ms-1" href="#外部链接"></a></h1>
<ul>
<li><a href="https://communities.vmware.com/t5/VMware-Workstation-Player/VMPlayer-16-1-on-Ububtu-20-10-Virtual-ethernet-failed-to-start/td-p/2826831" target="_blank" rel="noopener noreferrer">https://communities.vmware.com/t5/VMware-Workstation-Player/VMPlayer-16-1-on-Ububtu-20-10-Virtual-ethernet-failed-to-start/td-p/2826831<i class="fas fa-external-link-square-alt ms-1"></i></a></li>
</ul>]]></description>
    </item>
    
    <item>
      <title>编译Win程序运行报错：go-sqlite3 requires cgo to work</title>
      <link>/blog/post/my/2020/cgo_enabled-go-sqlite3-requires-cgo-to-work/</link>
      <pubDate>Sat, 23 Jan 2021 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/cgo_enabled-go-sqlite3-requires-cgo-to-work/</guid>
      <description><![CDATA[<p>编译号程序放Windows运行报错</p>
<p><code>Binary was compiled with 'CGO_ENABLED=0', go-sqlite3 requires cgo to work. This is a stub</code>，
按照下面参数编译就正常了</p>
<pre><code>env CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++ GOOS=windows GOARCH=amd64  go build
</code></pre>
<p>安装 看看？</p>
<pre><code>apt-get install gcc-multilib
apt-get install gcc-mingw-w64
</code></pre>]]></description>
    </item>
    
    <item>
      <title>华为荣耀V10手机如何解锁</title>
      <link>/blog/post/my/2020/huawei-honor-unlock-bootloader/</link>
      <pubDate>Mon, 21 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/huawei-honor-unlock-bootloader/</guid>
      <description><![CDATA[<p>华为官方已经无法获取解锁码😡，网上找到一个脚本，属于暴力破解了，🥺只有试试看了!!!</p>
<ul>
<li><a href="https://github.com/SkyEmie/huawei-honor-unlock-bootloader" target="_blank" rel="noopener noreferrer">https://github.com/SkyEmie/huawei-honor-unlock-bootloader<i class="fas fa-external-link-square-alt ms-1"></i></a></li>
</ul>]]></description>
    </item>
    
    <item>
      <title>Updatedb.mlocate 每次开机硬盘狂转，删除 locate </title>
      <link>/blog/post/my/2020/updatedb.mlocate/</link>
      <pubDate>Tue, 15 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/updatedb.mlocate/</guid>
      <description><![CDATA[<p>每次开机硬盘狂转，删除<code>locate</code>，平时不用这个命令，删除！</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-bash" data-lang="bash"><span class="line"><span class="ln">1</span><span class="cl">sudo dpkg -P mlocate
</span></span></code></pre></div>]]></description>
    </item>
    
    <item>
      <title>如何使用 tar 命令 压缩/解压 .tar.xz 和 .tar.gz</title>
      <link>/blog/post/my/2020/how-to-use-tar-command/</link>
      <pubDate>Sun, 13 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/how-to-use-tar-command/</guid>
      <description><![CDATA[<h2 id="heading" data-numberify>🌰<a class="anchor ms-1" href="#heading"></a></h2>

<h3 id="解压" data-numberify>解压<a class="anchor ms-1" href="#解压"></a></h3>
<p><code>tar xf 压缩包.tar.xz</code></p>

<h3 id="压缩" data-numberify>压缩<a class="anchor ms-1" href="#压缩"></a></h3>
<p><code>tar caf 压缩包.tar.xz *.txt（要压缩的文件或目录）</code></p>]]></description>
    </item>
    
    <item>
      <title>git 忽略本地修改，强制更新</title>
      <link>/blog/post/my/2020/git-fetch-reset-pull/</link>
      <pubDate>Sat, 12 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/git-fetch-reset-pull/</guid>
      <description><![CDATA[<style type="text/css">.notice{padding:18px;line-height:24px;margin-bottom:24px;border-radius:4px;color:#444;background:#e7f2fa}.notice p:last-child{margin-bottom:0}.notice-title{margin:-18px -18px 12px;padding:4px 18px;border-radius:4px 4px 0 0;font-weight:700;color:#fff;background:#6ab0de}.notice.warning .notice-title{background:rgba(217,83,79,.9)}.notice.warning{background:#fae2e2}.notice.info .notice-title{background:#f0b37e}.notice.info{background:#fff2db}.notice.note .notice-title{background:#6ab0de}.notice.note{background:#e7f2fA}.notice.tip .notice-title{background:rgba(92,184,92,.8)}.notice.tip{background:#e6f9e6}.icon-notice{display:inline-flex;align-self:center;margin-right:8px}.icon-notice img,.icon-notice svg{height:1em;width:1em;fill:currentColor}.icon-notice img,.icon-notice.baseline svg{top:0.125em;position:relative}</style>
<p><svg width="0" height="0" display="none" xmlns="http://www.w3.org/2000/svg"><symbol id="tip-notice" viewBox="0 0 512 512" preserveAspectRatio="xMidYMid meet"><path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zM227.314 387.314l184-184c6.248-6.248 6.248-16.379 0-22.627l-22.627-22.627c-6.248-6.249-16.379-6.249-22.628 0L216 308.118l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628 0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104 104c6.249 6.249 16.379 6.249 22.628.001z"/></symbol><symbol id="note-notice" viewBox="0 0 512 512" preserveAspectRatio="xMidYMid meet"><path d="M504 256c0 136.997-111.043 248-248 248S8 392.997 8 256C8 119.083 119.043 8 256 8s248 111.083 248 248zm-248 50c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"/></symbol><symbol id="warning-notice" viewBox="0 0 576 512" preserveAspectRatio="xMidYMid meet"><path d="M569.517 440.013C587.975 472.007 564.806 512 527.94 512H48.054c-36.937 0-59.999-40.055-41.577-71.987L246.423 23.985c18.467-32.009 64.72-31.951 83.154 0l239.94 416.028zM288 354c-25.405 0-46 20.595-46 46s20.595 46 46 46 46-20.595 46-46-20.595-46-46-46zm-43.673-165.346l7.418 136c.347 6.364 5.609 11.346 11.982 11.346h48.546c6.373 0 11.635-4.982 11.982-11.346l7.418-136c.375-6.874-5.098-12.654-11.982-12.654h-63.383c-6.884 0-12.356 5.78-11.981 12.654z"/></symbol><symbol id="info-notice" viewBox="0 0 512 512" preserveAspectRatio="xMidYMid meet"><path d="M256 8C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8zm0 110c23.196 0 42 18.804 42 42s-18.804 42-42 42-42-18.804-42-42 18.804-42 42-42zm56 254c0 6.627-5.373 12-12 12h-88c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h12v-64h-12c-6.627 0-12-5.373-12-12v-24c0-6.627 5.373-12 12-12h64c6.627 0 12 5.373 12 12v100h12c6.627 0 12 5.373 12 12v24z"/></symbol></svg><div class="notice warning" ><p class="first notice-title"><span class="icon-notice baseline"><svg><use href="#warning-notice"></use></svg></span></p><p>注意本地修改会丢失</p></div></p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-sh" data-lang="sh"><span class="line"><span class="ln">1</span><span class="cl"><span class="c1"># 下载最新</span>
</span></span><span class="line"><span class="ln">2</span><span class="cl">git fetch --all
</span></span><span class="line"><span class="ln">3</span><span class="cl"><span class="c1"># 到其他分支</span>
</span></span><span class="line"><span class="ln">4</span><span class="cl">git reset --hard origin/master
</span></span><span class="line"><span class="ln">5</span><span class="cl"><span class="c1"># 到某个更新</span>
</span></span><span class="line"><span class="ln">6</span><span class="cl">git reset --hard 9cb2d4d65c924bbeecf8398137ab310a4457a3fe
</span></span><span class="line"><span class="ln">7</span><span class="cl">git pull
</span></span></code></pre></div>]]></description>
    </item>
    
    <item>
      <title>Golang HTTP 请求同时支持 gzip deflate Brotli 编码</title>
      <link>/blog/post/my/2020/golang-http-brotli/</link>
      <pubDate>Wed, 09 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/golang-http-brotli/</guid>
      <description><![CDATA[<p>可利用 <a href="https://github.com/andybalholm/brotli" target="_blank" rel="noopener noreferrer">https://github.com/andybalholm/brotli<i class="fas fa-external-link-square-alt ms-1"></i></a> 加个简单判断就支持<code>br</code>压缩 😀。</p>

<div style="width:100%;height:0;padding-bottom:40%;position:relative;">
    <iframe src="https://giphy.com/embed/11sBLVxNs7v6WA"
      width="100%" height="100%" style="position:absolute"
      frameBorder="0" allowFullScreen></iframe></div>

<p>go 语言 http 默认未传递<code>Accept-Encoding</code>参数会自动支持<code>gzip</code>压缩,</p>
<p>😱 一旦修改此标记所有解码都需要自己来处理,我选用<a href="https://github.com/klauspost/compress" target="_blank" rel="noopener noreferrer">https://github.com/klauspost/compress<i class="fas fa-external-link-square-alt ms-1"></i></a>解压。</p>]]></description>
    </item>
    
    <item>
      <title>如何设置Windows 10自动登录</title>
      <link>/blog/post/my/2020/set-up-windows-automatic-login/</link>
      <pubDate>Tue, 08 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/set-up-windows-automatic-login/</guid>
      <description><![CDATA[<ul>
<li>运行命令 <code>netplwiz</code></li>
<li>取消复选框 <code>要使用本计算机，用户必须输入用户名和密码</code></li>
<li>点<code>应用</code>按钮后输入<code>用户名</code>、<code>密码</code>后点<code>确定</code></li>
</ul>]]></description>
    </item>
    
    <item>
      <title>Go Module代理服务</title>
      <link>/blog/post/my/2020/go-module-goproxy/</link>
      <pubDate>Mon, 07 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/go-module-goproxy/</guid>
      <description><![CDATA[<p>暂时使用它了<code>export GOPROXY=https://mirrors.aliyun.com/goproxy/</code></p>]]></description>
    </item>
    
    <item>
      <title>golang sftp</title>
      <link>/blog/post/my/2020/golang-sftp/</link>
      <pubDate>Mon, 07 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/golang-sftp/</guid>
      <description><![CDATA[<p><a href="https://github.com/pkg/sftp" target="_blank" rel="noopener noreferrer">https://github.com/pkg/sftp<i class="fas fa-external-link-square-alt ms-1"></i></a></p>]]></description>
    </item>
    
    <item>
      <title>禁止 vmware 创建.vmem文件</title>
      <link>/blog/post/my/2020/vmware-no-vmem/</link>
      <pubDate>Mon, 07 Dec 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/vmware-no-vmem/</guid>
      <description><![CDATA[<p>添加代码<code>mainMem.useNamedFile = &quot;FALSE&quot;</code>到 <code>.vmx</code> 用来禁止创建 <code>.vmem</code> 文件,可以有效提高运行速度，减少磁盘读写.</p>]]></description>
    </item>
    
    <item>
      <title>ssh 免密码登录</title>
      <link>/blog/post/my/2020/ssh-login-without-password/</link>
      <pubDate>Thu, 26 Nov 2020 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/ssh-login-without-password/</guid>
      <description><![CDATA[<ul>
<li>运行命令<code>ssh-keygen -t rsa</code></li>
<li>复制本机<code>.ssh/id_rsa.pub</code> 到服务器为文件<code>.ssh/authorized_keys</code></li>
</ul>
<p>sign_and_send_pubkey: signing failed for RSA &ldquo;.ssh/id_rsa&rdquo; from agent: agent refused operation</p>]]></description>
    </item>
    
    <item>
      <title>如何修复 Runtime Error 217 in Windows 10/8.1/8/7 错误</title>
      <link>/blog/post/my/2020/fix-runtime-error-217-in-windows/</link>
      <pubDate>Sat, 08 Dec 2018 00:00:00 +0000</pubDate>
      <guid>/blog/post/my/2020/fix-runtime-error-217-in-windows/</guid>
      <description><![CDATA[<blockquote>
<p>如何解决？</p>
<p><strong>更新系统补丁</strong>（强烈推荐）或 暂时禁止某些软件开机启动。</p></blockquote>
<ul>
<li>运行（Windows+R 快捷键）打开运行对话框，输入 <strong>msconfig</strong> 打开系统配置 工具</li>
<li>切换 <strong>服务</strong> 标签，激活下方 <strong>隐藏所有 Microsoft 服务</strong> 再 点按钮 <strong>全部禁用</strong></li>
</ul>
<p><picture><img class="img-fluid " alt="系统配置 工具" src="/blog/images/my/error_217_001.png?v=ce080c308e713f1267e61e008824c27e" loading="lazy" width="679" height="497" />
</picture>

</p>]]></description>
    </item>
    
  </channel>
</rss>

