Windows 上の Ubuntu の WSL/Bash に linux-libc-dev をインストールできない

Windows 上の Ubuntu の WSL/Bash に linux-libc-dev をインストールできない

Windows 上の Ubuntu (Windows Subsystem for Linux) の Bash に linux-libc-dev をインストールしようとしています。これは、以前の bash エラーを修正するためです。

The following packages have unmet dependencies:
libc6-dev : Depends: linux-libc-dev but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

壊れたパッケージを次の方法で修復しようとしましたsudo apt-get -f install:

Unpacking linux-libc-dev:amd64 (4.4.0-119.143) ...
dpkg: error processing archive /var/cache/apt/archives/linux-libc-dev_4.4.0-119.143_amd64.deb (--unpack):
unable to create '/usr/include/linux/netfilter/xt_tcpmss.h.dpkg-new' (while processing './usr/include/linux/netfilter/xt_tcpmss.h'): Input/output error
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
E: Sub-process /usr/bin/dpkg returned an error code (1)

私は、cmd を使用して Windows 上の Ubuntu で Bash をアンインストール/再インストールしようとしました:

lxrun /uninstall
lxrun /install

しかし、再インストール後も問題は解決しません。
キャッシュされたdebファイルを手動でインストールすることも試みました。

sudo dpkg -i /var/cache/apt/archives/linux-libc-dev_4.4.0-119.143_amd64.deb

しかし、当然ながら、同じエラーが発生します。

sudo apt-get install linux-libc-dev

ご提案があればぜひお聞かせください。

関連情報