Ubuntu Server 22.04.1 安装因 ConnectionRefusedError 而反复崩溃

Ubuntu Server 22.04.1 安装因 ConnectionRefusedError 而反复崩溃

我正在尝试从使用文件创建的可启动 USB 安装 Ubuntu Server 22.04.1 ubuntu-22.04.1-live-server-amd64.iso。计算机是 fitlet2,具有 16 GB 的 RAM 和 500GB 的 SSD。安装按预期开始,然后在安装过程的各个阶段崩溃。有时这是在我选择语言后立即发生的,有时是在之后。但是错误始终相同:

Traceback (most recent call last):
    File "/snap/subiquity/3698/usr/lib/python3/dist-packages/aiohttp/connector.py", line 1144, in _create_connection
      _, proto = await self._loop.create_unix_connection(
    File "/snap/subiquity/3698/usr/lib/python3.8/asyncio/unix_events.py", line 244, in create_unix_connection
      await self.sock_connect(sock, path)
    File "/snap/subiquity/3698/usr/lib/python3.8/asyncio/selector_events.py", line 496, in sock_connect
    File "/snap/subiquity/3698/usr/lib/python3.8/asyncio/selector_events.py", line 501, in _sock_connect
      sock.connect(address)
ConnectionRefusedError: [Errno 111] Connection Refused

The above exception was the direct cause of the following exception:

...
<output truncated>
...

aiohttp.client_exceptions.ClientConnectionError: Cannot connect to host a:80 ssl:default [Connection refused]

我尝试过在配置网络和不配置网络的情况下进行安装(当我能够进行到安装过程的这一步时)。我也搜索过,没有发现任何人遇到类似的问题。此外,当我配置网络以启用时,我可以看到来自计算机的 DNS 请求通过我的路由器,所以我知道它具有良好的网络连接。导致这种情况的根本问题是什么?它试图连接的ClientConnectionError主机是什么?a:80

谢谢!

相关内容