小米盒子3 ADB 调试笔记 缘由 广告太多 偶尔卡住不动(hung up) 盒子内存只有4GB, RAM 只有800M 根据以上一些缘由,所以想通过ADB调试来删减一些无用的资源,扩充一些资源来装Kodi和Smart tube 准备工作 一条USB双公头的线 一个小米盒子3 型号为MZD-16-AA 一台笔记本 开始 打开盒子的ADB 调试模式 使用遥控器进入设置 - 关于 - 在”关于“选项中连续按”ok“ 7次即可进入开发模式 返回设置的 ”用户与安全“ 在 ”ADB调试“中将”关闭“调整为”开启“ USB 模式下的ADB 调试 下载SDK Platform tools https://developer.android.com/tools/releases/platform-tools 下载 Google USB driverhttps://developer.android.com/studio/run/win-usb 进入工具目录使用命令进行ADB调试 进入ADB 调试命令 $adb devices //显示设备 会以序列号开头在下方显示 (盒子会显示是否授权该电脑进行调试, 请使用遥控器选择) $adb shell //进入shell 命令, 到这里就可以通过命令去操作了 其它命令请见下方“常见命令”

November 27, 2023 0comments 42hotness 0likes Read all

当遇到这种菜单需要组合数据,然后导入到收银软件数据库的时候。 我们可以 使用"&"号来组合数据 原表格数据如下 使用”&“符号组合数据 如下 在N5单元格中输入以下内容,及可将I7,J7,J8的数据组合在N5.=I7&J7&J8 使用“分列”功能拆分数据 根据ChatGPT生成翻译之后直接粘贴到表格的数据中如下 这个时候我们就可以使用"分列"功能来处理数据 一 二 三 四 此时已经到最后一步, 可以根据自身需求选择。 如果不需要,点击完成即可。 五 最终效果如下 参考: https://support.microsoft.com/en-us/office/combine-text-from-two-or-more-cells-into-one-cell-81ba0946-ce78-42ed-b3c3-21340eb164a6?ui=en-US&rs=en-US&ad=US

October 20, 2023 0comments 50hotness 0likes Read all

. 进入discuz的安装目录,找到 ./uc_server/data/config.inc.php 文件可以通过FTP连接服务器,或者直接登录服务器操作 使用下列两行替换 config.inc.php 文件中 UC_FOUNDERPW 和 UC_FOUNDERSALT 两行配置这两行代表的是加密后的 UCenter 密码,这里的密码是 Discuz@2019 define('UC_FOUNDERPW', '6a8d7f5a1cc2a62ca6550adf2f1f421f'); define('UC_FOUNDERSALT', '208491'); 复制刷新登录页面,再次输入重置后的 Discuz@2019 密码进行登录,已经可以成功登陆至 UCenter 后台 成功登陆后,就可以在后台直接修改密码了 来源:https://cloud.tencent.com/developer/article/1605905

September 18, 2023 0comments 135hotness 0likes Read all

为什么要关闭Windows更新 微软有时候推送的更新会导致系统奔溃 影响正常工作、资料丢失 会有漏洞 更新失败导致的各种问题 关闭Windows更新之后会有什么影响 无法自动更新驱动程式 微软应用商店无法正常使用,微软商店的app 无法正常更新 无法自动更新.Net 运行库 我已经在设置里面关闭了自动更新, 它有效吗? 无用,Windows 的贴心服务会为你再次开启 如何彻底关闭Windows更新? 正常情况下 在系统设置、服务管理、注册表中设置好Windows的自动更新之后即可 在这里推荐使用sordum的 wub 软件的简单操作来实现一键关闭,而且永久有效哦。 复制下方链接到浏览器即可自动下载wub, 解压之后即可直接使用。 https://www.sordum.org/downloads/?st-windows-update-blocker

July 23, 2023 0comments 59hotness 0likes Read all

Introduction: So, you've got an amazing website that you want to share with the world? Fantastic! But how do you actually get it live on the internet? Don't worry, we've got you covered. In this guide, we'll take you through the exciting journey of getting your website published and accessible to everyone. Step 1: Register and Purchase a Domain Name: First things first, you need a unique domain name that represents your website. Choose a name that resonates with your brand and is easy to remember. Once you've found the perfect domain name, register it with a reliable domain registrar and complete the purchase. Voila, you've secured your online identity! Step 2: Register a Paid Web Host: To make your website accessible to users, you'll need a web hosting service. Consider registering with a paid web host, which offers advantages like better speed, more storage, and enhanced security features. Explore different hosting providers, compare their offerings, and choose the one that best fits your needs. Step 3: Free Web Hosting Alternatives: If you're on a tight budget or just starting out, free web hosting options can be a great alternative. Platforms like Github Pages or services like Cloudflare offer free hosting for static websites. Keep in mind that free hosting may have limitations, such as limited storage or ads on your site, but it's a good starting point. Step 4: Configure Your Domain's A Record: Now that you have your domain and hosting sorted, it's time to connect them. To do this, you'll need to configure your domain's A record.…

May 30, 2023 0comments 33hotness 0likes Read all

SQL Server installation note SQL Server & SQL Server Manager SQL Server Download (Choose SQL Server 2022 Developer) https://www.microsoft.com/en-us/sql-server/sql-server-downloads SQL Server Manager Download https://learn.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver16 After installed SQL Server you can see SQL Server 2022 Configuration Manager In computer manager , find Service and Applications Change SQL Server Browser to Automatic and start it / Then back to SQL server managere You can see SQL Server Browser is display on SQL Server Services Windows Authentication Mode and SQL Server Authentication Mode https://learn.microsoft.com/en-us/sql/relational-databases/security/choose-an-authentication-mode?view=sql-server-ver16 During setup, you must select an authentication mode for the Database Engine. There are two possible modes: Windows Authentication mode and mixed mode. Windows Authentication mode enables Windows Authentication and disables SQL Server Authentication. Mixed mode enables both Windows Authentication and SQL Server Authentication. Windows Authentication is always available and cannot be disabled After the setup is complete, Please remember restart SQL Server service Then try to connect SQL server use SQL Server Authentication In Visual Studio 2022 Complete

April 24, 2023 0comments 34hotness 0likes Read all

ReIcon 一款桌面图标整理和布局软件 软件介绍 Reicon是便携式免费软件,使您能够保存和还原桌面布局。 如果您经常更改屏幕分辨率(例如,玩游戏或使用需要特定分辨率的应用程序),则您可能会熟悉桌面图标的问题,因为您切换回正常的分辨率后会陷入混乱。 Reicon通过允许您保存桌面布局来解决此问题,然后单击按钮(或使用右键单击上下文菜单)还原它。 Reicon非常易于使用。 设置您的图标,按照您喜欢它们的方式,保存布局,然后在需要时稍后还原该布局。 如何使用 GUI操作 将你想要的图标位置摆至你想要的坐标 点开Reicon程序,将布局保存好 选择你想要恢复的布局 ,在布局列表中鼠标右键选择恢复即可 命令行使用 Reicon还支持命令行操作 以下是命令操作指南 Usage: <command> [<additional commands>] Commands: /S : Save desktop icons layout /R : Restore desktop icon layout /File : Icon layout file location /ID : Desktop icon layout ID or order /Name : Desktop icon layout name Examples: ReIcon_x64.exe /S ReIcon_x64.exe /S /File C:\Test.ini /Name New icon layout /ID abc ReIcon_x64.exe /R ReIcon_x64.exe /R /ID abc ReIcon_x64.exe /R /ID 1 ReIcon_x64.exe /R /File C:\Test.ini /ID abc 以下批处理示例了使用Reicon命令行恢复图标布局 D:\ReIcon\ReIcon\ReIcon_x64.exe /R /ID nmj 更多用法可以参考软件官方说明: https://www.sordum.org/8366/reicon-v2-0-restore-desktop-icon-layouts/ 参考:https://www.sordum.org/8366/reicon-v2-0-restore-desktop-icon-layouts/

March 5, 2023 0comments 30hotness 0likes Read all

CUP 安装笔记 CUP 介绍 CUPS 是Apple inc 开源的打印服务 ,你可以将它部署在您的局域网内,将打印机接入该服务器,其它工作站可以通过局域网来访问打印机。 Official website: http://www.cups.org/index.html Github page: https://github.com/apple/cups CUPS支持局域网内打印服务共享,无需再繁琐的设置打印机共享了,并且还能将老打印机也接入局域网。同时还支持mac os, linux,windows,安卓以及ios air print; 笔记概要 Linux服务器版本 Ubuntu 18.4 下载并安装CUP CUP配置修改 使用WEB GUI 添加打印机 通过局域网访问打印机 配置文件说明 下载安装 sudo apt-get install cups cups-pdf cups-bsd #下载安装 CUP 配置修改 sudo cp /etc/cups/cupsd.conf cupsd.conf.bak #备份配置文件 sudo nano /etc/cups/cupsd.conf #修改配置文件 # 1. Configuration file for the CUPS scheduler. See "man cupsd.conf" for a 1. complete description of this file. 1. 1. Log general information in error_log - change "warn" to "debug" 1. for troubleshooting... LogLevel warn PageLogFormat 1. Deactivate CUPS' internal logrotating, as we provide a better one, especially 1. LogLevel debug2 gets usable now MaxLogSize 0 1. Only listen for connections from the local machine. Listen 631 #更改监听端口 Listen /run/cups/cups.sock 1. Show shared printers on the local network. Browsing on #打开局域网发现打印机 BrowseLocalProtocols dnssd 1. Default authentication type, when authentication is required... DefaultAuthType Basic 1. Web interface setting... WebInterface Yes 1. Restrict access to the server... <Location /> #Order allow,deny Allow @LOCAL #允许LOCAL </Location> 1. Restrict access to the admin pages... <Location /admin> #Order allow,deny Allow @LOCAL #同上 </Location> 1. Restrict access to configuration files... <Location /admin/conf> #AuthType Default 1. Require user @SYSTEM #Order allow,deny Allow @LOCAL </Location> 1. Restrict access to log files... <Location /admin/log> #AuthType Default #Require user @SYSTEM #Order allow,deny Allow @LOCAL </Location> 修改完配置之后重启服务 sudo systemctl retsart cups #重启服务 sudo systemctl enable cups #设置开机启动 到这里就可以使用局域网访问WEBGUI并添加打印机 配置文件说明 MaxLogSize 2000000000 #最大日志,当日志文件超过此值时,开始循环 LogLevel info #需要记录的日志等级 SystemGroup sys root #CUPS的系统管理组名称 Listen localhost:631 #WEB管理监听的IP和端口号 Browsing On #允许客户端浏览打印机 BrowseOrder allow,deny #访问权限设置,deny列表取代allow BrowseAllow @LOCAL #除了以@LOCAL结尾的帐号外 DefaultAuthType Basic <Location /> #系统默认认证 Order allow,deny Allow localhost…

January 20, 2023 0comments 35hotness 0likes Read all

公有云安装Panabit 专业版 笔记 Release date: Dec 22,2022 Th . Panabit Version: R0.00[TANG(大唐)r3],Build date 20221031.132102 [Linux 3.10]Author: Duke Hsu 此笔记记录了使用单网卡轻量云服务器安装panabit的过程。 准备工作 云服务器 操作系统: Centos 7.6 x64配置: 2C 8G 1 eth Panabit 材料 Panabit一键上传 云服务器工具(包含安装和解压 GUI.exe)Panabit专业版Linux安装包(LPanabitOEM_WUDAIr1_20201125_Linux3.tar.gz)云服务器的IP地址和密码云服务器需要开启SSH 端口和服务 安装步骤 云服务器初始化 关闭防火墙 #停止防火墙 systemctl stop firewalld #关闭开机自启动 systemctl disable firewalld 检查网卡配置 #打印IP地址信息 ifconfig #查看网卡详细信息(ifcfg-eth0为网卡名,有些不一样,视情况而定) cat /etc/sysconfig/network-scripts/ifcfg-eth0 记录下来IP地址信息以备稍后做Panabit配置使用 Panabit安装 使用GUI.exe 工具根据提示 将安装包上传到云服务器 全自动安装 重启服务器之后即可使用web登入Panabit进行管理 如果无法访问请检查管理口名称是否与云服务器网卡名不一致 如果提示安全问题,请使用低版本的chrome浏览器访问,比如360急速浏览器 Panabit 配置 网络接口配置 在将eth接口方向更改为接外 在应用路由-接口线路-WAN线路 添加一个接口 如下图 请注意 WAN线路的IP地址是填写云服务器的内网地址 需要克隆mac地址 使用ping来验证配置是否正确有效 SD-WAN配置 在panabit中 他们把整合进panabit的sd-wan功能称为 iWAN服务,win客户端基于gretunnel协议(wintun.dll)进行与服务端通信(若有误请删除) Panabit 的SD-WAN服务端配置 用户认证-账号管理-组织构架创建组织构架> 添加用户组 >为用户组设置地址池 用户认证-账号管理-组织构架-本地账号添加用户账号-设定用户组-其它信息 应用路由-iWAN服务-服务列表 新增一个iWAN服务-设置服务名称和网关(服务网关和地址池不能与其他内网冲突) 应用路由-iWAN服务-服务映射 将你设置好的服务名称。设置好你需要的服务端口,然后点击添加即可 请注意 需要在云服务防火墙中配置允许改端口访问权限 UDP&TCP 应用路由-策略路由-IPv4路由 添加一个策略将iWAN的服务网关转发到WAN(如果你有多条线路可以设置你想要的线路) 跟着以上步骤,Pnabait的SD-WAN服务端就配置完成了。在客户端,Pnabit提供了多平台,多方式的连接方案 Linux客户端 Windows客户端 Panabit所有版本 都有提供iWAN接口的选项 SD-WAN客户端连接 Panabit设备 应用路由-接口线路-WAN线路 新增一条iWAN类型的外网线路 ,设置好服务端地址和端口以及MTU ,账号密码,连通之后你可以使用ping来验证是否工作。 请注意 如果无法连接 请检查服务端地址池配置是否有冲突 账号密码是否不正确 云服务防火墙是否已经配置并允许服务端口 无法上网请检查应用路由中的策略路由是否配置了转发 至此,在公有云中安装Panabit并配置SD-WAN的笔记就完成了。我使用一张网卡配置完成SD-WAN 比官方说明的需求的3-4张网卡成本更低。当然目前业务量小,还没出现问题。不知道到当业务量大了之后会不会出现其它问题。

December 22, 2022 1comments 55hotness 0likes Read all

由于某些游戏在运行时候会检测显卡驱动版本,如果不是最新版本就需要更新,某些时候太麻烦了,索性使用批处理更改文件名来实现跳过显卡驱动版本检测。下面的示例以Windows操作系统为主。 Tips: 将下面的命令保存为批处理(bat)格式的文件即可在Windows下执行。 重命名NVAPI文件 if exist C:\Windows\System32\nvapi64.Old goto Old chdir /d C:\Windows\System32 ren nvapi64.dll nvapi64.Old echo @ Named pause goto End 恢复NVAPI文件名 :Old chdir /d C:\Windows\System32 ren nvapi64.Old nvapi64.dll echo @ Renamed pause goto End :End

November 17, 2022 0comments 33hotness 0likes Read all
1234512