windows桌面上自由添加自定义文字软件--BgInfo

BgInfo是一款轻巧实用的桌面信息显示软件,无需后台进程即可在桌面上展示如IP地址、MAC地址等信息,并支持自定义显示内容及位置。用户可以轻松更改文字内容,操作简单便捷。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

主要介绍一个桌面文字小软件叫BgInfo

优点

  1. 不用其他软件一样,后台运行一个进程
  2. 不用自己使用ps.秀秀等其他画图工具来添加文字
  3. 文字可以随时更换,简单方便
  4. 软件无毒小巧

下载地址:

软件界面

这里写图片描述

桌面效果图

这里写图片描述

功能键说明

(软件使用很简单,就不太多介绍了。我主要使用Position的键,指定下桌面的位置。)
Fields: Selects what information appears on the desktop, and the order in which it is displayed. For networking fields (NIC, IP, MAC, etc.) a separate entry is created for each network card on the system. Use the Custom button to add special information you define yourself.
Background: Selects the color and/or wallpaper to use for the background. If you select the Copy existing settings option then BGInfo will use whatever information is currently selected by the logged on user. This option allows end users to personalize their desktop while still displaying the BGInfo information.
Position: Selects the location on the screen at which to place the text. If some items are very long (for example some network card names) you can use the Limit Lines to item to wrap them. The Compensate for Taskbar position checkbox adjusts the position of the text to ensure that it is not covered by the Taskbar. The Multiple Monitor Configuration button allows you to specify how multiple monitors attached to a single console should be handled.
Desktops: Selects which desktops are updated when the configuration is applied. By default only the User Desktop wallpaper is changed. Enabling the Logon Desktop for Console users option specifies that the wallpaper should be displayed on the logon desktop that is presented before anyone has logged onto the system. On Windows 95/98/ME systems the same desktop is used for users and the login screen, so this option has no effect. Enabling the Logon Desktop for Terminal Services users option specifies that the wallpaper should be displayed on the Terminal Services login screen. This option is useful only on servers running Terminal Services.
Preview: Displays the background as it will appear when applied to your system.

<think>好的,用户遇到了VMware Workstation不支持虚拟机硬件版本以及模块‘Upgrade’启动失败的问题。我需要根据提供的引用资料来整理解决方案。 首先,根据引用[4],这个问题通常是因为虚拟机是在更高版本的VMware上创建的,而当前使用的版本较低,导致不兼容。解决方法可能包括升级VMware或者修改虚拟机硬件版本。用户可能需要确认自己的VMware版本,并考虑升级到最新版,比如17.x,这样能支持更高的硬件版本。如果用户不想升级,可能需要手动修改.vmx文件中的virtualHW.version,但需要确保目标版本受支持,否则可能无法启动。 然后看引用[1]和[4],提到的解决方案都是升级VMware到最新版本,或者调整虚拟机硬件版本。不过修改硬件版本可能有一定风险,需要备份虚拟机文件。另外,引用[2]和[3]提到在Ubuntu 22.04下安装时遇到的模块编译问题,可能需要安装内核头文件和编译工具,但当前用户的问题可能与模块无关,更多是版本兼容性问题。 因此,解决方案应该分步骤:首先建议升级VMware,其次修改硬件版本,同时提醒备份。如果用户的环境是Linux,可能需要额外步骤,比如安装依赖,但根据问题描述,用户可能是在Windows下,所以可能不需要涉及内核模块编译的部分。不过为了全面,可以补充说明不同系统下的注意事项。 另外,需要检查引用中的链接是否正确对应,比如引用[1]和[4]都提到硬件版本不支持的问题,可能解决方案类似。需要确保步骤清晰,避免用户操作错误导致数据丢失。同时,生成相关问题时要涵盖常见可能性,比如如何检查硬件版本,降级是否可行,以及升级后的模块问题等。</think>### 解决方案 当遇到“VMware Workstation 不支持的硬件版本”或“模块‘Upgrade’启动失败”错误时,通常是因为虚拟机文件的硬件版本高于当前VMware Workstation支持的版本。以下是逐步解决方法: #### 方法1:升级VMware Workstation 1. **检查当前版本**:打开VMware Workstation,点击菜单栏“帮助”->“关于VMware Workstation”,确认当前版本。 2. **下载最新版本**:访问[VMware官网](https://www.vmware.com),下载并安装最新版(如17.x),新版支持更高硬件版本[^1][^4]。 3. **重新打开虚拟机**:升级后,直接启动原虚拟机文件,系统会自动适配硬件版本。 #### 方法2:手动修改虚拟机硬件版本 若无法升级VMware,可手动降低虚拟机硬件版本: 1. **关闭VMware**:确保所有虚拟机已关闭。 2. **找到虚拟机文件**:定位到虚拟机存储目录,找到后缀为`.vmx`的文件(如`Ubuntu.vmx`)。 3. **编辑.vmx文件**: - 用文本编辑器打开`.vmx`文件。 - 找到`virtualHW.version = "XX"`(XX为当前硬件版本号)。 - 将其修改为当前VMware支持的版本(例如,VMware 16 Pro最高支持硬件版本16,因此可改为`virtualHW.version = "16"`)。 4. **保存并重启**:保存文件后重新启动虚拟机。 #### 方法3:修复依赖项(Linux系统) 在Ubuntu等Linux系统中,可能因内核模块缺失导致问题: 1. 安装编译依赖: ```bash sudo apt install build-essential linux-headers-$(uname -r) ``` 2. 重新编译VMware模块: ```bash sudo vmware-modconfig --console --install-all ``` 若失败,可尝试临时禁用安全启动(需重启)[^2][^3]。 #### 注意事项 - **备份虚拟机**:修改文件前建议备份`.vmx`和`.vmdk`文件。 - **版本兼容性**:硬件版本需与VMware版本匹配(如VMware 17支持硬件版本20,VMware 16支持版本16-19)。
评论 16
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值