爆米花时间文件存在

爆米花时间文件存在

我尝试使用这个在 ubuntu 18.04 上安装 popcorntime

sudo mkdir /opt/popcorntime

这是我得到的

mkdir:无法创建目录‘/opt/popcorntime’:文件存在

有什么建议吗?

谢谢

答案1

这将删除所有现有安装并在您的系统上重新安装 Popcorn Time。

以 root 身份运行它。

rm -rf /opt/popcorntime
wget -O /tmp/Popcorn-Time.tar.gz \
        https://mirror02.popcorntime.sh/build/Popcorn-Time-0.3.10-Linux-64.tar.xz
mkdir /opt/popcorntime
tar xf /tmp/Popcorn-Time.tar.gz -C /opt/popcorntime
ln -sf /opt/popcorntime/Popcorn-Time /usr/bin/Popcorn-Time
rm /tmp/Popcorn-Time.tar.gz

Popcorn-Time然后您可以通过在 shell 中运行来访问它。

答案2

我会用

file /opt/popcorntime

检查那里有什么(stat /opt/popcorntime也可以),它可能是一个文件(而不是目录),并且你不能拥有同名的目录和文件(系统如何知道你指的是目录还是文件

当我阅读错误消息时,该名称的文件已存在。您需要重命名或移动该文件(抱歉,我不知道这是什么,所以不确定其后果

相关内容