不小心删除服务[null]后,git bash出现错误,如何解决?
错误描述:打开 git bash、msys2都会出现错误「bash: /dev/null: No such device or address」
问题定位:
1.使用搜索引擎搜索「bash: /dev/null: No such device or address」,一般答案是[null]服务出现问题,可能是缺少对应的文件「C:WindowsSystem32driversnull.sys」,要从网上或者安装镜像里找到「null.sys」复制到这个位置,再启动「null」服务。
2.到「C:WindowsSystem32drivers」查看发现「null.sys」是存在的,而「null」服务确实被我删除了。至此,问题暂时就确定了,是「null」服务不存在导致的问题。
解决方案:
在有管理员权限的 CMD 命令行或 Power Shell 6 及以上版本 中运行【>】后面的命令
PS C:Usersxxx> sc create null binpath=C:WindowsSystem32driversnull.sys type=kernel start=auto error=normal
[SC] CreateService SUCCESS
PS C:Usersxxx> sc start null
SERVICE_NAME: null
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
PS C:Usersxxx>
解决过程:
1.尝试安装 null 服务,尝试的方法如下:
1.1.使用 InstallUtil.exe 实用程序安装服务
(操作时搞错了,应该使用开始菜单中的「Developer Command Prompt for VS 2017」,即 Visual Studio 命令行的,我是在Administrator权限的 CMD 中使用 InstallUtil.exe 工具的,所以安装失败了,这个地方粗心大意了。)
installutil .exe
注意:这样安装的服务是当前当户的普通服务。
1.2.Power Shell 安装服务,命令如下
PS C:Usersxxx> New-Service -Name "null" -BinaryPathName C:WindowsSystem32driversnull.sys
Status Name DisplayName
------ ---- -----------
Stopped null null
PS C:Usersxxx> sc start null
[SC] StartService FAILED with error 129.
PS C:Usersxxx> Remove-Service -Name "null"
安装成功,启动失败,提示【[SC] StartService FAILED with error 129.】
2.确定启动失败的问题
使用搜索引擎搜索【[SC] StartService FAILED with error 129】,stackoverflow 上找到了可以试一试的答案,如下
页面【Starting created service using sc.exe throws error: “[SC] StartService FAILED with error 129.”】,链接https://stackoverflow.com/questions/48102667/starting-created-service-using-sc-exe-throws-error-sc-startservice-failed-wi。
内容:
Error code 129 is ERROR_CHILD_NOT_COMPLETE (i.e. the application cannot be run in Win32 mode). You created a user-mode service since the default is ‘type= own’ (i.e. SERVICE_WIN32_OWN_PROCESS when calling WinAPI CreateService). However, you’re trying to run a kernel-mode driver, which should be ‘type= kernel’ (i.e. SERVICE_KERNEL_DRIVER).
answered Jan 4, 2018 at 21:40
Eryk Sun
即用户模式的服务无法在内核模式下运行。
3.解决启动失败——创建内核模式的[null]服务
在 powershell 6 及以上版本中运行以下命令:
PS C:Usersxxx> sc create null binpath=C:WindowsSystem32driversnull.sys type=kernel start=auto error=normal
[SC] CreateService SUCCESS
PS C:Usersxxx> sc start null
SERVICE_NAME: null
TYPE : 1 KERNEL_DRIVER
STATE : 4 RUNNING
(STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
PID : 0
FLAGS :
PS C:Usersxxx>
参考文档:
“Learn/.NET/.NET Framework/开发 Windows 服务应用程序/如何:安装和卸载 Windows 服务 “
链接https://learn.microsoft.com/zh-cn/dotnet/framework/windows-services/how-to-install-and-uninstall-services。
【最终解决问题参考的文档】”Learn / Windows Server / sc.exe create”
链接https://learn.microsoft.com/zh-cn/windows-server/administration/windows-commands/sc-create
在注册表和服务控制管理器数据库中为服务创建子项和条目。
语法
sc.exe [] create [] [type= {own | share | kernel | filesys | rec | interact type= {own | share}}] [start= {boot | system | auto | demand | disabled | delayed-auto}] [error= {normal | severe | critical | ignore}] [binpath= ] [group= ] [tag= {yes | no}] [depend= ] [obj= { | }] [displayname= ] [password= ]
参数
参数 描述
指定服务所在的远程服务器的名称。 该名称必须使用通用命名约定 (UNC) 格式(例如 myserver)。 若要在本地运行 SC.exe,请不要使用此参数。
指定 getkeyname 操作返回的服务名称。
type= {own | share | kernel | filesys | rec | interact type= {own | share}} 指定服务类型。 选项包括:
own – 指定在其自己的进程中运行的服务。 它不会与其他服务共享可执行文件。 这是默认值。
share – 指定作为共享进程运行的服务。 它会与其他服务共享可执行文件。
kernel – 指定驱动程序。
filesys – 指定文件系统驱动程序。
rec – 指定文件系统识别的驱动程序,用于标识计算机上使用的文件系统。
interact – 指定可与桌面交互、接收用户输入的服务。 交互式服务必须在 LocalSystem 帐户下运行。 此类型必须与 type= own 或 type= shared(例如 type = interacttype= own)结合使用。 单独使用 type= interact 将生成错误。
start= {boot | system | auto | demand | disabled | delayed-auto} 指定服务的启动类型。 选项包括:
boot – 指定由启动加载程序加载的设备驱动程序。
system – 指定在内核初始化期间启动的设备驱动程序。
auto – 指定每次重启计算机时自动启动的服务,即使没有人登录到计算机,该服务也会运行。
demand – 指定必须手动启动的服务。 如果没有指定 start=,则此为默认值。
disabled – 指定无法启动的服务。 要启动已禁用的服务,请将启动类型更改为其他某个值。
delayed-auto – 指定在其他自动服务启动后短时间内自动启动的服务。
error= {normal | severe | critical | ignore} 指定在计算机启动时,服务无法启动时出现的错误的严重性。 选项包括:
normal – 指定记录错误并显示消息框,通知用户服务无法启动。 启动将继续。 这是默认设置。
severe – 指定在可能的情况下记录错误。 计算机尝试使用上次已知的良好配置重启。 结果是计算机能够重启,但服务可能仍无法运行。
critical – 指定在可能的情况下记录错误。 计算机尝试使用上次已知的良好配置重启。 如果上次已知的良好配置失败,则启动也会失败,启动进程将停止并出现停止错误。
ignore – 指定记录错误并继续启动。 除了在事件日志中记录错误之外,不会向用户发出通知。
binpath= 指定服务二进制文件的路径。 binpath= 没有默认值,必须提供此字符串。
group= 指定此服务所属的群组的名称。 群组列表存储在注册表中的 HKLMSystemCurrentControlSetControlServiceGroupOrder 子项中。 默认值为 null。
tag= {yes | no} 指定是否从 CreateService 调用获取 TagID。 标记仅用于引导-启动和系统-启动驱动程序。
depend= 指定必须在此服务之前启动的服务或群组的名称。 名称由正斜杠 (/) 分隔。
obj= { | } 指定运行服务的帐户的名称,或指定要在其中运行驱动程序的 Windows 驱动程序对象的名称。 默认设置是 LocalSystem。
displayname= 指定用于在用户界面程序中标识服务的友好名称。 例如,一个特定服务的子项名称是 wuauserv,它具有更友好的显示名称“自动更新”。
password= 指定密码。 如果使用 LocalSystem 帐户以外的帐户,则这是必需操作。
/? 在命令提示符下显示帮助。
注解
每个命令行选项(参数)都必须将等号包括为选项名称的一部分。
选项与其值之间需要空格(例如 type= own。 如果省略空格,操作将失败。
示例
若要为 NewService 服务创建和注册新的二进制路径,请键入:
sc.exe \myserver create NewService binpath= c:windowssystem32NewServ.exe
sc.exe create NewService binpath= c:windowssystem32NewServ.exe type= share start= auto depend= +TDI NetBIOS
若要详细了解 sc.exe 命令,请参阅 SC 命令
相关链接
命令行语法项
(不推荐)”Learn / Windows / Windows 驱动程序 / 安装 / 安装 null 驱动程序”
链接https://learn.microsoft.com/zh-cn/windows-hardware/drivers/install/installing-a-null-driver。
对如何使用不是很清楚,在「drivers」文件夹尝试使用安装失败了。
原文内容如下:
可以安装一个“null 驱动程序” (即,如果设备未在计算机上使用且不应启动或能够在原始模式下执行,则设备不存在驱动程序) , (在DEVICE_CAPABILITIES结构中看到 RawDeviceOK) 。 若要在 INF 文件中指定 null 驱动程序,请使用如下所示的条目:
[MyModels]
%MyDeviceDescription% = MyNullInstallSection, ExampleHardwareId
[MyNullInstallSection]
; The install section is typically empty, but can contain entries that
; copy files or modify the registry.
[MyNullInstallSection.Services]
AddService = ,2 ; no value for the service name
“ 模型 ”部分中设备的硬件 ID 应使用子系统供应商 ID 和任何其他相关信息专门标识设备。
操作系统将为设备创建设备节点 (devnode) ,但如果设备无法在原始模式下执行,操作系统将无法启动设备,因为尚未为其分配函数驱动程序。 但请注意,如果设备具有 启动配置,则会保留这些资源。