私はSpark 'tar'ファイルをダウンロードしてWindows用Ubuntuに解凍してインストールしようとしました。次のエラーが発生します。
sislam@domain:/home$ sudo tar -zxvf spark-3.0.1-bin-hadoop2.7.tgz
tar (child): spark-3.0.1-bin-hadoop2.7.tgz: Cannot open: No such file or directory
tar (child): Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error is not recoverable: exiting now
可能なすべてのウェブサイトを調査しましたが、解決策が見つかりませんでした。私はLinuxの世界に初めて触れました。どうぞよろしくお願いします!
ありがとうございます!
言った
答え1
tgzはWindowsホームディレクトリにあり、これはUbuntu WSLホームディレクトリとは異なります/mnt/c/Users/sislam
。これをLinuxホームディレクトリに抽出するには、ファイルパスを調整します。
# cd to /home/sislam if you're not already there
cd ~
tar -zxvf /mnt/c/Users/sislam/spark-3.0.1-bin-hadoop2.7.tgz
答え2
最後に、Linuxの専門家の助けを借りて問題を解決しました。間違ったディレクトリにファイルをダウンロードしています。とても簡単です。 Windows用Ubuntuは、AppDataフォルダなどの特定のユーザーディレクトリを指します。助けてくれてありがとう!
言った