<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>我的空间</title><link>http://wodekongjian.cn/blog/</link><description>自由自在，开开心心晒太阳！</description><item><title>配置windows自动登陆</title><link>http://wodekongjian.cn/blog/?id=7</link><description>&lt;p&gt;最近批量安装了windows2016服务器，因为种种原因要设置服务器每个一段时间就要自动重新启动一次。默认系统启动完成后，是要输入账号密码登陆的。有些程序只有登陆了后才会启动，所以有了这个为windows自动登陆配置。&lt;/p&gt;&lt;p&gt;适用于：&amp;nbsp; WindowsServer 2019、Windows Server 2016、Windows Server 2012 R2&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-sql&quot;&gt;Windows&amp;nbsp;Registry&amp;nbsp;Editor&amp;nbsp;Version&amp;nbsp;5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows&amp;nbsp;NT\CurrentVersion\Winlogon]
&amp;quot;DefaultUserName&amp;quot;=&amp;quot;Administrator&amp;quot;
&amp;quot;DefaultPassword&amp;quot;=&amp;quot;password&amp;quot;
&amp;quot;AutoAdminLogon&amp;quot;=&amp;quot;1&amp;quot;&lt;/pre&gt;&lt;p&gt;将上面的文字复制到记事本中，保存为reg文件，直接执行一次即可。具体含义如下：&lt;br/&gt;&lt;/p&gt;&lt;p&gt;DefaultUserName 默认登陆用户名 。&lt;br/&gt;&lt;/p&gt;&lt;p&gt;DefaultPassword 默认登陆用户名的密码。&lt;/p&gt;&lt;p&gt;AutoAdminLogon 是否自动登陆，1是，0否。&lt;br/&gt;&lt;/p&gt;&lt;p&gt;资料参考：&lt;a href=&quot;https://docs.microsoft.com/zh-CN/troubleshoot/windows-server/user-profiles-and-logon/turn-on-automatic-logon&quot; _src=&quot;https://docs.microsoft.com/zh-CN/troubleshoot/windows-server/user-profiles-and-logon/turn-on-automatic-logon&quot;&gt;https://docs.microsoft.com/zh-CN/troubleshoot/windows-server/user-profiles-and-logon/turn-on-automatic-logon&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 22:32:03 +0800</pubDate></item><item><title>BCM94352Z在ubuntu下蓝牙无法驱动的问题</title><link>http://wodekongjian.cn/blog/?id=6</link><description>&lt;p style=&quot;white-space: normal;&quot;&gt;ubuntu20.04安装完成后，默认BCM94352Z的WIFI驱动部分是安装完成并且能够正常使用，蓝牙部分就有点坑了，搜索不到蓝牙设备，或者能搜索到但无法连接，总之就是蓝牙不能使用。给本本带来了极大的不方便，外置了一个USB蓝牙能正常使用。也就是BCM94352Z的蓝牙驱动有问题。在这里折腾一下。&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;首先，在windows里找到BCM94352Z蓝牙部分的hex文件，应该是在system31/drivers里面，有个BCM开头的hex文件，具体可以参考https://www.cnblogs.com/qiuyi21/archive/2014/11/27/bcm20702a0_ubuntu.html 只需要找到hex文件即可，不需要看编译的部分。将这个hex文件拷贝到ubuntu内存放。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;如果你已经没有win系统了，我给你提供一个我自己的hex文件吧：&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;链接: https://pan.baidu.com/s/1QivuTObenCiaXxVuPvOzMw&amp;nbsp; &amp;nbsp;提取码: 9efj&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;第二步，下载hex2hcd&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;git&amp;nbsp;clone&amp;nbsp;https://github.com/jessesung/hex2hcd.git&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;将hex文件拷贝到你下载的hex2hcd目录中&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;第三步，生成hcd文件，进入hex2hcd目录，执行&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;hex2hcd&amp;nbsp;BCM20702A1_001.002.014.1483.1651.hex&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;注意BCM20702A1_001.002.014.1483.1651.hex换成你的hex文件名。这时候在hex2hcd目录中，就生成了一个BCM20702A1_001.002.014.1483.1651.hcd文件。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;第四步，查询BCM设备的ID&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;lsusb&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;将看到 Bus 001 Device 002: ID 0489:e07a Foxconn / Hon Hai BCM20702A0&lt;br/&gt;ID后面的0489:e07a记录好。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;第五步，将BCM20702A1_001.002.014.1483.1651.hcd重命名为BCM20702A1-0489-e07a.hcd，并copy到/lib/firmware/brcm 目录中&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;sudo&amp;nbsp;mv&amp;nbsp;BCM43142A1-0489-e07a.hcd&amp;nbsp;/lib/firmware/brcm/&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;第六步，重新启动电脑。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;注意上述步骤中的BCM20702A1-0489-e07a.hcd，这个名字取决于你的hex文件名的前缀，两个横杆后面的字符是你自己的lsusb中的ID，不能随意改。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;最后，分享我这里已经生成的BCM20702A1.hcd文件：&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;链接: https://pan.baidu.com/s/1TQIc0kIgCdifpgkJeFUptQ&amp;nbsp; &amp;nbsp;提取码: 7c25&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 22:27:29 +0800</pubDate></item><item><title>联想yoga3pro驱动笔记</title><link>http://wodekongjian.cn/blog/?id=5</link><description>&lt;p&gt;记号记号！&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;现在使用的还是联想yoga3pro-1370笔记本，支持十指触控，配置很Low但好在仅仅是看看电影和写个日记。现在把本本的驱动等资料做一下笔记，备用。&lt;br/&gt;操作系统：支持win10，但建议使用自带的win8.1，真的是太爽了，对触控的支持比win10好百倍。&lt;br/&gt;官方驱动下载地址：&lt;a href=&quot;https://newsupport.lenovo.com.cn/driveList.html?fromsource=driveList&amp;selname=Lenovo%20YOGA%203%20Pro&quot; _src=&quot;https://newsupport.lenovo.com.cn/driveList.html?fromsource=driveList&amp;selname=Lenovo%20YOGA%203%20Pro&quot;&gt;https://newsupport.lenovo.com.cn/driveList.html?fromsource=driveList&amp;amp;selname=Lenovo%20YOGA%203%20Pro&lt;/a&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;BIOS升级包：&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;链接：https://pan.baidu.com/s/1O99JPDI1aiQp-WE4lyDsUA&lt;br/&gt;提取码：872t&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 22:25:20 +0800</pubDate></item><item><title>阿里云虚拟主机PHP session不可用</title><link>http://wodekongjian.cn/blog/?id=4</link><description>&lt;p style=&quot;white-space: normal;&quot;&gt;使用阿里云的PHP云虚拟主机做了一个日常的事物跟进登记系统，要用SESSION作为验证登陆使用，谁知写好后，验证登陆这块死活不能用。如下面的提示：&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;session_start()&amp;nbsp;[function.session-start]:&amp;nbsp;Cannot&amp;nbsp;send&amp;nbsp;session&amp;nbsp;cookie&amp;nbsp;-&amp;nbsp;headers&amp;nbsp;already&amp;nbsp;sent&amp;nbsp;by&amp;nbsp;(output&amp;nbsp;started&amp;nbsp;at&amp;nbsp;/includes/123.php:4312)
Error&amp;nbsp;File:&amp;nbsp;/includes/123.php&amp;nbsp;at&amp;nbsp;390&amp;nbsp;line.&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;后来想SESSION不能用，那就用cookie作为登陆验证吧，反正是自己用的小系统，但心里万般不爽啊。于是查资料，还真的解决了。原来是阿里云虚拟主机的配置问题，登陆主机管理-高级环境配置-PHP.INI配置，如下图：&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;&lt;img class=&quot;ue-image&quot; src=&quot;https://onekb.oss-cn-zhangjiakou.aliyuncs.com/51588194/2cbef9d2-82e6-471d-8895-33838f08258e.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;开启“输出缓冲区数据块设置”后，等1分钟，SESSION功能正常使用了！！&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 22:22:49 +0800</pubDate></item><item><title>联想笔记本触摸板双指右击设置</title><link>http://wodekongjian.cn/blog/?id=3</link><description>&lt;p style=&quot;white-space: normal;&quot;&gt;真是巧了，公司新发放的笔记本和个人笔记本都是联想的，触摸板驱动全部正常安装，滑动、单击都正常，但右键只能通过点击右键按钮实现，触摸板上的双指右键不可用。我的两个笔记本使用的是两个不同的触摸板。&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;公司的联想笔记本使用的是Elantech。命令行打开注册表regedit，依次找到&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;-&amp;gt;HKEY_CuRRENT_USER -&amp;gt;SOFTWARE -&amp;gt;Elantech -&amp;gt;SmartPad&amp;nbsp;&amp;nbsp; 里面的&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;Tap_Two_Finger_Enable&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;Tap_Two_Finger&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;双击，将其值全部更改为 1，如果嫌麻烦，可以将下面的文本复制到记事本中，保存为elantech.reg，然后双击，也会自动修改注册表。最后重新启动电脑即可。&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;Windows&amp;nbsp;Registry&amp;nbsp;Editor&amp;nbsp;Version&amp;nbsp;5.00

[HKEY_CURRENT_USER\SOFTWARE\Elantech\SmartPad]
&amp;quot;Tap_Two_Finger_Enable&amp;quot;=dword:00000001
&amp;quot;Tap_Two_Finger&amp;quot;=dword:00000001&lt;/pre&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;还有一个是我自己的电脑，触摸板的驱动软件是synaptics。操作方式与上面的类似，打开注册表regedit，在两个位置找到&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;2FingerTapAction&amp;nbsp; 将其值改为十进制的2，位置分别为：&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;-&amp;gt;HKEY_CuRRENT_USER -&amp;gt;SOFTWARE -&amp;gt;Synaptics -&amp;gt;SynTP -&amp;gt;Win10&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;-&amp;gt;HKEY_CuRRENT_USER -&amp;gt;SOFTWARE -&amp;gt;Synaptics -&amp;gt;SynTP -&amp;gt;TouchPadSMB2cTM2334&lt;/p&gt;&lt;p style=&quot;white-space: normal;&quot;&gt;修改完成后需要重新启动电脑，才能生效。&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 22:11:16 +0800</pubDate></item><item><title>欢迎使用Z-BlogPHP！</title><link>http://wodekongjian.cn/blog/?id=1</link><description>&lt;p&gt;欢迎使用Z-Blog，这是程序自动生成的文章，您可以删除或是编辑它:)&lt;/p&gt;&lt;p&gt;系统生成了一个留言本和一篇《欢迎使用Z-BlogPHP！》，祝您使用愉快！&lt;/p&gt;</description><pubDate>Sun, 01 Jun 2025 14:41:37 +0800</pubDate></item></channel></rss>