web-dev-qa-db-ja.com

Linux用のWgget Error Bash Windowsサブシステム

Wgetを使ってダウンロードしようとしている間、WSLでエラーが発生しました

 wget -O quotefile.txt "https://www.google.com"
 _

出力

Will not apply HSTS. The HSTS database must be a regular and non-world-writable file.
ERROR: could not open HSTS store at '/home/atul/.wget-hsts'. HSTS will be disabled.
--2020-04-08 12:47:43--  https://www.google.com/
Resolving www.google.com (www.google.com)... 2404:6800:4002:80f::2004, 172.217.166.196
Connecting to www.google.com (www.google.com)|2404:6800:4002:80f::2004|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘quotefile.txt’

quotefile.txt                     [ <=>                                              ]  14.68K  --.-KB/s    in 0.002s

2020-04-08 12:47:45 (6.43 MB/s) - ‘quotefile.txt’ saved [15029]
 _

なぜ私はこのエラーを得ています

Will not apply HSTS. The HSTS database must be a regular and non-world-writable file.
ERROR: could not open HSTS store at '/home/atul/.wget-hsts'. HSTS will be disabled.
 _

そしてこれを解決する方法?

新鮮なreinstall.earlierがWindows 10 Proバージョン19035を使用していた後、この問題に直面していますが、今すぐWindows 10 Proバージョン1909を使用しています。

4
Madhubala

私は自分自身と私の場合は.wget-hstsファイルはグループと世界の書き込み可能でした。私はそれをユーザー書き込み可能になるように限定し、エラーが消えました:

-rw-rw-rw-  1 matthias matthias  165 Mar 13 13:57 .wget-hsts
 _

-rw-r--r--  1 matthias matthias  165 Mar 13 13:57 .wget-hsts
 _
5
althaus